blob: 41e3aeb51c9a9c8332418f0d76063cbebfa34261 [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);
45
Stephen Bates720b8cc2017-04-07 06:24:03 -060046static int blk_mq_poll_stats_bkt(const struct request *rq)
47{
48 int ddir, bytes, bucket;
49
Jens Axboe99c749a2017-04-21 07:55:42 -060050 ddir = rq_data_dir(rq);
Stephen Bates720b8cc2017-04-07 06:24:03 -060051 bytes = blk_rq_bytes(rq);
52
53 bucket = ddir + 2*(ilog2(bytes) - 9);
54
55 if (bucket < 0)
56 return -1;
57 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
58 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
59
60 return bucket;
61}
62
Jens Axboe320ae512013-10-24 09:20:05 +010063/*
64 * Check if any of the ctx's have pending work in this hardware queue
65 */
Jens Axboe50e1dab2017-01-26 14:42:34 -070066bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010067{
Jens Axboebd166ef2017-01-17 06:03:22 -070068 return sbitmap_any_bit_set(&hctx->ctx_map) ||
69 !list_empty_careful(&hctx->dispatch) ||
70 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +010071}
72
73/*
74 * Mark this ctx as having pending work in this hardware queue
75 */
76static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
77 struct blk_mq_ctx *ctx)
78{
Omar Sandoval88459642016-09-17 08:38:44 -060079 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
80 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060081}
82
83static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
84 struct blk_mq_ctx *ctx)
85{
Omar Sandoval88459642016-09-17 08:38:44 -060086 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010087}
88
Ming Lei1671d522017-03-27 20:06:57 +080089void blk_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080090{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020091 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040092
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020093 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
94 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040095 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040096 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040097 }
Tejun Heof3af0202014-11-04 13:52:27 -050098}
Ming Lei1671d522017-03-27 20:06:57 +080099EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500100
Keith Busch6bae3632017-03-01 14:22:10 -0500101void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500102{
Dan Williams3ef28e82015-10-21 13:20:12 -0400103 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800104}
Keith Busch6bae3632017-03-01 14:22:10 -0500105EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800106
Keith Buschf91328c2017-03-01 14:22:11 -0500107int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
108 unsigned long timeout)
109{
110 return wait_event_timeout(q->mq_freeze_wq,
111 percpu_ref_is_zero(&q->q_usage_counter),
112 timeout);
113}
114EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
Jens Axboe320ae512013-10-24 09:20:05 +0100115
Tejun Heof3af0202014-11-04 13:52:27 -0500116/*
117 * Guarantee no request is in use, so we can change any data structure of
118 * the queue afterward.
119 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400120void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500121{
Dan Williams3ef28e82015-10-21 13:20:12 -0400122 /*
123 * In the !blk_mq case we are only calling this to kill the
124 * q_usage_counter, otherwise this increases the freeze depth
125 * and waits for it to return to zero. For this reason there is
126 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
127 * exported to drivers as the only user for unfreeze is blk_mq.
128 */
Ming Lei1671d522017-03-27 20:06:57 +0800129 blk_freeze_queue_start(q);
Tejun Heof3af0202014-11-04 13:52:27 -0500130 blk_mq_freeze_queue_wait(q);
131}
Dan Williams3ef28e82015-10-21 13:20:12 -0400132
133void blk_mq_freeze_queue(struct request_queue *q)
134{
135 /*
136 * ...just an alias to keep freeze and unfreeze actions balanced
137 * in the blk_mq_* namespace
138 */
139 blk_freeze_queue(q);
140}
Jens Axboec761d962015-01-02 15:05:12 -0700141EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500142
Keith Buschb4c6a022014-12-19 17:54:14 -0700143void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100144{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200145 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100146
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200147 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
148 WARN_ON_ONCE(freeze_depth < 0);
149 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400150 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100151 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600152 }
Jens Axboe320ae512013-10-24 09:20:05 +0100153}
Keith Buschb4c6a022014-12-19 17:54:14 -0700154EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100155
Bart Van Assche852ec802017-06-21 10:55:47 -0700156/*
157 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
158 * mpt3sas driver such that this function can be removed.
159 */
160void blk_mq_quiesce_queue_nowait(struct request_queue *q)
161{
162 unsigned long flags;
163
164 spin_lock_irqsave(q->queue_lock, flags);
165 queue_flag_set(QUEUE_FLAG_QUIESCED, q);
166 spin_unlock_irqrestore(q->queue_lock, flags);
167}
168EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
169
Bart Van Assche6a83e742016-11-02 10:09:51 -0600170/**
Ming Lei69e07c42017-06-06 23:22:07 +0800171 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
Bart Van Assche6a83e742016-11-02 10:09:51 -0600172 * @q: request queue.
173 *
174 * Note: this function does not prevent that the struct request end_io()
Ming Lei69e07c42017-06-06 23:22:07 +0800175 * callback function is invoked. Once this function is returned, we make
176 * sure no dispatch can happen until the queue is unquiesced via
177 * blk_mq_unquiesce_queue().
Bart Van Assche6a83e742016-11-02 10:09:51 -0600178 */
179void blk_mq_quiesce_queue(struct request_queue *q)
180{
181 struct blk_mq_hw_ctx *hctx;
182 unsigned int i;
183 bool rcu = false;
184
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800185 blk_mq_quiesce_queue_nowait(q);
Ming Leif4560ff2017-06-18 14:24:27 -0600186
Bart Van Assche6a83e742016-11-02 10:09:51 -0600187 queue_for_each_hw_ctx(q, hctx, i) {
188 if (hctx->flags & BLK_MQ_F_BLOCKING)
Bart Van Assche07319672017-06-20 11:15:38 -0700189 synchronize_srcu(hctx->queue_rq_srcu);
Bart Van Assche6a83e742016-11-02 10:09:51 -0600190 else
191 rcu = true;
192 }
193 if (rcu)
194 synchronize_rcu();
195}
196EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
197
Ming Leie4e73912017-06-06 23:22:03 +0800198/*
199 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
200 * @q: request queue.
201 *
202 * This function recovers queue into the state before quiescing
203 * which is done by blk_mq_quiesce_queue.
204 */
205void blk_mq_unquiesce_queue(struct request_queue *q)
206{
Bart Van Assche852ec802017-06-21 10:55:47 -0700207 unsigned long flags;
208
209 spin_lock_irqsave(q->queue_lock, flags);
Ming Leif4560ff2017-06-18 14:24:27 -0600210 queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
Bart Van Assche852ec802017-06-21 10:55:47 -0700211 spin_unlock_irqrestore(q->queue_lock, flags);
Ming Leif4560ff2017-06-18 14:24:27 -0600212
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800213 /* dispatch requests which are inserted during quiescing */
214 blk_mq_run_hw_queues(q, true);
Ming Leie4e73912017-06-06 23:22:03 +0800215}
216EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
217
Jens Axboeaed3ea92014-12-22 14:04:42 -0700218void blk_mq_wake_waiters(struct request_queue *q)
219{
220 struct blk_mq_hw_ctx *hctx;
221 unsigned int i;
222
223 queue_for_each_hw_ctx(q, hctx, i)
224 if (blk_mq_hw_queue_mapped(hctx))
225 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700226
227 /*
228 * If we are called because the queue has now been marked as
229 * dying, we need to ensure that processes currently waiting on
230 * the queue are notified as well.
231 */
232 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700233}
234
Jens Axboe320ae512013-10-24 09:20:05 +0100235bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
236{
237 return blk_mq_has_free_tags(hctx->tags);
238}
239EXPORT_SYMBOL(blk_mq_can_queue);
240
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200241static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
242 unsigned int tag, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100243{
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200244 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
245 struct request *rq = tags->static_rqs[tag];
246
Bart Van Asschec3a148d2017-06-20 11:15:43 -0700247 rq->rq_flags = 0;
248
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200249 if (data->flags & BLK_MQ_REQ_INTERNAL) {
250 rq->tag = -1;
251 rq->internal_tag = tag;
252 } else {
253 if (blk_mq_tag_busy(data->hctx)) {
254 rq->rq_flags = RQF_MQ_INFLIGHT;
255 atomic_inc(&data->hctx->nr_active);
256 }
257 rq->tag = tag;
258 rq->internal_tag = -1;
259 data->hctx->tags->rqs[rq->tag] = rq;
260 }
261
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200262 INIT_LIST_HEAD(&rq->queuelist);
263 /* csd/requeue_work/fifo_time is initialized before use */
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200264 rq->q = data->q;
265 rq->mq_ctx = data->ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600266 rq->cmd_flags = op;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200267 if (blk_queue_io_stat(data->q))
Christoph Hellwige8064022016-10-20 15:12:13 +0200268 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200269 /* do not touch atomic flags, it needs atomic ops against the timer */
270 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200271 INIT_HLIST_NODE(&rq->hash);
272 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200273 rq->rq_disk = NULL;
274 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600275 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200276#ifdef CONFIG_BLK_CGROUP
277 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700278 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200279 rq->io_start_time_ns = 0;
280#endif
281 rq->nr_phys_segments = 0;
282#if defined(CONFIG_BLK_DEV_INTEGRITY)
283 rq->nr_integrity_segments = 0;
284#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200285 rq->special = NULL;
286 /* tag was already set */
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200287 rq->extra_len = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200288
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200289 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600290 rq->timeout = 0;
291
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200292 rq->end_io = NULL;
293 rq->end_io_data = NULL;
294 rq->next_rq = NULL;
295
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200296 data->ctx->rq_dispatched[op_is_sync(op)]++;
297 return rq;
Jens Axboe320ae512013-10-24 09:20:05 +0100298}
299
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200300static struct request *blk_mq_get_request(struct request_queue *q,
301 struct bio *bio, unsigned int op,
302 struct blk_mq_alloc_data *data)
303{
304 struct elevator_queue *e = q->elevator;
305 struct request *rq;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200306 unsigned int tag;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200307
308 blk_queue_enter_live(q);
309 data->q = q;
310 if (likely(!data->ctx))
311 data->ctx = blk_mq_get_ctx(q);
312 if (likely(!data->hctx))
313 data->hctx = blk_mq_map_queue(q, data->ctx->cpu);
Goldwyn Rodrigues03a07c92017-06-20 07:05:46 -0500314 if (op & REQ_NOWAIT)
315 data->flags |= BLK_MQ_REQ_NOWAIT;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200316
317 if (e) {
318 data->flags |= BLK_MQ_REQ_INTERNAL;
319
320 /*
321 * Flush requests are special and go directly to the
322 * dispatch list.
323 */
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200324 if (!op_is_flush(op) && e->type->ops.mq.limit_depth)
325 e->type->ops.mq.limit_depth(op, data);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200326 }
327
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200328 tag = blk_mq_get_tag(data);
329 if (tag == BLK_MQ_TAG_FAIL) {
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200330 blk_queue_exit(q);
331 return NULL;
332 }
333
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200334 rq = blk_mq_rq_ctx_init(data, tag, op);
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200335 if (!op_is_flush(op)) {
336 rq->elv.icq = NULL;
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200337 if (e && e->type->ops.mq.prepare_request) {
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +0200338 if (e->type->icq_cache && rq_ioc(bio))
339 blk_mq_sched_assign_ioc(rq, bio);
340
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200341 e->type->ops.mq.prepare_request(rq, bio);
342 rq->rq_flags |= RQF_ELVPRIV;
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +0200343 }
Christoph Hellwig037cebb2017-06-16 18:15:23 +0200344 }
345 data->hctx->queued++;
346 return rq;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200347}
348
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700349struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100350 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100351{
Jens Axboe5a797e02017-01-26 12:22:11 -0700352 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Jens Axboebd166ef2017-01-17 06:03:22 -0700353 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600354 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100355
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100356 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600357 if (ret)
358 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100359
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700360 rq = blk_mq_get_request(q, NULL, op, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600361
Jens Axboebd166ef2017-01-17 06:03:22 -0700362 blk_mq_put_ctx(alloc_data.ctx);
363 blk_queue_exit(q);
364
365 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600366 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200367
368 rq->__data_len = 0;
369 rq->__sector = (sector_t) -1;
370 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100371 return rq;
372}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600373EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100374
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700375struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
376 unsigned int op, unsigned int flags, unsigned int hctx_idx)
Ming Lin1f5bd332016-06-13 16:45:21 +0200377{
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800378 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Ming Lin1f5bd332016-06-13 16:45:21 +0200379 struct request *rq;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800380 unsigned int cpu;
Ming Lin1f5bd332016-06-13 16:45:21 +0200381 int ret;
382
383 /*
384 * If the tag allocator sleeps we could get an allocation for a
385 * different hardware context. No need to complicate the low level
386 * allocator for this for the rare use case of a command tied to
387 * a specific queue.
388 */
389 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
390 return ERR_PTR(-EINVAL);
391
392 if (hctx_idx >= q->nr_hw_queues)
393 return ERR_PTR(-EIO);
394
395 ret = blk_queue_enter(q, true);
396 if (ret)
397 return ERR_PTR(ret);
398
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600399 /*
400 * Check if the hardware context is actually mapped to anything.
401 * If not tell the caller that it should skip this queue.
402 */
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800403 alloc_data.hctx = q->queue_hw_ctx[hctx_idx];
404 if (!blk_mq_hw_queue_mapped(alloc_data.hctx)) {
405 blk_queue_exit(q);
406 return ERR_PTR(-EXDEV);
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600407 }
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800408 cpu = cpumask_first(alloc_data.hctx->cpumask);
409 alloc_data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200410
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700411 rq = blk_mq_get_request(q, NULL, op, &alloc_data);
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800412
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800413 blk_queue_exit(q);
414
415 if (!rq)
416 return ERR_PTR(-EWOULDBLOCK);
Ming Lin1f5bd332016-06-13 16:45:21 +0200417
418 return rq;
419}
420EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
421
Christoph Hellwig6af54052017-06-16 18:15:22 +0200422void blk_mq_free_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100423{
Jens Axboe320ae512013-10-24 09:20:05 +0100424 struct request_queue *q = rq->q;
Christoph Hellwig6af54052017-06-16 18:15:22 +0200425 struct elevator_queue *e = q->elevator;
426 struct blk_mq_ctx *ctx = rq->mq_ctx;
427 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
428 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100429
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200430 if (rq->rq_flags & RQF_ELVPRIV) {
Christoph Hellwig6af54052017-06-16 18:15:22 +0200431 if (e && e->type->ops.mq.finish_request)
432 e->type->ops.mq.finish_request(rq);
433 if (rq->elv.icq) {
434 put_io_context(rq->elv.icq->ioc);
435 rq->elv.icq = NULL;
436 }
437 }
438
439 ctx->rq_completed[rq_is_sync(rq)]++;
Christoph Hellwige8064022016-10-20 15:12:13 +0200440 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600441 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700442
443 wbt_done(q->rq_wb, &rq->issue_stat);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600444
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200445 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700446 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700447 if (rq->tag != -1)
448 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
449 if (sched_tag != -1)
Omar Sandovalc05f8522017-04-14 01:00:01 -0700450 blk_mq_put_tag(hctx, hctx->sched_tags, ctx, sched_tag);
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600451 blk_mq_sched_restart(hctx);
Dan Williams3ef28e82015-10-21 13:20:12 -0400452 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100453}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700454EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100455
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200456inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
Jens Axboe320ae512013-10-24 09:20:05 +0100457{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700458 blk_account_io_done(rq);
459
Christoph Hellwig91b63632014-04-16 09:44:53 +0200460 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700461 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100462 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200463 } else {
464 if (unlikely(blk_bidi_rq(rq)))
465 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100466 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200467 }
Jens Axboe320ae512013-10-24 09:20:05 +0100468}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700469EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200470
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200471void blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200472{
473 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
474 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700475 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200476}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700477EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100478
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800479static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100480{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800481 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100482
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800483 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100484}
485
Christoph Hellwig453f8342017-04-20 16:03:10 +0200486static void __blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100487{
488 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700489 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100490 int cpu;
491
Christoph Hellwig453f8342017-04-20 16:03:10 +0200492 if (rq->internal_tag != -1)
493 blk_mq_sched_completed_request(rq);
494 if (rq->rq_flags & RQF_STATS) {
495 blk_mq_poll_stats_start(rq->q);
496 blk_stat_add(rq);
497 }
498
Christoph Hellwig38535202014-04-25 02:32:53 -0700499 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800500 rq->q->softirq_done_fn(rq);
501 return;
502 }
Jens Axboe320ae512013-10-24 09:20:05 +0100503
504 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700505 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
506 shared = cpus_share_cache(cpu, ctx->cpu);
507
508 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800509 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800510 rq->csd.info = rq;
511 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100512 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800513 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800514 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800515 }
Jens Axboe320ae512013-10-24 09:20:05 +0100516 put_cpu();
517}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800518
519/**
520 * blk_mq_complete_request - end I/O on a request
521 * @rq: the request being processed
522 *
523 * Description:
524 * Ends all I/O on a request. It does not handle partial completions.
525 * The actual completion happens out-of-order, through a IPI handler.
526 **/
Christoph Hellwig08e00292017-04-20 16:03:09 +0200527void blk_mq_complete_request(struct request *rq)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800528{
Jens Axboe95f09682014-05-27 17:46:48 -0600529 struct request_queue *q = rq->q;
530
531 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800532 return;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200533 if (!blk_mark_rq_complete(rq))
Jens Axboeed851862014-05-30 21:20:50 -0600534 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800535}
536EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100537
Keith Busch973c0192015-01-07 18:55:43 -0700538int blk_mq_request_started(struct request *rq)
539{
540 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
541}
542EXPORT_SYMBOL_GPL(blk_mq_request_started);
543
Christoph Hellwige2490072014-09-13 16:40:09 -0700544void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100545{
546 struct request_queue *q = rq->q;
547
Jens Axboebd166ef2017-01-17 06:03:22 -0700548 blk_mq_sched_started_request(rq);
549
Jens Axboe320ae512013-10-24 09:20:05 +0100550 trace_block_rq_issue(q, rq);
551
Jens Axboecf43e6b2016-11-07 21:32:37 -0700552 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
Shaohua Li88eeca42017-03-27 15:19:41 -0700553 blk_stat_set_issue(&rq->issue_stat, blk_rq_sectors(rq));
Jens Axboecf43e6b2016-11-07 21:32:37 -0700554 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700555 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700556 }
557
Ming Lei2b8393b2014-06-10 00:16:41 +0800558 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600559
560 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600561 * Ensure that ->deadline is visible before set the started
562 * flag and clear the completed flag.
563 */
564 smp_mb__before_atomic();
565
566 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600567 * Mark us as started and clear complete. Complete might have been
568 * set if requeue raced with timeout, which then marked it as
569 * complete. So be sure to clear complete again when we start
570 * the request, otherwise we'll ignore the completion event.
571 */
Jens Axboe4b570522014-05-29 11:00:11 -0600572 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
573 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
574 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
575 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800576
577 if (q->dma_drain_size && blk_rq_bytes(rq)) {
578 /*
579 * Make sure space for the drain appears. We know we can do
580 * this because max_hw_segments has been adjusted to be one
581 * fewer than the device can handle.
582 */
583 rq->nr_phys_segments++;
584 }
Jens Axboe320ae512013-10-24 09:20:05 +0100585}
Christoph Hellwige2490072014-09-13 16:40:09 -0700586EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100587
Ming Leid9d149a2017-03-27 20:06:55 +0800588/*
589 * When we reach here because queue is busy, REQ_ATOM_COMPLETE
Jens Axboe48b99c92017-03-29 11:10:34 -0600590 * flag isn't set yet, so there may be race with timeout handler,
Ming Leid9d149a2017-03-27 20:06:55 +0800591 * but given rq->deadline is just set in .queue_rq() under
592 * this situation, the race won't be possible in reality because
593 * rq->timeout should be set as big enough to cover the window
594 * between blk_mq_start_request() called from .queue_rq() and
595 * clearing REQ_ATOM_STARTED here.
596 */
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200597static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100598{
599 struct request_queue *q = rq->q;
600
601 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700602 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700603 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800604
Christoph Hellwige2490072014-09-13 16:40:09 -0700605 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
606 if (q->dma_drain_size && blk_rq_bytes(rq))
607 rq->nr_phys_segments--;
608 }
Jens Axboe320ae512013-10-24 09:20:05 +0100609}
610
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700611void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200612{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200613 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200614
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200615 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700616 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200617}
618EXPORT_SYMBOL(blk_mq_requeue_request);
619
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600620static void blk_mq_requeue_work(struct work_struct *work)
621{
622 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400623 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600624 LIST_HEAD(rq_list);
625 struct request *rq, *next;
626 unsigned long flags;
627
628 spin_lock_irqsave(&q->requeue_lock, flags);
629 list_splice_init(&q->requeue_list, &rq_list);
630 spin_unlock_irqrestore(&q->requeue_lock, flags);
631
632 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200633 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600634 continue;
635
Christoph Hellwige8064022016-10-20 15:12:13 +0200636 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600637 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700638 blk_mq_sched_insert_request(rq, true, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600639 }
640
641 while (!list_empty(&rq_list)) {
642 rq = list_entry(rq_list.next, struct request, queuelist);
643 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700644 blk_mq_sched_insert_request(rq, false, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600645 }
646
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700647 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600648}
649
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700650void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
651 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600652{
653 struct request_queue *q = rq->q;
654 unsigned long flags;
655
656 /*
657 * We abuse this flag that is otherwise used by the I/O scheduler to
658 * request head insertation from the workqueue.
659 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200660 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600661
662 spin_lock_irqsave(&q->requeue_lock, flags);
663 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200664 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600665 list_add(&rq->queuelist, &q->requeue_list);
666 } else {
667 list_add_tail(&rq->queuelist, &q->requeue_list);
668 }
669 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700670
671 if (kick_requeue_list)
672 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600673}
674EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
675
676void blk_mq_kick_requeue_list(struct request_queue *q)
677{
Mike Snitzer28494502016-09-14 13:28:30 -0400678 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600679}
680EXPORT_SYMBOL(blk_mq_kick_requeue_list);
681
Mike Snitzer28494502016-09-14 13:28:30 -0400682void blk_mq_delay_kick_requeue_list(struct request_queue *q,
683 unsigned long msecs)
684{
685 kblockd_schedule_delayed_work(&q->requeue_work,
686 msecs_to_jiffies(msecs));
687}
688EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
689
Jens Axboe0e62f512014-06-04 10:23:49 -0600690struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
691{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600692 if (tag < tags->nr_tags) {
693 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700694 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600695 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700696
697 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600698}
699EXPORT_SYMBOL(blk_mq_tag_to_rq);
700
Jens Axboe320ae512013-10-24 09:20:05 +0100701struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700702 unsigned long next;
703 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100704};
705
Christoph Hellwig90415832014-09-22 10:21:48 -0600706void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100707{
Jens Axboef8a5b122016-12-13 09:24:51 -0700708 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700709 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600710
711 /*
712 * We know that complete is set at this point. If STARTED isn't set
713 * anymore, then the request isn't active and the "timeout" should
714 * just be ignored. This can happen due to the bitflag ordering.
715 * Timeout first checks if STARTED is set, and if it is, assumes
716 * the request is active. But if we race with completion, then
Jens Axboe48b99c92017-03-29 11:10:34 -0600717 * both flags will get cleared. So check here again, and ignore
Jens Axboe87ee7b12014-04-24 08:51:47 -0600718 * a timeout event with a request that isn't active.
719 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700720 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
721 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600722
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700723 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700724 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600725
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700726 switch (ret) {
727 case BLK_EH_HANDLED:
728 __blk_mq_complete_request(req);
729 break;
730 case BLK_EH_RESET_TIMER:
731 blk_add_timer(req);
732 blk_clear_rq_complete(req);
733 break;
734 case BLK_EH_NOT_HANDLED:
735 break;
736 default:
737 printk(KERN_ERR "block: bad eh return: %d\n", ret);
738 break;
739 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600740}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700741
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700742static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
743 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100744{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700745 struct blk_mq_timeout_data *data = priv;
746
Ming Lei95a49602017-03-22 10:14:43 +0800747 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700748 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100749
Ming Leid9d149a2017-03-27 20:06:55 +0800750 /*
751 * The rq being checked may have been freed and reallocated
752 * out already here, we avoid this race by checking rq->deadline
753 * and REQ_ATOM_COMPLETE flag together:
754 *
755 * - if rq->deadline is observed as new value because of
756 * reusing, the rq won't be timed out because of timing.
757 * - if rq->deadline is observed as previous value,
758 * REQ_ATOM_COMPLETE flag won't be cleared in reuse path
759 * because we put a barrier between setting rq->deadline
760 * and clearing the flag in blk_mq_start_request(), so
761 * this rq won't be timed out too.
762 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700763 if (time_after_eq(jiffies, rq->deadline)) {
764 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700765 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700766 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
767 data->next = rq->deadline;
768 data->next_set = 1;
769 }
Jens Axboe320ae512013-10-24 09:20:05 +0100770}
771
Christoph Hellwig287922e2015-10-30 20:57:30 +0800772static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100773{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800774 struct request_queue *q =
775 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700776 struct blk_mq_timeout_data data = {
777 .next = 0,
778 .next_set = 0,
779 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700780 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100781
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600782 /* A deadlock might occur if a request is stuck requiring a
783 * timeout at the same time a queue freeze is waiting
784 * completion, since the timeout code would not be able to
785 * acquire the queue reference here.
786 *
787 * That's why we don't use blk_queue_enter here; instead, we use
788 * percpu_ref_tryget directly, because we need to be able to
789 * obtain a reference even in the short window between the queue
790 * starting to freeze, by dropping the first reference in
Ming Lei1671d522017-03-27 20:06:57 +0800791 * blk_freeze_queue_start, and the moment the last request is
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600792 * consumed, marked by the instant q_usage_counter reaches
793 * zero.
794 */
795 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800796 return;
797
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200798 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100799
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700800 if (data.next_set) {
801 data.next = blk_rq_timeout(round_jiffies_up(data.next));
802 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600803 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200804 struct blk_mq_hw_ctx *hctx;
805
Ming Leif054b562015-04-21 10:00:19 +0800806 queue_for_each_hw_ctx(q, hctx, i) {
807 /* the hctx may be unmapped, so check it here */
808 if (blk_mq_hw_queue_mapped(hctx))
809 blk_mq_tag_idle(hctx);
810 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600811 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800812 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100813}
814
Omar Sandoval88459642016-09-17 08:38:44 -0600815struct flush_busy_ctx_data {
816 struct blk_mq_hw_ctx *hctx;
817 struct list_head *list;
818};
819
820static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
821{
822 struct flush_busy_ctx_data *flush_data = data;
823 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
824 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
825
826 sbitmap_clear_bit(sb, bitnr);
827 spin_lock(&ctx->lock);
828 list_splice_tail_init(&ctx->rq_list, flush_data->list);
829 spin_unlock(&ctx->lock);
830 return true;
831}
832
Jens Axboe320ae512013-10-24 09:20:05 +0100833/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600834 * Process software queues that have been marked busy, splicing them
835 * to the for-dispatch
836 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700837void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600838{
Omar Sandoval88459642016-09-17 08:38:44 -0600839 struct flush_busy_ctx_data data = {
840 .hctx = hctx,
841 .list = list,
842 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600843
Omar Sandoval88459642016-09-17 08:38:44 -0600844 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600845}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700846EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600847
Jens Axboe703fd1c2016-09-16 13:59:14 -0600848static inline unsigned int queued_to_index(unsigned int queued)
849{
850 if (!queued)
851 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600852
Jens Axboe703fd1c2016-09-16 13:59:14 -0600853 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600854}
855
Jens Axboebd6737f2017-01-27 01:00:47 -0700856bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx,
857 bool wait)
Jens Axboebd166ef2017-01-17 06:03:22 -0700858{
859 struct blk_mq_alloc_data data = {
860 .q = rq->q,
Jens Axboebd166ef2017-01-17 06:03:22 -0700861 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
862 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
863 };
864
Jens Axboe5feeacd2017-04-20 17:23:13 -0600865 might_sleep_if(wait);
866
Omar Sandoval81380ca2017-04-07 08:56:26 -0600867 if (rq->tag != -1)
868 goto done;
Jens Axboebd166ef2017-01-17 06:03:22 -0700869
Sagi Grimberg415b8062017-02-27 10:04:39 -0700870 if (blk_mq_tag_is_reserved(data.hctx->sched_tags, rq->internal_tag))
871 data.flags |= BLK_MQ_REQ_RESERVED;
872
Jens Axboebd166ef2017-01-17 06:03:22 -0700873 rq->tag = blk_mq_get_tag(&data);
874 if (rq->tag >= 0) {
Jens Axboe200e86b2017-01-25 08:11:38 -0700875 if (blk_mq_tag_busy(data.hctx)) {
876 rq->rq_flags |= RQF_MQ_INFLIGHT;
877 atomic_inc(&data.hctx->nr_active);
878 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700879 data.hctx->tags->rqs[rq->tag] = rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700880 }
881
Omar Sandoval81380ca2017-04-07 08:56:26 -0600882done:
883 if (hctx)
884 *hctx = data.hctx;
885 return rq->tag != -1;
Jens Axboebd166ef2017-01-17 06:03:22 -0700886}
887
Jens Axboe113285b2017-03-02 13:26:04 -0700888static void __blk_mq_put_driver_tag(struct blk_mq_hw_ctx *hctx,
889 struct request *rq)
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700890{
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700891 blk_mq_put_tag(hctx, hctx->tags, rq->mq_ctx, rq->tag);
892 rq->tag = -1;
893
894 if (rq->rq_flags & RQF_MQ_INFLIGHT) {
895 rq->rq_flags &= ~RQF_MQ_INFLIGHT;
896 atomic_dec(&hctx->nr_active);
897 }
898}
899
Jens Axboe113285b2017-03-02 13:26:04 -0700900static void blk_mq_put_driver_tag_hctx(struct blk_mq_hw_ctx *hctx,
901 struct request *rq)
902{
903 if (rq->tag == -1 || rq->internal_tag == -1)
904 return;
905
906 __blk_mq_put_driver_tag(hctx, rq);
907}
908
909static void blk_mq_put_driver_tag(struct request *rq)
910{
911 struct blk_mq_hw_ctx *hctx;
912
913 if (rq->tag == -1 || rq->internal_tag == -1)
914 return;
915
916 hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu);
917 __blk_mq_put_driver_tag(hctx, rq);
918}
919
Jens Axboebd166ef2017-01-17 06:03:22 -0700920/*
921 * If we fail getting a driver tag because all the driver tags are already
922 * assigned and on the dispatch list, BUT the first entry does not have a
923 * tag, then we could deadlock. For that case, move entries with assigned
924 * driver tags to the front, leaving the set of tagged requests in the
925 * same order, and the untagged set in the same order.
926 */
927static bool reorder_tags_to_front(struct list_head *list)
928{
929 struct request *rq, *tmp, *first = NULL;
930
931 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
932 if (rq == first)
933 break;
934 if (rq->tag != -1) {
935 list_move(&rq->queuelist, list);
936 if (!first)
937 first = rq;
938 }
939 }
940
941 return first != NULL;
942}
943
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800944static int blk_mq_dispatch_wake(wait_queue_t *wait, unsigned mode, int flags,
945 void *key)
946{
947 struct blk_mq_hw_ctx *hctx;
948
949 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
950
951 list_del(&wait->task_list);
952 clear_bit_unlock(BLK_MQ_S_TAG_WAITING, &hctx->state);
953 blk_mq_run_hw_queue(hctx, true);
954 return 1;
955}
956
957static bool blk_mq_dispatch_wait_add(struct blk_mq_hw_ctx *hctx)
958{
959 struct sbq_wait_state *ws;
960
961 /*
962 * The TAG_WAITING bit serves as a lock protecting hctx->dispatch_wait.
963 * The thread which wins the race to grab this bit adds the hardware
964 * queue to the wait queue.
965 */
966 if (test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state) ||
967 test_and_set_bit_lock(BLK_MQ_S_TAG_WAITING, &hctx->state))
968 return false;
969
970 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
971 ws = bt_wait_ptr(&hctx->tags->bitmap_tags, hctx);
972
973 /*
974 * As soon as this returns, it's no longer safe to fiddle with
975 * hctx->dispatch_wait, since a completion can wake up the wait queue
976 * and unlock the bit.
977 */
978 add_wait_queue(&ws->wait, &hctx->dispatch_wait);
979 return true;
980}
981
Omar Sandoval81380ca2017-04-07 08:56:26 -0600982bool blk_mq_dispatch_rq_list(struct request_queue *q, struct list_head *list)
Jens Axboef04c3df2016-12-07 08:41:17 -0700983{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600984 struct blk_mq_hw_ctx *hctx;
Jens Axboef04c3df2016-12-07 08:41:17 -0700985 struct request *rq;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200986 int errors, queued;
Jens Axboef04c3df2016-12-07 08:41:17 -0700987
Omar Sandoval81380ca2017-04-07 08:56:26 -0600988 if (list_empty(list))
989 return false;
990
Jens Axboef04c3df2016-12-07 08:41:17 -0700991 /*
Jens Axboef04c3df2016-12-07 08:41:17 -0700992 * Now process all the entries, sending them to the driver.
993 */
Jens Axboe93efe982017-03-24 12:04:19 -0600994 errors = queued = 0;
Omar Sandoval81380ca2017-04-07 08:56:26 -0600995 do {
Jens Axboef04c3df2016-12-07 08:41:17 -0700996 struct blk_mq_queue_data bd;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200997 blk_status_t ret;
Jens Axboef04c3df2016-12-07 08:41:17 -0700998
999 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -07001000 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
1001 if (!queued && reorder_tags_to_front(list))
1002 continue;
Jens Axboe3c782d62017-01-26 12:50:36 -07001003
1004 /*
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001005 * The initial allocation attempt failed, so we need to
1006 * rerun the hardware queue when a tag is freed.
Jens Axboe3c782d62017-01-26 12:50:36 -07001007 */
Omar Sandoval807b1042017-04-05 12:01:35 -07001008 if (!blk_mq_dispatch_wait_add(hctx))
Jens Axboe3c782d62017-01-26 12:50:36 -07001009 break;
Omar Sandoval807b1042017-04-05 12:01:35 -07001010
1011 /*
1012 * It's possible that a tag was freed in the window
1013 * between the allocation failure and adding the
1014 * hardware queue to the wait queue.
1015 */
1016 if (!blk_mq_get_driver_tag(rq, &hctx, false))
1017 break;
Jens Axboebd166ef2017-01-17 06:03:22 -07001018 }
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001019
Jens Axboef04c3df2016-12-07 08:41:17 -07001020 list_del_init(&rq->queuelist);
1021
1022 bd.rq = rq;
Jens Axboe113285b2017-03-02 13:26:04 -07001023
1024 /*
1025 * Flag last if we have no more requests, or if we have more
1026 * but can't assign a driver tag to it.
1027 */
1028 if (list_empty(list))
1029 bd.last = true;
1030 else {
1031 struct request *nxt;
1032
1033 nxt = list_first_entry(list, struct request, queuelist);
1034 bd.last = !blk_mq_get_driver_tag(nxt, NULL, false);
1035 }
Jens Axboef04c3df2016-12-07 08:41:17 -07001036
1037 ret = q->mq_ops->queue_rq(hctx, &bd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001038 if (ret == BLK_STS_RESOURCE) {
Jens Axboe113285b2017-03-02 13:26:04 -07001039 blk_mq_put_driver_tag_hctx(hctx, rq);
Jens Axboef04c3df2016-12-07 08:41:17 -07001040 list_add(&rq->queuelist, list);
1041 __blk_mq_requeue_request(rq);
1042 break;
Jens Axboef04c3df2016-12-07 08:41:17 -07001043 }
1044
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001045 if (unlikely(ret != BLK_STS_OK)) {
1046 errors++;
1047 blk_mq_end_request(rq, BLK_STS_IOERR);
1048 continue;
1049 }
1050
1051 queued++;
Omar Sandoval81380ca2017-04-07 08:56:26 -06001052 } while (!list_empty(list));
Jens Axboef04c3df2016-12-07 08:41:17 -07001053
1054 hctx->dispatched[queued_to_index(queued)]++;
1055
1056 /*
1057 * Any items that need requeuing? Stuff them into hctx->dispatch,
1058 * that is where we will continue on next queue run.
1059 */
1060 if (!list_empty(list)) {
Jens Axboe113285b2017-03-02 13:26:04 -07001061 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001062 * If an I/O scheduler has been configured and we got a driver
1063 * tag for the next request already, free it again.
Jens Axboe113285b2017-03-02 13:26:04 -07001064 */
1065 rq = list_first_entry(list, struct request, queuelist);
1066 blk_mq_put_driver_tag(rq);
1067
Jens Axboef04c3df2016-12-07 08:41:17 -07001068 spin_lock(&hctx->lock);
Jens Axboec13660a2017-01-26 12:40:07 -07001069 list_splice_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001070 spin_unlock(&hctx->lock);
1071
1072 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001073 * If SCHED_RESTART was set by the caller of this function and
1074 * it is no longer set that means that it was cleared by another
1075 * thread and hence that a queue rerun is needed.
Jens Axboef04c3df2016-12-07 08:41:17 -07001076 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001077 * If TAG_WAITING is set that means that an I/O scheduler has
1078 * been configured and another thread is waiting for a driver
1079 * tag. To guarantee fairness, do not rerun this hardware queue
1080 * but let the other thread grab the driver tag.
Jens Axboebd166ef2017-01-17 06:03:22 -07001081 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001082 * If no I/O scheduler has been configured it is possible that
1083 * the hardware queue got stopped and restarted before requests
1084 * were pushed back onto the dispatch list. Rerun the queue to
1085 * avoid starvation. Notes:
1086 * - blk_mq_run_hw_queue() checks whether or not a queue has
1087 * been stopped before rerunning a queue.
1088 * - Some but not all block drivers stop a queue before
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001089 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
Bart Van Assche710c7852017-04-07 11:16:51 -07001090 * and dm-rq.
Jens Axboebd166ef2017-01-17 06:03:22 -07001091 */
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001092 if (!blk_mq_sched_needs_restart(hctx) &&
1093 !test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state))
Jens Axboebd166ef2017-01-17 06:03:22 -07001094 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -07001095 }
1096
Jens Axboe93efe982017-03-24 12:04:19 -06001097 return (queued + errors) != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001098}
1099
Bart Van Assche6a83e742016-11-02 10:09:51 -06001100static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1101{
1102 int srcu_idx;
1103
1104 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1105 cpu_online(hctx->next_cpu));
1106
1107 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1108 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001109 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001110 rcu_read_unlock();
1111 } else {
Jens Axboebf4907c2017-03-30 12:30:39 -06001112 might_sleep();
1113
Bart Van Assche07319672017-06-20 11:15:38 -07001114 srcu_idx = srcu_read_lock(hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001115 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche07319672017-06-20 11:15:38 -07001116 srcu_read_unlock(hctx->queue_rq_srcu, srcu_idx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001117 }
1118}
1119
Jens Axboe506e9312014-05-07 10:26:44 -06001120/*
1121 * It'd be great if the workqueue API had a way to pass
1122 * in a mask and had some smarts for more clever placement.
1123 * For now we just round-robin here, switching for every
1124 * BLK_MQ_CPU_WORK_BATCH queued items.
1125 */
1126static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1127{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001128 if (hctx->queue->nr_hw_queues == 1)
1129 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001130
1131 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001132 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001133
1134 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1135 if (next_cpu >= nr_cpu_ids)
1136 next_cpu = cpumask_first(hctx->cpumask);
1137
1138 hctx->next_cpu = next_cpu;
1139 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1140 }
1141
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001142 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001143}
1144
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001145static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1146 unsigned long msecs)
Jens Axboe320ae512013-10-24 09:20:05 +01001147{
Bart Van Assche5435c022017-06-20 11:15:49 -07001148 if (WARN_ON_ONCE(!blk_mq_hw_queue_mapped(hctx)))
1149 return;
1150
1151 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001152 return;
1153
Jens Axboe1b792f22016-09-21 10:12:13 -06001154 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001155 int cpu = get_cpu();
1156 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001157 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001158 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001159 return;
1160 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001161
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001162 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001163 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001164
Jens Axboe9f993732017-04-10 09:54:54 -06001165 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1166 &hctx->run_work,
1167 msecs_to_jiffies(msecs));
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001168}
1169
1170void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1171{
1172 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1173}
1174EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1175
1176void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1177{
1178 __blk_mq_delay_run_hw_queue(hctx, async, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01001179}
Omar Sandoval5b727272017-04-14 01:00:00 -07001180EXPORT_SYMBOL(blk_mq_run_hw_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01001181
Mike Snitzerb94ec292015-03-11 23:56:38 -04001182void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001183{
1184 struct blk_mq_hw_ctx *hctx;
1185 int i;
1186
1187 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001188 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001189 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001190 continue;
1191
Mike Snitzerb94ec292015-03-11 23:56:38 -04001192 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001193 }
1194}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001195EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001196
Bart Van Asschefd001442016-10-28 17:19:37 -07001197/**
1198 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1199 * @q: request queue.
1200 *
1201 * The caller is responsible for serializing this function against
1202 * blk_mq_{start,stop}_hw_queue().
1203 */
1204bool blk_mq_queue_stopped(struct request_queue *q)
1205{
1206 struct blk_mq_hw_ctx *hctx;
1207 int i;
1208
1209 queue_for_each_hw_ctx(q, hctx, i)
1210 if (blk_mq_hctx_stopped(hctx))
1211 return true;
1212
1213 return false;
1214}
1215EXPORT_SYMBOL(blk_mq_queue_stopped);
1216
Ming Lei39a70c72017-06-06 23:22:09 +08001217/*
1218 * This function is often used for pausing .queue_rq() by driver when
1219 * there isn't enough resource or some conditions aren't satisfied, and
1220 * BLK_MQ_RQ_QUEUE_BUSY is usually returned.
1221 *
1222 * We do not guarantee that dispatch can be drained or blocked
1223 * after blk_mq_stop_hw_queue() returns. Please use
1224 * blk_mq_quiesce_queue() for that requirement.
1225 */
Jens Axboe320ae512013-10-24 09:20:05 +01001226void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1227{
Ming Lei641a9ed2017-06-06 23:22:10 +08001228 cancel_delayed_work(&hctx->run_work);
1229
1230 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboe320ae512013-10-24 09:20:05 +01001231}
1232EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1233
Ming Lei39a70c72017-06-06 23:22:09 +08001234/*
1235 * This function is often used for pausing .queue_rq() by driver when
1236 * there isn't enough resource or some conditions aren't satisfied, and
1237 * BLK_MQ_RQ_QUEUE_BUSY is usually returned.
1238 *
1239 * We do not guarantee that dispatch can be drained or blocked
1240 * after blk_mq_stop_hw_queues() returns. Please use
1241 * blk_mq_quiesce_queue() for that requirement.
1242 */
Jens Axboe2719aa22017-05-03 11:08:14 -06001243void blk_mq_stop_hw_queues(struct request_queue *q)
1244{
Ming Lei641a9ed2017-06-06 23:22:10 +08001245 struct blk_mq_hw_ctx *hctx;
1246 int i;
1247
1248 queue_for_each_hw_ctx(q, hctx, i)
1249 blk_mq_stop_hw_queue(hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001250}
1251EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1252
Jens Axboe320ae512013-10-24 09:20:05 +01001253void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1254{
1255 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001256
Jens Axboe0ffbce82014-06-25 08:22:34 -06001257 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001258}
1259EXPORT_SYMBOL(blk_mq_start_hw_queue);
1260
Christoph Hellwig2f268552014-04-16 09:44:56 +02001261void blk_mq_start_hw_queues(struct request_queue *q)
1262{
1263 struct blk_mq_hw_ctx *hctx;
1264 int i;
1265
1266 queue_for_each_hw_ctx(q, hctx, i)
1267 blk_mq_start_hw_queue(hctx);
1268}
1269EXPORT_SYMBOL(blk_mq_start_hw_queues);
1270
Jens Axboeae911c52016-12-08 13:19:30 -07001271void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1272{
1273 if (!blk_mq_hctx_stopped(hctx))
1274 return;
1275
1276 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1277 blk_mq_run_hw_queue(hctx, async);
1278}
1279EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1280
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001281void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001282{
1283 struct blk_mq_hw_ctx *hctx;
1284 int i;
1285
Jens Axboeae911c52016-12-08 13:19:30 -07001286 queue_for_each_hw_ctx(q, hctx, i)
1287 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001288}
1289EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1290
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001291static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001292{
1293 struct blk_mq_hw_ctx *hctx;
1294
Jens Axboe9f993732017-04-10 09:54:54 -06001295 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboe21c6e932017-04-10 09:54:56 -06001296
1297 /*
1298 * If we are stopped, don't run the queue. The exception is if
1299 * BLK_MQ_S_START_ON_RUN is set. For that case, we auto-clear
1300 * the STOPPED bit and run it.
1301 */
1302 if (test_bit(BLK_MQ_S_STOPPED, &hctx->state)) {
1303 if (!test_bit(BLK_MQ_S_START_ON_RUN, &hctx->state))
1304 return;
1305
1306 clear_bit(BLK_MQ_S_START_ON_RUN, &hctx->state);
1307 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1308 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001309
Jens Axboe320ae512013-10-24 09:20:05 +01001310 __blk_mq_run_hw_queue(hctx);
1311}
1312
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001313
1314void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1315{
Bart Van Assche5435c022017-06-20 11:15:49 -07001316 if (WARN_ON_ONCE(!blk_mq_hw_queue_mapped(hctx)))
Ming Lei19c66e52014-12-03 19:38:04 +08001317 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001318
Jens Axboe21c6e932017-04-10 09:54:56 -06001319 /*
1320 * Stop the hw queue, then modify currently delayed work.
1321 * This should prevent us from running the queue prematurely.
1322 * Mark the queue as auto-clearing STOPPED when it runs.
1323 */
Jens Axboe7e79dad2017-01-19 07:58:59 -07001324 blk_mq_stop_hw_queue(hctx);
Jens Axboe21c6e932017-04-10 09:54:56 -06001325 set_bit(BLK_MQ_S_START_ON_RUN, &hctx->state);
1326 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1327 &hctx->run_work,
1328 msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001329}
1330EXPORT_SYMBOL(blk_mq_delay_queue);
1331
Ming Leicfd0c552015-10-20 23:13:57 +08001332static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001333 struct request *rq,
1334 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001335{
Jens Axboee57690f2016-08-24 15:34:35 -06001336 struct blk_mq_ctx *ctx = rq->mq_ctx;
1337
Bart Van Assche7b607812017-06-20 11:15:47 -07001338 lockdep_assert_held(&ctx->lock);
1339
Jens Axboe01b983c2013-11-19 18:59:10 -07001340 trace_block_rq_insert(hctx->queue, rq);
1341
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001342 if (at_head)
1343 list_add(&rq->queuelist, &ctx->rq_list);
1344 else
1345 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001346}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001347
Jens Axboe2c3ad662016-12-14 14:34:47 -07001348void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1349 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001350{
1351 struct blk_mq_ctx *ctx = rq->mq_ctx;
1352
Bart Van Assche7b607812017-06-20 11:15:47 -07001353 lockdep_assert_held(&ctx->lock);
1354
Jens Axboee57690f2016-08-24 15:34:35 -06001355 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001356 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001357}
1358
Jens Axboebd166ef2017-01-17 06:03:22 -07001359void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1360 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001361
1362{
Jens Axboe320ae512013-10-24 09:20:05 +01001363 /*
1364 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1365 * offline now
1366 */
1367 spin_lock(&ctx->lock);
1368 while (!list_empty(list)) {
1369 struct request *rq;
1370
1371 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001372 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001373 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001374 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001375 }
Ming Leicfd0c552015-10-20 23:13:57 +08001376 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001377 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001378}
1379
1380static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1381{
1382 struct request *rqa = container_of(a, struct request, queuelist);
1383 struct request *rqb = container_of(b, struct request, queuelist);
1384
1385 return !(rqa->mq_ctx < rqb->mq_ctx ||
1386 (rqa->mq_ctx == rqb->mq_ctx &&
1387 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1388}
1389
1390void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1391{
1392 struct blk_mq_ctx *this_ctx;
1393 struct request_queue *this_q;
1394 struct request *rq;
1395 LIST_HEAD(list);
1396 LIST_HEAD(ctx_list);
1397 unsigned int depth;
1398
1399 list_splice_init(&plug->mq_list, &list);
1400
1401 list_sort(NULL, &list, plug_ctx_cmp);
1402
1403 this_q = NULL;
1404 this_ctx = NULL;
1405 depth = 0;
1406
1407 while (!list_empty(&list)) {
1408 rq = list_entry_rq(list.next);
1409 list_del_init(&rq->queuelist);
1410 BUG_ON(!rq->q);
1411 if (rq->mq_ctx != this_ctx) {
1412 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001413 trace_block_unplug(this_q, depth, from_schedule);
1414 blk_mq_sched_insert_requests(this_q, this_ctx,
1415 &ctx_list,
1416 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001417 }
1418
1419 this_ctx = rq->mq_ctx;
1420 this_q = rq->q;
1421 depth = 0;
1422 }
1423
1424 depth++;
1425 list_add_tail(&rq->queuelist, &ctx_list);
1426 }
1427
1428 /*
1429 * If 'this_ctx' is set, we know we have entries to complete
1430 * on 'ctx_list'. Do those.
1431 */
1432 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001433 trace_block_unplug(this_q, depth, from_schedule);
1434 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1435 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001436 }
1437}
1438
1439static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1440{
Bart Van Asscheda8d7f02017-04-19 14:01:24 -07001441 blk_init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001442
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001443 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001444}
1445
Jens Axboe274a5842014-08-15 12:44:08 -06001446static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1447{
1448 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1449 !blk_queue_nomerges(hctx->queue);
1450}
1451
Ming Leiab42f352017-05-26 19:53:19 +08001452static inline void blk_mq_queue_io(struct blk_mq_hw_ctx *hctx,
1453 struct blk_mq_ctx *ctx,
1454 struct request *rq)
1455{
1456 spin_lock(&ctx->lock);
1457 __blk_mq_insert_request(hctx, rq, false);
1458 spin_unlock(&ctx->lock);
Jens Axboe07068d52014-05-22 10:40:51 -06001459}
1460
Jens Axboefd2d3322017-01-12 10:04:45 -07001461static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1462{
Jens Axboebd166ef2017-01-17 06:03:22 -07001463 if (rq->tag != -1)
1464 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1465
1466 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001467}
1468
Ming Leid964f042017-06-06 23:22:00 +08001469static void __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1470 struct request *rq,
1471 blk_qc_t *cookie, bool may_sleep)
Shaohua Lif984df12015-05-08 10:51:32 -07001472{
Shaohua Lif984df12015-05-08 10:51:32 -07001473 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001474 struct blk_mq_queue_data bd = {
1475 .rq = rq,
Omar Sandovald945a362017-04-05 12:01:36 -07001476 .last = true,
Shaohua Lif984df12015-05-08 10:51:32 -07001477 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001478 blk_qc_t new_cookie;
Jens Axboef06345a2017-06-12 11:22:46 -06001479 blk_status_t ret;
Ming Leid964f042017-06-06 23:22:00 +08001480 bool run_queue = true;
1481
Ming Leif4560ff2017-06-18 14:24:27 -06001482 /* RCU or SRCU read lock is needed before checking quiesced flag */
1483 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
Ming Leid964f042017-06-06 23:22:00 +08001484 run_queue = false;
1485 goto insert;
1486 }
Shaohua Lif984df12015-05-08 10:51:32 -07001487
Jens Axboebd166ef2017-01-17 06:03:22 -07001488 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001489 goto insert;
1490
Ming Leid964f042017-06-06 23:22:00 +08001491 if (!blk_mq_get_driver_tag(rq, NULL, false))
Jens Axboebd166ef2017-01-17 06:03:22 -07001492 goto insert;
1493
1494 new_cookie = request_to_qc_t(hctx, rq);
1495
Shaohua Lif984df12015-05-08 10:51:32 -07001496 /*
1497 * For OK queue, we are done. For error, kill it. Any other
1498 * error (busy), just add it to our list as we previously
1499 * would have done
1500 */
1501 ret = q->mq_ops->queue_rq(hctx, &bd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001502 switch (ret) {
1503 case BLK_STS_OK:
Jens Axboe7b371632015-11-05 10:41:40 -07001504 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001505 return;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001506 case BLK_STS_RESOURCE:
1507 __blk_mq_requeue_request(rq);
1508 goto insert;
1509 default:
Jens Axboe7b371632015-11-05 10:41:40 -07001510 *cookie = BLK_QC_T_NONE;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001511 blk_mq_end_request(rq, ret);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001512 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001513 }
1514
Bart Van Assche2253efc2016-10-28 17:20:02 -07001515insert:
Ming Leid964f042017-06-06 23:22:00 +08001516 blk_mq_sched_insert_request(rq, false, run_queue, false, may_sleep);
Shaohua Lif984df12015-05-08 10:51:32 -07001517}
1518
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001519static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1520 struct request *rq, blk_qc_t *cookie)
1521{
1522 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1523 rcu_read_lock();
Ming Leid964f042017-06-06 23:22:00 +08001524 __blk_mq_try_issue_directly(hctx, rq, cookie, false);
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001525 rcu_read_unlock();
1526 } else {
Jens Axboebf4907c2017-03-30 12:30:39 -06001527 unsigned int srcu_idx;
1528
1529 might_sleep();
1530
Bart Van Assche07319672017-06-20 11:15:38 -07001531 srcu_idx = srcu_read_lock(hctx->queue_rq_srcu);
Ming Leid964f042017-06-06 23:22:00 +08001532 __blk_mq_try_issue_directly(hctx, rq, cookie, true);
Bart Van Assche07319672017-06-20 11:15:38 -07001533 srcu_read_unlock(hctx->queue_rq_srcu, srcu_idx);
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001534 }
1535}
1536
Jens Axboedece1632015-11-05 10:41:16 -07001537static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001538{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001539 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001540 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jens Axboe5a797e02017-01-26 12:22:11 -07001541 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001542 struct request *rq;
Christoph Hellwig5eb61262017-03-22 15:01:51 -04001543 unsigned int request_count = 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001544 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001545 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001546 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001547 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001548
1549 blk_queue_bounce(q, &bio);
1550
NeilBrownaf67c312017-06-18 14:38:57 +10001551 blk_queue_split(q, &bio);
Wen Xiongf36ea502017-05-10 08:54:11 -05001552
Jens Axboe07068d52014-05-22 10:40:51 -06001553 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001554 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001555 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001556 }
1557
Omar Sandoval87c279e2016-06-01 22:18:48 -07001558 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1559 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1560 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001561
Jens Axboebd166ef2017-01-17 06:03:22 -07001562 if (blk_mq_sched_bio_merge(q, bio))
1563 return BLK_QC_T_NONE;
1564
Jens Axboe87760e52016-11-09 12:38:14 -07001565 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1566
Jens Axboebd166ef2017-01-17 06:03:22 -07001567 trace_block_getrq(q, bio, bio->bi_opf);
1568
Christoph Hellwigd2c0d382017-06-16 18:15:19 +02001569 rq = blk_mq_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001570 if (unlikely(!rq)) {
1571 __wbt_done(q->rq_wb, wb_acct);
Goldwyn Rodrigues03a07c92017-06-20 07:05:46 -05001572 if (bio->bi_opf & REQ_NOWAIT)
1573 bio_wouldblock_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001574 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001575 }
1576
1577 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001578
Jens Axboefd2d3322017-01-12 10:04:45 -07001579 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001580
Shaohua Lif984df12015-05-08 10:51:32 -07001581 plug = current->plug;
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001582 if (unlikely(is_flush_fua)) {
Shaohua Lif984df12015-05-08 10:51:32 -07001583 blk_mq_put_ctx(data.ctx);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001584 blk_mq_bio_to_request(rq, bio);
1585 if (q->elevator) {
1586 blk_mq_sched_insert_request(rq, false, true, true,
1587 true);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001588 } else {
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001589 blk_insert_flush(rq);
1590 blk_mq_run_hw_queue(data.hctx, true);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001591 }
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001592 } else if (plug && q->nr_hw_queues == 1) {
Shaohua Li600271d2016-11-03 17:03:54 -07001593 struct request *last = NULL;
1594
Jens Axboeb00c53e2017-04-20 16:40:36 -06001595 blk_mq_put_ctx(data.ctx);
Jeff Moyere6c44382015-05-08 10:51:30 -07001596 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001597
1598 /*
1599 * @request_count may become stale because of schedule
1600 * out, so check the list again.
1601 */
1602 if (list_empty(&plug->mq_list))
1603 request_count = 0;
Christoph Hellwig254d2592017-03-22 15:01:50 -04001604 else if (blk_queue_nomerges(q))
1605 request_count = blk_plug_queued_count(q);
1606
Ming Lei676d0602015-10-20 23:13:56 +08001607 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001608 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001609 else
1610 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001611
Shaohua Li600271d2016-11-03 17:03:54 -07001612 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1613 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001614 blk_flush_plug_list(plug, false);
1615 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001616 }
Jens Axboeb094f892015-11-20 20:29:45 -07001617
Jeff Moyere6c44382015-05-08 10:51:30 -07001618 list_add_tail(&rq->queuelist, &plug->mq_list);
Christoph Hellwig22997222017-03-22 15:01:52 -04001619 } else if (plug && !blk_queue_nomerges(q)) {
Jens Axboe320ae512013-10-24 09:20:05 +01001620 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001621
Jens Axboe320ae512013-10-24 09:20:05 +01001622 /*
1623 * We do limited plugging. If the bio can be merged, do that.
1624 * Otherwise the existing request in the plug list will be
1625 * issued. So the plug list will have one request at most
Christoph Hellwig22997222017-03-22 15:01:52 -04001626 * The plug list might get flushed before this. If that happens,
1627 * the plug list is empty, and same_queue_rq is invalid.
Jens Axboe320ae512013-10-24 09:20:05 +01001628 */
Christoph Hellwig22997222017-03-22 15:01:52 -04001629 if (list_empty(&plug->mq_list))
1630 same_queue_rq = NULL;
1631 if (same_queue_rq)
1632 list_del_init(&same_queue_rq->queuelist);
1633 list_add_tail(&rq->queuelist, &plug->mq_list);
1634
Jens Axboebf4907c2017-03-30 12:30:39 -06001635 blk_mq_put_ctx(data.ctx);
1636
Ming Leidad7a3b2017-06-06 23:21:59 +08001637 if (same_queue_rq) {
1638 data.hctx = blk_mq_map_queue(q,
1639 same_queue_rq->mq_ctx->cpu);
Christoph Hellwig22997222017-03-22 15:01:52 -04001640 blk_mq_try_issue_directly(data.hctx, same_queue_rq,
1641 &cookie);
Ming Leidad7a3b2017-06-06 23:21:59 +08001642 }
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001643 } else if (q->nr_hw_queues > 1 && is_sync) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001644 blk_mq_put_ctx(data.ctx);
1645 blk_mq_bio_to_request(rq, bio);
Christoph Hellwig22997222017-03-22 15:01:52 -04001646 blk_mq_try_issue_directly(data.hctx, rq, &cookie);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001647 } else if (q->elevator) {
Jens Axboeb00c53e2017-04-20 16:40:36 -06001648 blk_mq_put_ctx(data.ctx);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001649 blk_mq_bio_to_request(rq, bio);
1650 blk_mq_sched_insert_request(rq, false, true, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08001651 } else {
Jens Axboeb00c53e2017-04-20 16:40:36 -06001652 blk_mq_put_ctx(data.ctx);
Ming Leiab42f352017-05-26 19:53:19 +08001653 blk_mq_bio_to_request(rq, bio);
1654 blk_mq_queue_io(data.hctx, data.ctx, rq);
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04001655 blk_mq_run_hw_queue(data.hctx, true);
Ming Leiab42f352017-05-26 19:53:19 +08001656 }
Jens Axboe320ae512013-10-24 09:20:05 +01001657
Jens Axboe7b371632015-11-05 10:41:40 -07001658 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001659}
1660
Jens Axboecc71a6f2017-01-11 14:29:56 -07001661void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1662 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001663{
1664 struct page *page;
1665
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001666 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001667 int i;
1668
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001669 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001670 struct request *rq = tags->static_rqs[i];
1671
1672 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001673 continue;
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001674 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001675 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001676 }
1677 }
1678
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001679 while (!list_empty(&tags->page_list)) {
1680 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001681 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001682 /*
1683 * Remove kmemleak object previously allocated in
1684 * blk_mq_init_rq_map().
1685 */
1686 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001687 __free_pages(page, page->private);
1688 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001689}
Jens Axboe320ae512013-10-24 09:20:05 +01001690
Jens Axboecc71a6f2017-01-11 14:29:56 -07001691void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1692{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001693 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001694 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001695 kfree(tags->static_rqs);
1696 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001697
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001698 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001699}
1700
Jens Axboecc71a6f2017-01-11 14:29:56 -07001701struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1702 unsigned int hctx_idx,
1703 unsigned int nr_tags,
1704 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001705{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001706 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08001707 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01001708
Shaohua Li59f082e2017-02-01 09:53:14 -08001709 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1710 if (node == NUMA_NO_NODE)
1711 node = set->numa_node;
1712
1713 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
Shaohua Li24391c02015-01-23 14:18:00 -07001714 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001715 if (!tags)
1716 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001717
Jens Axboecc71a6f2017-01-11 14:29:56 -07001718 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001719 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001720 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001721 if (!tags->rqs) {
1722 blk_mq_free_tags(tags);
1723 return NULL;
1724 }
Jens Axboe320ae512013-10-24 09:20:05 +01001725
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001726 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1727 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001728 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001729 if (!tags->static_rqs) {
1730 kfree(tags->rqs);
1731 blk_mq_free_tags(tags);
1732 return NULL;
1733 }
1734
Jens Axboecc71a6f2017-01-11 14:29:56 -07001735 return tags;
1736}
1737
1738static size_t order_to_size(unsigned int order)
1739{
1740 return (size_t)PAGE_SIZE << order;
1741}
1742
1743int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1744 unsigned int hctx_idx, unsigned int depth)
1745{
1746 unsigned int i, j, entries_per_page, max_order = 4;
1747 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08001748 int node;
1749
1750 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1751 if (node == NUMA_NO_NODE)
1752 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001753
1754 INIT_LIST_HEAD(&tags->page_list);
1755
Jens Axboe320ae512013-10-24 09:20:05 +01001756 /*
1757 * rq_size is the size of the request plus driver payload, rounded
1758 * to the cacheline size
1759 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001760 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001761 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001762 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001763
Jens Axboecc71a6f2017-01-11 14:29:56 -07001764 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001765 int this_order = max_order;
1766 struct page *page;
1767 int to_do;
1768 void *p;
1769
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001770 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001771 this_order--;
1772
1773 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08001774 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001775 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001776 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001777 if (page)
1778 break;
1779 if (!this_order--)
1780 break;
1781 if (order_to_size(this_order) < rq_size)
1782 break;
1783 } while (1);
1784
1785 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001786 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001787
1788 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001789 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001790
1791 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001792 /*
1793 * Allow kmemleak to scan these pages as they contain pointers
1794 * to additional allocations like via ops->init_request().
1795 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001796 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001797 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001798 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001799 left -= to_do * rq_size;
1800 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001801 struct request *rq = p;
1802
1803 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001804 if (set->ops->init_request) {
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001805 if (set->ops->init_request(set, rq, hctx_idx,
Shaohua Li59f082e2017-02-01 09:53:14 -08001806 node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001807 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001808 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001809 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001810 }
1811
Jens Axboe320ae512013-10-24 09:20:05 +01001812 p += rq_size;
1813 i++;
1814 }
1815 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001816 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001817
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001818fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001819 blk_mq_free_rqs(set, tags, hctx_idx);
1820 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001821}
1822
Jens Axboee57690f2016-08-24 15:34:35 -06001823/*
1824 * 'cpu' is going away. splice any existing rq_list entries from this
1825 * software queue to the hw queue dispatch list, and ensure that it
1826 * gets run.
1827 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001828static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001829{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001830 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001831 struct blk_mq_ctx *ctx;
1832 LIST_HEAD(tmp);
1833
Thomas Gleixner9467f852016-09-22 08:05:17 -06001834 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001835 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001836
1837 spin_lock(&ctx->lock);
1838 if (!list_empty(&ctx->rq_list)) {
1839 list_splice_init(&ctx->rq_list, &tmp);
1840 blk_mq_hctx_clear_pending(hctx, ctx);
1841 }
1842 spin_unlock(&ctx->lock);
1843
1844 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001845 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001846
Jens Axboee57690f2016-08-24 15:34:35 -06001847 spin_lock(&hctx->lock);
1848 list_splice_tail_init(&tmp, &hctx->dispatch);
1849 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001850
1851 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001852 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001853}
1854
Thomas Gleixner9467f852016-09-22 08:05:17 -06001855static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001856{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001857 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1858 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001859}
1860
Ming Leic3b4afc2015-06-04 22:25:04 +08001861/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001862static void blk_mq_exit_hctx(struct request_queue *q,
1863 struct blk_mq_tag_set *set,
1864 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1865{
Omar Sandoval9c1051a2017-05-04 08:17:21 -06001866 blk_mq_debugfs_unregister_hctx(hctx);
1867
Ming Lei08e98fc2014-09-25 23:23:38 +08001868 blk_mq_tag_idle(hctx);
1869
Ming Leif70ced02014-09-25 23:23:47 +08001870 if (set->ops->exit_request)
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001871 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08001872
Omar Sandoval93252632017-04-05 12:01:31 -07001873 blk_mq_sched_exit_hctx(q, hctx, hctx_idx);
1874
Ming Lei08e98fc2014-09-25 23:23:38 +08001875 if (set->ops->exit_hctx)
1876 set->ops->exit_hctx(hctx, hctx_idx);
1877
Bart Van Assche6a83e742016-11-02 10:09:51 -06001878 if (hctx->flags & BLK_MQ_F_BLOCKING)
Bart Van Assche07319672017-06-20 11:15:38 -07001879 cleanup_srcu_struct(hctx->queue_rq_srcu);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001880
Thomas Gleixner9467f852016-09-22 08:05:17 -06001881 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001882 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001883 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001884}
1885
Ming Lei624dbe42014-05-27 23:35:13 +08001886static void blk_mq_exit_hw_queues(struct request_queue *q,
1887 struct blk_mq_tag_set *set, int nr_queue)
1888{
1889 struct blk_mq_hw_ctx *hctx;
1890 unsigned int i;
1891
1892 queue_for_each_hw_ctx(q, hctx, i) {
1893 if (i == nr_queue)
1894 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001895 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001896 }
Ming Lei624dbe42014-05-27 23:35:13 +08001897}
1898
Ming Lei08e98fc2014-09-25 23:23:38 +08001899static int blk_mq_init_hctx(struct request_queue *q,
1900 struct blk_mq_tag_set *set,
1901 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1902{
1903 int node;
1904
1905 node = hctx->numa_node;
1906 if (node == NUMA_NO_NODE)
1907 node = hctx->numa_node = set->numa_node;
1908
Jens Axboe9f993732017-04-10 09:54:54 -06001909 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001910 spin_lock_init(&hctx->lock);
1911 INIT_LIST_HEAD(&hctx->dispatch);
1912 hctx->queue = q;
Jeff Moyer2404e602015-11-03 10:40:06 -05001913 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001914
Thomas Gleixner9467f852016-09-22 08:05:17 -06001915 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001916
1917 hctx->tags = set->tags[hctx_idx];
1918
1919 /*
1920 * Allocate space for all possible cpus to avoid allocation at
1921 * runtime
1922 */
1923 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1924 GFP_KERNEL, node);
1925 if (!hctx->ctxs)
1926 goto unregister_cpu_notifier;
1927
Omar Sandoval88459642016-09-17 08:38:44 -06001928 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1929 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001930 goto free_ctxs;
1931
1932 hctx->nr_ctx = 0;
1933
1934 if (set->ops->init_hctx &&
1935 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1936 goto free_bitmap;
1937
Omar Sandoval93252632017-04-05 12:01:31 -07001938 if (blk_mq_sched_init_hctx(q, hctx, hctx_idx))
1939 goto exit_hctx;
1940
Ming Leif70ced02014-09-25 23:23:47 +08001941 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1942 if (!hctx->fq)
Omar Sandoval93252632017-04-05 12:01:31 -07001943 goto sched_exit_hctx;
Ming Leif70ced02014-09-25 23:23:47 +08001944
1945 if (set->ops->init_request &&
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001946 set->ops->init_request(set, hctx->fq->flush_rq, hctx_idx,
1947 node))
Ming Leif70ced02014-09-25 23:23:47 +08001948 goto free_fq;
1949
Bart Van Assche6a83e742016-11-02 10:09:51 -06001950 if (hctx->flags & BLK_MQ_F_BLOCKING)
Bart Van Assche07319672017-06-20 11:15:38 -07001951 init_srcu_struct(hctx->queue_rq_srcu);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001952
Omar Sandoval9c1051a2017-05-04 08:17:21 -06001953 blk_mq_debugfs_register_hctx(q, hctx);
1954
Ming Lei08e98fc2014-09-25 23:23:38 +08001955 return 0;
1956
Ming Leif70ced02014-09-25 23:23:47 +08001957 free_fq:
1958 kfree(hctx->fq);
Omar Sandoval93252632017-04-05 12:01:31 -07001959 sched_exit_hctx:
1960 blk_mq_sched_exit_hctx(q, hctx, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08001961 exit_hctx:
1962 if (set->ops->exit_hctx)
1963 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001964 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001965 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001966 free_ctxs:
1967 kfree(hctx->ctxs);
1968 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001969 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001970 return -1;
1971}
1972
Jens Axboe320ae512013-10-24 09:20:05 +01001973static void blk_mq_init_cpu_queues(struct request_queue *q,
1974 unsigned int nr_hw_queues)
1975{
1976 unsigned int i;
1977
1978 for_each_possible_cpu(i) {
1979 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1980 struct blk_mq_hw_ctx *hctx;
1981
Jens Axboe320ae512013-10-24 09:20:05 +01001982 __ctx->cpu = i;
1983 spin_lock_init(&__ctx->lock);
1984 INIT_LIST_HEAD(&__ctx->rq_list);
1985 __ctx->queue = q;
1986
1987 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001988 if (!cpu_online(i))
1989 continue;
1990
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001991 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001992
Jens Axboe320ae512013-10-24 09:20:05 +01001993 /*
1994 * Set local node, IFF we have more than one hw queue. If
1995 * not, we remain on the home node of the device
1996 */
1997 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301998 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001999 }
2000}
2001
Jens Axboecc71a6f2017-01-11 14:29:56 -07002002static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2003{
2004 int ret = 0;
2005
2006 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2007 set->queue_depth, set->reserved_tags);
2008 if (!set->tags[hctx_idx])
2009 return false;
2010
2011 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2012 set->queue_depth);
2013 if (!ret)
2014 return true;
2015
2016 blk_mq_free_rq_map(set->tags[hctx_idx]);
2017 set->tags[hctx_idx] = NULL;
2018 return false;
2019}
2020
2021static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2022 unsigned int hctx_idx)
2023{
Jens Axboebd166ef2017-01-17 06:03:22 -07002024 if (set->tags[hctx_idx]) {
2025 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2026 blk_mq_free_rq_map(set->tags[hctx_idx]);
2027 set->tags[hctx_idx] = NULL;
2028 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002029}
2030
Akinobu Mita57783222015-09-27 02:09:23 +09002031static void blk_mq_map_swqueue(struct request_queue *q,
2032 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002033{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002034 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01002035 struct blk_mq_hw_ctx *hctx;
2036 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08002037 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002038
Akinobu Mita60de0742015-09-27 02:09:25 +09002039 /*
2040 * Avoid others reading imcomplete hctx->cpumask through sysfs
2041 */
2042 mutex_lock(&q->sysfs_lock);
2043
Jens Axboe320ae512013-10-24 09:20:05 +01002044 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06002045 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002046 hctx->nr_ctx = 0;
2047 }
2048
2049 /*
2050 * Map software to hardware queues
2051 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002052 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01002053 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002054 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002055 continue;
2056
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002057 hctx_idx = q->mq_map[i];
2058 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002059 if (!set->tags[hctx_idx] &&
2060 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002061 /*
2062 * If tags initialization fail for some hctx,
2063 * that hctx won't be brought online. In this
2064 * case, remap the current ctx to hctx[0] which
2065 * is guaranteed to always have tags allocated
2066 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002067 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002068 }
2069
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002070 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002071 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002072
Jens Axboee4043dc2014-04-09 10:18:23 -06002073 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002074 ctx->index_hw = hctx->nr_ctx;
2075 hctx->ctxs[hctx->nr_ctx++] = ctx;
2076 }
Jens Axboe506e9312014-05-07 10:26:44 -06002077
Akinobu Mita60de0742015-09-27 02:09:25 +09002078 mutex_unlock(&q->sysfs_lock);
2079
Jens Axboe506e9312014-05-07 10:26:44 -06002080 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002081 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002082 * If no software queues are mapped to this hardware queue,
2083 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002084 */
2085 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002086 /* Never unmap queue 0. We need it as a
2087 * fallback in case of a new remap fails
2088 * allocation
2089 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002090 if (i && set->tags[i])
2091 blk_mq_free_map_and_requests(set, i);
2092
Ming Lei2a34c082015-04-21 10:00:20 +08002093 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002094 continue;
2095 }
2096
Ming Lei2a34c082015-04-21 10:00:20 +08002097 hctx->tags = set->tags[i];
2098 WARN_ON(!hctx->tags);
2099
Jens Axboe484b4062014-05-21 14:01:15 -06002100 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002101 * Set the map size to the number of mapped software queues.
2102 * This is more accurate and more efficient than looping
2103 * over all possibly mapped software queues.
2104 */
Omar Sandoval88459642016-09-17 08:38:44 -06002105 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002106
2107 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002108 * Initialize batch roundrobin counts
2109 */
Jens Axboe506e9312014-05-07 10:26:44 -06002110 hctx->next_cpu = cpumask_first(hctx->cpumask);
2111 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2112 }
Jens Axboe320ae512013-10-24 09:20:05 +01002113}
2114
Jens Axboe8e8320c2017-06-20 17:56:13 -06002115/*
2116 * Caller needs to ensure that we're either frozen/quiesced, or that
2117 * the queue isn't live yet.
2118 */
Jeff Moyer2404e602015-11-03 10:40:06 -05002119static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002120{
2121 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002122 int i;
2123
Jeff Moyer2404e602015-11-03 10:40:06 -05002124 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe8e8320c2017-06-20 17:56:13 -06002125 if (shared) {
2126 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
2127 atomic_inc(&q->shared_hctx_restart);
Jeff Moyer2404e602015-11-03 10:40:06 -05002128 hctx->flags |= BLK_MQ_F_TAG_SHARED;
Jens Axboe8e8320c2017-06-20 17:56:13 -06002129 } else {
2130 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
2131 atomic_dec(&q->shared_hctx_restart);
Jeff Moyer2404e602015-11-03 10:40:06 -05002132 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
Jens Axboe8e8320c2017-06-20 17:56:13 -06002133 }
Jeff Moyer2404e602015-11-03 10:40:06 -05002134 }
2135}
2136
Jens Axboe8e8320c2017-06-20 17:56:13 -06002137static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set,
2138 bool shared)
Jeff Moyer2404e602015-11-03 10:40:06 -05002139{
2140 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002141
Bart Van Assche705cda92017-04-07 11:16:49 -07002142 lockdep_assert_held(&set->tag_list_lock);
2143
Jens Axboe0d2602c2014-05-13 15:10:52 -06002144 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2145 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002146 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002147 blk_mq_unfreeze_queue(q);
2148 }
2149}
2150
2151static void blk_mq_del_queue_tag_set(struct request_queue *q)
2152{
2153 struct blk_mq_tag_set *set = q->tag_set;
2154
Jens Axboe0d2602c2014-05-13 15:10:52 -06002155 mutex_lock(&set->tag_list_lock);
Bart Van Assche705cda92017-04-07 11:16:49 -07002156 list_del_rcu(&q->tag_set_list);
2157 INIT_LIST_HEAD(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002158 if (list_is_singular(&set->tag_list)) {
2159 /* just transitioned to unshared */
2160 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2161 /* update existing queue */
2162 blk_mq_update_tag_set_depth(set, false);
2163 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002164 mutex_unlock(&set->tag_list_lock);
Bart Van Assche705cda92017-04-07 11:16:49 -07002165
2166 synchronize_rcu();
Jens Axboe0d2602c2014-05-13 15:10:52 -06002167}
2168
2169static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2170 struct request_queue *q)
2171{
2172 q->tag_set = set;
2173
2174 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002175
2176 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2177 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2178 set->flags |= BLK_MQ_F_TAG_SHARED;
2179 /* update existing queue */
2180 blk_mq_update_tag_set_depth(set, true);
2181 }
2182 if (set->flags & BLK_MQ_F_TAG_SHARED)
2183 queue_set_hctx_shared(q, true);
Bart Van Assche705cda92017-04-07 11:16:49 -07002184 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002185
Jens Axboe0d2602c2014-05-13 15:10:52 -06002186 mutex_unlock(&set->tag_list_lock);
2187}
2188
Ming Leie09aae72015-01-29 20:17:27 +08002189/*
2190 * It is the actual release handler for mq, but we do it from
2191 * request queue's release handler for avoiding use-after-free
2192 * and headache because q->mq_kobj shouldn't have been introduced,
2193 * but we can't group ctx/kctx kobj without it.
2194 */
2195void blk_mq_release(struct request_queue *q)
2196{
2197 struct blk_mq_hw_ctx *hctx;
2198 unsigned int i;
2199
2200 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002201 queue_for_each_hw_ctx(q, hctx, i) {
2202 if (!hctx)
2203 continue;
Ming Lei6c8b2322017-02-22 18:14:01 +08002204 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08002205 }
Ming Leie09aae72015-01-29 20:17:27 +08002206
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002207 q->mq_map = NULL;
2208
Ming Leie09aae72015-01-29 20:17:27 +08002209 kfree(q->queue_hw_ctx);
2210
Ming Lei7ea5fe32017-02-22 18:14:00 +08002211 /*
2212 * release .mq_kobj and sw queue's kobject now because
2213 * both share lifetime with request queue.
2214 */
2215 blk_mq_sysfs_deinit(q);
2216
Ming Leie09aae72015-01-29 20:17:27 +08002217 free_percpu(q->queue_ctx);
2218}
2219
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002220struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002221{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002222 struct request_queue *uninit_q, *q;
2223
2224 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2225 if (!uninit_q)
2226 return ERR_PTR(-ENOMEM);
2227
2228 q = blk_mq_init_allocated_queue(set, uninit_q);
2229 if (IS_ERR(q))
2230 blk_cleanup_queue(uninit_q);
2231
2232 return q;
2233}
2234EXPORT_SYMBOL(blk_mq_init_queue);
2235
Bart Van Assche07319672017-06-20 11:15:38 -07002236static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2237{
2238 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2239
2240 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, queue_rq_srcu),
2241 __alignof__(struct blk_mq_hw_ctx)) !=
2242 sizeof(struct blk_mq_hw_ctx));
2243
2244 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2245 hw_ctx_size += sizeof(struct srcu_struct);
2246
2247 return hw_ctx_size;
2248}
2249
Keith Busch868f2f02015-12-17 17:08:14 -07002250static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2251 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002252{
Keith Busch868f2f02015-12-17 17:08:14 -07002253 int i, j;
2254 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002255
Keith Busch868f2f02015-12-17 17:08:14 -07002256 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002257 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002258 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002259
Keith Busch868f2f02015-12-17 17:08:14 -07002260 if (hctxs[i])
2261 continue;
2262
2263 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Bart Van Assche07319672017-06-20 11:15:38 -07002264 hctxs[i] = kzalloc_node(blk_mq_hw_ctx_size(set),
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002265 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002266 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002267 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002268
Jens Axboea86073e2014-10-13 15:41:54 -06002269 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002270 node)) {
2271 kfree(hctxs[i]);
2272 hctxs[i] = NULL;
2273 break;
2274 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002275
Jens Axboe0d2602c2014-05-13 15:10:52 -06002276 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002277 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002278 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002279
2280 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2281 free_cpumask_var(hctxs[i]->cpumask);
2282 kfree(hctxs[i]);
2283 hctxs[i] = NULL;
2284 break;
2285 }
2286 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002287 }
Keith Busch868f2f02015-12-17 17:08:14 -07002288 for (j = i; j < q->nr_hw_queues; j++) {
2289 struct blk_mq_hw_ctx *hctx = hctxs[j];
2290
2291 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002292 if (hctx->tags)
2293 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002294 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002295 kobject_put(&hctx->kobj);
Keith Busch868f2f02015-12-17 17:08:14 -07002296 hctxs[j] = NULL;
2297
2298 }
2299 }
2300 q->nr_hw_queues = i;
2301 blk_mq_sysfs_register(q);
2302}
2303
2304struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2305 struct request_queue *q)
2306{
Ming Lei66841672016-02-12 15:27:00 +08002307 /* mark the queue as mq asap */
2308 q->mq_ops = set->ops;
2309
Omar Sandoval34dbad52017-03-21 08:56:08 -07002310 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06002311 blk_mq_poll_stats_bkt,
2312 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07002313 if (!q->poll_cb)
2314 goto err_exit;
2315
Keith Busch868f2f02015-12-17 17:08:14 -07002316 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2317 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002318 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002319
Ming Lei737f98c2017-02-22 18:13:59 +08002320 /* init q->mq_kobj and sw queues' kobjects */
2321 blk_mq_sysfs_init(q);
2322
Keith Busch868f2f02015-12-17 17:08:14 -07002323 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2324 GFP_KERNEL, set->numa_node);
2325 if (!q->queue_hw_ctx)
2326 goto err_percpu;
2327
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002328 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002329
2330 blk_mq_realloc_hw_ctxs(set, q);
2331 if (!q->nr_hw_queues)
2332 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002333
Christoph Hellwig287922e2015-10-30 20:57:30 +08002334 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002335 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002336
2337 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002338
Jens Axboe94eddfb2013-11-19 09:25:07 -07002339 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002340
Jens Axboe05f1dd52014-05-29 09:53:32 -06002341 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2342 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2343
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002344 q->sg_reserved_size = INT_MAX;
2345
Mike Snitzer28494502016-09-14 13:28:30 -04002346 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002347 INIT_LIST_HEAD(&q->requeue_list);
2348 spin_lock_init(&q->requeue_lock);
2349
Christoph Hellwig254d2592017-03-22 15:01:50 -04002350 blk_queue_make_request(q, blk_mq_make_request);
Jens Axboe07068d52014-05-22 10:40:51 -06002351
Jens Axboeeba71762014-05-20 15:17:27 -06002352 /*
Christoph Hellwig0b0bcac2017-06-19 09:26:23 +02002353 * by default assume old behaviour and bounce for any highmem page
2354 */
2355 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
2356
2357 /*
Jens Axboeeba71762014-05-20 15:17:27 -06002358 * Do this after blk_queue_make_request() overrides it...
2359 */
2360 q->nr_requests = set->queue_depth;
2361
Jens Axboe64f1c212016-11-14 13:03:03 -07002362 /*
2363 * Default to classic polling
2364 */
2365 q->poll_nsec = -1;
2366
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002367 if (set->ops->complete)
2368 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002369
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002370 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002371
Peter Zijlstraeabe0652017-05-04 15:05:26 +02002372 get_online_cpus();
Wanpeng Li51d638b2017-05-07 00:14:22 -07002373 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002374
Jens Axboe320ae512013-10-24 09:20:05 +01002375 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002376 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002377 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002378
Peter Zijlstraeabe0652017-05-04 15:05:26 +02002379 mutex_unlock(&all_q_mutex);
Wanpeng Li51d638b2017-05-07 00:14:22 -07002380 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002381
Jens Axboed3484992017-01-13 14:43:58 -07002382 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2383 int ret;
2384
2385 ret = blk_mq_sched_init(q);
2386 if (ret)
2387 return ERR_PTR(ret);
2388 }
2389
Jens Axboe320ae512013-10-24 09:20:05 +01002390 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002391
Jens Axboe320ae512013-10-24 09:20:05 +01002392err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002393 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002394err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002395 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002396err_exit:
2397 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002398 return ERR_PTR(-ENOMEM);
2399}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002400EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002401
2402void blk_mq_free_queue(struct request_queue *q)
2403{
Ming Lei624dbe42014-05-27 23:35:13 +08002404 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002405
Akinobu Mita0e626362015-09-27 02:09:22 +09002406 mutex_lock(&all_q_mutex);
2407 list_del_init(&q->all_q_node);
2408 mutex_unlock(&all_q_mutex);
2409
Jens Axboe0d2602c2014-05-13 15:10:52 -06002410 blk_mq_del_queue_tag_set(q);
2411
Ming Lei624dbe42014-05-27 23:35:13 +08002412 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002413}
Jens Axboe320ae512013-10-24 09:20:05 +01002414
2415/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002416static void blk_mq_queue_reinit(struct request_queue *q,
2417 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002418{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002419 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002420
Omar Sandoval9c1051a2017-05-04 08:17:21 -06002421 blk_mq_debugfs_unregister_hctxs(q);
Jens Axboe67aec142014-05-30 08:25:36 -06002422 blk_mq_sysfs_unregister(q);
2423
Jens Axboe320ae512013-10-24 09:20:05 +01002424 /*
2425 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2426 * we should change hctx numa_node according to new topology (this
2427 * involves free and re-allocate memory, worthy doing?)
2428 */
2429
Akinobu Mita57783222015-09-27 02:09:23 +09002430 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002431
Jens Axboe67aec142014-05-30 08:25:36 -06002432 blk_mq_sysfs_register(q);
Omar Sandoval9c1051a2017-05-04 08:17:21 -06002433 blk_mq_debugfs_register_hctxs(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002434}
2435
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002436/*
2437 * New online cpumask which is going to be set in this hotplug event.
2438 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2439 * one-by-one and dynamically allocating this could result in a failure.
2440 */
2441static struct cpumask cpuhp_online_new;
2442
2443static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002444{
2445 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002446
2447 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002448 /*
2449 * We need to freeze and reinit all existing queues. Freezing
2450 * involves synchronous wait for an RCU grace period and doing it
2451 * one by one may take a long time. Start freezing all queues in
2452 * one swoop and then wait for the completions so that freezing can
2453 * take place in parallel.
2454 */
2455 list_for_each_entry(q, &all_q_list, all_q_node)
Ming Lei1671d522017-03-27 20:06:57 +08002456 blk_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002457 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002458 blk_mq_freeze_queue_wait(q);
2459
Jens Axboe320ae512013-10-24 09:20:05 +01002460 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002461 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002462
2463 list_for_each_entry(q, &all_q_list, all_q_node)
2464 blk_mq_unfreeze_queue(q);
2465
Jens Axboe320ae512013-10-24 09:20:05 +01002466 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002467}
2468
2469static int blk_mq_queue_reinit_dead(unsigned int cpu)
2470{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002471 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002472 blk_mq_queue_reinit_work();
2473 return 0;
2474}
2475
2476/*
2477 * Before hotadded cpu starts handling requests, new mappings must be
2478 * established. Otherwise, these requests in hw queue might never be
2479 * dispatched.
2480 *
2481 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2482 * for CPU0, and ctx1 for CPU1).
2483 *
2484 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2485 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2486 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002487 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2488 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2489 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2490 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002491 */
2492static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2493{
2494 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2495 cpumask_set_cpu(cpu, &cpuhp_online_new);
2496 blk_mq_queue_reinit_work();
2497 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002498}
2499
Jens Axboea5164402014-09-10 09:02:03 -06002500static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2501{
2502 int i;
2503
Jens Axboecc71a6f2017-01-11 14:29:56 -07002504 for (i = 0; i < set->nr_hw_queues; i++)
2505 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002506 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002507
2508 return 0;
2509
2510out_unwind:
2511 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002512 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002513
Jens Axboea5164402014-09-10 09:02:03 -06002514 return -ENOMEM;
2515}
2516
2517/*
2518 * Allocate the request maps associated with this tag_set. Note that this
2519 * may reduce the depth asked for, if memory is tight. set->queue_depth
2520 * will be updated to reflect the allocated depth.
2521 */
2522static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2523{
2524 unsigned int depth;
2525 int err;
2526
2527 depth = set->queue_depth;
2528 do {
2529 err = __blk_mq_alloc_rq_maps(set);
2530 if (!err)
2531 break;
2532
2533 set->queue_depth >>= 1;
2534 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2535 err = -ENOMEM;
2536 break;
2537 }
2538 } while (set->queue_depth);
2539
2540 if (!set->queue_depth || err) {
2541 pr_err("blk-mq: failed to allocate request map\n");
2542 return -ENOMEM;
2543 }
2544
2545 if (depth != set->queue_depth)
2546 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2547 depth, set->queue_depth);
2548
2549 return 0;
2550}
2551
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002552static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2553{
2554 if (set->ops->map_queues)
2555 return set->ops->map_queues(set);
2556 else
2557 return blk_mq_map_queues(set);
2558}
2559
Jens Axboea4391c62014-06-05 15:21:56 -06002560/*
2561 * Alloc a tag set to be associated with one or more request queues.
2562 * May fail with EINVAL for various error conditions. May adjust the
2563 * requested depth down, if if it too large. In that case, the set
2564 * value will be stored in set->queue_depth.
2565 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002566int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2567{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002568 int ret;
2569
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002570 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2571
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002572 if (!set->nr_hw_queues)
2573 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002574 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002575 return -EINVAL;
2576 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2577 return -EINVAL;
2578
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002579 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002580 return -EINVAL;
2581
Jens Axboea4391c62014-06-05 15:21:56 -06002582 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2583 pr_info("blk-mq: reduced tag depth to %u\n",
2584 BLK_MQ_MAX_DEPTH);
2585 set->queue_depth = BLK_MQ_MAX_DEPTH;
2586 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002587
Shaohua Li6637fad2014-11-30 16:00:58 -08002588 /*
2589 * If a crashdump is active, then we are potentially in a very
2590 * memory constrained environment. Limit us to 1 queue and
2591 * 64 tags to prevent using too much memory.
2592 */
2593 if (is_kdump_kernel()) {
2594 set->nr_hw_queues = 1;
2595 set->queue_depth = min(64U, set->queue_depth);
2596 }
Keith Busch868f2f02015-12-17 17:08:14 -07002597 /*
2598 * There is no use for more h/w queues than cpus.
2599 */
2600 if (set->nr_hw_queues > nr_cpu_ids)
2601 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002602
Keith Busch868f2f02015-12-17 17:08:14 -07002603 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002604 GFP_KERNEL, set->numa_node);
2605 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002606 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002607
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002608 ret = -ENOMEM;
2609 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2610 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002611 if (!set->mq_map)
2612 goto out_free_tags;
2613
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002614 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002615 if (ret)
2616 goto out_free_mq_map;
2617
2618 ret = blk_mq_alloc_rq_maps(set);
2619 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002620 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002621
Jens Axboe0d2602c2014-05-13 15:10:52 -06002622 mutex_init(&set->tag_list_lock);
2623 INIT_LIST_HEAD(&set->tag_list);
2624
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002625 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002626
2627out_free_mq_map:
2628 kfree(set->mq_map);
2629 set->mq_map = NULL;
2630out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002631 kfree(set->tags);
2632 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002633 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002634}
2635EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2636
2637void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2638{
2639 int i;
2640
Jens Axboecc71a6f2017-01-11 14:29:56 -07002641 for (i = 0; i < nr_cpu_ids; i++)
2642 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002643
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002644 kfree(set->mq_map);
2645 set->mq_map = NULL;
2646
Ming Lei981bd182014-04-24 00:07:34 +08002647 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002648 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002649}
2650EXPORT_SYMBOL(blk_mq_free_tag_set);
2651
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002652int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2653{
2654 struct blk_mq_tag_set *set = q->tag_set;
2655 struct blk_mq_hw_ctx *hctx;
2656 int i, ret;
2657
Jens Axboebd166ef2017-01-17 06:03:22 -07002658 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002659 return -EINVAL;
2660
Jens Axboe70f36b62017-01-19 10:59:07 -07002661 blk_mq_freeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07002662
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002663 ret = 0;
2664 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002665 if (!hctx->tags)
2666 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002667 /*
2668 * If we're using an MQ scheduler, just update the scheduler
2669 * queue depth. This is similar to what the old code would do.
2670 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002671 if (!hctx->sched_tags) {
2672 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2673 min(nr, set->queue_depth),
2674 false);
2675 } else {
2676 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2677 nr, true);
2678 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002679 if (ret)
2680 break;
2681 }
2682
2683 if (!ret)
2684 q->nr_requests = nr;
2685
Jens Axboe70f36b62017-01-19 10:59:07 -07002686 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07002687
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002688 return ret;
2689}
2690
Keith Busche4dc2b32017-05-30 14:39:11 -04002691static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
2692 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07002693{
2694 struct request_queue *q;
2695
Bart Van Assche705cda92017-04-07 11:16:49 -07002696 lockdep_assert_held(&set->tag_list_lock);
2697
Keith Busch868f2f02015-12-17 17:08:14 -07002698 if (nr_hw_queues > nr_cpu_ids)
2699 nr_hw_queues = nr_cpu_ids;
2700 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2701 return;
2702
2703 list_for_each_entry(q, &set->tag_list, tag_set_list)
2704 blk_mq_freeze_queue(q);
2705
2706 set->nr_hw_queues = nr_hw_queues;
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06002707 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07002708 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2709 blk_mq_realloc_hw_ctxs(set, q);
Keith Busch868f2f02015-12-17 17:08:14 -07002710 blk_mq_queue_reinit(q, cpu_online_mask);
2711 }
2712
2713 list_for_each_entry(q, &set->tag_list, tag_set_list)
2714 blk_mq_unfreeze_queue(q);
2715}
Keith Busche4dc2b32017-05-30 14:39:11 -04002716
2717void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2718{
2719 mutex_lock(&set->tag_list_lock);
2720 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
2721 mutex_unlock(&set->tag_list_lock);
2722}
Keith Busch868f2f02015-12-17 17:08:14 -07002723EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2724
Omar Sandoval34dbad52017-03-21 08:56:08 -07002725/* Enable polling stats and return whether they were already enabled. */
2726static bool blk_poll_stats_enable(struct request_queue *q)
2727{
2728 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
2729 test_and_set_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags))
2730 return true;
2731 blk_stat_add_callback(q, q->poll_cb);
2732 return false;
2733}
2734
2735static void blk_mq_poll_stats_start(struct request_queue *q)
2736{
2737 /*
2738 * We don't arm the callback if polling stats are not enabled or the
2739 * callback is already active.
2740 */
2741 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
2742 blk_stat_is_active(q->poll_cb))
2743 return;
2744
2745 blk_stat_activate_msecs(q->poll_cb, 100);
2746}
2747
2748static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
2749{
2750 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06002751 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07002752
Stephen Bates720b8cc2017-04-07 06:24:03 -06002753 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
2754 if (cb->stat[bucket].nr_samples)
2755 q->poll_stat[bucket] = cb->stat[bucket];
2756 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07002757}
2758
Jens Axboe64f1c212016-11-14 13:03:03 -07002759static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2760 struct blk_mq_hw_ctx *hctx,
2761 struct request *rq)
2762{
Jens Axboe64f1c212016-11-14 13:03:03 -07002763 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06002764 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07002765
2766 /*
2767 * If stats collection isn't on, don't sleep but turn it on for
2768 * future users
2769 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07002770 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07002771 return 0;
2772
2773 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07002774 * As an optimistic guess, use half of the mean service time
2775 * for this type of request. We can (and should) make this smarter.
2776 * For instance, if the completion latencies are tight, we can
2777 * get closer than just half the mean. This is especially
2778 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06002779 * than ~10 usec. We do use the stats for the relevant IO size
2780 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07002781 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06002782 bucket = blk_mq_poll_stats_bkt(rq);
2783 if (bucket < 0)
2784 return ret;
2785
2786 if (q->poll_stat[bucket].nr_samples)
2787 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07002788
2789 return ret;
2790}
2791
Jens Axboe06426ad2016-11-14 13:01:59 -07002792static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002793 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002794 struct request *rq)
2795{
2796 struct hrtimer_sleeper hs;
2797 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002798 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002799 ktime_t kt;
2800
Jens Axboe64f1c212016-11-14 13:03:03 -07002801 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2802 return false;
2803
2804 /*
2805 * poll_nsec can be:
2806 *
2807 * -1: don't ever hybrid sleep
2808 * 0: use half of prev avg
2809 * >0: use this specific value
2810 */
2811 if (q->poll_nsec == -1)
2812 return false;
2813 else if (q->poll_nsec > 0)
2814 nsecs = q->poll_nsec;
2815 else
2816 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2817
2818 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002819 return false;
2820
2821 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2822
2823 /*
2824 * This will be replaced with the stats tracking code, using
2825 * 'avg_completion_time / 2' as the pre-sleep target.
2826 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002827 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002828
2829 mode = HRTIMER_MODE_REL;
2830 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2831 hrtimer_set_expires(&hs.timer, kt);
2832
2833 hrtimer_init_sleeper(&hs, current);
2834 do {
2835 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2836 break;
2837 set_current_state(TASK_UNINTERRUPTIBLE);
2838 hrtimer_start_expires(&hs.timer, mode);
2839 if (hs.task)
2840 io_schedule();
2841 hrtimer_cancel(&hs.timer);
2842 mode = HRTIMER_MODE_ABS;
2843 } while (hs.task && !signal_pending(current));
2844
2845 __set_current_state(TASK_RUNNING);
2846 destroy_hrtimer_on_stack(&hs.timer);
2847 return true;
2848}
2849
Jens Axboebbd7bb72016-11-04 09:34:34 -06002850static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2851{
2852 struct request_queue *q = hctx->queue;
2853 long state;
2854
Jens Axboe06426ad2016-11-14 13:01:59 -07002855 /*
2856 * If we sleep, have the caller restart the poll loop to reset
2857 * the state. Like for the other success return cases, the
2858 * caller is responsible for checking if the IO completed. If
2859 * the IO isn't complete, we'll get called again and will go
2860 * straight to the busy poll loop.
2861 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002862 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002863 return true;
2864
Jens Axboebbd7bb72016-11-04 09:34:34 -06002865 hctx->poll_considered++;
2866
2867 state = current->state;
2868 while (!need_resched()) {
2869 int ret;
2870
2871 hctx->poll_invoked++;
2872
2873 ret = q->mq_ops->poll(hctx, rq->tag);
2874 if (ret > 0) {
2875 hctx->poll_success++;
2876 set_current_state(TASK_RUNNING);
2877 return true;
2878 }
2879
2880 if (signal_pending_state(state, current))
2881 set_current_state(TASK_RUNNING);
2882
2883 if (current->state == TASK_RUNNING)
2884 return true;
2885 if (ret < 0)
2886 break;
2887 cpu_relax();
2888 }
2889
2890 return false;
2891}
2892
2893bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2894{
2895 struct blk_mq_hw_ctx *hctx;
2896 struct blk_plug *plug;
2897 struct request *rq;
2898
2899 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2900 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2901 return false;
2902
2903 plug = current->plug;
2904 if (plug)
2905 blk_flush_plug_list(plug, false);
2906
2907 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002908 if (!blk_qc_t_is_internal(cookie))
2909 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
Jens Axboe3a07bb12017-04-20 14:53:28 -06002910 else {
Jens Axboebd166ef2017-01-17 06:03:22 -07002911 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboe3a07bb12017-04-20 14:53:28 -06002912 /*
2913 * With scheduling, if the request has completed, we'll
2914 * get a NULL return here, as we clear the sched tag when
2915 * that happens. The request still remains valid, like always,
2916 * so we should be safe with just the NULL check.
2917 */
2918 if (!rq)
2919 return false;
2920 }
Jens Axboebbd7bb72016-11-04 09:34:34 -06002921
2922 return __blk_mq_poll(hctx, rq);
2923}
2924EXPORT_SYMBOL_GPL(blk_mq_poll);
2925
Jens Axboe676141e2014-03-20 13:29:18 -06002926void blk_mq_disable_hotplug(void)
2927{
2928 mutex_lock(&all_q_mutex);
2929}
2930
2931void blk_mq_enable_hotplug(void)
2932{
2933 mutex_unlock(&all_q_mutex);
2934}
2935
Jens Axboe320ae512013-10-24 09:20:05 +01002936static int __init blk_mq_init(void)
2937{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002938 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2939 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002940
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002941 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2942 blk_mq_queue_reinit_prepare,
2943 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002944 return 0;
2945}
2946subsys_initcall(blk_mq_init);