blob: dbae586602f6f00f3f297a703fbfba1d8c867f8b [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>
Ingo Molnar105ab3d2017-02-01 16:36:40 +010023#include <linux/sched/topology.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Jens Axboe320ae512013-10-24 09:20:05 +010025#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060026#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060027#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010028
29#include <trace/events/block.h>
30
31#include <linux/blk-mq.h>
32#include "blk.h"
33#include "blk-mq.h"
Omar Sandoval9c1051a2017-05-04 08:17:21 -060034#include "blk-mq-debugfs.h"
Jens Axboe320ae512013-10-24 09:20:05 +010035#include "blk-mq-tag.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070036#include "blk-stat.h"
Jens Axboe87760e52016-11-09 12:38:14 -070037#include "blk-wbt.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070038#include "blk-mq-sched.h"
Jens Axboe320ae512013-10-24 09:20:05 +010039
40static DEFINE_MUTEX(all_q_mutex);
41static LIST_HEAD(all_q_list);
42
Omar Sandoval34dbad52017-03-21 08:56:08 -070043static void blk_mq_poll_stats_start(struct request_queue *q);
44static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
Jens Axboe2719aa22017-05-03 11:08:14 -060045static void __blk_mq_stop_hw_queues(struct request_queue *q, bool sync);
Omar Sandoval34dbad52017-03-21 08:56:08 -070046
Stephen Bates720b8cc2017-04-07 06:24:03 -060047static int blk_mq_poll_stats_bkt(const struct request *rq)
48{
49 int ddir, bytes, bucket;
50
Jens Axboe99c749a2017-04-21 07:55:42 -060051 ddir = rq_data_dir(rq);
Stephen Bates720b8cc2017-04-07 06:24:03 -060052 bytes = blk_rq_bytes(rq);
53
54 bucket = ddir + 2*(ilog2(bytes) - 9);
55
56 if (bucket < 0)
57 return -1;
58 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
59 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
60
61 return bucket;
62}
63
Jens Axboe320ae512013-10-24 09:20:05 +010064/*
65 * Check if any of the ctx's have pending work in this hardware queue
66 */
Jens Axboe50e1dab2017-01-26 14:42:34 -070067bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010068{
Jens Axboebd166ef2017-01-17 06:03:22 -070069 return sbitmap_any_bit_set(&hctx->ctx_map) ||
70 !list_empty_careful(&hctx->dispatch) ||
71 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +010072}
73
74/*
75 * Mark this ctx as having pending work in this hardware queue
76 */
77static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
78 struct blk_mq_ctx *ctx)
79{
Omar Sandoval88459642016-09-17 08:38:44 -060080 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
81 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060082}
83
84static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
85 struct blk_mq_ctx *ctx)
86{
Omar Sandoval88459642016-09-17 08:38:44 -060087 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010088}
89
Ming Lei1671d522017-03-27 20:06:57 +080090void blk_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080091{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020092 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040093
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020094 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
95 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040096 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040097 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040098 }
Tejun Heof3af0202014-11-04 13:52:27 -050099}
Ming Lei1671d522017-03-27 20:06:57 +0800100EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500101
Keith Busch6bae3632017-03-01 14:22:10 -0500102void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500103{
Dan Williams3ef28e82015-10-21 13:20:12 -0400104 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800105}
Keith Busch6bae3632017-03-01 14:22:10 -0500106EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800107
Keith Buschf91328c2017-03-01 14:22:11 -0500108int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
109 unsigned long timeout)
110{
111 return wait_event_timeout(q->mq_freeze_wq,
112 percpu_ref_is_zero(&q->q_usage_counter),
113 timeout);
114}
115EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
Jens Axboe320ae512013-10-24 09:20:05 +0100116
Tejun Heof3af0202014-11-04 13:52:27 -0500117/*
118 * Guarantee no request is in use, so we can change any data structure of
119 * the queue afterward.
120 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400121void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500122{
Dan Williams3ef28e82015-10-21 13:20:12 -0400123 /*
124 * In the !blk_mq case we are only calling this to kill the
125 * q_usage_counter, otherwise this increases the freeze depth
126 * and waits for it to return to zero. For this reason there is
127 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
128 * exported to drivers as the only user for unfreeze is blk_mq.
129 */
Ming Lei1671d522017-03-27 20:06:57 +0800130 blk_freeze_queue_start(q);
Tejun Heof3af0202014-11-04 13:52:27 -0500131 blk_mq_freeze_queue_wait(q);
132}
Dan Williams3ef28e82015-10-21 13:20:12 -0400133
134void blk_mq_freeze_queue(struct request_queue *q)
135{
136 /*
137 * ...just an alias to keep freeze and unfreeze actions balanced
138 * in the blk_mq_* namespace
139 */
140 blk_freeze_queue(q);
141}
Jens Axboec761d962015-01-02 15:05:12 -0700142EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500143
Keith Buschb4c6a022014-12-19 17:54:14 -0700144void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100145{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200146 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100147
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200148 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
149 WARN_ON_ONCE(freeze_depth < 0);
150 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400151 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100152 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600153 }
Jens Axboe320ae512013-10-24 09:20:05 +0100154}
Keith Buschb4c6a022014-12-19 17:54:14 -0700155EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100156
Bart Van Assche6a83e742016-11-02 10:09:51 -0600157/**
Ming Lei69e07c42017-06-06 23:22:07 +0800158 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
Bart Van Assche6a83e742016-11-02 10:09:51 -0600159 * @q: request queue.
160 *
161 * Note: this function does not prevent that the struct request end_io()
Ming Lei69e07c42017-06-06 23:22:07 +0800162 * callback function is invoked. Once this function is returned, we make
163 * sure no dispatch can happen until the queue is unquiesced via
164 * blk_mq_unquiesce_queue().
Bart Van Assche6a83e742016-11-02 10:09:51 -0600165 */
166void blk_mq_quiesce_queue(struct request_queue *q)
167{
168 struct blk_mq_hw_ctx *hctx;
169 unsigned int i;
170 bool rcu = false;
171
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800172 blk_mq_quiesce_queue_nowait(q);
Ming Leif4560ff2017-06-18 14:24:27 -0600173
Bart Van Assche6a83e742016-11-02 10:09:51 -0600174 queue_for_each_hw_ctx(q, hctx, i) {
175 if (hctx->flags & BLK_MQ_F_BLOCKING)
176 synchronize_srcu(&hctx->queue_rq_srcu);
177 else
178 rcu = true;
179 }
180 if (rcu)
181 synchronize_rcu();
182}
183EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
184
Ming Leie4e73912017-06-06 23:22:03 +0800185/*
186 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
187 * @q: request queue.
188 *
189 * This function recovers queue into the state before quiescing
190 * which is done by blk_mq_quiesce_queue.
191 */
192void blk_mq_unquiesce_queue(struct request_queue *q)
193{
Ming Leif4560ff2017-06-18 14:24:27 -0600194 spin_lock_irq(q->queue_lock);
195 queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
196 spin_unlock_irq(q->queue_lock);
197
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800198 /* dispatch requests which are inserted during quiescing */
199 blk_mq_run_hw_queues(q, true);
Ming Leie4e73912017-06-06 23:22:03 +0800200}
201EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
202
Jens Axboeaed3ea92014-12-22 14:04:42 -0700203void blk_mq_wake_waiters(struct request_queue *q)
204{
205 struct blk_mq_hw_ctx *hctx;
206 unsigned int i;
207
208 queue_for_each_hw_ctx(q, hctx, i)
209 if (blk_mq_hw_queue_mapped(hctx))
210 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700211
212 /*
213 * If we are called because the queue has now been marked as
214 * dying, we need to ensure that processes currently waiting on
215 * the queue are notified as well.
216 */
217 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700218}
219
Jens Axboe320ae512013-10-24 09:20:05 +0100220bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
221{
222 return blk_mq_has_free_tags(hctx->tags);
223}
224EXPORT_SYMBOL(blk_mq_can_queue);
225
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200226static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
227 unsigned int tag, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100228{
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200229 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
230 struct request *rq = tags->static_rqs[tag];
231
232 if (data->flags & BLK_MQ_REQ_INTERNAL) {
233 rq->tag = -1;
234 rq->internal_tag = tag;
235 } else {
236 if (blk_mq_tag_busy(data->hctx)) {
237 rq->rq_flags = RQF_MQ_INFLIGHT;
238 atomic_inc(&data->hctx->nr_active);
239 }
240 rq->tag = tag;
241 rq->internal_tag = -1;
242 data->hctx->tags->rqs[rq->tag] = rq;
243 }
244
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200245 INIT_LIST_HEAD(&rq->queuelist);
246 /* csd/requeue_work/fifo_time is initialized before use */
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200247 rq->q = data->q;
248 rq->mq_ctx = data->ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600249 rq->cmd_flags = op;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200250 if (blk_queue_io_stat(data->q))
Christoph Hellwige8064022016-10-20 15:12:13 +0200251 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200252 /* do not touch atomic flags, it needs atomic ops against the timer */
253 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200254 INIT_HLIST_NODE(&rq->hash);
255 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200256 rq->rq_disk = NULL;
257 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600258 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200259#ifdef CONFIG_BLK_CGROUP
260 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700261 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200262 rq->io_start_time_ns = 0;
263#endif
264 rq->nr_phys_segments = 0;
265#if defined(CONFIG_BLK_DEV_INTEGRITY)
266 rq->nr_integrity_segments = 0;
267#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200268 rq->special = NULL;
269 /* tag was already set */
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200270 rq->extra_len = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200271
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200272 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600273 rq->timeout = 0;
274
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200275 rq->end_io = NULL;
276 rq->end_io_data = NULL;
277 rq->next_rq = NULL;
278
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200279 data->ctx->rq_dispatched[op_is_sync(op)]++;
280 return rq;
Jens Axboe320ae512013-10-24 09:20:05 +0100281}
282
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200283static struct request *blk_mq_get_request(struct request_queue *q,
284 struct bio *bio, unsigned int op,
285 struct blk_mq_alloc_data *data)
286{
287 struct elevator_queue *e = q->elevator;
288 struct request *rq;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200289 unsigned int tag;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200290
291 blk_queue_enter_live(q);
292 data->q = q;
293 if (likely(!data->ctx))
294 data->ctx = blk_mq_get_ctx(q);
295 if (likely(!data->hctx))
296 data->hctx = blk_mq_map_queue(q, data->ctx->cpu);
297
298 if (e) {
299 data->flags |= BLK_MQ_REQ_INTERNAL;
300
301 /*
302 * Flush requests are special and go directly to the
303 * dispatch list.
304 */
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200305 if (!op_is_flush(op) && e->type->ops.mq.limit_depth)
306 e->type->ops.mq.limit_depth(op, data);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200307 }
308
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200309 tag = blk_mq_get_tag(data);
310 if (tag == BLK_MQ_TAG_FAIL) {
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200311 blk_queue_exit(q);
312 return NULL;
313 }
314
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200315 rq = blk_mq_rq_ctx_init(data, tag, op);
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200316 if (!op_is_flush(op)) {
317 rq->elv.icq = NULL;
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200318 if (e && e->type->ops.mq.prepare_request) {
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +0200319 if (e->type->icq_cache && rq_ioc(bio))
320 blk_mq_sched_assign_ioc(rq, bio);
321
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200322 e->type->ops.mq.prepare_request(rq, bio);
323 rq->rq_flags |= RQF_ELVPRIV;
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +0200324 }
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200325 }
326 data->hctx->queued++;
327 return rq;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200328}
329
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100330struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
331 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100332{
Jens Axboe5a797e02017-01-26 12:22:11 -0700333 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Jens Axboebd166ef2017-01-17 06:03:22 -0700334 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600335 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100336
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100337 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600338 if (ret)
339 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100340
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200341 rq = blk_mq_get_request(q, NULL, rw, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600342
Jens Axboebd166ef2017-01-17 06:03:22 -0700343 blk_mq_put_ctx(alloc_data.ctx);
344 blk_queue_exit(q);
345
346 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600347 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200348
349 rq->__data_len = 0;
350 rq->__sector = (sector_t) -1;
351 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100352 return rq;
353}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600354EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100355
Ming Lin1f5bd332016-06-13 16:45:21 +0200356struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
357 unsigned int flags, unsigned int hctx_idx)
358{
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800359 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Ming Lin1f5bd332016-06-13 16:45:21 +0200360 struct request *rq;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800361 unsigned int cpu;
Ming Lin1f5bd332016-06-13 16:45:21 +0200362 int ret;
363
364 /*
365 * If the tag allocator sleeps we could get an allocation for a
366 * different hardware context. No need to complicate the low level
367 * allocator for this for the rare use case of a command tied to
368 * a specific queue.
369 */
370 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
371 return ERR_PTR(-EINVAL);
372
373 if (hctx_idx >= q->nr_hw_queues)
374 return ERR_PTR(-EIO);
375
376 ret = blk_queue_enter(q, true);
377 if (ret)
378 return ERR_PTR(ret);
379
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600380 /*
381 * Check if the hardware context is actually mapped to anything.
382 * If not tell the caller that it should skip this queue.
383 */
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800384 alloc_data.hctx = q->queue_hw_ctx[hctx_idx];
385 if (!blk_mq_hw_queue_mapped(alloc_data.hctx)) {
386 blk_queue_exit(q);
387 return ERR_PTR(-EXDEV);
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600388 }
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800389 cpu = cpumask_first(alloc_data.hctx->cpumask);
390 alloc_data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200391
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200392 rq = blk_mq_get_request(q, NULL, rw, &alloc_data);
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800393
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800394 blk_queue_exit(q);
395
396 if (!rq)
397 return ERR_PTR(-EWOULDBLOCK);
Ming Lin1f5bd332016-06-13 16:45:21 +0200398
399 return rq;
400}
401EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
402
Christoph Hellwig6af54052017-06-16 18:15:22 +0200403void blk_mq_free_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100404{
Jens Axboe320ae512013-10-24 09:20:05 +0100405 struct request_queue *q = rq->q;
Christoph Hellwig6af54052017-06-16 18:15:22 +0200406 struct elevator_queue *e = q->elevator;
407 struct blk_mq_ctx *ctx = rq->mq_ctx;
408 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
409 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100410
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200411 if (rq->rq_flags & RQF_ELVPRIV) {
Christoph Hellwig6af54052017-06-16 18:15:22 +0200412 if (e && e->type->ops.mq.finish_request)
413 e->type->ops.mq.finish_request(rq);
414 if (rq->elv.icq) {
415 put_io_context(rq->elv.icq->ioc);
416 rq->elv.icq = NULL;
417 }
418 }
419
420 ctx->rq_completed[rq_is_sync(rq)]++;
Christoph Hellwige8064022016-10-20 15:12:13 +0200421 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600422 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700423
424 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200425 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600426
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200427 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700428 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700429 if (rq->tag != -1)
430 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
431 if (sched_tag != -1)
Omar Sandovalc05f8522017-04-14 01:00:01 -0700432 blk_mq_put_tag(hctx, hctx->sched_tags, ctx, sched_tag);
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600433 blk_mq_sched_restart(hctx);
Dan Williams3ef28e82015-10-21 13:20:12 -0400434 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100435}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700436EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100437
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200438inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
Jens Axboe320ae512013-10-24 09:20:05 +0100439{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700440 blk_account_io_done(rq);
441
Christoph Hellwig91b63632014-04-16 09:44:53 +0200442 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700443 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100444 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200445 } else {
446 if (unlikely(blk_bidi_rq(rq)))
447 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100448 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200449 }
Jens Axboe320ae512013-10-24 09:20:05 +0100450}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700451EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200452
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200453void blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200454{
455 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
456 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700457 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200458}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700459EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100460
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800461static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100462{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800463 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100464
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800465 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100466}
467
Christoph Hellwig453f8342017-04-20 16:03:10 +0200468static void __blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100469{
470 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700471 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100472 int cpu;
473
Christoph Hellwig453f8342017-04-20 16:03:10 +0200474 if (rq->internal_tag != -1)
475 blk_mq_sched_completed_request(rq);
476 if (rq->rq_flags & RQF_STATS) {
477 blk_mq_poll_stats_start(rq->q);
478 blk_stat_add(rq);
479 }
480
Christoph Hellwig38535202014-04-25 02:32:53 -0700481 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800482 rq->q->softirq_done_fn(rq);
483 return;
484 }
Jens Axboe320ae512013-10-24 09:20:05 +0100485
486 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700487 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
488 shared = cpus_share_cache(cpu, ctx->cpu);
489
490 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800491 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800492 rq->csd.info = rq;
493 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100494 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800495 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800496 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800497 }
Jens Axboe320ae512013-10-24 09:20:05 +0100498 put_cpu();
499}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800500
501/**
502 * blk_mq_complete_request - end I/O on a request
503 * @rq: the request being processed
504 *
505 * Description:
506 * Ends all I/O on a request. It does not handle partial completions.
507 * The actual completion happens out-of-order, through a IPI handler.
508 **/
Christoph Hellwig08e00292017-04-20 16:03:09 +0200509void blk_mq_complete_request(struct request *rq)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800510{
Jens Axboe95f09682014-05-27 17:46:48 -0600511 struct request_queue *q = rq->q;
512
513 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800514 return;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200515 if (!blk_mark_rq_complete(rq))
Jens Axboeed851862014-05-30 21:20:50 -0600516 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800517}
518EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100519
Keith Busch973c0192015-01-07 18:55:43 -0700520int blk_mq_request_started(struct request *rq)
521{
522 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
523}
524EXPORT_SYMBOL_GPL(blk_mq_request_started);
525
Christoph Hellwige2490072014-09-13 16:40:09 -0700526void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100527{
528 struct request_queue *q = rq->q;
529
Jens Axboebd166ef2017-01-17 06:03:22 -0700530 blk_mq_sched_started_request(rq);
531
Jens Axboe320ae512013-10-24 09:20:05 +0100532 trace_block_rq_issue(q, rq);
533
Jens Axboecf43e6b2016-11-07 21:32:37 -0700534 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
Shaohua Li88eeca42017-03-27 15:19:41 -0700535 blk_stat_set_issue(&rq->issue_stat, blk_rq_sectors(rq));
Jens Axboecf43e6b2016-11-07 21:32:37 -0700536 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700537 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700538 }
539
Ming Lei2b8393b2014-06-10 00:16:41 +0800540 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600541
542 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600543 * Ensure that ->deadline is visible before set the started
544 * flag and clear the completed flag.
545 */
546 smp_mb__before_atomic();
547
548 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600549 * Mark us as started and clear complete. Complete might have been
550 * set if requeue raced with timeout, which then marked it as
551 * complete. So be sure to clear complete again when we start
552 * the request, otherwise we'll ignore the completion event.
553 */
Jens Axboe4b570522014-05-29 11:00:11 -0600554 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
555 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
556 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
557 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800558
559 if (q->dma_drain_size && blk_rq_bytes(rq)) {
560 /*
561 * Make sure space for the drain appears. We know we can do
562 * this because max_hw_segments has been adjusted to be one
563 * fewer than the device can handle.
564 */
565 rq->nr_phys_segments++;
566 }
Jens Axboe320ae512013-10-24 09:20:05 +0100567}
Christoph Hellwige2490072014-09-13 16:40:09 -0700568EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100569
Ming Leid9d149a2017-03-27 20:06:55 +0800570/*
571 * When we reach here because queue is busy, REQ_ATOM_COMPLETE
Jens Axboe48b99c92017-03-29 11:10:34 -0600572 * flag isn't set yet, so there may be race with timeout handler,
Ming Leid9d149a2017-03-27 20:06:55 +0800573 * but given rq->deadline is just set in .queue_rq() under
574 * this situation, the race won't be possible in reality because
575 * rq->timeout should be set as big enough to cover the window
576 * between blk_mq_start_request() called from .queue_rq() and
577 * clearing REQ_ATOM_STARTED here.
578 */
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200579static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100580{
581 struct request_queue *q = rq->q;
582
583 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700584 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700585 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800586
Christoph Hellwige2490072014-09-13 16:40:09 -0700587 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
588 if (q->dma_drain_size && blk_rq_bytes(rq))
589 rq->nr_phys_segments--;
590 }
Jens Axboe320ae512013-10-24 09:20:05 +0100591}
592
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700593void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200594{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200595 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200596
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200597 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700598 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200599}
600EXPORT_SYMBOL(blk_mq_requeue_request);
601
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600602static void blk_mq_requeue_work(struct work_struct *work)
603{
604 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400605 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600606 LIST_HEAD(rq_list);
607 struct request *rq, *next;
608 unsigned long flags;
609
610 spin_lock_irqsave(&q->requeue_lock, flags);
611 list_splice_init(&q->requeue_list, &rq_list);
612 spin_unlock_irqrestore(&q->requeue_lock, flags);
613
614 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200615 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600616 continue;
617
Christoph Hellwige8064022016-10-20 15:12:13 +0200618 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600619 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700620 blk_mq_sched_insert_request(rq, true, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600621 }
622
623 while (!list_empty(&rq_list)) {
624 rq = list_entry(rq_list.next, struct request, queuelist);
625 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700626 blk_mq_sched_insert_request(rq, false, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600627 }
628
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700629 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600630}
631
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700632void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
633 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600634{
635 struct request_queue *q = rq->q;
636 unsigned long flags;
637
638 /*
639 * We abuse this flag that is otherwise used by the I/O scheduler to
640 * request head insertation from the workqueue.
641 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200642 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600643
644 spin_lock_irqsave(&q->requeue_lock, flags);
645 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200646 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600647 list_add(&rq->queuelist, &q->requeue_list);
648 } else {
649 list_add_tail(&rq->queuelist, &q->requeue_list);
650 }
651 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700652
653 if (kick_requeue_list)
654 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600655}
656EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
657
658void blk_mq_kick_requeue_list(struct request_queue *q)
659{
Mike Snitzer28494502016-09-14 13:28:30 -0400660 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600661}
662EXPORT_SYMBOL(blk_mq_kick_requeue_list);
663
Mike Snitzer28494502016-09-14 13:28:30 -0400664void blk_mq_delay_kick_requeue_list(struct request_queue *q,
665 unsigned long msecs)
666{
667 kblockd_schedule_delayed_work(&q->requeue_work,
668 msecs_to_jiffies(msecs));
669}
670EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
671
Jens Axboe0e62f512014-06-04 10:23:49 -0600672struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
673{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600674 if (tag < tags->nr_tags) {
675 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700676 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600677 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700678
679 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600680}
681EXPORT_SYMBOL(blk_mq_tag_to_rq);
682
Jens Axboe320ae512013-10-24 09:20:05 +0100683struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700684 unsigned long next;
685 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100686};
687
Christoph Hellwig90415832014-09-22 10:21:48 -0600688void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100689{
Jens Axboef8a5b122016-12-13 09:24:51 -0700690 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700691 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600692
693 /*
694 * We know that complete is set at this point. If STARTED isn't set
695 * anymore, then the request isn't active and the "timeout" should
696 * just be ignored. This can happen due to the bitflag ordering.
697 * Timeout first checks if STARTED is set, and if it is, assumes
698 * the request is active. But if we race with completion, then
Jens Axboe48b99c92017-03-29 11:10:34 -0600699 * both flags will get cleared. So check here again, and ignore
Jens Axboe87ee7b12014-04-24 08:51:47 -0600700 * a timeout event with a request that isn't active.
701 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700702 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
703 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600704
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700705 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700706 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600707
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700708 switch (ret) {
709 case BLK_EH_HANDLED:
710 __blk_mq_complete_request(req);
711 break;
712 case BLK_EH_RESET_TIMER:
713 blk_add_timer(req);
714 blk_clear_rq_complete(req);
715 break;
716 case BLK_EH_NOT_HANDLED:
717 break;
718 default:
719 printk(KERN_ERR "block: bad eh return: %d\n", ret);
720 break;
721 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600722}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700723
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700724static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
725 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100726{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700727 struct blk_mq_timeout_data *data = priv;
728
Ming Lei95a49602017-03-22 10:14:43 +0800729 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700730 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100731
Ming Leid9d149a2017-03-27 20:06:55 +0800732 /*
733 * The rq being checked may have been freed and reallocated
734 * out already here, we avoid this race by checking rq->deadline
735 * and REQ_ATOM_COMPLETE flag together:
736 *
737 * - if rq->deadline is observed as new value because of
738 * reusing, the rq won't be timed out because of timing.
739 * - if rq->deadline is observed as previous value,
740 * REQ_ATOM_COMPLETE flag won't be cleared in reuse path
741 * because we put a barrier between setting rq->deadline
742 * and clearing the flag in blk_mq_start_request(), so
743 * this rq won't be timed out too.
744 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700745 if (time_after_eq(jiffies, rq->deadline)) {
746 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700747 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700748 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
749 data->next = rq->deadline;
750 data->next_set = 1;
751 }
Jens Axboe320ae512013-10-24 09:20:05 +0100752}
753
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800754static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100755{
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800756 struct request_queue *q =
757 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700758 struct blk_mq_timeout_data data = {
759 .next = 0,
760 .next_set = 0,
761 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700762 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100763
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600764 /* A deadlock might occur if a request is stuck requiring a
765 * timeout at the same time a queue freeze is waiting
766 * completion, since the timeout code would not be able to
767 * acquire the queue reference here.
768 *
769 * That's why we don't use blk_queue_enter here; instead, we use
770 * percpu_ref_tryget directly, because we need to be able to
771 * obtain a reference even in the short window between the queue
772 * starting to freeze, by dropping the first reference in
Ming Lei1671d522017-03-27 20:06:57 +0800773 * blk_freeze_queue_start, and the moment the last request is
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600774 * consumed, marked by the instant q_usage_counter reaches
775 * zero.
776 */
777 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800778 return;
779
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200780 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100781
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700782 if (data.next_set) {
783 data.next = blk_rq_timeout(round_jiffies_up(data.next));
784 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600785 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200786 struct blk_mq_hw_ctx *hctx;
787
Ming Leif054b562015-04-21 10:00:19 +0800788 queue_for_each_hw_ctx(q, hctx, i) {
789 /* the hctx may be unmapped, so check it here */
790 if (blk_mq_hw_queue_mapped(hctx))
791 blk_mq_tag_idle(hctx);
792 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600793 }
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800794 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100795}
796
Omar Sandoval88459642016-09-17 08:38:44 -0600797struct flush_busy_ctx_data {
798 struct blk_mq_hw_ctx *hctx;
799 struct list_head *list;
800};
801
802static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
803{
804 struct flush_busy_ctx_data *flush_data = data;
805 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
806 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
807
808 sbitmap_clear_bit(sb, bitnr);
809 spin_lock(&ctx->lock);
810 list_splice_tail_init(&ctx->rq_list, flush_data->list);
811 spin_unlock(&ctx->lock);
812 return true;
813}
814
Jens Axboe320ae512013-10-24 09:20:05 +0100815/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600816 * Process software queues that have been marked busy, splicing them
817 * to the for-dispatch
818 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700819void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600820{
Omar Sandoval88459642016-09-17 08:38:44 -0600821 struct flush_busy_ctx_data data = {
822 .hctx = hctx,
823 .list = list,
824 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600825
Omar Sandoval88459642016-09-17 08:38:44 -0600826 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600827}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700828EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600829
Jens Axboe703fd1c2016-09-16 13:59:14 -0600830static inline unsigned int queued_to_index(unsigned int queued)
831{
832 if (!queued)
833 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600834
Jens Axboe703fd1c2016-09-16 13:59:14 -0600835 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600836}
837
Jens Axboebd6737f2017-01-27 01:00:47 -0700838bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx,
839 bool wait)
Jens Axboebd166ef2017-01-17 06:03:22 -0700840{
841 struct blk_mq_alloc_data data = {
842 .q = rq->q,
Jens Axboebd166ef2017-01-17 06:03:22 -0700843 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
844 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
845 };
846
Jens Axboe5feeacd2017-04-20 17:23:13 -0600847 might_sleep_if(wait);
848
Omar Sandoval81380ca2017-04-07 08:56:26 -0600849 if (rq->tag != -1)
850 goto done;
Jens Axboebd166ef2017-01-17 06:03:22 -0700851
Sagi Grimberg415b8062017-02-27 10:04:39 -0700852 if (blk_mq_tag_is_reserved(data.hctx->sched_tags, rq->internal_tag))
853 data.flags |= BLK_MQ_REQ_RESERVED;
854
Jens Axboebd166ef2017-01-17 06:03:22 -0700855 rq->tag = blk_mq_get_tag(&data);
856 if (rq->tag >= 0) {
Jens Axboe200e86b2017-01-25 08:11:38 -0700857 if (blk_mq_tag_busy(data.hctx)) {
858 rq->rq_flags |= RQF_MQ_INFLIGHT;
859 atomic_inc(&data.hctx->nr_active);
860 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700861 data.hctx->tags->rqs[rq->tag] = rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700862 }
863
Omar Sandoval81380ca2017-04-07 08:56:26 -0600864done:
865 if (hctx)
866 *hctx = data.hctx;
867 return rq->tag != -1;
Jens Axboebd166ef2017-01-17 06:03:22 -0700868}
869
Jens Axboe113285b2017-03-02 13:26:04 -0700870static void __blk_mq_put_driver_tag(struct blk_mq_hw_ctx *hctx,
871 struct request *rq)
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700872{
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700873 blk_mq_put_tag(hctx, hctx->tags, rq->mq_ctx, rq->tag);
874 rq->tag = -1;
875
876 if (rq->rq_flags & RQF_MQ_INFLIGHT) {
877 rq->rq_flags &= ~RQF_MQ_INFLIGHT;
878 atomic_dec(&hctx->nr_active);
879 }
880}
881
Jens Axboe113285b2017-03-02 13:26:04 -0700882static void blk_mq_put_driver_tag_hctx(struct blk_mq_hw_ctx *hctx,
883 struct request *rq)
884{
885 if (rq->tag == -1 || rq->internal_tag == -1)
886 return;
887
888 __blk_mq_put_driver_tag(hctx, rq);
889}
890
891static void blk_mq_put_driver_tag(struct request *rq)
892{
893 struct blk_mq_hw_ctx *hctx;
894
895 if (rq->tag == -1 || rq->internal_tag == -1)
896 return;
897
898 hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu);
899 __blk_mq_put_driver_tag(hctx, rq);
900}
901
Jens Axboebd166ef2017-01-17 06:03:22 -0700902/*
903 * If we fail getting a driver tag because all the driver tags are already
904 * assigned and on the dispatch list, BUT the first entry does not have a
905 * tag, then we could deadlock. For that case, move entries with assigned
906 * driver tags to the front, leaving the set of tagged requests in the
907 * same order, and the untagged set in the same order.
908 */
909static bool reorder_tags_to_front(struct list_head *list)
910{
911 struct request *rq, *tmp, *first = NULL;
912
913 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
914 if (rq == first)
915 break;
916 if (rq->tag != -1) {
917 list_move(&rq->queuelist, list);
918 if (!first)
919 first = rq;
920 }
921 }
922
923 return first != NULL;
924}
925
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800926static int blk_mq_dispatch_wake(wait_queue_t *wait, unsigned mode, int flags,
927 void *key)
928{
929 struct blk_mq_hw_ctx *hctx;
930
931 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
932
933 list_del(&wait->task_list);
934 clear_bit_unlock(BLK_MQ_S_TAG_WAITING, &hctx->state);
935 blk_mq_run_hw_queue(hctx, true);
936 return 1;
937}
938
939static bool blk_mq_dispatch_wait_add(struct blk_mq_hw_ctx *hctx)
940{
941 struct sbq_wait_state *ws;
942
943 /*
944 * The TAG_WAITING bit serves as a lock protecting hctx->dispatch_wait.
945 * The thread which wins the race to grab this bit adds the hardware
946 * queue to the wait queue.
947 */
948 if (test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state) ||
949 test_and_set_bit_lock(BLK_MQ_S_TAG_WAITING, &hctx->state))
950 return false;
951
952 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
953 ws = bt_wait_ptr(&hctx->tags->bitmap_tags, hctx);
954
955 /*
956 * As soon as this returns, it's no longer safe to fiddle with
957 * hctx->dispatch_wait, since a completion can wake up the wait queue
958 * and unlock the bit.
959 */
960 add_wait_queue(&ws->wait, &hctx->dispatch_wait);
961 return true;
962}
963
Omar Sandoval81380ca2017-04-07 08:56:26 -0600964bool blk_mq_dispatch_rq_list(struct request_queue *q, struct list_head *list)
Jens Axboef04c3df2016-12-07 08:41:17 -0700965{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600966 struct blk_mq_hw_ctx *hctx;
Jens Axboef04c3df2016-12-07 08:41:17 -0700967 struct request *rq;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200968 int errors, queued;
Jens Axboef04c3df2016-12-07 08:41:17 -0700969
Omar Sandoval81380ca2017-04-07 08:56:26 -0600970 if (list_empty(list))
971 return false;
972
Jens Axboef04c3df2016-12-07 08:41:17 -0700973 /*
Jens Axboef04c3df2016-12-07 08:41:17 -0700974 * Now process all the entries, sending them to the driver.
975 */
Jens Axboe93efe982017-03-24 12:04:19 -0600976 errors = queued = 0;
Omar Sandoval81380ca2017-04-07 08:56:26 -0600977 do {
Jens Axboef04c3df2016-12-07 08:41:17 -0700978 struct blk_mq_queue_data bd;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200979 blk_status_t ret;
Jens Axboef04c3df2016-12-07 08:41:17 -0700980
981 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700982 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
983 if (!queued && reorder_tags_to_front(list))
984 continue;
Jens Axboe3c782d62017-01-26 12:50:36 -0700985
986 /*
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800987 * The initial allocation attempt failed, so we need to
988 * rerun the hardware queue when a tag is freed.
Jens Axboe3c782d62017-01-26 12:50:36 -0700989 */
Omar Sandoval807b1042017-04-05 12:01:35 -0700990 if (!blk_mq_dispatch_wait_add(hctx))
Jens Axboe3c782d62017-01-26 12:50:36 -0700991 break;
Omar Sandoval807b1042017-04-05 12:01:35 -0700992
993 /*
994 * It's possible that a tag was freed in the window
995 * between the allocation failure and adding the
996 * hardware queue to the wait queue.
997 */
998 if (!blk_mq_get_driver_tag(rq, &hctx, false))
999 break;
Jens Axboebd166ef2017-01-17 06:03:22 -07001000 }
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001001
Jens Axboef04c3df2016-12-07 08:41:17 -07001002 list_del_init(&rq->queuelist);
1003
1004 bd.rq = rq;
Jens Axboe113285b2017-03-02 13:26:04 -07001005
1006 /*
1007 * Flag last if we have no more requests, or if we have more
1008 * but can't assign a driver tag to it.
1009 */
1010 if (list_empty(list))
1011 bd.last = true;
1012 else {
1013 struct request *nxt;
1014
1015 nxt = list_first_entry(list, struct request, queuelist);
1016 bd.last = !blk_mq_get_driver_tag(nxt, NULL, false);
1017 }
Jens Axboef04c3df2016-12-07 08:41:17 -07001018
1019 ret = q->mq_ops->queue_rq(hctx, &bd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001020 if (ret == BLK_STS_RESOURCE) {
Jens Axboe113285b2017-03-02 13:26:04 -07001021 blk_mq_put_driver_tag_hctx(hctx, rq);
Jens Axboef04c3df2016-12-07 08:41:17 -07001022 list_add(&rq->queuelist, list);
1023 __blk_mq_requeue_request(rq);
1024 break;
Jens Axboef04c3df2016-12-07 08:41:17 -07001025 }
1026
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001027 if (unlikely(ret != BLK_STS_OK)) {
1028 errors++;
1029 blk_mq_end_request(rq, BLK_STS_IOERR);
1030 continue;
1031 }
1032
1033 queued++;
Omar Sandoval81380ca2017-04-07 08:56:26 -06001034 } while (!list_empty(list));
Jens Axboef04c3df2016-12-07 08:41:17 -07001035
1036 hctx->dispatched[queued_to_index(queued)]++;
1037
1038 /*
1039 * Any items that need requeuing? Stuff them into hctx->dispatch,
1040 * that is where we will continue on next queue run.
1041 */
1042 if (!list_empty(list)) {
Jens Axboe113285b2017-03-02 13:26:04 -07001043 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001044 * If an I/O scheduler has been configured and we got a driver
1045 * tag for the next request already, free it again.
Jens Axboe113285b2017-03-02 13:26:04 -07001046 */
1047 rq = list_first_entry(list, struct request, queuelist);
1048 blk_mq_put_driver_tag(rq);
1049
Jens Axboef04c3df2016-12-07 08:41:17 -07001050 spin_lock(&hctx->lock);
Jens Axboec13660a2017-01-26 12:40:07 -07001051 list_splice_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001052 spin_unlock(&hctx->lock);
1053
1054 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001055 * If SCHED_RESTART was set by the caller of this function and
1056 * it is no longer set that means that it was cleared by another
1057 * thread and hence that a queue rerun is needed.
Jens Axboef04c3df2016-12-07 08:41:17 -07001058 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001059 * If TAG_WAITING is set that means that an I/O scheduler has
1060 * been configured and another thread is waiting for a driver
1061 * tag. To guarantee fairness, do not rerun this hardware queue
1062 * but let the other thread grab the driver tag.
Jens Axboebd166ef2017-01-17 06:03:22 -07001063 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001064 * If no I/O scheduler has been configured it is possible that
1065 * the hardware queue got stopped and restarted before requests
1066 * were pushed back onto the dispatch list. Rerun the queue to
1067 * avoid starvation. Notes:
1068 * - blk_mq_run_hw_queue() checks whether or not a queue has
1069 * been stopped before rerunning a queue.
1070 * - Some but not all block drivers stop a queue before
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001071 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
Bart Van Assche710c7852017-04-07 11:16:51 -07001072 * and dm-rq.
Jens Axboebd166ef2017-01-17 06:03:22 -07001073 */
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001074 if (!blk_mq_sched_needs_restart(hctx) &&
1075 !test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state))
Jens Axboebd166ef2017-01-17 06:03:22 -07001076 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -07001077 }
1078
Jens Axboe93efe982017-03-24 12:04:19 -06001079 return (queued + errors) != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001080}
1081
Bart Van Assche6a83e742016-11-02 10:09:51 -06001082static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1083{
1084 int srcu_idx;
1085
1086 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1087 cpu_online(hctx->next_cpu));
1088
1089 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1090 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001091 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001092 rcu_read_unlock();
1093 } else {
Jens Axboebf4907c2017-03-30 12:30:39 -06001094 might_sleep();
1095
Bart Van Assche6a83e742016-11-02 10:09:51 -06001096 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001097 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001098 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1099 }
1100}
1101
Jens Axboe506e9312014-05-07 10:26:44 -06001102/*
1103 * It'd be great if the workqueue API had a way to pass
1104 * in a mask and had some smarts for more clever placement.
1105 * For now we just round-robin here, switching for every
1106 * BLK_MQ_CPU_WORK_BATCH queued items.
1107 */
1108static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1109{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001110 if (hctx->queue->nr_hw_queues == 1)
1111 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001112
1113 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001114 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001115
1116 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1117 if (next_cpu >= nr_cpu_ids)
1118 next_cpu = cpumask_first(hctx->cpumask);
1119
1120 hctx->next_cpu = next_cpu;
1121 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1122 }
1123
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001124 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001125}
1126
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001127static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1128 unsigned long msecs)
Jens Axboe320ae512013-10-24 09:20:05 +01001129{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001130 if (unlikely(blk_mq_hctx_stopped(hctx) ||
1131 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001132 return;
1133
Jens Axboe1b792f22016-09-21 10:12:13 -06001134 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001135 int cpu = get_cpu();
1136 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001137 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001138 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001139 return;
1140 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001141
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001142 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001143 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001144
Jens Axboe9f993732017-04-10 09:54:54 -06001145 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1146 &hctx->run_work,
1147 msecs_to_jiffies(msecs));
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001148}
1149
1150void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1151{
1152 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1153}
1154EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1155
1156void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1157{
1158 __blk_mq_delay_run_hw_queue(hctx, async, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01001159}
Omar Sandoval5b727272017-04-14 01:00:00 -07001160EXPORT_SYMBOL(blk_mq_run_hw_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01001161
Mike Snitzerb94ec292015-03-11 23:56:38 -04001162void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001163{
1164 struct blk_mq_hw_ctx *hctx;
1165 int i;
1166
1167 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001168 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001169 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001170 continue;
1171
Mike Snitzerb94ec292015-03-11 23:56:38 -04001172 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001173 }
1174}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001175EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001176
Bart Van Asschefd001442016-10-28 17:19:37 -07001177/**
1178 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1179 * @q: request queue.
1180 *
1181 * The caller is responsible for serializing this function against
1182 * blk_mq_{start,stop}_hw_queue().
1183 */
1184bool blk_mq_queue_stopped(struct request_queue *q)
1185{
1186 struct blk_mq_hw_ctx *hctx;
1187 int i;
1188
1189 queue_for_each_hw_ctx(q, hctx, i)
1190 if (blk_mq_hctx_stopped(hctx))
1191 return true;
1192
1193 return false;
1194}
1195EXPORT_SYMBOL(blk_mq_queue_stopped);
1196
Jens Axboe2719aa22017-05-03 11:08:14 -06001197static void __blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx, bool sync)
1198{
1199 if (sync)
1200 cancel_delayed_work_sync(&hctx->run_work);
1201 else
1202 cancel_delayed_work(&hctx->run_work);
1203
1204 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1205}
1206
Jens Axboe320ae512013-10-24 09:20:05 +01001207void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1208{
Jens Axboe2719aa22017-05-03 11:08:14 -06001209 __blk_mq_stop_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001210}
1211EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1212
Colin Ian Kingebd76852017-05-08 11:44:40 +01001213static void __blk_mq_stop_hw_queues(struct request_queue *q, bool sync)
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001214{
1215 struct blk_mq_hw_ctx *hctx;
1216 int i;
1217
1218 queue_for_each_hw_ctx(q, hctx, i)
Jens Axboe2719aa22017-05-03 11:08:14 -06001219 __blk_mq_stop_hw_queue(hctx, sync);
1220}
1221
1222void blk_mq_stop_hw_queues(struct request_queue *q)
1223{
1224 __blk_mq_stop_hw_queues(q, false);
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001225}
1226EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1227
Jens Axboe320ae512013-10-24 09:20:05 +01001228void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1229{
1230 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001231
Jens Axboe0ffbce82014-06-25 08:22:34 -06001232 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001233}
1234EXPORT_SYMBOL(blk_mq_start_hw_queue);
1235
Christoph Hellwig2f268552014-04-16 09:44:56 +02001236void blk_mq_start_hw_queues(struct request_queue *q)
1237{
1238 struct blk_mq_hw_ctx *hctx;
1239 int i;
1240
1241 queue_for_each_hw_ctx(q, hctx, i)
1242 blk_mq_start_hw_queue(hctx);
1243}
1244EXPORT_SYMBOL(blk_mq_start_hw_queues);
1245
Jens Axboeae911c52016-12-08 13:19:30 -07001246void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1247{
1248 if (!blk_mq_hctx_stopped(hctx))
1249 return;
1250
1251 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1252 blk_mq_run_hw_queue(hctx, async);
1253}
1254EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1255
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001256void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001257{
1258 struct blk_mq_hw_ctx *hctx;
1259 int i;
1260
Jens Axboeae911c52016-12-08 13:19:30 -07001261 queue_for_each_hw_ctx(q, hctx, i)
1262 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001263}
1264EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1265
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001266static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001267{
1268 struct blk_mq_hw_ctx *hctx;
1269
Jens Axboe9f993732017-04-10 09:54:54 -06001270 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboe21c6e932017-04-10 09:54:56 -06001271
1272 /*
1273 * If we are stopped, don't run the queue. The exception is if
1274 * BLK_MQ_S_START_ON_RUN is set. For that case, we auto-clear
1275 * the STOPPED bit and run it.
1276 */
1277 if (test_bit(BLK_MQ_S_STOPPED, &hctx->state)) {
1278 if (!test_bit(BLK_MQ_S_START_ON_RUN, &hctx->state))
1279 return;
1280
1281 clear_bit(BLK_MQ_S_START_ON_RUN, &hctx->state);
1282 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1283 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001284
Jens Axboe320ae512013-10-24 09:20:05 +01001285 __blk_mq_run_hw_queue(hctx);
1286}
1287
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001288
1289void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1290{
Ming Lei19c66e52014-12-03 19:38:04 +08001291 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1292 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001293
Jens Axboe21c6e932017-04-10 09:54:56 -06001294 /*
1295 * Stop the hw queue, then modify currently delayed work.
1296 * This should prevent us from running the queue prematurely.
1297 * Mark the queue as auto-clearing STOPPED when it runs.
1298 */
Jens Axboe7e79dad2017-01-19 07:58:59 -07001299 blk_mq_stop_hw_queue(hctx);
Jens Axboe21c6e932017-04-10 09:54:56 -06001300 set_bit(BLK_MQ_S_START_ON_RUN, &hctx->state);
1301 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1302 &hctx->run_work,
1303 msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001304}
1305EXPORT_SYMBOL(blk_mq_delay_queue);
1306
Ming Leicfd0c552015-10-20 23:13:57 +08001307static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001308 struct request *rq,
1309 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001310{
Jens Axboee57690f2016-08-24 15:34:35 -06001311 struct blk_mq_ctx *ctx = rq->mq_ctx;
1312
Jens Axboe01b983c2013-11-19 18:59:10 -07001313 trace_block_rq_insert(hctx->queue, rq);
1314
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001315 if (at_head)
1316 list_add(&rq->queuelist, &ctx->rq_list);
1317 else
1318 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001319}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001320
Jens Axboe2c3ad662016-12-14 14:34:47 -07001321void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1322 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001323{
1324 struct blk_mq_ctx *ctx = rq->mq_ctx;
1325
Jens Axboee57690f2016-08-24 15:34:35 -06001326 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001327 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001328}
1329
Jens Axboebd166ef2017-01-17 06:03:22 -07001330void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1331 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001332
1333{
Jens Axboe320ae512013-10-24 09:20:05 +01001334 /*
1335 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1336 * offline now
1337 */
1338 spin_lock(&ctx->lock);
1339 while (!list_empty(list)) {
1340 struct request *rq;
1341
1342 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001343 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001344 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001345 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001346 }
Ming Leicfd0c552015-10-20 23:13:57 +08001347 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001348 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001349}
1350
1351static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1352{
1353 struct request *rqa = container_of(a, struct request, queuelist);
1354 struct request *rqb = container_of(b, struct request, queuelist);
1355
1356 return !(rqa->mq_ctx < rqb->mq_ctx ||
1357 (rqa->mq_ctx == rqb->mq_ctx &&
1358 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1359}
1360
1361void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1362{
1363 struct blk_mq_ctx *this_ctx;
1364 struct request_queue *this_q;
1365 struct request *rq;
1366 LIST_HEAD(list);
1367 LIST_HEAD(ctx_list);
1368 unsigned int depth;
1369
1370 list_splice_init(&plug->mq_list, &list);
1371
1372 list_sort(NULL, &list, plug_ctx_cmp);
1373
1374 this_q = NULL;
1375 this_ctx = NULL;
1376 depth = 0;
1377
1378 while (!list_empty(&list)) {
1379 rq = list_entry_rq(list.next);
1380 list_del_init(&rq->queuelist);
1381 BUG_ON(!rq->q);
1382 if (rq->mq_ctx != this_ctx) {
1383 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001384 trace_block_unplug(this_q, depth, from_schedule);
1385 blk_mq_sched_insert_requests(this_q, this_ctx,
1386 &ctx_list,
1387 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001388 }
1389
1390 this_ctx = rq->mq_ctx;
1391 this_q = rq->q;
1392 depth = 0;
1393 }
1394
1395 depth++;
1396 list_add_tail(&rq->queuelist, &ctx_list);
1397 }
1398
1399 /*
1400 * If 'this_ctx' is set, we know we have entries to complete
1401 * on 'ctx_list'. Do those.
1402 */
1403 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001404 trace_block_unplug(this_q, depth, from_schedule);
1405 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1406 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001407 }
1408}
1409
1410static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1411{
Bart Van Asscheda8d7f02017-04-19 14:01:24 -07001412 blk_init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001413
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001414 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001415}
1416
Jens Axboe274a5842014-08-15 12:44:08 -06001417static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1418{
1419 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1420 !blk_queue_nomerges(hctx->queue);
1421}
1422
Ming Leiab42f352017-05-26 19:53:19 +08001423static inline void blk_mq_queue_io(struct blk_mq_hw_ctx *hctx,
1424 struct blk_mq_ctx *ctx,
1425 struct request *rq)
1426{
1427 spin_lock(&ctx->lock);
1428 __blk_mq_insert_request(hctx, rq, false);
1429 spin_unlock(&ctx->lock);
Jens Axboe07068d52014-05-22 10:40:51 -06001430}
1431
Jens Axboefd2d3322017-01-12 10:04:45 -07001432static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1433{
Jens Axboebd166ef2017-01-17 06:03:22 -07001434 if (rq->tag != -1)
1435 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1436
1437 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001438}
1439
Ming Leid964f042017-06-06 23:22:00 +08001440static void __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1441 struct request *rq,
1442 blk_qc_t *cookie, bool may_sleep)
Shaohua Lif984df12015-05-08 10:51:32 -07001443{
Shaohua Lif984df12015-05-08 10:51:32 -07001444 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001445 struct blk_mq_queue_data bd = {
1446 .rq = rq,
Omar Sandovald945a362017-04-05 12:01:36 -07001447 .last = true,
Shaohua Lif984df12015-05-08 10:51:32 -07001448 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001449 blk_qc_t new_cookie;
Jens Axboef06345a2017-06-12 11:22:46 -06001450 blk_status_t ret;
Ming Leid964f042017-06-06 23:22:00 +08001451 bool run_queue = true;
1452
Ming Leif4560ff2017-06-18 14:24:27 -06001453 /* RCU or SRCU read lock is needed before checking quiesced flag */
1454 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
Ming Leid964f042017-06-06 23:22:00 +08001455 run_queue = false;
1456 goto insert;
1457 }
Shaohua Lif984df12015-05-08 10:51:32 -07001458
Jens Axboebd166ef2017-01-17 06:03:22 -07001459 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001460 goto insert;
1461
Ming Leid964f042017-06-06 23:22:00 +08001462 if (!blk_mq_get_driver_tag(rq, NULL, false))
Jens Axboebd166ef2017-01-17 06:03:22 -07001463 goto insert;
1464
1465 new_cookie = request_to_qc_t(hctx, rq);
1466
Shaohua Lif984df12015-05-08 10:51:32 -07001467 /*
1468 * For OK queue, we are done. For error, kill it. Any other
1469 * error (busy), just add it to our list as we previously
1470 * would have done
1471 */
1472 ret = q->mq_ops->queue_rq(hctx, &bd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001473 switch (ret) {
1474 case BLK_STS_OK:
Jens Axboe7b371632015-11-05 10:41:40 -07001475 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001476 return;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001477 case BLK_STS_RESOURCE:
1478 __blk_mq_requeue_request(rq);
1479 goto insert;
1480 default:
Jens Axboe7b371632015-11-05 10:41:40 -07001481 *cookie = BLK_QC_T_NONE;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001482 blk_mq_end_request(rq, ret);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001483 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001484 }
1485
Bart Van Assche2253efc2016-10-28 17:20:02 -07001486insert:
Ming Leid964f042017-06-06 23:22:00 +08001487 blk_mq_sched_insert_request(rq, false, run_queue, false, may_sleep);
Shaohua Lif984df12015-05-08 10:51:32 -07001488}
1489
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001490static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1491 struct request *rq, blk_qc_t *cookie)
1492{
1493 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1494 rcu_read_lock();
Ming Leid964f042017-06-06 23:22:00 +08001495 __blk_mq_try_issue_directly(hctx, rq, cookie, false);
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001496 rcu_read_unlock();
1497 } else {
Jens Axboebf4907c2017-03-30 12:30:39 -06001498 unsigned int srcu_idx;
1499
1500 might_sleep();
1501
1502 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Ming Leid964f042017-06-06 23:22:00 +08001503 __blk_mq_try_issue_directly(hctx, rq, cookie, true);
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001504 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1505 }
1506}
1507
Jens Axboedece1632015-11-05 10:41:16 -07001508static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001509{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001510 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001511 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jens Axboe5a797e02017-01-26 12:22:11 -07001512 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001513 struct request *rq;
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001514 unsigned int request_count = 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001515 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001516 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001517 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001518 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001519
1520 blk_queue_bounce(q, &bio);
1521
NeilBrownaf67c312017-06-18 14:38:57 +10001522 blk_queue_split(q, &bio);
Wen Xiongf36ea502017-05-10 08:54:11 -05001523
Jens Axboe07068d52014-05-22 10:40:51 -06001524 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001525 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001526 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001527 }
1528
Omar Sandoval87c279e2016-06-01 22:18:48 -07001529 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1530 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1531 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001532
Jens Axboebd166ef2017-01-17 06:03:22 -07001533 if (blk_mq_sched_bio_merge(q, bio))
1534 return BLK_QC_T_NONE;
1535
Jens Axboe87760e52016-11-09 12:38:14 -07001536 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1537
Jens Axboebd166ef2017-01-17 06:03:22 -07001538 trace_block_getrq(q, bio, bio->bi_opf);
1539
Christoph Hellwigd2c0d382017-06-16 18:15:19 +02001540 rq = blk_mq_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001541 if (unlikely(!rq)) {
1542 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001543 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001544 }
1545
1546 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001547
Jens Axboefd2d3322017-01-12 10:04:45 -07001548 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001549
Shaohua Lif984df12015-05-08 10:51:32 -07001550 plug = current->plug;
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001551 if (unlikely(is_flush_fua)) {
Shaohua Lif984df12015-05-08 10:51:32 -07001552 blk_mq_put_ctx(data.ctx);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001553 blk_mq_bio_to_request(rq, bio);
1554 if (q->elevator) {
1555 blk_mq_sched_insert_request(rq, false, true, true,
1556 true);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001557 } else {
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001558 blk_insert_flush(rq);
1559 blk_mq_run_hw_queue(data.hctx, true);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001560 }
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001561 } else if (plug && q->nr_hw_queues == 1) {
Shaohua Li600271d2016-11-03 17:03:54 -07001562 struct request *last = NULL;
1563
Jens Axboeb00c53e2017-04-20 16:40:36 -06001564 blk_mq_put_ctx(data.ctx);
Jeff Moyere6c44382015-05-08 10:51:30 -07001565 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001566
1567 /*
1568 * @request_count may become stale because of schedule
1569 * out, so check the list again.
1570 */
1571 if (list_empty(&plug->mq_list))
1572 request_count = 0;
Christoph Hellwig254d2592017-03-22 15:01:50 -04001573 else if (blk_queue_nomerges(q))
1574 request_count = blk_plug_queued_count(q);
1575
Ming Lei676d0602015-10-20 23:13:56 +08001576 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001577 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001578 else
1579 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001580
Shaohua Li600271d2016-11-03 17:03:54 -07001581 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1582 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001583 blk_flush_plug_list(plug, false);
1584 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001585 }
Jens Axboeb094f892015-11-20 20:29:45 -07001586
Jeff Moyere6c44382015-05-08 10:51:30 -07001587 list_add_tail(&rq->queuelist, &plug->mq_list);
Christoph Hellwig22997222017-03-22 15:01:52 -04001588 } else if (plug && !blk_queue_nomerges(q)) {
Jens Axboe320ae512013-10-24 09:20:05 +01001589 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001590
Jens Axboe320ae512013-10-24 09:20:05 +01001591 /*
1592 * We do limited plugging. If the bio can be merged, do that.
1593 * Otherwise the existing request in the plug list will be
1594 * issued. So the plug list will have one request at most
Christoph Hellwig22997222017-03-22 15:01:52 -04001595 * The plug list might get flushed before this. If that happens,
1596 * the plug list is empty, and same_queue_rq is invalid.
Jens Axboe320ae512013-10-24 09:20:05 +01001597 */
Christoph Hellwig22997222017-03-22 15:01:52 -04001598 if (list_empty(&plug->mq_list))
1599 same_queue_rq = NULL;
1600 if (same_queue_rq)
1601 list_del_init(&same_queue_rq->queuelist);
1602 list_add_tail(&rq->queuelist, &plug->mq_list);
1603
Jens Axboebf4907c2017-03-30 12:30:39 -06001604 blk_mq_put_ctx(data.ctx);
1605
Ming Leidad7a3b2017-06-06 23:21:59 +08001606 if (same_queue_rq) {
1607 data.hctx = blk_mq_map_queue(q,
1608 same_queue_rq->mq_ctx->cpu);
Christoph Hellwig22997222017-03-22 15:01:52 -04001609 blk_mq_try_issue_directly(data.hctx, same_queue_rq,
1610 &cookie);
Ming Leidad7a3b2017-06-06 23:21:59 +08001611 }
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001612 } else if (q->nr_hw_queues > 1 && is_sync) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001613 blk_mq_put_ctx(data.ctx);
1614 blk_mq_bio_to_request(rq, bio);
Christoph Hellwig22997222017-03-22 15:01:52 -04001615 blk_mq_try_issue_directly(data.hctx, rq, &cookie);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001616 } else if (q->elevator) {
Jens Axboeb00c53e2017-04-20 16:40:36 -06001617 blk_mq_put_ctx(data.ctx);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001618 blk_mq_bio_to_request(rq, bio);
1619 blk_mq_sched_insert_request(rq, false, true, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08001620 } else {
Jens Axboeb00c53e2017-04-20 16:40:36 -06001621 blk_mq_put_ctx(data.ctx);
Ming Leiab42f352017-05-26 19:53:19 +08001622 blk_mq_bio_to_request(rq, bio);
1623 blk_mq_queue_io(data.hctx, data.ctx, rq);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001624 blk_mq_run_hw_queue(data.hctx, true);
Ming Leiab42f352017-05-26 19:53:19 +08001625 }
Jens Axboe320ae512013-10-24 09:20:05 +01001626
Jens Axboe7b371632015-11-05 10:41:40 -07001627 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001628}
1629
Jens Axboecc71a6f2017-01-11 14:29:56 -07001630void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1631 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001632{
1633 struct page *page;
1634
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001635 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001636 int i;
1637
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001638 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001639 struct request *rq = tags->static_rqs[i];
1640
1641 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001642 continue;
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001643 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001644 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001645 }
1646 }
1647
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001648 while (!list_empty(&tags->page_list)) {
1649 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001650 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001651 /*
1652 * Remove kmemleak object previously allocated in
1653 * blk_mq_init_rq_map().
1654 */
1655 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001656 __free_pages(page, page->private);
1657 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001658}
Jens Axboe320ae512013-10-24 09:20:05 +01001659
Jens Axboecc71a6f2017-01-11 14:29:56 -07001660void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1661{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001662 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001663 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001664 kfree(tags->static_rqs);
1665 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001666
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001667 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001668}
1669
Jens Axboecc71a6f2017-01-11 14:29:56 -07001670struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1671 unsigned int hctx_idx,
1672 unsigned int nr_tags,
1673 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001674{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001675 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08001676 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01001677
Shaohua Li59f082e2017-02-01 09:53:14 -08001678 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1679 if (node == NUMA_NO_NODE)
1680 node = set->numa_node;
1681
1682 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
Shaohua Li24391c02015-01-23 14:18:00 -07001683 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001684 if (!tags)
1685 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001686
Jens Axboecc71a6f2017-01-11 14:29:56 -07001687 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001688 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001689 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001690 if (!tags->rqs) {
1691 blk_mq_free_tags(tags);
1692 return NULL;
1693 }
Jens Axboe320ae512013-10-24 09:20:05 +01001694
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001695 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1696 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001697 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001698 if (!tags->static_rqs) {
1699 kfree(tags->rqs);
1700 blk_mq_free_tags(tags);
1701 return NULL;
1702 }
1703
Jens Axboecc71a6f2017-01-11 14:29:56 -07001704 return tags;
1705}
1706
1707static size_t order_to_size(unsigned int order)
1708{
1709 return (size_t)PAGE_SIZE << order;
1710}
1711
1712int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1713 unsigned int hctx_idx, unsigned int depth)
1714{
1715 unsigned int i, j, entries_per_page, max_order = 4;
1716 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08001717 int node;
1718
1719 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1720 if (node == NUMA_NO_NODE)
1721 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001722
1723 INIT_LIST_HEAD(&tags->page_list);
1724
Jens Axboe320ae512013-10-24 09:20:05 +01001725 /*
1726 * rq_size is the size of the request plus driver payload, rounded
1727 * to the cacheline size
1728 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001729 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001730 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001731 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001732
Jens Axboecc71a6f2017-01-11 14:29:56 -07001733 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001734 int this_order = max_order;
1735 struct page *page;
1736 int to_do;
1737 void *p;
1738
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001739 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001740 this_order--;
1741
1742 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08001743 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001744 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001745 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001746 if (page)
1747 break;
1748 if (!this_order--)
1749 break;
1750 if (order_to_size(this_order) < rq_size)
1751 break;
1752 } while (1);
1753
1754 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001755 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001756
1757 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001758 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001759
1760 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001761 /*
1762 * Allow kmemleak to scan these pages as they contain pointers
1763 * to additional allocations like via ops->init_request().
1764 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001765 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001766 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001767 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001768 left -= to_do * rq_size;
1769 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001770 struct request *rq = p;
1771
1772 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001773 if (set->ops->init_request) {
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001774 if (set->ops->init_request(set, rq, hctx_idx,
Shaohua Li59f082e2017-02-01 09:53:14 -08001775 node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001776 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001777 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001778 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001779 }
1780
Jens Axboe320ae512013-10-24 09:20:05 +01001781 p += rq_size;
1782 i++;
1783 }
1784 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001785 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001786
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001787fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001788 blk_mq_free_rqs(set, tags, hctx_idx);
1789 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001790}
1791
Jens Axboee57690f2016-08-24 15:34:35 -06001792/*
1793 * 'cpu' is going away. splice any existing rq_list entries from this
1794 * software queue to the hw queue dispatch list, and ensure that it
1795 * gets run.
1796 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001797static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001798{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001799 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001800 struct blk_mq_ctx *ctx;
1801 LIST_HEAD(tmp);
1802
Thomas Gleixner9467f852016-09-22 08:05:17 -06001803 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001804 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001805
1806 spin_lock(&ctx->lock);
1807 if (!list_empty(&ctx->rq_list)) {
1808 list_splice_init(&ctx->rq_list, &tmp);
1809 blk_mq_hctx_clear_pending(hctx, ctx);
1810 }
1811 spin_unlock(&ctx->lock);
1812
1813 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001814 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001815
Jens Axboee57690f2016-08-24 15:34:35 -06001816 spin_lock(&hctx->lock);
1817 list_splice_tail_init(&tmp, &hctx->dispatch);
1818 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001819
1820 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001821 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001822}
1823
Thomas Gleixner9467f852016-09-22 08:05:17 -06001824static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001825{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001826 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1827 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001828}
1829
Ming Leic3b4afc2015-06-04 22:25:04 +08001830/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001831static void blk_mq_exit_hctx(struct request_queue *q,
1832 struct blk_mq_tag_set *set,
1833 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1834{
Omar Sandoval9c1051a2017-05-04 08:17:21 -06001835 blk_mq_debugfs_unregister_hctx(hctx);
1836
Ming Lei08e98fc2014-09-25 23:23:38 +08001837 blk_mq_tag_idle(hctx);
1838
Ming Leif70ced02014-09-25 23:23:47 +08001839 if (set->ops->exit_request)
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001840 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08001841
Omar Sandoval93252632017-04-05 12:01:31 -07001842 blk_mq_sched_exit_hctx(q, hctx, hctx_idx);
1843
Ming Lei08e98fc2014-09-25 23:23:38 +08001844 if (set->ops->exit_hctx)
1845 set->ops->exit_hctx(hctx, hctx_idx);
1846
Bart Van Assche6a83e742016-11-02 10:09:51 -06001847 if (hctx->flags & BLK_MQ_F_BLOCKING)
1848 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1849
Thomas Gleixner9467f852016-09-22 08:05:17 -06001850 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001851 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001852 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001853}
1854
Ming Lei624dbe42014-05-27 23:35:13 +08001855static void blk_mq_exit_hw_queues(struct request_queue *q,
1856 struct blk_mq_tag_set *set, int nr_queue)
1857{
1858 struct blk_mq_hw_ctx *hctx;
1859 unsigned int i;
1860
1861 queue_for_each_hw_ctx(q, hctx, i) {
1862 if (i == nr_queue)
1863 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001864 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001865 }
Ming Lei624dbe42014-05-27 23:35:13 +08001866}
1867
Ming Lei08e98fc2014-09-25 23:23:38 +08001868static int blk_mq_init_hctx(struct request_queue *q,
1869 struct blk_mq_tag_set *set,
1870 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1871{
1872 int node;
1873
1874 node = hctx->numa_node;
1875 if (node == NUMA_NO_NODE)
1876 node = hctx->numa_node = set->numa_node;
1877
Jens Axboe9f993732017-04-10 09:54:54 -06001878 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001879 spin_lock_init(&hctx->lock);
1880 INIT_LIST_HEAD(&hctx->dispatch);
1881 hctx->queue = q;
1882 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001883 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001884
Thomas Gleixner9467f852016-09-22 08:05:17 -06001885 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001886
1887 hctx->tags = set->tags[hctx_idx];
1888
1889 /*
1890 * Allocate space for all possible cpus to avoid allocation at
1891 * runtime
1892 */
1893 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1894 GFP_KERNEL, node);
1895 if (!hctx->ctxs)
1896 goto unregister_cpu_notifier;
1897
Omar Sandoval88459642016-09-17 08:38:44 -06001898 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1899 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001900 goto free_ctxs;
1901
1902 hctx->nr_ctx = 0;
1903
1904 if (set->ops->init_hctx &&
1905 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1906 goto free_bitmap;
1907
Omar Sandoval93252632017-04-05 12:01:31 -07001908 if (blk_mq_sched_init_hctx(q, hctx, hctx_idx))
1909 goto exit_hctx;
1910
Ming Leif70ced02014-09-25 23:23:47 +08001911 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1912 if (!hctx->fq)
Omar Sandoval93252632017-04-05 12:01:31 -07001913 goto sched_exit_hctx;
Ming Leif70ced02014-09-25 23:23:47 +08001914
1915 if (set->ops->init_request &&
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001916 set->ops->init_request(set, hctx->fq->flush_rq, hctx_idx,
1917 node))
Ming Leif70ced02014-09-25 23:23:47 +08001918 goto free_fq;
1919
Bart Van Assche6a83e742016-11-02 10:09:51 -06001920 if (hctx->flags & BLK_MQ_F_BLOCKING)
1921 init_srcu_struct(&hctx->queue_rq_srcu);
1922
Omar Sandoval9c1051a2017-05-04 08:17:21 -06001923 blk_mq_debugfs_register_hctx(q, hctx);
1924
Ming Lei08e98fc2014-09-25 23:23:38 +08001925 return 0;
1926
Ming Leif70ced02014-09-25 23:23:47 +08001927 free_fq:
1928 kfree(hctx->fq);
Omar Sandoval93252632017-04-05 12:01:31 -07001929 sched_exit_hctx:
1930 blk_mq_sched_exit_hctx(q, hctx, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08001931 exit_hctx:
1932 if (set->ops->exit_hctx)
1933 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001934 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001935 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001936 free_ctxs:
1937 kfree(hctx->ctxs);
1938 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001939 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001940 return -1;
1941}
1942
Jens Axboe320ae512013-10-24 09:20:05 +01001943static void blk_mq_init_cpu_queues(struct request_queue *q,
1944 unsigned int nr_hw_queues)
1945{
1946 unsigned int i;
1947
1948 for_each_possible_cpu(i) {
1949 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1950 struct blk_mq_hw_ctx *hctx;
1951
Jens Axboe320ae512013-10-24 09:20:05 +01001952 __ctx->cpu = i;
1953 spin_lock_init(&__ctx->lock);
1954 INIT_LIST_HEAD(&__ctx->rq_list);
1955 __ctx->queue = q;
1956
1957 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001958 if (!cpu_online(i))
1959 continue;
1960
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001961 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001962
Jens Axboe320ae512013-10-24 09:20:05 +01001963 /*
1964 * Set local node, IFF we have more than one hw queue. If
1965 * not, we remain on the home node of the device
1966 */
1967 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301968 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001969 }
1970}
1971
Jens Axboecc71a6f2017-01-11 14:29:56 -07001972static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
1973{
1974 int ret = 0;
1975
1976 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
1977 set->queue_depth, set->reserved_tags);
1978 if (!set->tags[hctx_idx])
1979 return false;
1980
1981 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
1982 set->queue_depth);
1983 if (!ret)
1984 return true;
1985
1986 blk_mq_free_rq_map(set->tags[hctx_idx]);
1987 set->tags[hctx_idx] = NULL;
1988 return false;
1989}
1990
1991static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
1992 unsigned int hctx_idx)
1993{
Jens Axboebd166ef2017-01-17 06:03:22 -07001994 if (set->tags[hctx_idx]) {
1995 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
1996 blk_mq_free_rq_map(set->tags[hctx_idx]);
1997 set->tags[hctx_idx] = NULL;
1998 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001999}
2000
Akinobu Mita57783222015-09-27 02:09:23 +09002001static void blk_mq_map_swqueue(struct request_queue *q,
2002 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002003{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002004 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01002005 struct blk_mq_hw_ctx *hctx;
2006 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08002007 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002008
Akinobu Mita60de0742015-09-27 02:09:25 +09002009 /*
2010 * Avoid others reading imcomplete hctx->cpumask through sysfs
2011 */
2012 mutex_lock(&q->sysfs_lock);
2013
Jens Axboe320ae512013-10-24 09:20:05 +01002014 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06002015 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002016 hctx->nr_ctx = 0;
2017 }
2018
2019 /*
2020 * Map software to hardware queues
2021 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002022 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01002023 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002024 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002025 continue;
2026
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002027 hctx_idx = q->mq_map[i];
2028 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002029 if (!set->tags[hctx_idx] &&
2030 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002031 /*
2032 * If tags initialization fail for some hctx,
2033 * that hctx won't be brought online. In this
2034 * case, remap the current ctx to hctx[0] which
2035 * is guaranteed to always have tags allocated
2036 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002037 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002038 }
2039
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002040 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002041 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002042
Jens Axboee4043dc2014-04-09 10:18:23 -06002043 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002044 ctx->index_hw = hctx->nr_ctx;
2045 hctx->ctxs[hctx->nr_ctx++] = ctx;
2046 }
Jens Axboe506e9312014-05-07 10:26:44 -06002047
Akinobu Mita60de0742015-09-27 02:09:25 +09002048 mutex_unlock(&q->sysfs_lock);
2049
Jens Axboe506e9312014-05-07 10:26:44 -06002050 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002051 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002052 * If no software queues are mapped to this hardware queue,
2053 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002054 */
2055 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002056 /* Never unmap queue 0. We need it as a
2057 * fallback in case of a new remap fails
2058 * allocation
2059 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002060 if (i && set->tags[i])
2061 blk_mq_free_map_and_requests(set, i);
2062
Ming Lei2a34c082015-04-21 10:00:20 +08002063 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002064 continue;
2065 }
2066
Ming Lei2a34c082015-04-21 10:00:20 +08002067 hctx->tags = set->tags[i];
2068 WARN_ON(!hctx->tags);
2069
Jens Axboe484b4062014-05-21 14:01:15 -06002070 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002071 * Set the map size to the number of mapped software queues.
2072 * This is more accurate and more efficient than looping
2073 * over all possibly mapped software queues.
2074 */
Omar Sandoval88459642016-09-17 08:38:44 -06002075 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002076
2077 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002078 * Initialize batch roundrobin counts
2079 */
Jens Axboe506e9312014-05-07 10:26:44 -06002080 hctx->next_cpu = cpumask_first(hctx->cpumask);
2081 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2082 }
Jens Axboe320ae512013-10-24 09:20:05 +01002083}
2084
Jeff Moyer2404e602015-11-03 10:40:06 -05002085static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002086{
2087 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002088 int i;
2089
Jeff Moyer2404e602015-11-03 10:40:06 -05002090 queue_for_each_hw_ctx(q, hctx, i) {
2091 if (shared)
2092 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2093 else
2094 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2095 }
2096}
2097
2098static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2099{
2100 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002101
Bart Van Assche705cda92017-04-07 11:16:49 -07002102 lockdep_assert_held(&set->tag_list_lock);
2103
Jens Axboe0d2602c2014-05-13 15:10:52 -06002104 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2105 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002106 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002107 blk_mq_unfreeze_queue(q);
2108 }
2109}
2110
2111static void blk_mq_del_queue_tag_set(struct request_queue *q)
2112{
2113 struct blk_mq_tag_set *set = q->tag_set;
2114
Jens Axboe0d2602c2014-05-13 15:10:52 -06002115 mutex_lock(&set->tag_list_lock);
Bart Van Assche705cda92017-04-07 11:16:49 -07002116 list_del_rcu(&q->tag_set_list);
2117 INIT_LIST_HEAD(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002118 if (list_is_singular(&set->tag_list)) {
2119 /* just transitioned to unshared */
2120 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2121 /* update existing queue */
2122 blk_mq_update_tag_set_depth(set, false);
2123 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002124 mutex_unlock(&set->tag_list_lock);
Bart Van Assche705cda92017-04-07 11:16:49 -07002125
2126 synchronize_rcu();
Jens Axboe0d2602c2014-05-13 15:10:52 -06002127}
2128
2129static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2130 struct request_queue *q)
2131{
2132 q->tag_set = set;
2133
2134 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002135
2136 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2137 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2138 set->flags |= BLK_MQ_F_TAG_SHARED;
2139 /* update existing queue */
2140 blk_mq_update_tag_set_depth(set, true);
2141 }
2142 if (set->flags & BLK_MQ_F_TAG_SHARED)
2143 queue_set_hctx_shared(q, true);
Bart Van Assche705cda92017-04-07 11:16:49 -07002144 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002145
Jens Axboe0d2602c2014-05-13 15:10:52 -06002146 mutex_unlock(&set->tag_list_lock);
2147}
2148
Ming Leie09aae72015-01-29 20:17:27 +08002149/*
2150 * It is the actual release handler for mq, but we do it from
2151 * request queue's release handler for avoiding use-after-free
2152 * and headache because q->mq_kobj shouldn't have been introduced,
2153 * but we can't group ctx/kctx kobj without it.
2154 */
2155void blk_mq_release(struct request_queue *q)
2156{
2157 struct blk_mq_hw_ctx *hctx;
2158 unsigned int i;
2159
2160 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002161 queue_for_each_hw_ctx(q, hctx, i) {
2162 if (!hctx)
2163 continue;
Ming Lei6c8b2322017-02-22 18:14:01 +08002164 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08002165 }
Ming Leie09aae72015-01-29 20:17:27 +08002166
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002167 q->mq_map = NULL;
2168
Ming Leie09aae72015-01-29 20:17:27 +08002169 kfree(q->queue_hw_ctx);
2170
Ming Lei7ea5fe32017-02-22 18:14:00 +08002171 /*
2172 * release .mq_kobj and sw queue's kobject now because
2173 * both share lifetime with request queue.
2174 */
2175 blk_mq_sysfs_deinit(q);
2176
Ming Leie09aae72015-01-29 20:17:27 +08002177 free_percpu(q->queue_ctx);
2178}
2179
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002180struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002181{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002182 struct request_queue *uninit_q, *q;
2183
2184 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2185 if (!uninit_q)
2186 return ERR_PTR(-ENOMEM);
2187
2188 q = blk_mq_init_allocated_queue(set, uninit_q);
2189 if (IS_ERR(q))
2190 blk_cleanup_queue(uninit_q);
2191
2192 return q;
2193}
2194EXPORT_SYMBOL(blk_mq_init_queue);
2195
Keith Busch868f2f02015-12-17 17:08:14 -07002196static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2197 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002198{
Keith Busch868f2f02015-12-17 17:08:14 -07002199 int i, j;
2200 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002201
Keith Busch868f2f02015-12-17 17:08:14 -07002202 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002203 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002204 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002205
Keith Busch868f2f02015-12-17 17:08:14 -07002206 if (hctxs[i])
2207 continue;
2208
2209 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002210 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2211 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002212 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002213 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002214
Jens Axboea86073e2014-10-13 15:41:54 -06002215 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002216 node)) {
2217 kfree(hctxs[i]);
2218 hctxs[i] = NULL;
2219 break;
2220 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002221
Jens Axboe0d2602c2014-05-13 15:10:52 -06002222 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002223 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002224 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002225
2226 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2227 free_cpumask_var(hctxs[i]->cpumask);
2228 kfree(hctxs[i]);
2229 hctxs[i] = NULL;
2230 break;
2231 }
2232 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002233 }
Keith Busch868f2f02015-12-17 17:08:14 -07002234 for (j = i; j < q->nr_hw_queues; j++) {
2235 struct blk_mq_hw_ctx *hctx = hctxs[j];
2236
2237 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002238 if (hctx->tags)
2239 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002240 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002241 kobject_put(&hctx->kobj);
Keith Busch868f2f02015-12-17 17:08:14 -07002242 hctxs[j] = NULL;
2243
2244 }
2245 }
2246 q->nr_hw_queues = i;
2247 blk_mq_sysfs_register(q);
2248}
2249
2250struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2251 struct request_queue *q)
2252{
Ming Lei66841672016-02-12 15:27:00 +08002253 /* mark the queue as mq asap */
2254 q->mq_ops = set->ops;
2255
Omar Sandoval34dbad52017-03-21 08:56:08 -07002256 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06002257 blk_mq_poll_stats_bkt,
2258 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07002259 if (!q->poll_cb)
2260 goto err_exit;
2261
Keith Busch868f2f02015-12-17 17:08:14 -07002262 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2263 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002264 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002265
Ming Lei737f98c2017-02-22 18:13:59 +08002266 /* init q->mq_kobj and sw queues' kobjects */
2267 blk_mq_sysfs_init(q);
2268
Keith Busch868f2f02015-12-17 17:08:14 -07002269 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2270 GFP_KERNEL, set->numa_node);
2271 if (!q->queue_hw_ctx)
2272 goto err_percpu;
2273
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002274 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002275
2276 blk_mq_realloc_hw_ctxs(set, q);
2277 if (!q->nr_hw_queues)
2278 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002279
Christoph Hellwig287922eb2015-10-30 20:57:30 +08002280 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002281 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002282
2283 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002284
Jens Axboe94eddfb2013-11-19 09:25:07 -07002285 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002286
Jens Axboe05f1dd52014-05-29 09:53:32 -06002287 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2288 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2289
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002290 q->sg_reserved_size = INT_MAX;
2291
Mike Snitzer28494502016-09-14 13:28:30 -04002292 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002293 INIT_LIST_HEAD(&q->requeue_list);
2294 spin_lock_init(&q->requeue_lock);
2295
Christoph Hellwig254d2592017-03-22 15:01:50 -04002296 blk_queue_make_request(q, blk_mq_make_request);
Jens Axboe07068d52014-05-22 10:40:51 -06002297
Jens Axboeeba71762014-05-20 15:17:27 -06002298 /*
2299 * Do this after blk_queue_make_request() overrides it...
2300 */
2301 q->nr_requests = set->queue_depth;
2302
Jens Axboe64f1c212016-11-14 13:03:03 -07002303 /*
2304 * Default to classic polling
2305 */
2306 q->poll_nsec = -1;
2307
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002308 if (set->ops->complete)
2309 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002310
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002311 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002312
Peter Zijlstraeabe0652017-05-04 15:05:26 +02002313 get_online_cpus();
Wanpeng Li51d638b2017-05-07 00:14:22 -07002314 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002315
Jens Axboe320ae512013-10-24 09:20:05 +01002316 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002317 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002318 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002319
Peter Zijlstraeabe0652017-05-04 15:05:26 +02002320 mutex_unlock(&all_q_mutex);
Wanpeng Li51d638b2017-05-07 00:14:22 -07002321 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002322
Jens Axboed3484992017-01-13 14:43:58 -07002323 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2324 int ret;
2325
2326 ret = blk_mq_sched_init(q);
2327 if (ret)
2328 return ERR_PTR(ret);
2329 }
2330
Jens Axboe320ae512013-10-24 09:20:05 +01002331 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002332
Jens Axboe320ae512013-10-24 09:20:05 +01002333err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002334 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002335err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002336 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002337err_exit:
2338 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002339 return ERR_PTR(-ENOMEM);
2340}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002341EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002342
2343void blk_mq_free_queue(struct request_queue *q)
2344{
Ming Lei624dbe42014-05-27 23:35:13 +08002345 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002346
Akinobu Mita0e626362015-09-27 02:09:22 +09002347 mutex_lock(&all_q_mutex);
2348 list_del_init(&q->all_q_node);
2349 mutex_unlock(&all_q_mutex);
2350
Jens Axboe0d2602c2014-05-13 15:10:52 -06002351 blk_mq_del_queue_tag_set(q);
2352
Ming Lei624dbe42014-05-27 23:35:13 +08002353 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002354}
Jens Axboe320ae512013-10-24 09:20:05 +01002355
2356/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002357static void blk_mq_queue_reinit(struct request_queue *q,
2358 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002359{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002360 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002361
Omar Sandoval9c1051a2017-05-04 08:17:21 -06002362 blk_mq_debugfs_unregister_hctxs(q);
Jens Axboe67aec142014-05-30 08:25:36 -06002363 blk_mq_sysfs_unregister(q);
2364
Jens Axboe320ae512013-10-24 09:20:05 +01002365 /*
2366 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2367 * we should change hctx numa_node according to new topology (this
2368 * involves free and re-allocate memory, worthy doing?)
2369 */
2370
Akinobu Mita57783222015-09-27 02:09:23 +09002371 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002372
Jens Axboe67aec142014-05-30 08:25:36 -06002373 blk_mq_sysfs_register(q);
Omar Sandoval9c1051a2017-05-04 08:17:21 -06002374 blk_mq_debugfs_register_hctxs(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002375}
2376
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002377/*
2378 * New online cpumask which is going to be set in this hotplug event.
2379 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2380 * one-by-one and dynamically allocating this could result in a failure.
2381 */
2382static struct cpumask cpuhp_online_new;
2383
2384static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002385{
2386 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002387
2388 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002389 /*
2390 * We need to freeze and reinit all existing queues. Freezing
2391 * involves synchronous wait for an RCU grace period and doing it
2392 * one by one may take a long time. Start freezing all queues in
2393 * one swoop and then wait for the completions so that freezing can
2394 * take place in parallel.
2395 */
2396 list_for_each_entry(q, &all_q_list, all_q_node)
Ming Lei1671d522017-03-27 20:06:57 +08002397 blk_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002398 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002399 blk_mq_freeze_queue_wait(q);
2400
Jens Axboe320ae512013-10-24 09:20:05 +01002401 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002402 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002403
2404 list_for_each_entry(q, &all_q_list, all_q_node)
2405 blk_mq_unfreeze_queue(q);
2406
Jens Axboe320ae512013-10-24 09:20:05 +01002407 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002408}
2409
2410static int blk_mq_queue_reinit_dead(unsigned int cpu)
2411{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002412 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002413 blk_mq_queue_reinit_work();
2414 return 0;
2415}
2416
2417/*
2418 * Before hotadded cpu starts handling requests, new mappings must be
2419 * established. Otherwise, these requests in hw queue might never be
2420 * dispatched.
2421 *
2422 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2423 * for CPU0, and ctx1 for CPU1).
2424 *
2425 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2426 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2427 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002428 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2429 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2430 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2431 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002432 */
2433static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2434{
2435 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2436 cpumask_set_cpu(cpu, &cpuhp_online_new);
2437 blk_mq_queue_reinit_work();
2438 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002439}
2440
Jens Axboea5164402014-09-10 09:02:03 -06002441static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2442{
2443 int i;
2444
Jens Axboecc71a6f2017-01-11 14:29:56 -07002445 for (i = 0; i < set->nr_hw_queues; i++)
2446 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002447 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002448
2449 return 0;
2450
2451out_unwind:
2452 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002453 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002454
Jens Axboea5164402014-09-10 09:02:03 -06002455 return -ENOMEM;
2456}
2457
2458/*
2459 * Allocate the request maps associated with this tag_set. Note that this
2460 * may reduce the depth asked for, if memory is tight. set->queue_depth
2461 * will be updated to reflect the allocated depth.
2462 */
2463static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2464{
2465 unsigned int depth;
2466 int err;
2467
2468 depth = set->queue_depth;
2469 do {
2470 err = __blk_mq_alloc_rq_maps(set);
2471 if (!err)
2472 break;
2473
2474 set->queue_depth >>= 1;
2475 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2476 err = -ENOMEM;
2477 break;
2478 }
2479 } while (set->queue_depth);
2480
2481 if (!set->queue_depth || err) {
2482 pr_err("blk-mq: failed to allocate request map\n");
2483 return -ENOMEM;
2484 }
2485
2486 if (depth != set->queue_depth)
2487 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2488 depth, set->queue_depth);
2489
2490 return 0;
2491}
2492
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002493static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2494{
2495 if (set->ops->map_queues)
2496 return set->ops->map_queues(set);
2497 else
2498 return blk_mq_map_queues(set);
2499}
2500
Jens Axboea4391c62014-06-05 15:21:56 -06002501/*
2502 * Alloc a tag set to be associated with one or more request queues.
2503 * May fail with EINVAL for various error conditions. May adjust the
2504 * requested depth down, if if it too large. In that case, the set
2505 * value will be stored in set->queue_depth.
2506 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002507int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2508{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002509 int ret;
2510
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002511 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2512
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002513 if (!set->nr_hw_queues)
2514 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002515 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002516 return -EINVAL;
2517 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2518 return -EINVAL;
2519
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002520 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002521 return -EINVAL;
2522
Jens Axboea4391c62014-06-05 15:21:56 -06002523 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2524 pr_info("blk-mq: reduced tag depth to %u\n",
2525 BLK_MQ_MAX_DEPTH);
2526 set->queue_depth = BLK_MQ_MAX_DEPTH;
2527 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002528
Shaohua Li6637fad2014-11-30 16:00:58 -08002529 /*
2530 * If a crashdump is active, then we are potentially in a very
2531 * memory constrained environment. Limit us to 1 queue and
2532 * 64 tags to prevent using too much memory.
2533 */
2534 if (is_kdump_kernel()) {
2535 set->nr_hw_queues = 1;
2536 set->queue_depth = min(64U, set->queue_depth);
2537 }
Keith Busch868f2f02015-12-17 17:08:14 -07002538 /*
2539 * There is no use for more h/w queues than cpus.
2540 */
2541 if (set->nr_hw_queues > nr_cpu_ids)
2542 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002543
Keith Busch868f2f02015-12-17 17:08:14 -07002544 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002545 GFP_KERNEL, set->numa_node);
2546 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002547 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002548
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002549 ret = -ENOMEM;
2550 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2551 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002552 if (!set->mq_map)
2553 goto out_free_tags;
2554
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002555 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002556 if (ret)
2557 goto out_free_mq_map;
2558
2559 ret = blk_mq_alloc_rq_maps(set);
2560 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002561 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002562
Jens Axboe0d2602c2014-05-13 15:10:52 -06002563 mutex_init(&set->tag_list_lock);
2564 INIT_LIST_HEAD(&set->tag_list);
2565
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002566 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002567
2568out_free_mq_map:
2569 kfree(set->mq_map);
2570 set->mq_map = NULL;
2571out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002572 kfree(set->tags);
2573 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002574 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002575}
2576EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2577
2578void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2579{
2580 int i;
2581
Jens Axboecc71a6f2017-01-11 14:29:56 -07002582 for (i = 0; i < nr_cpu_ids; i++)
2583 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002584
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002585 kfree(set->mq_map);
2586 set->mq_map = NULL;
2587
Ming Lei981bd182014-04-24 00:07:34 +08002588 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002589 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002590}
2591EXPORT_SYMBOL(blk_mq_free_tag_set);
2592
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002593int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2594{
2595 struct blk_mq_tag_set *set = q->tag_set;
2596 struct blk_mq_hw_ctx *hctx;
2597 int i, ret;
2598
Jens Axboebd166ef2017-01-17 06:03:22 -07002599 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002600 return -EINVAL;
2601
Jens Axboe70f36b62017-01-19 10:59:07 -07002602 blk_mq_freeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07002603
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002604 ret = 0;
2605 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002606 if (!hctx->tags)
2607 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002608 /*
2609 * If we're using an MQ scheduler, just update the scheduler
2610 * queue depth. This is similar to what the old code would do.
2611 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002612 if (!hctx->sched_tags) {
2613 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2614 min(nr, set->queue_depth),
2615 false);
2616 } else {
2617 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2618 nr, true);
2619 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002620 if (ret)
2621 break;
2622 }
2623
2624 if (!ret)
2625 q->nr_requests = nr;
2626
Jens Axboe70f36b62017-01-19 10:59:07 -07002627 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07002628
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002629 return ret;
2630}
2631
Keith Busche4dc2b32017-05-30 14:39:11 -04002632static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
2633 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07002634{
2635 struct request_queue *q;
2636
Bart Van Assche705cda92017-04-07 11:16:49 -07002637 lockdep_assert_held(&set->tag_list_lock);
2638
Keith Busch868f2f02015-12-17 17:08:14 -07002639 if (nr_hw_queues > nr_cpu_ids)
2640 nr_hw_queues = nr_cpu_ids;
2641 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2642 return;
2643
2644 list_for_each_entry(q, &set->tag_list, tag_set_list)
2645 blk_mq_freeze_queue(q);
2646
2647 set->nr_hw_queues = nr_hw_queues;
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002648 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07002649 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2650 blk_mq_realloc_hw_ctxs(set, q);
Keith Busch868f2f02015-12-17 17:08:14 -07002651 blk_mq_queue_reinit(q, cpu_online_mask);
2652 }
2653
2654 list_for_each_entry(q, &set->tag_list, tag_set_list)
2655 blk_mq_unfreeze_queue(q);
2656}
Keith Busche4dc2b32017-05-30 14:39:11 -04002657
2658void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2659{
2660 mutex_lock(&set->tag_list_lock);
2661 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
2662 mutex_unlock(&set->tag_list_lock);
2663}
Keith Busch868f2f02015-12-17 17:08:14 -07002664EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2665
Omar Sandoval34dbad52017-03-21 08:56:08 -07002666/* Enable polling stats and return whether they were already enabled. */
2667static bool blk_poll_stats_enable(struct request_queue *q)
2668{
2669 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
2670 test_and_set_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags))
2671 return true;
2672 blk_stat_add_callback(q, q->poll_cb);
2673 return false;
2674}
2675
2676static void blk_mq_poll_stats_start(struct request_queue *q)
2677{
2678 /*
2679 * We don't arm the callback if polling stats are not enabled or the
2680 * callback is already active.
2681 */
2682 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
2683 blk_stat_is_active(q->poll_cb))
2684 return;
2685
2686 blk_stat_activate_msecs(q->poll_cb, 100);
2687}
2688
2689static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
2690{
2691 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06002692 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07002693
Stephen Bates720b8cc2017-04-07 06:24:03 -06002694 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
2695 if (cb->stat[bucket].nr_samples)
2696 q->poll_stat[bucket] = cb->stat[bucket];
2697 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07002698}
2699
Jens Axboe64f1c212016-11-14 13:03:03 -07002700static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2701 struct blk_mq_hw_ctx *hctx,
2702 struct request *rq)
2703{
Jens Axboe64f1c212016-11-14 13:03:03 -07002704 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06002705 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07002706
2707 /*
2708 * If stats collection isn't on, don't sleep but turn it on for
2709 * future users
2710 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07002711 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07002712 return 0;
2713
2714 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07002715 * As an optimistic guess, use half of the mean service time
2716 * for this type of request. We can (and should) make this smarter.
2717 * For instance, if the completion latencies are tight, we can
2718 * get closer than just half the mean. This is especially
2719 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06002720 * than ~10 usec. We do use the stats for the relevant IO size
2721 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07002722 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06002723 bucket = blk_mq_poll_stats_bkt(rq);
2724 if (bucket < 0)
2725 return ret;
2726
2727 if (q->poll_stat[bucket].nr_samples)
2728 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07002729
2730 return ret;
2731}
2732
Jens Axboe06426ad2016-11-14 13:01:59 -07002733static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002734 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002735 struct request *rq)
2736{
2737 struct hrtimer_sleeper hs;
2738 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002739 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002740 ktime_t kt;
2741
Jens Axboe64f1c212016-11-14 13:03:03 -07002742 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2743 return false;
2744
2745 /*
2746 * poll_nsec can be:
2747 *
2748 * -1: don't ever hybrid sleep
2749 * 0: use half of prev avg
2750 * >0: use this specific value
2751 */
2752 if (q->poll_nsec == -1)
2753 return false;
2754 else if (q->poll_nsec > 0)
2755 nsecs = q->poll_nsec;
2756 else
2757 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2758
2759 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002760 return false;
2761
2762 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2763
2764 /*
2765 * This will be replaced with the stats tracking code, using
2766 * 'avg_completion_time / 2' as the pre-sleep target.
2767 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002768 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002769
2770 mode = HRTIMER_MODE_REL;
2771 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2772 hrtimer_set_expires(&hs.timer, kt);
2773
2774 hrtimer_init_sleeper(&hs, current);
2775 do {
2776 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2777 break;
2778 set_current_state(TASK_UNINTERRUPTIBLE);
2779 hrtimer_start_expires(&hs.timer, mode);
2780 if (hs.task)
2781 io_schedule();
2782 hrtimer_cancel(&hs.timer);
2783 mode = HRTIMER_MODE_ABS;
2784 } while (hs.task && !signal_pending(current));
2785
2786 __set_current_state(TASK_RUNNING);
2787 destroy_hrtimer_on_stack(&hs.timer);
2788 return true;
2789}
2790
Jens Axboebbd7bb72016-11-04 09:34:34 -06002791static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2792{
2793 struct request_queue *q = hctx->queue;
2794 long state;
2795
Jens Axboe06426ad2016-11-14 13:01:59 -07002796 /*
2797 * If we sleep, have the caller restart the poll loop to reset
2798 * the state. Like for the other success return cases, the
2799 * caller is responsible for checking if the IO completed. If
2800 * the IO isn't complete, we'll get called again and will go
2801 * straight to the busy poll loop.
2802 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002803 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002804 return true;
2805
Jens Axboebbd7bb72016-11-04 09:34:34 -06002806 hctx->poll_considered++;
2807
2808 state = current->state;
2809 while (!need_resched()) {
2810 int ret;
2811
2812 hctx->poll_invoked++;
2813
2814 ret = q->mq_ops->poll(hctx, rq->tag);
2815 if (ret > 0) {
2816 hctx->poll_success++;
2817 set_current_state(TASK_RUNNING);
2818 return true;
2819 }
2820
2821 if (signal_pending_state(state, current))
2822 set_current_state(TASK_RUNNING);
2823
2824 if (current->state == TASK_RUNNING)
2825 return true;
2826 if (ret < 0)
2827 break;
2828 cpu_relax();
2829 }
2830
2831 return false;
2832}
2833
2834bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2835{
2836 struct blk_mq_hw_ctx *hctx;
2837 struct blk_plug *plug;
2838 struct request *rq;
2839
2840 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2841 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2842 return false;
2843
2844 plug = current->plug;
2845 if (plug)
2846 blk_flush_plug_list(plug, false);
2847
2848 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002849 if (!blk_qc_t_is_internal(cookie))
2850 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
Jens Axboe3a07bb12017-04-20 14:53:28 -06002851 else {
Jens Axboebd166ef2017-01-17 06:03:22 -07002852 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboe3a07bb12017-04-20 14:53:28 -06002853 /*
2854 * With scheduling, if the request has completed, we'll
2855 * get a NULL return here, as we clear the sched tag when
2856 * that happens. The request still remains valid, like always,
2857 * so we should be safe with just the NULL check.
2858 */
2859 if (!rq)
2860 return false;
2861 }
Jens Axboebbd7bb72016-11-04 09:34:34 -06002862
2863 return __blk_mq_poll(hctx, rq);
2864}
2865EXPORT_SYMBOL_GPL(blk_mq_poll);
2866
Jens Axboe676141e2014-03-20 13:29:18 -06002867void blk_mq_disable_hotplug(void)
2868{
2869 mutex_lock(&all_q_mutex);
2870}
2871
2872void blk_mq_enable_hotplug(void)
2873{
2874 mutex_unlock(&all_q_mutex);
2875}
2876
Jens Axboe320ae512013-10-24 09:20:05 +01002877static int __init blk_mq_init(void)
2878{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002879 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2880 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002881
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002882 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2883 blk_mq_queue_reinit_prepare,
2884 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002885 return 0;
2886}
2887subsys_initcall(blk_mq_init);