blob: 89b81254201bc7679ae992898792207c85900b9d [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 Axboe2c3ad662016-12-14 14:34:47 -0700170void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
171 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}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700216EXPORT_SYMBOL_GPL(blk_mq_rq_ctx_init);
Jens Axboe320ae512013-10-24 09:20:05 +0100217
Jens Axboe2c3ad662016-12-14 14:34:47 -0700218struct request *__blk_mq_alloc_request(struct blk_mq_alloc_data *data,
219 unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200220{
221 struct request *rq;
222 unsigned int tag;
223
Ming Leicb96a422014-06-01 00:43:37 +0800224 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200225 if (tag != BLK_MQ_TAG_FAIL) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -0700226 rq = data->hctx->tags->static_rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200227
Ming Leicb96a422014-06-01 00:43:37 +0800228 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200229 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800230 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200231 }
232
233 rq->tag = tag;
Jens Axboe2af8cbe2017-01-13 14:39:30 -0700234 data->hctx->tags->rqs[tag] = rq;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600235 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200236 return rq;
237 }
238
239 return NULL;
240}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700241EXPORT_SYMBOL_GPL(__blk_mq_alloc_request);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200242
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100243struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
244 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100245{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200246 struct blk_mq_ctx *ctx;
247 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100248 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800249 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600250 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100251
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100252 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600253 if (ret)
254 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100255
Christoph Hellwigd8525642014-05-27 20:59:50 +0200256 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200257 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100258 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600259 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200260 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600261
Keith Buschc76541a2014-12-19 17:54:13 -0700262 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400263 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600264 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700265 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200266
267 rq->__data_len = 0;
268 rq->__sector = (sector_t) -1;
269 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100270 return rq;
271}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600272EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100273
Ming Lin1f5bd332016-06-13 16:45:21 +0200274struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
275 unsigned int flags, unsigned int hctx_idx)
276{
277 struct blk_mq_hw_ctx *hctx;
278 struct blk_mq_ctx *ctx;
279 struct request *rq;
280 struct blk_mq_alloc_data alloc_data;
281 int ret;
282
283 /*
284 * If the tag allocator sleeps we could get an allocation for a
285 * different hardware context. No need to complicate the low level
286 * allocator for this for the rare use case of a command tied to
287 * a specific queue.
288 */
289 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
290 return ERR_PTR(-EINVAL);
291
292 if (hctx_idx >= q->nr_hw_queues)
293 return ERR_PTR(-EIO);
294
295 ret = blk_queue_enter(q, true);
296 if (ret)
297 return ERR_PTR(ret);
298
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600299 /*
300 * Check if the hardware context is actually mapped to anything.
301 * If not tell the caller that it should skip this queue.
302 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200303 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600304 if (!blk_mq_hw_queue_mapped(hctx)) {
305 ret = -EXDEV;
306 goto out_queue_exit;
307 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200308 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
309
310 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600311 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200312 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600313 ret = -EWOULDBLOCK;
314 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200315 }
316
317 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600318
319out_queue_exit:
320 blk_queue_exit(q);
321 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200322}
323EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
324
Jens Axboe2c3ad662016-12-14 14:34:47 -0700325void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
326 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100327{
328 const int tag = rq->tag;
329 struct request_queue *q = rq->q;
330
Christoph Hellwige8064022016-10-20 15:12:13 +0200331 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600332 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700333
334 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200335 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600336
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200337 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700338 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboe49411152017-01-13 08:09:05 -0700339 blk_mq_put_tag(hctx, hctx->tags, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400340 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100341}
342
Jens Axboe16a3c2a2016-12-15 14:27:46 -0700343static void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx,
344 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100345{
346 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700347
348 ctx->rq_completed[rq_is_sync(rq)]++;
349 __blk_mq_free_request(hctx, ctx, rq);
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700350}
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700351
352void blk_mq_free_request(struct request *rq)
353{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200354 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100355}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700356EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100357
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700358inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100359{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700360 blk_account_io_done(rq);
361
Christoph Hellwig91b63632014-04-16 09:44:53 +0200362 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700363 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100364 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200365 } else {
366 if (unlikely(blk_bidi_rq(rq)))
367 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100368 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200369 }
Jens Axboe320ae512013-10-24 09:20:05 +0100370}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700371EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200372
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700373void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200374{
375 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
376 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700377 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200378}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700379EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100380
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800381static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100382{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800383 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100384
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800385 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100386}
387
Jens Axboeed851862014-05-30 21:20:50 -0600388static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100389{
390 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700391 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100392 int cpu;
393
Christoph Hellwig38535202014-04-25 02:32:53 -0700394 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800395 rq->q->softirq_done_fn(rq);
396 return;
397 }
Jens Axboe320ae512013-10-24 09:20:05 +0100398
399 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700400 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
401 shared = cpus_share_cache(cpu, ctx->cpu);
402
403 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800404 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800405 rq->csd.info = rq;
406 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100407 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800408 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800409 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800410 }
Jens Axboe320ae512013-10-24 09:20:05 +0100411 put_cpu();
412}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800413
Jens Axboecf43e6b2016-11-07 21:32:37 -0700414static void blk_mq_stat_add(struct request *rq)
415{
416 if (rq->rq_flags & RQF_STATS) {
417 /*
418 * We could rq->mq_ctx here, but there's less of a risk
419 * of races if we have the completion event add the stats
420 * to the local software queue.
421 */
422 struct blk_mq_ctx *ctx;
423
424 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
425 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
426 }
427}
428
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700429static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600430{
431 struct request_queue *q = rq->q;
432
Jens Axboecf43e6b2016-11-07 21:32:37 -0700433 blk_mq_stat_add(rq);
434
Jens Axboeed851862014-05-30 21:20:50 -0600435 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700436 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600437 else
438 blk_mq_ipi_complete_request(rq);
439}
440
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800441/**
442 * blk_mq_complete_request - end I/O on a request
443 * @rq: the request being processed
444 *
445 * Description:
446 * Ends all I/O on a request. It does not handle partial completions.
447 * The actual completion happens out-of-order, through a IPI handler.
448 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200449void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800450{
Jens Axboe95f09682014-05-27 17:46:48 -0600451 struct request_queue *q = rq->q;
452
453 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800454 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200455 if (!blk_mark_rq_complete(rq)) {
456 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600457 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200458 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800459}
460EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100461
Keith Busch973c0192015-01-07 18:55:43 -0700462int blk_mq_request_started(struct request *rq)
463{
464 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
465}
466EXPORT_SYMBOL_GPL(blk_mq_request_started);
467
Christoph Hellwige2490072014-09-13 16:40:09 -0700468void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100469{
470 struct request_queue *q = rq->q;
471
472 trace_block_rq_issue(q, rq);
473
Christoph Hellwig742ee692014-04-14 10:30:06 +0200474 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200475 if (unlikely(blk_bidi_rq(rq)))
476 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200477
Jens Axboecf43e6b2016-11-07 21:32:37 -0700478 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
479 blk_stat_set_issue_time(&rq->issue_stat);
480 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700481 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700482 }
483
Ming Lei2b8393b2014-06-10 00:16:41 +0800484 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600485
486 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600487 * Ensure that ->deadline is visible before set the started
488 * flag and clear the completed flag.
489 */
490 smp_mb__before_atomic();
491
492 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600493 * Mark us as started and clear complete. Complete might have been
494 * set if requeue raced with timeout, which then marked it as
495 * complete. So be sure to clear complete again when we start
496 * the request, otherwise we'll ignore the completion event.
497 */
Jens Axboe4b570522014-05-29 11:00:11 -0600498 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
499 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
500 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
501 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800502
503 if (q->dma_drain_size && blk_rq_bytes(rq)) {
504 /*
505 * Make sure space for the drain appears. We know we can do
506 * this because max_hw_segments has been adjusted to be one
507 * fewer than the device can handle.
508 */
509 rq->nr_phys_segments++;
510 }
Jens Axboe320ae512013-10-24 09:20:05 +0100511}
Christoph Hellwige2490072014-09-13 16:40:09 -0700512EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100513
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200514static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100515{
516 struct request_queue *q = rq->q;
517
518 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700519 wbt_requeue(q->rq_wb, &rq->issue_stat);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800520
Christoph Hellwige2490072014-09-13 16:40:09 -0700521 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
522 if (q->dma_drain_size && blk_rq_bytes(rq))
523 rq->nr_phys_segments--;
524 }
Jens Axboe320ae512013-10-24 09:20:05 +0100525}
526
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700527void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200528{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200529 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200530
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200531 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700532 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200533}
534EXPORT_SYMBOL(blk_mq_requeue_request);
535
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600536static void blk_mq_requeue_work(struct work_struct *work)
537{
538 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400539 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600540 LIST_HEAD(rq_list);
541 struct request *rq, *next;
542 unsigned long flags;
543
544 spin_lock_irqsave(&q->requeue_lock, flags);
545 list_splice_init(&q->requeue_list, &rq_list);
546 spin_unlock_irqrestore(&q->requeue_lock, flags);
547
548 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200549 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600550 continue;
551
Christoph Hellwige8064022016-10-20 15:12:13 +0200552 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600553 list_del_init(&rq->queuelist);
554 blk_mq_insert_request(rq, true, false, false);
555 }
556
557 while (!list_empty(&rq_list)) {
558 rq = list_entry(rq_list.next, struct request, queuelist);
559 list_del_init(&rq->queuelist);
560 blk_mq_insert_request(rq, false, false, false);
561 }
562
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700563 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600564}
565
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700566void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
567 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600568{
569 struct request_queue *q = rq->q;
570 unsigned long flags;
571
572 /*
573 * We abuse this flag that is otherwise used by the I/O scheduler to
574 * request head insertation from the workqueue.
575 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200576 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600577
578 spin_lock_irqsave(&q->requeue_lock, flags);
579 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200580 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600581 list_add(&rq->queuelist, &q->requeue_list);
582 } else {
583 list_add_tail(&rq->queuelist, &q->requeue_list);
584 }
585 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700586
587 if (kick_requeue_list)
588 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600589}
590EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
591
592void blk_mq_kick_requeue_list(struct request_queue *q)
593{
Mike Snitzer28494502016-09-14 13:28:30 -0400594 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600595}
596EXPORT_SYMBOL(blk_mq_kick_requeue_list);
597
Mike Snitzer28494502016-09-14 13:28:30 -0400598void blk_mq_delay_kick_requeue_list(struct request_queue *q,
599 unsigned long msecs)
600{
601 kblockd_schedule_delayed_work(&q->requeue_work,
602 msecs_to_jiffies(msecs));
603}
604EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
605
Jens Axboe1885b242015-01-07 18:55:45 -0700606void blk_mq_abort_requeue_list(struct request_queue *q)
607{
608 unsigned long flags;
609 LIST_HEAD(rq_list);
610
611 spin_lock_irqsave(&q->requeue_lock, flags);
612 list_splice_init(&q->requeue_list, &rq_list);
613 spin_unlock_irqrestore(&q->requeue_lock, flags);
614
615 while (!list_empty(&rq_list)) {
616 struct request *rq;
617
618 rq = list_first_entry(&rq_list, struct request, queuelist);
619 list_del_init(&rq->queuelist);
620 rq->errors = -EIO;
621 blk_mq_end_request(rq, rq->errors);
622 }
623}
624EXPORT_SYMBOL(blk_mq_abort_requeue_list);
625
Jens Axboe0e62f512014-06-04 10:23:49 -0600626struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
627{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600628 if (tag < tags->nr_tags) {
629 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700630 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600631 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700632
633 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600634}
635EXPORT_SYMBOL(blk_mq_tag_to_rq);
636
Jens Axboe320ae512013-10-24 09:20:05 +0100637struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700638 unsigned long next;
639 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100640};
641
Christoph Hellwig90415832014-09-22 10:21:48 -0600642void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100643{
Jens Axboef8a5b122016-12-13 09:24:51 -0700644 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700645 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600646
647 /*
648 * We know that complete is set at this point. If STARTED isn't set
649 * anymore, then the request isn't active and the "timeout" should
650 * just be ignored. This can happen due to the bitflag ordering.
651 * Timeout first checks if STARTED is set, and if it is, assumes
652 * the request is active. But if we race with completion, then
653 * we both flags will get cleared. So check here again, and ignore
654 * a timeout event with a request that isn't active.
655 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700656 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
657 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600658
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700659 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700660 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600661
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700662 switch (ret) {
663 case BLK_EH_HANDLED:
664 __blk_mq_complete_request(req);
665 break;
666 case BLK_EH_RESET_TIMER:
667 blk_add_timer(req);
668 blk_clear_rq_complete(req);
669 break;
670 case BLK_EH_NOT_HANDLED:
671 break;
672 default:
673 printk(KERN_ERR "block: bad eh return: %d\n", ret);
674 break;
675 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600676}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700677
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700678static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
679 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100680{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700681 struct blk_mq_timeout_data *data = priv;
682
Keith Buscheb130db2015-01-08 08:59:53 -0700683 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
684 /*
685 * If a request wasn't started before the queue was
686 * marked dying, kill it here or it'll go unnoticed.
687 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700688 if (unlikely(blk_queue_dying(rq->q))) {
689 rq->errors = -EIO;
690 blk_mq_end_request(rq, rq->errors);
691 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700692 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700693 }
Jens Axboe320ae512013-10-24 09:20:05 +0100694
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700695 if (time_after_eq(jiffies, rq->deadline)) {
696 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700697 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700698 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
699 data->next = rq->deadline;
700 data->next_set = 1;
701 }
Jens Axboe320ae512013-10-24 09:20:05 +0100702}
703
Christoph Hellwig287922e2015-10-30 20:57:30 +0800704static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100705{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800706 struct request_queue *q =
707 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700708 struct blk_mq_timeout_data data = {
709 .next = 0,
710 .next_set = 0,
711 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700712 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100713
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600714 /* A deadlock might occur if a request is stuck requiring a
715 * timeout at the same time a queue freeze is waiting
716 * completion, since the timeout code would not be able to
717 * acquire the queue reference here.
718 *
719 * That's why we don't use blk_queue_enter here; instead, we use
720 * percpu_ref_tryget directly, because we need to be able to
721 * obtain a reference even in the short window between the queue
722 * starting to freeze, by dropping the first reference in
723 * blk_mq_freeze_queue_start, and the moment the last request is
724 * consumed, marked by the instant q_usage_counter reaches
725 * zero.
726 */
727 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800728 return;
729
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200730 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100731
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700732 if (data.next_set) {
733 data.next = blk_rq_timeout(round_jiffies_up(data.next));
734 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600735 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200736 struct blk_mq_hw_ctx *hctx;
737
Ming Leif054b562015-04-21 10:00:19 +0800738 queue_for_each_hw_ctx(q, hctx, i) {
739 /* the hctx may be unmapped, so check it here */
740 if (blk_mq_hw_queue_mapped(hctx))
741 blk_mq_tag_idle(hctx);
742 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600743 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800744 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100745}
746
747/*
748 * Reverse check our software queue for entries that we could potentially
749 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
750 * too much time checking for merges.
751 */
752static bool blk_mq_attempt_merge(struct request_queue *q,
753 struct blk_mq_ctx *ctx, struct bio *bio)
754{
755 struct request *rq;
756 int checked = 8;
757
758 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
759 int el_ret;
760
761 if (!checked--)
762 break;
763
764 if (!blk_rq_merge_ok(rq, bio))
765 continue;
766
767 el_ret = blk_try_merge(rq, bio);
768 if (el_ret == ELEVATOR_BACK_MERGE) {
769 if (bio_attempt_back_merge(q, rq, bio)) {
770 ctx->rq_merged++;
771 return true;
772 }
773 break;
774 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
775 if (bio_attempt_front_merge(q, rq, bio)) {
776 ctx->rq_merged++;
777 return true;
778 }
779 break;
780 }
781 }
782
783 return false;
784}
785
Omar Sandoval88459642016-09-17 08:38:44 -0600786struct flush_busy_ctx_data {
787 struct blk_mq_hw_ctx *hctx;
788 struct list_head *list;
789};
790
791static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
792{
793 struct flush_busy_ctx_data *flush_data = data;
794 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
795 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
796
797 sbitmap_clear_bit(sb, bitnr);
798 spin_lock(&ctx->lock);
799 list_splice_tail_init(&ctx->rq_list, flush_data->list);
800 spin_unlock(&ctx->lock);
801 return true;
802}
803
Jens Axboe320ae512013-10-24 09:20:05 +0100804/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600805 * Process software queues that have been marked busy, splicing them
806 * to the for-dispatch
807 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700808void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600809{
Omar Sandoval88459642016-09-17 08:38:44 -0600810 struct flush_busy_ctx_data data = {
811 .hctx = hctx,
812 .list = list,
813 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600814
Omar Sandoval88459642016-09-17 08:38:44 -0600815 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600816}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700817EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600818
Jens Axboe703fd1c2016-09-16 13:59:14 -0600819static inline unsigned int queued_to_index(unsigned int queued)
820{
821 if (!queued)
822 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600823
Jens Axboe703fd1c2016-09-16 13:59:14 -0600824 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600825}
826
Jens Axboef04c3df2016-12-07 08:41:17 -0700827bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list)
828{
829 struct request_queue *q = hctx->queue;
830 struct request *rq;
831 LIST_HEAD(driver_list);
832 struct list_head *dptr;
833 int queued, ret = BLK_MQ_RQ_QUEUE_OK;
834
835 /*
836 * Start off with dptr being NULL, so we start the first request
837 * immediately, even if we have more pending.
838 */
839 dptr = NULL;
840
841 /*
842 * Now process all the entries, sending them to the driver.
843 */
844 queued = 0;
845 while (!list_empty(list)) {
846 struct blk_mq_queue_data bd;
847
848 rq = list_first_entry(list, struct request, queuelist);
849 list_del_init(&rq->queuelist);
850
851 bd.rq = rq;
852 bd.list = dptr;
853 bd.last = list_empty(list);
854
855 ret = q->mq_ops->queue_rq(hctx, &bd);
856 switch (ret) {
857 case BLK_MQ_RQ_QUEUE_OK:
858 queued++;
859 break;
860 case BLK_MQ_RQ_QUEUE_BUSY:
861 list_add(&rq->queuelist, list);
862 __blk_mq_requeue_request(rq);
863 break;
864 default:
865 pr_err("blk-mq: bad return on queue: %d\n", ret);
866 case BLK_MQ_RQ_QUEUE_ERROR:
867 rq->errors = -EIO;
868 blk_mq_end_request(rq, rq->errors);
869 break;
870 }
871
872 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
873 break;
874
875 /*
876 * We've done the first request. If we have more than 1
877 * left in the list, set dptr to defer issue.
878 */
879 if (!dptr && list->next != list->prev)
880 dptr = &driver_list;
881 }
882
883 hctx->dispatched[queued_to_index(queued)]++;
884
885 /*
886 * Any items that need requeuing? Stuff them into hctx->dispatch,
887 * that is where we will continue on next queue run.
888 */
889 if (!list_empty(list)) {
890 spin_lock(&hctx->lock);
891 list_splice(list, &hctx->dispatch);
892 spin_unlock(&hctx->lock);
893
894 /*
895 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
896 * it's possible the queue is stopped and restarted again
897 * before this. Queue restart will dispatch requests. And since
898 * requests in rq_list aren't added into hctx->dispatch yet,
899 * the requests in rq_list might get lost.
900 *
901 * blk_mq_run_hw_queue() already checks the STOPPED bit
902 **/
903 blk_mq_run_hw_queue(hctx, true);
904 }
905
906 return ret != BLK_MQ_RQ_QUEUE_BUSY;
907}
908
Jens Axboe1429d7c2014-05-19 09:23:55 -0600909/*
Jens Axboe320ae512013-10-24 09:20:05 +0100910 * Run this hardware queue, pulling any software queues mapped to it in.
911 * Note that this function currently has various problems around ordering
912 * of IO. In particular, we'd like FIFO behaviour on handling existing
913 * items on the hctx->dispatch list. Ignore that for now.
914 */
Bart Van Assche6a83e742016-11-02 10:09:51 -0600915static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +0100916{
Jens Axboe320ae512013-10-24 09:20:05 +0100917 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600918 LIST_HEAD(driver_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100919
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700920 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100921 return;
922
923 hctx->run++;
924
925 /*
926 * Touch any software queue that has pending entries.
927 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700928 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100929
930 /*
931 * If we have previous entries on our dispatch list, grab them
932 * and stuff them at the front for more fair dispatch.
933 */
934 if (!list_empty_careful(&hctx->dispatch)) {
935 spin_lock(&hctx->lock);
936 if (!list_empty(&hctx->dispatch))
937 list_splice_init(&hctx->dispatch, &rq_list);
938 spin_unlock(&hctx->lock);
939 }
940
Jens Axboef04c3df2016-12-07 08:41:17 -0700941 blk_mq_dispatch_rq_list(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100942}
943
Bart Van Assche6a83e742016-11-02 10:09:51 -0600944static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
945{
946 int srcu_idx;
947
948 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
949 cpu_online(hctx->next_cpu));
950
951 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
952 rcu_read_lock();
953 blk_mq_process_rq_list(hctx);
954 rcu_read_unlock();
955 } else {
956 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
957 blk_mq_process_rq_list(hctx);
958 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
959 }
960}
961
Jens Axboe506e9312014-05-07 10:26:44 -0600962/*
963 * It'd be great if the workqueue API had a way to pass
964 * in a mask and had some smarts for more clever placement.
965 * For now we just round-robin here, switching for every
966 * BLK_MQ_CPU_WORK_BATCH queued items.
967 */
968static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
969{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100970 if (hctx->queue->nr_hw_queues == 1)
971 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600972
973 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -0300974 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600975
976 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
977 if (next_cpu >= nr_cpu_ids)
978 next_cpu = cpumask_first(hctx->cpumask);
979
980 hctx->next_cpu = next_cpu;
981 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
982 }
983
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100984 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600985}
986
Jens Axboe320ae512013-10-24 09:20:05 +0100987void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
988{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700989 if (unlikely(blk_mq_hctx_stopped(hctx) ||
990 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100991 return;
992
Jens Axboe1b792f22016-09-21 10:12:13 -0600993 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100994 int cpu = get_cpu();
995 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100996 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100997 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100998 return;
999 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001000
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001001 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001002 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001003
Jens Axboe27489a32016-08-24 15:54:25 -06001004 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001005}
1006
Mike Snitzerb94ec292015-03-11 23:56:38 -04001007void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001008{
1009 struct blk_mq_hw_ctx *hctx;
1010 int i;
1011
1012 queue_for_each_hw_ctx(q, hctx, i) {
1013 if ((!blk_mq_hctx_has_pending(hctx) &&
1014 list_empty_careful(&hctx->dispatch)) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001015 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001016 continue;
1017
Mike Snitzerb94ec292015-03-11 23:56:38 -04001018 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001019 }
1020}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001021EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001022
Bart Van Asschefd001442016-10-28 17:19:37 -07001023/**
1024 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1025 * @q: request queue.
1026 *
1027 * The caller is responsible for serializing this function against
1028 * blk_mq_{start,stop}_hw_queue().
1029 */
1030bool blk_mq_queue_stopped(struct request_queue *q)
1031{
1032 struct blk_mq_hw_ctx *hctx;
1033 int i;
1034
1035 queue_for_each_hw_ctx(q, hctx, i)
1036 if (blk_mq_hctx_stopped(hctx))
1037 return true;
1038
1039 return false;
1040}
1041EXPORT_SYMBOL(blk_mq_queue_stopped);
1042
Jens Axboe320ae512013-10-24 09:20:05 +01001043void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1044{
Jens Axboe27489a32016-08-24 15:54:25 -06001045 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001046 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001047 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1048}
1049EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1050
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001051void blk_mq_stop_hw_queues(struct request_queue *q)
1052{
1053 struct blk_mq_hw_ctx *hctx;
1054 int i;
1055
1056 queue_for_each_hw_ctx(q, hctx, i)
1057 blk_mq_stop_hw_queue(hctx);
1058}
1059EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1060
Jens Axboe320ae512013-10-24 09:20:05 +01001061void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1062{
1063 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001064
Jens Axboe0ffbce82014-06-25 08:22:34 -06001065 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001066}
1067EXPORT_SYMBOL(blk_mq_start_hw_queue);
1068
Christoph Hellwig2f268552014-04-16 09:44:56 +02001069void blk_mq_start_hw_queues(struct request_queue *q)
1070{
1071 struct blk_mq_hw_ctx *hctx;
1072 int i;
1073
1074 queue_for_each_hw_ctx(q, hctx, i)
1075 blk_mq_start_hw_queue(hctx);
1076}
1077EXPORT_SYMBOL(blk_mq_start_hw_queues);
1078
Jens Axboeae911c52016-12-08 13:19:30 -07001079void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1080{
1081 if (!blk_mq_hctx_stopped(hctx))
1082 return;
1083
1084 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1085 blk_mq_run_hw_queue(hctx, async);
1086}
1087EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1088
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001089void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001090{
1091 struct blk_mq_hw_ctx *hctx;
1092 int i;
1093
Jens Axboeae911c52016-12-08 13:19:30 -07001094 queue_for_each_hw_ctx(q, hctx, i)
1095 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001096}
1097EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1098
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001099static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001100{
1101 struct blk_mq_hw_ctx *hctx;
1102
Jens Axboe27489a32016-08-24 15:54:25 -06001103 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001104
Jens Axboe320ae512013-10-24 09:20:05 +01001105 __blk_mq_run_hw_queue(hctx);
1106}
1107
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001108static void blk_mq_delay_work_fn(struct work_struct *work)
1109{
1110 struct blk_mq_hw_ctx *hctx;
1111
1112 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1113
1114 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1115 __blk_mq_run_hw_queue(hctx);
1116}
1117
1118void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1119{
Ming Lei19c66e52014-12-03 19:38:04 +08001120 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1121 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001122
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001123 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1124 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001125}
1126EXPORT_SYMBOL(blk_mq_delay_queue);
1127
Ming Leicfd0c552015-10-20 23:13:57 +08001128static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001129 struct request *rq,
1130 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001131{
Jens Axboee57690f2016-08-24 15:34:35 -06001132 struct blk_mq_ctx *ctx = rq->mq_ctx;
1133
Jens Axboe01b983c2013-11-19 18:59:10 -07001134 trace_block_rq_insert(hctx->queue, rq);
1135
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001136 if (at_head)
1137 list_add(&rq->queuelist, &ctx->rq_list);
1138 else
1139 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001140}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001141
Jens Axboe2c3ad662016-12-14 14:34:47 -07001142void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1143 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001144{
1145 struct blk_mq_ctx *ctx = rq->mq_ctx;
1146
Jens Axboee57690f2016-08-24 15:34:35 -06001147 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001148 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001149}
1150
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001151void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001152 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001153{
Jens Axboee57690f2016-08-24 15:34:35 -06001154 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001155 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001156 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001157
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001158 spin_lock(&ctx->lock);
1159 __blk_mq_insert_request(hctx, rq, at_head);
1160 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001161
Jens Axboe320ae512013-10-24 09:20:05 +01001162 if (run_queue)
1163 blk_mq_run_hw_queue(hctx, async);
1164}
1165
1166static void blk_mq_insert_requests(struct request_queue *q,
1167 struct blk_mq_ctx *ctx,
1168 struct list_head *list,
1169 int depth,
1170 bool from_schedule)
1171
1172{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001173 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001174
1175 trace_block_unplug(q, depth, !from_schedule);
1176
Jens Axboe320ae512013-10-24 09:20:05 +01001177 /*
1178 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1179 * offline now
1180 */
1181 spin_lock(&ctx->lock);
1182 while (!list_empty(list)) {
1183 struct request *rq;
1184
1185 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001186 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001187 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001188 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001189 }
Ming Leicfd0c552015-10-20 23:13:57 +08001190 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001191 spin_unlock(&ctx->lock);
1192
Jens Axboe320ae512013-10-24 09:20:05 +01001193 blk_mq_run_hw_queue(hctx, from_schedule);
1194}
1195
1196static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1197{
1198 struct request *rqa = container_of(a, struct request, queuelist);
1199 struct request *rqb = container_of(b, struct request, queuelist);
1200
1201 return !(rqa->mq_ctx < rqb->mq_ctx ||
1202 (rqa->mq_ctx == rqb->mq_ctx &&
1203 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1204}
1205
1206void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1207{
1208 struct blk_mq_ctx *this_ctx;
1209 struct request_queue *this_q;
1210 struct request *rq;
1211 LIST_HEAD(list);
1212 LIST_HEAD(ctx_list);
1213 unsigned int depth;
1214
1215 list_splice_init(&plug->mq_list, &list);
1216
1217 list_sort(NULL, &list, plug_ctx_cmp);
1218
1219 this_q = NULL;
1220 this_ctx = NULL;
1221 depth = 0;
1222
1223 while (!list_empty(&list)) {
1224 rq = list_entry_rq(list.next);
1225 list_del_init(&rq->queuelist);
1226 BUG_ON(!rq->q);
1227 if (rq->mq_ctx != this_ctx) {
1228 if (this_ctx) {
1229 blk_mq_insert_requests(this_q, this_ctx,
1230 &ctx_list, depth,
1231 from_schedule);
1232 }
1233
1234 this_ctx = rq->mq_ctx;
1235 this_q = rq->q;
1236 depth = 0;
1237 }
1238
1239 depth++;
1240 list_add_tail(&rq->queuelist, &ctx_list);
1241 }
1242
1243 /*
1244 * If 'this_ctx' is set, we know we have entries to complete
1245 * on 'ctx_list'. Do those.
1246 */
1247 if (this_ctx) {
1248 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1249 from_schedule);
1250 }
1251}
1252
1253static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1254{
1255 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001256
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001257 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001258}
1259
Jens Axboe274a5842014-08-15 12:44:08 -06001260static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1261{
1262 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1263 !blk_queue_nomerges(hctx->queue);
1264}
1265
Jens Axboe07068d52014-05-22 10:40:51 -06001266static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1267 struct blk_mq_ctx *ctx,
1268 struct request *rq, struct bio *bio)
1269{
Ming Leie18378a2015-10-20 23:13:54 +08001270 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001271 blk_mq_bio_to_request(rq, bio);
1272 spin_lock(&ctx->lock);
1273insert_rq:
1274 __blk_mq_insert_request(hctx, rq, false);
1275 spin_unlock(&ctx->lock);
1276 return false;
1277 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001278 struct request_queue *q = hctx->queue;
1279
Jens Axboe07068d52014-05-22 10:40:51 -06001280 spin_lock(&ctx->lock);
1281 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1282 blk_mq_bio_to_request(rq, bio);
1283 goto insert_rq;
1284 }
1285
1286 spin_unlock(&ctx->lock);
1287 __blk_mq_free_request(hctx, ctx, rq);
1288 return true;
1289 }
1290}
1291
Jens Axboe07068d52014-05-22 10:40:51 -06001292static struct request *blk_mq_map_request(struct request_queue *q,
1293 struct bio *bio,
Jens Axboe2552e3f2016-10-27 19:03:55 -06001294 struct blk_mq_alloc_data *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001295{
1296 struct blk_mq_hw_ctx *hctx;
1297 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001298 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01001299
Dan Williams3ef28e82015-10-21 13:20:12 -04001300 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001301 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001302 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001303
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001304 trace_block_getrq(q, bio, bio->bi_opf);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001305 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001306 rq = __blk_mq_alloc_request(data, bio->bi_opf);
Jens Axboe320ae512013-10-24 09:20:05 +01001307
Jens Axboe7dd2fb62016-10-27 09:49:19 -06001308 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001309 return rq;
1310}
1311
Jens Axboefd2d3322017-01-12 10:04:45 -07001312static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1313{
1314 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1315}
1316
Jens Axboe066a4a72016-11-11 12:24:46 -07001317static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001318{
1319 int ret;
1320 struct request_queue *q = rq->q;
Jens Axboe066a4a72016-11-11 12:24:46 -07001321 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Shaohua Lif984df12015-05-08 10:51:32 -07001322 struct blk_mq_queue_data bd = {
1323 .rq = rq,
1324 .list = NULL,
1325 .last = 1
1326 };
Jens Axboefd2d3322017-01-12 10:04:45 -07001327 blk_qc_t new_cookie = request_to_qc_t(hctx, rq);
Shaohua Lif984df12015-05-08 10:51:32 -07001328
Bart Van Assche2253efc2016-10-28 17:20:02 -07001329 if (blk_mq_hctx_stopped(hctx))
1330 goto insert;
1331
Shaohua Lif984df12015-05-08 10:51:32 -07001332 /*
1333 * For OK queue, we are done. For error, kill it. Any other
1334 * error (busy), just add it to our list as we previously
1335 * would have done
1336 */
1337 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001338 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1339 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001340 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001341 }
Jens Axboe7b371632015-11-05 10:41:40 -07001342
1343 __blk_mq_requeue_request(rq);
1344
1345 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1346 *cookie = BLK_QC_T_NONE;
1347 rq->errors = -EIO;
1348 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001349 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001350 }
1351
Bart Van Assche2253efc2016-10-28 17:20:02 -07001352insert:
1353 blk_mq_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001354}
1355
Jens Axboe07068d52014-05-22 10:40:51 -06001356/*
1357 * Multiple hardware queue variant. This will not use per-process plugs,
1358 * but will attempt to bypass the hctx queueing if we can go straight to
1359 * hardware for SYNC IO.
1360 */
Jens Axboedece1632015-11-05 10:41:16 -07001361static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001362{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001363 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001364 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001365 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001366 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001367 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001368 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001369 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001370 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001371 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001372
1373 blk_queue_bounce(q, &bio);
1374
1375 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001376 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001377 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001378 }
1379
Kent Overstreet54efd502015-04-23 22:37:18 -07001380 blk_queue_split(q, &bio, q->bio_split);
1381
Omar Sandoval87c279e2016-06-01 22:18:48 -07001382 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1383 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1384 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001385
Jens Axboe87760e52016-11-09 12:38:14 -07001386 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1387
Jens Axboe07068d52014-05-22 10:40:51 -06001388 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001389 if (unlikely(!rq)) {
1390 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001391 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001392 }
1393
1394 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001395
Jens Axboefd2d3322017-01-12 10:04:45 -07001396 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001397
1398 if (unlikely(is_flush_fua)) {
1399 blk_mq_bio_to_request(rq, bio);
1400 blk_insert_flush(rq);
1401 goto run_queue;
1402 }
1403
Shaohua Lif984df12015-05-08 10:51:32 -07001404 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001405 /*
1406 * If the driver supports defer issued based on 'last', then
1407 * queue it up like normal since we can potentially save some
1408 * CPU this way.
1409 */
Shaohua Lif984df12015-05-08 10:51:32 -07001410 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1411 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1412 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001413
1414 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001415
1416 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001417 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001418 * Otherwise the existing request in the plug list will be
1419 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001420 */
Shaohua Lif984df12015-05-08 10:51:32 -07001421 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001422 /*
1423 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001424 * happens, same_queue_rq is invalid and plug list is
1425 * empty
1426 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001427 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1428 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001429 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001430 }
Shaohua Lif984df12015-05-08 10:51:32 -07001431 list_add_tail(&rq->queuelist, &plug->mq_list);
1432 } else /* is_sync */
1433 old_rq = rq;
1434 blk_mq_put_ctx(data.ctx);
1435 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001436 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001437
1438 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1439 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001440 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001441 rcu_read_unlock();
1442 } else {
1443 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001444 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001445 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1446 }
Jens Axboe7b371632015-11-05 10:41:40 -07001447 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001448 }
1449
1450 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1451 /*
1452 * For a SYNC request, send it to the hardware immediately. For
1453 * an ASYNC request, just ensure that we run it later on. The
1454 * latter allows for merging opportunities and more efficient
1455 * dispatching.
1456 */
1457run_queue:
1458 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1459 }
Jens Axboe07068d52014-05-22 10:40:51 -06001460 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001461done:
1462 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001463}
1464
1465/*
1466 * Single hardware queue variant. This will attempt to use any per-process
1467 * plug for merging and IO deferral.
1468 */
Jens Axboedece1632015-11-05 10:41:16 -07001469static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001470{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001471 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001472 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001473 struct blk_plug *plug;
1474 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001475 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001476 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001477 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001478 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001479
Jens Axboe07068d52014-05-22 10:40:51 -06001480 blk_queue_bounce(q, &bio);
1481
1482 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001483 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001484 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001485 }
1486
Kent Overstreet54efd502015-04-23 22:37:18 -07001487 blk_queue_split(q, &bio, q->bio_split);
1488
Omar Sandoval87c279e2016-06-01 22:18:48 -07001489 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1490 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1491 return BLK_QC_T_NONE;
1492 } else
1493 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001494
Jens Axboe87760e52016-11-09 12:38:14 -07001495 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1496
Jens Axboe07068d52014-05-22 10:40:51 -06001497 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001498 if (unlikely(!rq)) {
1499 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001500 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001501 }
1502
1503 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001504
Jens Axboefd2d3322017-01-12 10:04:45 -07001505 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001506
1507 if (unlikely(is_flush_fua)) {
1508 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001509 blk_insert_flush(rq);
1510 goto run_queue;
1511 }
1512
1513 /*
1514 * A task plug currently exists. Since this is completely lockless,
1515 * utilize that to temporarily store requests until the task is
1516 * either done or scheduled away.
1517 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001518 plug = current->plug;
1519 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001520 struct request *last = NULL;
1521
Jeff Moyere6c44382015-05-08 10:51:30 -07001522 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001523
1524 /*
1525 * @request_count may become stale because of schedule
1526 * out, so check the list again.
1527 */
1528 if (list_empty(&plug->mq_list))
1529 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001530 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001531 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001532 else
1533 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001534
1535 blk_mq_put_ctx(data.ctx);
1536
Shaohua Li600271d2016-11-03 17:03:54 -07001537 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1538 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001539 blk_flush_plug_list(plug, false);
1540 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001541 }
Jens Axboeb094f892015-11-20 20:29:45 -07001542
Jeff Moyere6c44382015-05-08 10:51:30 -07001543 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001544 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001545 }
1546
Jens Axboe07068d52014-05-22 10:40:51 -06001547 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1548 /*
1549 * For a SYNC request, send it to the hardware immediately. For
1550 * an ASYNC request, just ensure that we run it later on. The
1551 * latter allows for merging opportunities and more efficient
1552 * dispatching.
1553 */
1554run_queue:
1555 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001556 }
1557
Jens Axboe07068d52014-05-22 10:40:51 -06001558 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001559 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001560}
1561
Jens Axboecc71a6f2017-01-11 14:29:56 -07001562void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1563 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001564{
1565 struct page *page;
1566
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001567 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001568 int i;
1569
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001570 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001571 struct request *rq = tags->static_rqs[i];
1572
1573 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001574 continue;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001575 set->ops->exit_request(set->driver_data, rq,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001576 hctx_idx, i);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001577 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001578 }
1579 }
1580
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001581 while (!list_empty(&tags->page_list)) {
1582 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001583 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001584 /*
1585 * Remove kmemleak object previously allocated in
1586 * blk_mq_init_rq_map().
1587 */
1588 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001589 __free_pages(page, page->private);
1590 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001591}
Jens Axboe320ae512013-10-24 09:20:05 +01001592
Jens Axboecc71a6f2017-01-11 14:29:56 -07001593void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1594{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001595 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001596 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001597 kfree(tags->static_rqs);
1598 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001599
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001600 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001601}
1602
Jens Axboecc71a6f2017-01-11 14:29:56 -07001603struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1604 unsigned int hctx_idx,
1605 unsigned int nr_tags,
1606 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001607{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001608 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001609
Jens Axboecc71a6f2017-01-11 14:29:56 -07001610 tags = blk_mq_init_tags(nr_tags, reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001611 set->numa_node,
1612 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001613 if (!tags)
1614 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001615
Jens Axboecc71a6f2017-01-11 14:29:56 -07001616 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001617 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Jens Axboea5164402014-09-10 09:02:03 -06001618 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001619 if (!tags->rqs) {
1620 blk_mq_free_tags(tags);
1621 return NULL;
1622 }
Jens Axboe320ae512013-10-24 09:20:05 +01001623
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001624 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1625 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
1626 set->numa_node);
1627 if (!tags->static_rqs) {
1628 kfree(tags->rqs);
1629 blk_mq_free_tags(tags);
1630 return NULL;
1631 }
1632
Jens Axboecc71a6f2017-01-11 14:29:56 -07001633 return tags;
1634}
1635
1636static size_t order_to_size(unsigned int order)
1637{
1638 return (size_t)PAGE_SIZE << order;
1639}
1640
1641int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1642 unsigned int hctx_idx, unsigned int depth)
1643{
1644 unsigned int i, j, entries_per_page, max_order = 4;
1645 size_t rq_size, left;
1646
1647 INIT_LIST_HEAD(&tags->page_list);
1648
Jens Axboe320ae512013-10-24 09:20:05 +01001649 /*
1650 * rq_size is the size of the request plus driver payload, rounded
1651 * to the cacheline size
1652 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001653 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001654 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001655 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001656
Jens Axboecc71a6f2017-01-11 14:29:56 -07001657 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001658 int this_order = max_order;
1659 struct page *page;
1660 int to_do;
1661 void *p;
1662
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001663 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001664 this_order--;
1665
1666 do {
Jens Axboea5164402014-09-10 09:02:03 -06001667 page = alloc_pages_node(set->numa_node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001668 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001669 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001670 if (page)
1671 break;
1672 if (!this_order--)
1673 break;
1674 if (order_to_size(this_order) < rq_size)
1675 break;
1676 } while (1);
1677
1678 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001679 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001680
1681 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001682 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001683
1684 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001685 /*
1686 * Allow kmemleak to scan these pages as they contain pointers
1687 * to additional allocations like via ops->init_request().
1688 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001689 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001690 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001691 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001692 left -= to_do * rq_size;
1693 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001694 struct request *rq = p;
1695
1696 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001697 if (set->ops->init_request) {
1698 if (set->ops->init_request(set->driver_data,
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001699 rq, hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001700 set->numa_node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001701 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001702 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001703 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001704 }
1705
Jens Axboe320ae512013-10-24 09:20:05 +01001706 p += rq_size;
1707 i++;
1708 }
1709 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001710 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001711
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001712fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001713 blk_mq_free_rqs(set, tags, hctx_idx);
1714 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001715}
1716
Jens Axboee57690f2016-08-24 15:34:35 -06001717/*
1718 * 'cpu' is going away. splice any existing rq_list entries from this
1719 * software queue to the hw queue dispatch list, and ensure that it
1720 * gets run.
1721 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001722static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001723{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001724 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001725 struct blk_mq_ctx *ctx;
1726 LIST_HEAD(tmp);
1727
Thomas Gleixner9467f852016-09-22 08:05:17 -06001728 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001729 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001730
1731 spin_lock(&ctx->lock);
1732 if (!list_empty(&ctx->rq_list)) {
1733 list_splice_init(&ctx->rq_list, &tmp);
1734 blk_mq_hctx_clear_pending(hctx, ctx);
1735 }
1736 spin_unlock(&ctx->lock);
1737
1738 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001739 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001740
Jens Axboee57690f2016-08-24 15:34:35 -06001741 spin_lock(&hctx->lock);
1742 list_splice_tail_init(&tmp, &hctx->dispatch);
1743 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001744
1745 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001746 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001747}
1748
Thomas Gleixner9467f852016-09-22 08:05:17 -06001749static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001750{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001751 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1752 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001753}
1754
Ming Leic3b4afc2015-06-04 22:25:04 +08001755/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001756static void blk_mq_exit_hctx(struct request_queue *q,
1757 struct blk_mq_tag_set *set,
1758 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1759{
Ming Leif70ced02014-09-25 23:23:47 +08001760 unsigned flush_start_tag = set->queue_depth;
1761
Ming Lei08e98fc2014-09-25 23:23:38 +08001762 blk_mq_tag_idle(hctx);
1763
Ming Leif70ced02014-09-25 23:23:47 +08001764 if (set->ops->exit_request)
1765 set->ops->exit_request(set->driver_data,
1766 hctx->fq->flush_rq, hctx_idx,
1767 flush_start_tag + hctx_idx);
1768
Ming Lei08e98fc2014-09-25 23:23:38 +08001769 if (set->ops->exit_hctx)
1770 set->ops->exit_hctx(hctx, hctx_idx);
1771
Bart Van Assche6a83e742016-11-02 10:09:51 -06001772 if (hctx->flags & BLK_MQ_F_BLOCKING)
1773 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1774
Thomas Gleixner9467f852016-09-22 08:05:17 -06001775 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001776 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001777 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001778}
1779
Ming Lei624dbe42014-05-27 23:35:13 +08001780static void blk_mq_exit_hw_queues(struct request_queue *q,
1781 struct blk_mq_tag_set *set, int nr_queue)
1782{
1783 struct blk_mq_hw_ctx *hctx;
1784 unsigned int i;
1785
1786 queue_for_each_hw_ctx(q, hctx, i) {
1787 if (i == nr_queue)
1788 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001789 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001790 }
Ming Lei624dbe42014-05-27 23:35:13 +08001791}
1792
1793static void blk_mq_free_hw_queues(struct request_queue *q,
1794 struct blk_mq_tag_set *set)
1795{
1796 struct blk_mq_hw_ctx *hctx;
1797 unsigned int i;
1798
Ming Leie09aae7e2015-01-29 20:17:27 +08001799 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001800 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001801}
1802
Ming Lei08e98fc2014-09-25 23:23:38 +08001803static int blk_mq_init_hctx(struct request_queue *q,
1804 struct blk_mq_tag_set *set,
1805 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1806{
1807 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001808 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001809
1810 node = hctx->numa_node;
1811 if (node == NUMA_NO_NODE)
1812 node = hctx->numa_node = set->numa_node;
1813
Jens Axboe27489a32016-08-24 15:54:25 -06001814 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001815 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1816 spin_lock_init(&hctx->lock);
1817 INIT_LIST_HEAD(&hctx->dispatch);
1818 hctx->queue = q;
1819 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001820 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001821
Thomas Gleixner9467f852016-09-22 08:05:17 -06001822 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001823
1824 hctx->tags = set->tags[hctx_idx];
1825
1826 /*
1827 * Allocate space for all possible cpus to avoid allocation at
1828 * runtime
1829 */
1830 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1831 GFP_KERNEL, node);
1832 if (!hctx->ctxs)
1833 goto unregister_cpu_notifier;
1834
Omar Sandoval88459642016-09-17 08:38:44 -06001835 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1836 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001837 goto free_ctxs;
1838
1839 hctx->nr_ctx = 0;
1840
1841 if (set->ops->init_hctx &&
1842 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1843 goto free_bitmap;
1844
Ming Leif70ced02014-09-25 23:23:47 +08001845 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1846 if (!hctx->fq)
1847 goto exit_hctx;
1848
1849 if (set->ops->init_request &&
1850 set->ops->init_request(set->driver_data,
1851 hctx->fq->flush_rq, hctx_idx,
1852 flush_start_tag + hctx_idx, node))
1853 goto free_fq;
1854
Bart Van Assche6a83e742016-11-02 10:09:51 -06001855 if (hctx->flags & BLK_MQ_F_BLOCKING)
1856 init_srcu_struct(&hctx->queue_rq_srcu);
1857
Ming Lei08e98fc2014-09-25 23:23:38 +08001858 return 0;
1859
Ming Leif70ced02014-09-25 23:23:47 +08001860 free_fq:
1861 kfree(hctx->fq);
1862 exit_hctx:
1863 if (set->ops->exit_hctx)
1864 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001865 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001866 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001867 free_ctxs:
1868 kfree(hctx->ctxs);
1869 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001870 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001871 return -1;
1872}
1873
Jens Axboe320ae512013-10-24 09:20:05 +01001874static void blk_mq_init_cpu_queues(struct request_queue *q,
1875 unsigned int nr_hw_queues)
1876{
1877 unsigned int i;
1878
1879 for_each_possible_cpu(i) {
1880 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1881 struct blk_mq_hw_ctx *hctx;
1882
1883 memset(__ctx, 0, sizeof(*__ctx));
1884 __ctx->cpu = i;
1885 spin_lock_init(&__ctx->lock);
1886 INIT_LIST_HEAD(&__ctx->rq_list);
1887 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001888 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1889 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001890
1891 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001892 if (!cpu_online(i))
1893 continue;
1894
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001895 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001896
Jens Axboe320ae512013-10-24 09:20:05 +01001897 /*
1898 * Set local node, IFF we have more than one hw queue. If
1899 * not, we remain on the home node of the device
1900 */
1901 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301902 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001903 }
1904}
1905
Jens Axboecc71a6f2017-01-11 14:29:56 -07001906static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
1907{
1908 int ret = 0;
1909
1910 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
1911 set->queue_depth, set->reserved_tags);
1912 if (!set->tags[hctx_idx])
1913 return false;
1914
1915 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
1916 set->queue_depth);
1917 if (!ret)
1918 return true;
1919
1920 blk_mq_free_rq_map(set->tags[hctx_idx]);
1921 set->tags[hctx_idx] = NULL;
1922 return false;
1923}
1924
1925static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
1926 unsigned int hctx_idx)
1927{
1928 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
1929 blk_mq_free_rq_map(set->tags[hctx_idx]);
1930 set->tags[hctx_idx] = NULL;
1931}
1932
Akinobu Mita57783222015-09-27 02:09:23 +09001933static void blk_mq_map_swqueue(struct request_queue *q,
1934 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001935{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001936 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01001937 struct blk_mq_hw_ctx *hctx;
1938 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001939 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001940
Akinobu Mita60de0742015-09-27 02:09:25 +09001941 /*
1942 * Avoid others reading imcomplete hctx->cpumask through sysfs
1943 */
1944 mutex_lock(&q->sysfs_lock);
1945
Jens Axboe320ae512013-10-24 09:20:05 +01001946 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001947 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001948 hctx->nr_ctx = 0;
1949 }
1950
1951 /*
1952 * Map software to hardware queues
1953 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001954 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001955 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001956 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001957 continue;
1958
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001959 hctx_idx = q->mq_map[i];
1960 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07001961 if (!set->tags[hctx_idx] &&
1962 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001963 /*
1964 * If tags initialization fail for some hctx,
1965 * that hctx won't be brought online. In this
1966 * case, remap the current ctx to hctx[0] which
1967 * is guaranteed to always have tags allocated
1968 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07001969 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001970 }
1971
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001972 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001973 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001974
Jens Axboee4043dc2014-04-09 10:18:23 -06001975 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001976 ctx->index_hw = hctx->nr_ctx;
1977 hctx->ctxs[hctx->nr_ctx++] = ctx;
1978 }
Jens Axboe506e9312014-05-07 10:26:44 -06001979
Akinobu Mita60de0742015-09-27 02:09:25 +09001980 mutex_unlock(&q->sysfs_lock);
1981
Jens Axboe506e9312014-05-07 10:26:44 -06001982 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001983 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001984 * If no software queues are mapped to this hardware queue,
1985 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001986 */
1987 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001988 /* Never unmap queue 0. We need it as a
1989 * fallback in case of a new remap fails
1990 * allocation
1991 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07001992 if (i && set->tags[i])
1993 blk_mq_free_map_and_requests(set, i);
1994
Ming Lei2a34c082015-04-21 10:00:20 +08001995 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001996 continue;
1997 }
1998
Ming Lei2a34c082015-04-21 10:00:20 +08001999 hctx->tags = set->tags[i];
2000 WARN_ON(!hctx->tags);
2001
Jens Axboe484b4062014-05-21 14:01:15 -06002002 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002003 * Set the map size to the number of mapped software queues.
2004 * This is more accurate and more efficient than looping
2005 * over all possibly mapped software queues.
2006 */
Omar Sandoval88459642016-09-17 08:38:44 -06002007 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002008
2009 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002010 * Initialize batch roundrobin counts
2011 */
Jens Axboe506e9312014-05-07 10:26:44 -06002012 hctx->next_cpu = cpumask_first(hctx->cpumask);
2013 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2014 }
Jens Axboe320ae512013-10-24 09:20:05 +01002015}
2016
Jeff Moyer2404e602015-11-03 10:40:06 -05002017static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002018{
2019 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002020 int i;
2021
Jeff Moyer2404e602015-11-03 10:40:06 -05002022 queue_for_each_hw_ctx(q, hctx, i) {
2023 if (shared)
2024 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2025 else
2026 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2027 }
2028}
2029
2030static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2031{
2032 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002033
2034 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2035 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002036 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002037 blk_mq_unfreeze_queue(q);
2038 }
2039}
2040
2041static void blk_mq_del_queue_tag_set(struct request_queue *q)
2042{
2043 struct blk_mq_tag_set *set = q->tag_set;
2044
Jens Axboe0d2602c2014-05-13 15:10:52 -06002045 mutex_lock(&set->tag_list_lock);
2046 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002047 if (list_is_singular(&set->tag_list)) {
2048 /* just transitioned to unshared */
2049 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2050 /* update existing queue */
2051 blk_mq_update_tag_set_depth(set, false);
2052 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002053 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002054}
2055
2056static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2057 struct request_queue *q)
2058{
2059 q->tag_set = set;
2060
2061 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002062
2063 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2064 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2065 set->flags |= BLK_MQ_F_TAG_SHARED;
2066 /* update existing queue */
2067 blk_mq_update_tag_set_depth(set, true);
2068 }
2069 if (set->flags & BLK_MQ_F_TAG_SHARED)
2070 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002071 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002072
Jens Axboe0d2602c2014-05-13 15:10:52 -06002073 mutex_unlock(&set->tag_list_lock);
2074}
2075
Ming Leie09aae7e2015-01-29 20:17:27 +08002076/*
2077 * It is the actual release handler for mq, but we do it from
2078 * request queue's release handler for avoiding use-after-free
2079 * and headache because q->mq_kobj shouldn't have been introduced,
2080 * but we can't group ctx/kctx kobj without it.
2081 */
2082void blk_mq_release(struct request_queue *q)
2083{
2084 struct blk_mq_hw_ctx *hctx;
2085 unsigned int i;
2086
2087 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002088 queue_for_each_hw_ctx(q, hctx, i) {
2089 if (!hctx)
2090 continue;
2091 kfree(hctx->ctxs);
Ming Leie09aae7e2015-01-29 20:17:27 +08002092 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002093 }
Ming Leie09aae7e2015-01-29 20:17:27 +08002094
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002095 q->mq_map = NULL;
2096
Ming Leie09aae7e2015-01-29 20:17:27 +08002097 kfree(q->queue_hw_ctx);
2098
2099 /* ctx kobj stays in queue_ctx */
2100 free_percpu(q->queue_ctx);
2101}
2102
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002103struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002104{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002105 struct request_queue *uninit_q, *q;
2106
2107 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2108 if (!uninit_q)
2109 return ERR_PTR(-ENOMEM);
2110
2111 q = blk_mq_init_allocated_queue(set, uninit_q);
2112 if (IS_ERR(q))
2113 blk_cleanup_queue(uninit_q);
2114
2115 return q;
2116}
2117EXPORT_SYMBOL(blk_mq_init_queue);
2118
Keith Busch868f2f02015-12-17 17:08:14 -07002119static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2120 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002121{
Keith Busch868f2f02015-12-17 17:08:14 -07002122 int i, j;
2123 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002124
Keith Busch868f2f02015-12-17 17:08:14 -07002125 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002126 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002127 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002128
Keith Busch868f2f02015-12-17 17:08:14 -07002129 if (hctxs[i])
2130 continue;
2131
2132 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002133 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2134 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002135 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002136 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002137
Jens Axboea86073e2014-10-13 15:41:54 -06002138 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002139 node)) {
2140 kfree(hctxs[i]);
2141 hctxs[i] = NULL;
2142 break;
2143 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002144
Jens Axboe0d2602c2014-05-13 15:10:52 -06002145 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002146 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002147 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002148
2149 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2150 free_cpumask_var(hctxs[i]->cpumask);
2151 kfree(hctxs[i]);
2152 hctxs[i] = NULL;
2153 break;
2154 }
2155 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002156 }
Keith Busch868f2f02015-12-17 17:08:14 -07002157 for (j = i; j < q->nr_hw_queues; j++) {
2158 struct blk_mq_hw_ctx *hctx = hctxs[j];
2159
2160 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002161 if (hctx->tags)
2162 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002163 blk_mq_exit_hctx(q, set, hctx, j);
2164 free_cpumask_var(hctx->cpumask);
2165 kobject_put(&hctx->kobj);
2166 kfree(hctx->ctxs);
2167 kfree(hctx);
2168 hctxs[j] = NULL;
2169
2170 }
2171 }
2172 q->nr_hw_queues = i;
2173 blk_mq_sysfs_register(q);
2174}
2175
2176struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2177 struct request_queue *q)
2178{
Ming Lei66841672016-02-12 15:27:00 +08002179 /* mark the queue as mq asap */
2180 q->mq_ops = set->ops;
2181
Keith Busch868f2f02015-12-17 17:08:14 -07002182 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2183 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002184 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002185
2186 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2187 GFP_KERNEL, set->numa_node);
2188 if (!q->queue_hw_ctx)
2189 goto err_percpu;
2190
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002191 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002192
2193 blk_mq_realloc_hw_ctxs(set, q);
2194 if (!q->nr_hw_queues)
2195 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002196
Christoph Hellwig287922e2015-10-30 20:57:30 +08002197 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002198 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002199
2200 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002201
Jens Axboe94eddfb2013-11-19 09:25:07 -07002202 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002203
Jens Axboe05f1dd52014-05-29 09:53:32 -06002204 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2205 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2206
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002207 q->sg_reserved_size = INT_MAX;
2208
Mike Snitzer28494502016-09-14 13:28:30 -04002209 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002210 INIT_LIST_HEAD(&q->requeue_list);
2211 spin_lock_init(&q->requeue_lock);
2212
Jens Axboe07068d52014-05-22 10:40:51 -06002213 if (q->nr_hw_queues > 1)
2214 blk_queue_make_request(q, blk_mq_make_request);
2215 else
2216 blk_queue_make_request(q, blk_sq_make_request);
2217
Jens Axboeeba71762014-05-20 15:17:27 -06002218 /*
2219 * Do this after blk_queue_make_request() overrides it...
2220 */
2221 q->nr_requests = set->queue_depth;
2222
Jens Axboe64f1c212016-11-14 13:03:03 -07002223 /*
2224 * Default to classic polling
2225 */
2226 q->poll_nsec = -1;
2227
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002228 if (set->ops->complete)
2229 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002230
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002231 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002232
Akinobu Mita57783222015-09-27 02:09:23 +09002233 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002234 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002235
Jens Axboe320ae512013-10-24 09:20:05 +01002236 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002237 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002238 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002239
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002240 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002241 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002242
Jens Axboe320ae512013-10-24 09:20:05 +01002243 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002244
Jens Axboe320ae512013-10-24 09:20:05 +01002245err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002246 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002247err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002248 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002249err_exit:
2250 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002251 return ERR_PTR(-ENOMEM);
2252}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002253EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002254
2255void blk_mq_free_queue(struct request_queue *q)
2256{
Ming Lei624dbe42014-05-27 23:35:13 +08002257 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002258
Akinobu Mita0e626362015-09-27 02:09:22 +09002259 mutex_lock(&all_q_mutex);
2260 list_del_init(&q->all_q_node);
2261 mutex_unlock(&all_q_mutex);
2262
Jens Axboe87760e52016-11-09 12:38:14 -07002263 wbt_exit(q);
2264
Jens Axboe0d2602c2014-05-13 15:10:52 -06002265 blk_mq_del_queue_tag_set(q);
2266
Ming Lei624dbe42014-05-27 23:35:13 +08002267 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2268 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002269}
Jens Axboe320ae512013-10-24 09:20:05 +01002270
2271/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002272static void blk_mq_queue_reinit(struct request_queue *q,
2273 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002274{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002275 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002276
Jens Axboe67aec142014-05-30 08:25:36 -06002277 blk_mq_sysfs_unregister(q);
2278
Jens Axboe320ae512013-10-24 09:20:05 +01002279 /*
2280 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2281 * we should change hctx numa_node according to new topology (this
2282 * involves free and re-allocate memory, worthy doing?)
2283 */
2284
Akinobu Mita57783222015-09-27 02:09:23 +09002285 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002286
Jens Axboe67aec142014-05-30 08:25:36 -06002287 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002288}
2289
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002290/*
2291 * New online cpumask which is going to be set in this hotplug event.
2292 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2293 * one-by-one and dynamically allocating this could result in a failure.
2294 */
2295static struct cpumask cpuhp_online_new;
2296
2297static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002298{
2299 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002300
2301 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002302 /*
2303 * We need to freeze and reinit all existing queues. Freezing
2304 * involves synchronous wait for an RCU grace period and doing it
2305 * one by one may take a long time. Start freezing all queues in
2306 * one swoop and then wait for the completions so that freezing can
2307 * take place in parallel.
2308 */
2309 list_for_each_entry(q, &all_q_list, all_q_node)
2310 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002311 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002312 blk_mq_freeze_queue_wait(q);
2313
Jens Axboe320ae512013-10-24 09:20:05 +01002314 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002315 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002316
2317 list_for_each_entry(q, &all_q_list, all_q_node)
2318 blk_mq_unfreeze_queue(q);
2319
Jens Axboe320ae512013-10-24 09:20:05 +01002320 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002321}
2322
2323static int blk_mq_queue_reinit_dead(unsigned int cpu)
2324{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002325 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002326 blk_mq_queue_reinit_work();
2327 return 0;
2328}
2329
2330/*
2331 * Before hotadded cpu starts handling requests, new mappings must be
2332 * established. Otherwise, these requests in hw queue might never be
2333 * dispatched.
2334 *
2335 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2336 * for CPU0, and ctx1 for CPU1).
2337 *
2338 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2339 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2340 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002341 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2342 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2343 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2344 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002345 */
2346static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2347{
2348 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2349 cpumask_set_cpu(cpu, &cpuhp_online_new);
2350 blk_mq_queue_reinit_work();
2351 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002352}
2353
Jens Axboea5164402014-09-10 09:02:03 -06002354static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2355{
2356 int i;
2357
Jens Axboecc71a6f2017-01-11 14:29:56 -07002358 for (i = 0; i < set->nr_hw_queues; i++)
2359 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002360 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002361
2362 return 0;
2363
2364out_unwind:
2365 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002366 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002367
Jens Axboea5164402014-09-10 09:02:03 -06002368 return -ENOMEM;
2369}
2370
2371/*
2372 * Allocate the request maps associated with this tag_set. Note that this
2373 * may reduce the depth asked for, if memory is tight. set->queue_depth
2374 * will be updated to reflect the allocated depth.
2375 */
2376static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2377{
2378 unsigned int depth;
2379 int err;
2380
2381 depth = set->queue_depth;
2382 do {
2383 err = __blk_mq_alloc_rq_maps(set);
2384 if (!err)
2385 break;
2386
2387 set->queue_depth >>= 1;
2388 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2389 err = -ENOMEM;
2390 break;
2391 }
2392 } while (set->queue_depth);
2393
2394 if (!set->queue_depth || err) {
2395 pr_err("blk-mq: failed to allocate request map\n");
2396 return -ENOMEM;
2397 }
2398
2399 if (depth != set->queue_depth)
2400 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2401 depth, set->queue_depth);
2402
2403 return 0;
2404}
2405
Jens Axboea4391c62014-06-05 15:21:56 -06002406/*
2407 * Alloc a tag set to be associated with one or more request queues.
2408 * May fail with EINVAL for various error conditions. May adjust the
2409 * requested depth down, if if it too large. In that case, the set
2410 * value will be stored in set->queue_depth.
2411 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002412int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2413{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002414 int ret;
2415
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002416 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2417
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002418 if (!set->nr_hw_queues)
2419 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002420 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002421 return -EINVAL;
2422 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2423 return -EINVAL;
2424
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002425 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002426 return -EINVAL;
2427
Jens Axboea4391c62014-06-05 15:21:56 -06002428 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2429 pr_info("blk-mq: reduced tag depth to %u\n",
2430 BLK_MQ_MAX_DEPTH);
2431 set->queue_depth = BLK_MQ_MAX_DEPTH;
2432 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002433
Shaohua Li6637fad2014-11-30 16:00:58 -08002434 /*
2435 * If a crashdump is active, then we are potentially in a very
2436 * memory constrained environment. Limit us to 1 queue and
2437 * 64 tags to prevent using too much memory.
2438 */
2439 if (is_kdump_kernel()) {
2440 set->nr_hw_queues = 1;
2441 set->queue_depth = min(64U, set->queue_depth);
2442 }
Keith Busch868f2f02015-12-17 17:08:14 -07002443 /*
2444 * There is no use for more h/w queues than cpus.
2445 */
2446 if (set->nr_hw_queues > nr_cpu_ids)
2447 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002448
Keith Busch868f2f02015-12-17 17:08:14 -07002449 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002450 GFP_KERNEL, set->numa_node);
2451 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002452 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002453
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002454 ret = -ENOMEM;
2455 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2456 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002457 if (!set->mq_map)
2458 goto out_free_tags;
2459
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002460 if (set->ops->map_queues)
2461 ret = set->ops->map_queues(set);
2462 else
2463 ret = blk_mq_map_queues(set);
2464 if (ret)
2465 goto out_free_mq_map;
2466
2467 ret = blk_mq_alloc_rq_maps(set);
2468 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002469 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002470
Jens Axboe0d2602c2014-05-13 15:10:52 -06002471 mutex_init(&set->tag_list_lock);
2472 INIT_LIST_HEAD(&set->tag_list);
2473
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002474 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002475
2476out_free_mq_map:
2477 kfree(set->mq_map);
2478 set->mq_map = NULL;
2479out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002480 kfree(set->tags);
2481 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002482 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002483}
2484EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2485
2486void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2487{
2488 int i;
2489
Jens Axboecc71a6f2017-01-11 14:29:56 -07002490 for (i = 0; i < nr_cpu_ids; i++)
2491 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002492
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002493 kfree(set->mq_map);
2494 set->mq_map = NULL;
2495
Ming Lei981bd182014-04-24 00:07:34 +08002496 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002497 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002498}
2499EXPORT_SYMBOL(blk_mq_free_tag_set);
2500
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002501int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2502{
2503 struct blk_mq_tag_set *set = q->tag_set;
2504 struct blk_mq_hw_ctx *hctx;
2505 int i, ret;
2506
2507 if (!set || nr > set->queue_depth)
2508 return -EINVAL;
2509
2510 ret = 0;
2511 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002512 if (!hctx->tags)
2513 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002514 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2515 if (ret)
2516 break;
2517 }
2518
2519 if (!ret)
2520 q->nr_requests = nr;
2521
2522 return ret;
2523}
2524
Keith Busch868f2f02015-12-17 17:08:14 -07002525void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2526{
2527 struct request_queue *q;
2528
2529 if (nr_hw_queues > nr_cpu_ids)
2530 nr_hw_queues = nr_cpu_ids;
2531 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2532 return;
2533
2534 list_for_each_entry(q, &set->tag_list, tag_set_list)
2535 blk_mq_freeze_queue(q);
2536
2537 set->nr_hw_queues = nr_hw_queues;
2538 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2539 blk_mq_realloc_hw_ctxs(set, q);
2540
2541 if (q->nr_hw_queues > 1)
2542 blk_queue_make_request(q, blk_mq_make_request);
2543 else
2544 blk_queue_make_request(q, blk_sq_make_request);
2545
2546 blk_mq_queue_reinit(q, cpu_online_mask);
2547 }
2548
2549 list_for_each_entry(q, &set->tag_list, tag_set_list)
2550 blk_mq_unfreeze_queue(q);
2551}
2552EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2553
Jens Axboe64f1c212016-11-14 13:03:03 -07002554static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2555 struct blk_mq_hw_ctx *hctx,
2556 struct request *rq)
2557{
2558 struct blk_rq_stat stat[2];
2559 unsigned long ret = 0;
2560
2561 /*
2562 * If stats collection isn't on, don't sleep but turn it on for
2563 * future users
2564 */
2565 if (!blk_stat_enable(q))
2566 return 0;
2567
2568 /*
2569 * We don't have to do this once per IO, should optimize this
2570 * to just use the current window of stats until it changes
2571 */
2572 memset(&stat, 0, sizeof(stat));
2573 blk_hctx_stat_get(hctx, stat);
2574
2575 /*
2576 * As an optimistic guess, use half of the mean service time
2577 * for this type of request. We can (and should) make this smarter.
2578 * For instance, if the completion latencies are tight, we can
2579 * get closer than just half the mean. This is especially
2580 * important on devices where the completion latencies are longer
2581 * than ~10 usec.
2582 */
2583 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2584 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2585 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2586 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2587
2588 return ret;
2589}
2590
Jens Axboe06426ad2016-11-14 13:01:59 -07002591static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002592 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002593 struct request *rq)
2594{
2595 struct hrtimer_sleeper hs;
2596 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002597 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002598 ktime_t kt;
2599
Jens Axboe64f1c212016-11-14 13:03:03 -07002600 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2601 return false;
2602
2603 /*
2604 * poll_nsec can be:
2605 *
2606 * -1: don't ever hybrid sleep
2607 * 0: use half of prev avg
2608 * >0: use this specific value
2609 */
2610 if (q->poll_nsec == -1)
2611 return false;
2612 else if (q->poll_nsec > 0)
2613 nsecs = q->poll_nsec;
2614 else
2615 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2616
2617 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002618 return false;
2619
2620 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2621
2622 /*
2623 * This will be replaced with the stats tracking code, using
2624 * 'avg_completion_time / 2' as the pre-sleep target.
2625 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002626 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002627
2628 mode = HRTIMER_MODE_REL;
2629 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2630 hrtimer_set_expires(&hs.timer, kt);
2631
2632 hrtimer_init_sleeper(&hs, current);
2633 do {
2634 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2635 break;
2636 set_current_state(TASK_UNINTERRUPTIBLE);
2637 hrtimer_start_expires(&hs.timer, mode);
2638 if (hs.task)
2639 io_schedule();
2640 hrtimer_cancel(&hs.timer);
2641 mode = HRTIMER_MODE_ABS;
2642 } while (hs.task && !signal_pending(current));
2643
2644 __set_current_state(TASK_RUNNING);
2645 destroy_hrtimer_on_stack(&hs.timer);
2646 return true;
2647}
2648
Jens Axboebbd7bb72016-11-04 09:34:34 -06002649static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2650{
2651 struct request_queue *q = hctx->queue;
2652 long state;
2653
Jens Axboe06426ad2016-11-14 13:01:59 -07002654 /*
2655 * If we sleep, have the caller restart the poll loop to reset
2656 * the state. Like for the other success return cases, the
2657 * caller is responsible for checking if the IO completed. If
2658 * the IO isn't complete, we'll get called again and will go
2659 * straight to the busy poll loop.
2660 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002661 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002662 return true;
2663
Jens Axboebbd7bb72016-11-04 09:34:34 -06002664 hctx->poll_considered++;
2665
2666 state = current->state;
2667 while (!need_resched()) {
2668 int ret;
2669
2670 hctx->poll_invoked++;
2671
2672 ret = q->mq_ops->poll(hctx, rq->tag);
2673 if (ret > 0) {
2674 hctx->poll_success++;
2675 set_current_state(TASK_RUNNING);
2676 return true;
2677 }
2678
2679 if (signal_pending_state(state, current))
2680 set_current_state(TASK_RUNNING);
2681
2682 if (current->state == TASK_RUNNING)
2683 return true;
2684 if (ret < 0)
2685 break;
2686 cpu_relax();
2687 }
2688
2689 return false;
2690}
2691
2692bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2693{
2694 struct blk_mq_hw_ctx *hctx;
2695 struct blk_plug *plug;
2696 struct request *rq;
2697
2698 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2699 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2700 return false;
2701
2702 plug = current->plug;
2703 if (plug)
2704 blk_flush_plug_list(plug, false);
2705
2706 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
2707 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2708
2709 return __blk_mq_poll(hctx, rq);
2710}
2711EXPORT_SYMBOL_GPL(blk_mq_poll);
2712
Jens Axboe676141e2014-03-20 13:29:18 -06002713void blk_mq_disable_hotplug(void)
2714{
2715 mutex_lock(&all_q_mutex);
2716}
2717
2718void blk_mq_enable_hotplug(void)
2719{
2720 mutex_unlock(&all_q_mutex);
2721}
2722
Jens Axboe320ae512013-10-24 09:20:05 +01002723static int __init blk_mq_init(void)
2724{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002725 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2726 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002727
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002728 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2729 blk_mq_queue_reinit_prepare,
2730 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002731 return 0;
2732}
2733subsys_initcall(blk_mq_init);