blob: a5e66a7a3506f95a121320b2e611ea3ad67b304c [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
Jens Axboe320ae512013-10-24 09:20:05 +01007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010012#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010013#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060024#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060025#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010026
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070033#include "blk-stat.h"
Jens Axboe87760e52016-11-09 12:38:14 -070034#include "blk-wbt.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070035#include "blk-mq-sched.h"
Jens Axboe320ae512013-10-24 09:20:05 +010036
37static DEFINE_MUTEX(all_q_mutex);
38static LIST_HEAD(all_q_list);
39
Jens Axboe320ae512013-10-24 09:20:05 +010040/*
41 * Check if any of the ctx's have pending work in this hardware queue
42 */
Jens Axboe50e1dab2017-01-26 14:42:34 -070043bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010044{
Jens Axboebd166ef2017-01-17 06:03:22 -070045 return sbitmap_any_bit_set(&hctx->ctx_map) ||
46 !list_empty_careful(&hctx->dispatch) ||
47 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +010048}
49
50/*
51 * Mark this ctx as having pending work in this hardware queue
52 */
53static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
54 struct blk_mq_ctx *ctx)
55{
Omar Sandoval88459642016-09-17 08:38:44 -060056 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
57 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060058}
59
60static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
61 struct blk_mq_ctx *ctx)
62{
Omar Sandoval88459642016-09-17 08:38:44 -060063 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010064}
65
Keith Buschb4c6a022014-12-19 17:54:14 -070066void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080067{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020068 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040069
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020070 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
71 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040072 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040073 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040074 }
Tejun Heof3af0202014-11-04 13:52:27 -050075}
Keith Buschb4c6a022014-12-19 17:54:14 -070076EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050077
Keith Busch6bae363e2017-03-01 14:22:10 -050078void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050079{
Dan Williams3ef28e82015-10-21 13:20:12 -040080 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080081}
Keith Busch6bae363e2017-03-01 14:22:10 -050082EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +080083
Keith Buschf91328c2017-03-01 14:22:11 -050084int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
85 unsigned long timeout)
86{
87 return wait_event_timeout(q->mq_freeze_wq,
88 percpu_ref_is_zero(&q->q_usage_counter),
89 timeout);
90}
91EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
92
Tejun Heof3af0202014-11-04 13:52:27 -050093/*
94 * Guarantee no request is in use, so we can change any data structure of
95 * the queue afterward.
96 */
Dan Williams3ef28e82015-10-21 13:20:12 -040097void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050098{
Dan Williams3ef28e82015-10-21 13:20:12 -040099 /*
100 * In the !blk_mq case we are only calling this to kill the
101 * q_usage_counter, otherwise this increases the freeze depth
102 * and waits for it to return to zero. For this reason there is
103 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
104 * exported to drivers as the only user for unfreeze is blk_mq.
105 */
Tejun Heof3af0202014-11-04 13:52:27 -0500106 blk_mq_freeze_queue_start(q);
107 blk_mq_freeze_queue_wait(q);
108}
Dan Williams3ef28e82015-10-21 13:20:12 -0400109
110void blk_mq_freeze_queue(struct request_queue *q)
111{
112 /*
113 * ...just an alias to keep freeze and unfreeze actions balanced
114 * in the blk_mq_* namespace
115 */
116 blk_freeze_queue(q);
117}
Jens Axboec761d962015-01-02 15:05:12 -0700118EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500119
Keith Buschb4c6a022014-12-19 17:54:14 -0700120void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100121{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200122 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100123
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200124 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
125 WARN_ON_ONCE(freeze_depth < 0);
126 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400127 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100128 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600129 }
Jens Axboe320ae512013-10-24 09:20:05 +0100130}
Keith Buschb4c6a022014-12-19 17:54:14 -0700131EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100132
Bart Van Assche6a83e742016-11-02 10:09:51 -0600133/**
134 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
135 * @q: request queue.
136 *
137 * Note: this function does not prevent that the struct request end_io()
138 * callback function is invoked. Additionally, it is not prevented that
139 * new queue_rq() calls occur unless the queue has been stopped first.
140 */
141void blk_mq_quiesce_queue(struct request_queue *q)
142{
143 struct blk_mq_hw_ctx *hctx;
144 unsigned int i;
145 bool rcu = false;
146
147 blk_mq_stop_hw_queues(q);
148
149 queue_for_each_hw_ctx(q, hctx, i) {
150 if (hctx->flags & BLK_MQ_F_BLOCKING)
151 synchronize_srcu(&hctx->queue_rq_srcu);
152 else
153 rcu = true;
154 }
155 if (rcu)
156 synchronize_rcu();
157}
158EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
159
Jens Axboeaed3ea92014-12-22 14:04:42 -0700160void blk_mq_wake_waiters(struct request_queue *q)
161{
162 struct blk_mq_hw_ctx *hctx;
163 unsigned int i;
164
165 queue_for_each_hw_ctx(q, hctx, i)
166 if (blk_mq_hw_queue_mapped(hctx))
167 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700168
169 /*
170 * If we are called because the queue has now been marked as
171 * dying, we need to ensure that processes currently waiting on
172 * the queue are notified as well.
173 */
174 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700175}
176
Jens Axboe320ae512013-10-24 09:20:05 +0100177bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
178{
179 return blk_mq_has_free_tags(hctx->tags);
180}
181EXPORT_SYMBOL(blk_mq_can_queue);
182
Jens Axboe2c3ad662016-12-14 14:34:47 -0700183void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
184 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100185{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200186 INIT_LIST_HEAD(&rq->queuelist);
187 /* csd/requeue_work/fifo_time is initialized before use */
188 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100189 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600190 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200191 if (blk_queue_io_stat(q))
192 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200193 /* do not touch atomic flags, it needs atomic ops against the timer */
194 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200195 INIT_HLIST_NODE(&rq->hash);
196 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200197 rq->rq_disk = NULL;
198 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600199 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200200#ifdef CONFIG_BLK_CGROUP
201 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700202 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200203 rq->io_start_time_ns = 0;
204#endif
205 rq->nr_phys_segments = 0;
206#if defined(CONFIG_BLK_DEV_INTEGRITY)
207 rq->nr_integrity_segments = 0;
208#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200209 rq->special = NULL;
210 /* tag was already set */
211 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200212 rq->extra_len = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200213
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200214 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600215 rq->timeout = 0;
216
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200217 rq->end_io = NULL;
218 rq->end_io_data = NULL;
219 rq->next_rq = NULL;
220
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600221 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100222}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700223EXPORT_SYMBOL_GPL(blk_mq_rq_ctx_init);
Jens Axboe320ae512013-10-24 09:20:05 +0100224
Jens Axboe2c3ad662016-12-14 14:34:47 -0700225struct request *__blk_mq_alloc_request(struct blk_mq_alloc_data *data,
226 unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200227{
228 struct request *rq;
229 unsigned int tag;
230
Ming Leicb96a42c2014-06-01 00:43:37 +0800231 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200232 if (tag != BLK_MQ_TAG_FAIL) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700233 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
234
235 rq = tags->static_rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200236
Jens Axboebd166ef2017-01-17 06:03:22 -0700237 if (data->flags & BLK_MQ_REQ_INTERNAL) {
238 rq->tag = -1;
239 rq->internal_tag = tag;
240 } else {
Jens Axboe200e86b2017-01-25 08:11:38 -0700241 if (blk_mq_tag_busy(data->hctx)) {
242 rq->rq_flags = RQF_MQ_INFLIGHT;
243 atomic_inc(&data->hctx->nr_active);
244 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700245 rq->tag = tag;
246 rq->internal_tag = -1;
Omar Sandoval562bef42017-02-27 09:47:55 -0800247 data->hctx->tags->rqs[rq->tag] = rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700248 }
249
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600250 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200251 return rq;
252 }
253
254 return NULL;
255}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700256EXPORT_SYMBOL_GPL(__blk_mq_alloc_request);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200257
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100258struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
259 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100260{
Jens Axboe5a797e02017-01-26 12:22:11 -0700261 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Jens Axboebd166ef2017-01-17 06:03:22 -0700262 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600263 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100264
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100265 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600266 if (ret)
267 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100268
Jens Axboebd166ef2017-01-17 06:03:22 -0700269 rq = blk_mq_sched_get_request(q, NULL, rw, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600270
Jens Axboebd166ef2017-01-17 06:03:22 -0700271 blk_mq_put_ctx(alloc_data.ctx);
272 blk_queue_exit(q);
273
274 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600275 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200276
277 rq->__data_len = 0;
278 rq->__sector = (sector_t) -1;
279 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100280 return rq;
281}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600282EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100283
Ming Lin1f5bd332016-06-13 16:45:21 +0200284struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
285 unsigned int flags, unsigned int hctx_idx)
286{
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800287 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Ming Lin1f5bd332016-06-13 16:45:21 +0200288 struct request *rq;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800289 unsigned int cpu;
Ming Lin1f5bd332016-06-13 16:45:21 +0200290 int ret;
291
292 /*
293 * If the tag allocator sleeps we could get an allocation for a
294 * different hardware context. No need to complicate the low level
295 * allocator for this for the rare use case of a command tied to
296 * a specific queue.
297 */
298 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
299 return ERR_PTR(-EINVAL);
300
301 if (hctx_idx >= q->nr_hw_queues)
302 return ERR_PTR(-EIO);
303
304 ret = blk_queue_enter(q, true);
305 if (ret)
306 return ERR_PTR(ret);
307
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600308 /*
309 * Check if the hardware context is actually mapped to anything.
310 * If not tell the caller that it should skip this queue.
311 */
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800312 alloc_data.hctx = q->queue_hw_ctx[hctx_idx];
313 if (!blk_mq_hw_queue_mapped(alloc_data.hctx)) {
314 blk_queue_exit(q);
315 return ERR_PTR(-EXDEV);
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600316 }
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800317 cpu = cpumask_first(alloc_data.hctx->cpumask);
318 alloc_data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200319
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800320 rq = blk_mq_sched_get_request(q, NULL, rw, &alloc_data);
321
322 blk_mq_put_ctx(alloc_data.ctx);
323 blk_queue_exit(q);
324
325 if (!rq)
326 return ERR_PTR(-EWOULDBLOCK);
Ming Lin1f5bd332016-06-13 16:45:21 +0200327
328 return rq;
329}
330EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
331
Jens Axboebd166ef2017-01-17 06:03:22 -0700332void __blk_mq_finish_request(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
333 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100334{
Jens Axboebd166ef2017-01-17 06:03:22 -0700335 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100336 struct request_queue *q = rq->q;
337
Christoph Hellwige8064022016-10-20 15:12:13 +0200338 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600339 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700340
341 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200342 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600343
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200344 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700345 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700346 if (rq->tag != -1)
347 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
348 if (sched_tag != -1)
349 blk_mq_sched_completed_request(hctx, rq);
Jens Axboe50e1dab2017-01-26 14:42:34 -0700350 blk_mq_sched_restart_queues(hctx);
Dan Williams3ef28e82015-10-21 13:20:12 -0400351 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100352}
353
Jens Axboebd166ef2017-01-17 06:03:22 -0700354static void blk_mq_finish_hctx_request(struct blk_mq_hw_ctx *hctx,
Jens Axboe16a3c2a2016-12-15 14:27:46 -0700355 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100356{
357 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700358
359 ctx->rq_completed[rq_is_sync(rq)]++;
Jens Axboebd166ef2017-01-17 06:03:22 -0700360 __blk_mq_finish_request(hctx, ctx, rq);
361}
362
363void blk_mq_finish_request(struct request *rq)
364{
365 blk_mq_finish_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700366}
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700367
368void blk_mq_free_request(struct request *rq)
369{
Jens Axboebd166ef2017-01-17 06:03:22 -0700370 blk_mq_sched_put_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100371}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700372EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100373
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700374inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100375{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700376 blk_account_io_done(rq);
377
Christoph Hellwig91b63632014-04-16 09:44:53 +0200378 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700379 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100380 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200381 } else {
382 if (unlikely(blk_bidi_rq(rq)))
383 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100384 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200385 }
Jens Axboe320ae512013-10-24 09:20:05 +0100386}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700387EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200388
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700389void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200390{
391 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
392 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700393 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200394}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700395EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100396
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800397static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100398{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800399 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100400
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100402}
403
Jens Axboeed851862014-05-30 21:20:50 -0600404static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100405{
406 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700407 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100408 int cpu;
409
Christoph Hellwig38535202014-04-25 02:32:53 -0700410 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800411 rq->q->softirq_done_fn(rq);
412 return;
413 }
Jens Axboe320ae512013-10-24 09:20:05 +0100414
415 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700416 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
417 shared = cpus_share_cache(cpu, ctx->cpu);
418
419 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800420 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800421 rq->csd.info = rq;
422 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100423 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800424 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800425 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800426 }
Jens Axboe320ae512013-10-24 09:20:05 +0100427 put_cpu();
428}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800429
Jens Axboecf43e6b2016-11-07 21:32:37 -0700430static void blk_mq_stat_add(struct request *rq)
431{
432 if (rq->rq_flags & RQF_STATS) {
433 /*
434 * We could rq->mq_ctx here, but there's less of a risk
435 * of races if we have the completion event add the stats
436 * to the local software queue.
437 */
438 struct blk_mq_ctx *ctx;
439
440 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
441 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
442 }
443}
444
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700445static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600446{
447 struct request_queue *q = rq->q;
448
Jens Axboecf43e6b2016-11-07 21:32:37 -0700449 blk_mq_stat_add(rq);
450
Jens Axboeed851862014-05-30 21:20:50 -0600451 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700452 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600453 else
454 blk_mq_ipi_complete_request(rq);
455}
456
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800457/**
458 * blk_mq_complete_request - end I/O on a request
459 * @rq: the request being processed
460 *
461 * Description:
462 * Ends all I/O on a request. It does not handle partial completions.
463 * The actual completion happens out-of-order, through a IPI handler.
464 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200465void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800466{
Jens Axboe95f09682014-05-27 17:46:48 -0600467 struct request_queue *q = rq->q;
468
469 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800470 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200471 if (!blk_mark_rq_complete(rq)) {
472 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600473 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200474 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800475}
476EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100477
Keith Busch973c0192015-01-07 18:55:43 -0700478int blk_mq_request_started(struct request *rq)
479{
480 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
481}
482EXPORT_SYMBOL_GPL(blk_mq_request_started);
483
Christoph Hellwige2490072014-09-13 16:40:09 -0700484void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100485{
486 struct request_queue *q = rq->q;
487
Jens Axboebd166ef2017-01-17 06:03:22 -0700488 blk_mq_sched_started_request(rq);
489
Jens Axboe320ae512013-10-24 09:20:05 +0100490 trace_block_rq_issue(q, rq);
491
Jens Axboecf43e6b2016-11-07 21:32:37 -0700492 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
493 blk_stat_set_issue_time(&rq->issue_stat);
494 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700495 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700496 }
497
Ming Lei2b8393b2014-06-10 00:16:41 +0800498 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600499
500 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600501 * Ensure that ->deadline is visible before set the started
502 * flag and clear the completed flag.
503 */
504 smp_mb__before_atomic();
505
506 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600507 * Mark us as started and clear complete. Complete might have been
508 * set if requeue raced with timeout, which then marked it as
509 * complete. So be sure to clear complete again when we start
510 * the request, otherwise we'll ignore the completion event.
511 */
Jens Axboe4b570522014-05-29 11:00:11 -0600512 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
513 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
514 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
515 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800516
517 if (q->dma_drain_size && blk_rq_bytes(rq)) {
518 /*
519 * Make sure space for the drain appears. We know we can do
520 * this because max_hw_segments has been adjusted to be one
521 * fewer than the device can handle.
522 */
523 rq->nr_phys_segments++;
524 }
Jens Axboe320ae512013-10-24 09:20:05 +0100525}
Christoph Hellwige2490072014-09-13 16:40:09 -0700526EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100527
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200528static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100529{
530 struct request_queue *q = rq->q;
531
532 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700533 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700534 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800535
Christoph Hellwige2490072014-09-13 16:40:09 -0700536 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
537 if (q->dma_drain_size && blk_rq_bytes(rq))
538 rq->nr_phys_segments--;
539 }
Jens Axboe320ae512013-10-24 09:20:05 +0100540}
541
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700542void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200543{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200544 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200545
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200546 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700547 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200548}
549EXPORT_SYMBOL(blk_mq_requeue_request);
550
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600551static void blk_mq_requeue_work(struct work_struct *work)
552{
553 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400554 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600555 LIST_HEAD(rq_list);
556 struct request *rq, *next;
557 unsigned long flags;
558
559 spin_lock_irqsave(&q->requeue_lock, flags);
560 list_splice_init(&q->requeue_list, &rq_list);
561 spin_unlock_irqrestore(&q->requeue_lock, flags);
562
563 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200564 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600565 continue;
566
Christoph Hellwige8064022016-10-20 15:12:13 +0200567 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600568 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700569 blk_mq_sched_insert_request(rq, true, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600570 }
571
572 while (!list_empty(&rq_list)) {
573 rq = list_entry(rq_list.next, struct request, queuelist);
574 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700575 blk_mq_sched_insert_request(rq, false, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600576 }
577
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700578 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600579}
580
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700581void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
582 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600583{
584 struct request_queue *q = rq->q;
585 unsigned long flags;
586
587 /*
588 * We abuse this flag that is otherwise used by the I/O scheduler to
589 * request head insertation from the workqueue.
590 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200591 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600592
593 spin_lock_irqsave(&q->requeue_lock, flags);
594 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200595 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600596 list_add(&rq->queuelist, &q->requeue_list);
597 } else {
598 list_add_tail(&rq->queuelist, &q->requeue_list);
599 }
600 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700601
602 if (kick_requeue_list)
603 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600604}
605EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
606
607void blk_mq_kick_requeue_list(struct request_queue *q)
608{
Mike Snitzer28494502016-09-14 13:28:30 -0400609 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600610}
611EXPORT_SYMBOL(blk_mq_kick_requeue_list);
612
Mike Snitzer28494502016-09-14 13:28:30 -0400613void blk_mq_delay_kick_requeue_list(struct request_queue *q,
614 unsigned long msecs)
615{
616 kblockd_schedule_delayed_work(&q->requeue_work,
617 msecs_to_jiffies(msecs));
618}
619EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
620
Jens Axboe1885b242015-01-07 18:55:45 -0700621void blk_mq_abort_requeue_list(struct request_queue *q)
622{
623 unsigned long flags;
624 LIST_HEAD(rq_list);
625
626 spin_lock_irqsave(&q->requeue_lock, flags);
627 list_splice_init(&q->requeue_list, &rq_list);
628 spin_unlock_irqrestore(&q->requeue_lock, flags);
629
630 while (!list_empty(&rq_list)) {
631 struct request *rq;
632
633 rq = list_first_entry(&rq_list, struct request, queuelist);
634 list_del_init(&rq->queuelist);
635 rq->errors = -EIO;
636 blk_mq_end_request(rq, rq->errors);
637 }
638}
639EXPORT_SYMBOL(blk_mq_abort_requeue_list);
640
Jens Axboe0e62f512014-06-04 10:23:49 -0600641struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
642{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600643 if (tag < tags->nr_tags) {
644 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700645 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600646 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700647
648 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600649}
650EXPORT_SYMBOL(blk_mq_tag_to_rq);
651
Jens Axboe320ae512013-10-24 09:20:05 +0100652struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700653 unsigned long next;
654 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100655};
656
Christoph Hellwig90415832014-09-22 10:21:48 -0600657void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100658{
Jens Axboef8a5b122016-12-13 09:24:51 -0700659 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700660 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600661
662 /*
663 * We know that complete is set at this point. If STARTED isn't set
664 * anymore, then the request isn't active and the "timeout" should
665 * just be ignored. This can happen due to the bitflag ordering.
666 * Timeout first checks if STARTED is set, and if it is, assumes
667 * the request is active. But if we race with completion, then
668 * we both flags will get cleared. So check here again, and ignore
669 * a timeout event with a request that isn't active.
670 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700671 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
672 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600673
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700674 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700675 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600676
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700677 switch (ret) {
678 case BLK_EH_HANDLED:
679 __blk_mq_complete_request(req);
680 break;
681 case BLK_EH_RESET_TIMER:
682 blk_add_timer(req);
683 blk_clear_rq_complete(req);
684 break;
685 case BLK_EH_NOT_HANDLED:
686 break;
687 default:
688 printk(KERN_ERR "block: bad eh return: %d\n", ret);
689 break;
690 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600691}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700692
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700693static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
694 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100695{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700696 struct blk_mq_timeout_data *data = priv;
697
Keith Buscheb130db2015-01-08 08:59:53 -0700698 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
699 /*
700 * If a request wasn't started before the queue was
701 * marked dying, kill it here or it'll go unnoticed.
702 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700703 if (unlikely(blk_queue_dying(rq->q))) {
704 rq->errors = -EIO;
705 blk_mq_end_request(rq, rq->errors);
706 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700707 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700708 }
Jens Axboe320ae512013-10-24 09:20:05 +0100709
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700710 if (time_after_eq(jiffies, rq->deadline)) {
711 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700712 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700713 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
714 data->next = rq->deadline;
715 data->next_set = 1;
716 }
Jens Axboe320ae512013-10-24 09:20:05 +0100717}
718
Christoph Hellwig287922e2015-10-30 20:57:30 +0800719static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100720{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800721 struct request_queue *q =
722 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700723 struct blk_mq_timeout_data data = {
724 .next = 0,
725 .next_set = 0,
726 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700727 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100728
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600729 /* A deadlock might occur if a request is stuck requiring a
730 * timeout at the same time a queue freeze is waiting
731 * completion, since the timeout code would not be able to
732 * acquire the queue reference here.
733 *
734 * That's why we don't use blk_queue_enter here; instead, we use
735 * percpu_ref_tryget directly, because we need to be able to
736 * obtain a reference even in the short window between the queue
737 * starting to freeze, by dropping the first reference in
738 * blk_mq_freeze_queue_start, and the moment the last request is
739 * consumed, marked by the instant q_usage_counter reaches
740 * zero.
741 */
742 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800743 return;
744
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200745 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100746
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700747 if (data.next_set) {
748 data.next = blk_rq_timeout(round_jiffies_up(data.next));
749 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600750 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200751 struct blk_mq_hw_ctx *hctx;
752
Ming Leif054b562015-04-21 10:00:19 +0800753 queue_for_each_hw_ctx(q, hctx, i) {
754 /* the hctx may be unmapped, so check it here */
755 if (blk_mq_hw_queue_mapped(hctx))
756 blk_mq_tag_idle(hctx);
757 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600758 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800759 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100760}
761
762/*
763 * Reverse check our software queue for entries that we could potentially
764 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
765 * too much time checking for merges.
766 */
767static bool blk_mq_attempt_merge(struct request_queue *q,
768 struct blk_mq_ctx *ctx, struct bio *bio)
769{
770 struct request *rq;
771 int checked = 8;
772
773 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100774 bool merged = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100775
776 if (!checked--)
777 break;
778
779 if (!blk_rq_merge_ok(rq, bio))
780 continue;
781
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100782 switch (blk_try_merge(rq, bio)) {
783 case ELEVATOR_BACK_MERGE:
784 if (blk_mq_sched_allow_merge(q, rq, bio))
785 merged = bio_attempt_back_merge(q, rq, bio);
786 break;
787 case ELEVATOR_FRONT_MERGE:
788 if (blk_mq_sched_allow_merge(q, rq, bio))
789 merged = bio_attempt_front_merge(q, rq, bio);
790 break;
Christoph Hellwig1e739732017-02-08 14:46:49 +0100791 case ELEVATOR_DISCARD_MERGE:
792 merged = bio_attempt_discard_merge(q, rq, bio);
793 break;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100794 default:
Jens Axboebd166ef2017-01-17 06:03:22 -0700795 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100796 }
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100797
798 if (merged)
799 ctx->rq_merged++;
800 return merged;
Jens Axboe320ae512013-10-24 09:20:05 +0100801 }
802
803 return false;
804}
805
Omar Sandoval88459642016-09-17 08:38:44 -0600806struct flush_busy_ctx_data {
807 struct blk_mq_hw_ctx *hctx;
808 struct list_head *list;
809};
810
811static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
812{
813 struct flush_busy_ctx_data *flush_data = data;
814 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
815 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
816
817 sbitmap_clear_bit(sb, bitnr);
818 spin_lock(&ctx->lock);
819 list_splice_tail_init(&ctx->rq_list, flush_data->list);
820 spin_unlock(&ctx->lock);
821 return true;
822}
823
Jens Axboe320ae512013-10-24 09:20:05 +0100824/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600825 * Process software queues that have been marked busy, splicing them
826 * to the for-dispatch
827 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700828void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600829{
Omar Sandoval88459642016-09-17 08:38:44 -0600830 struct flush_busy_ctx_data data = {
831 .hctx = hctx,
832 .list = list,
833 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600834
Omar Sandoval88459642016-09-17 08:38:44 -0600835 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600836}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700837EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600838
Jens Axboe703fd1c2016-09-16 13:59:14 -0600839static inline unsigned int queued_to_index(unsigned int queued)
840{
841 if (!queued)
842 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600843
Jens Axboe703fd1c2016-09-16 13:59:14 -0600844 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600845}
846
Jens Axboebd6737f2017-01-27 01:00:47 -0700847bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx,
848 bool wait)
Jens Axboebd166ef2017-01-17 06:03:22 -0700849{
850 struct blk_mq_alloc_data data = {
851 .q = rq->q,
Jens Axboebd166ef2017-01-17 06:03:22 -0700852 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
853 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
854 };
855
Jens Axboebd166ef2017-01-17 06:03:22 -0700856 if (rq->tag != -1) {
857done:
858 if (hctx)
859 *hctx = data.hctx;
860 return true;
861 }
862
Sagi Grimberg415b8062017-02-27 10:04:39 -0700863 if (blk_mq_tag_is_reserved(data.hctx->sched_tags, rq->internal_tag))
864 data.flags |= BLK_MQ_REQ_RESERVED;
865
Jens Axboebd166ef2017-01-17 06:03:22 -0700866 rq->tag = blk_mq_get_tag(&data);
867 if (rq->tag >= 0) {
Jens Axboe200e86b2017-01-25 08:11:38 -0700868 if (blk_mq_tag_busy(data.hctx)) {
869 rq->rq_flags |= RQF_MQ_INFLIGHT;
870 atomic_inc(&data.hctx->nr_active);
871 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700872 data.hctx->tags->rqs[rq->tag] = rq;
873 goto done;
874 }
875
876 return false;
877}
878
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700879static void blk_mq_put_driver_tag(struct blk_mq_hw_ctx *hctx,
880 struct request *rq)
881{
882 if (rq->tag == -1 || rq->internal_tag == -1)
883 return;
884
885 blk_mq_put_tag(hctx, hctx->tags, rq->mq_ctx, rq->tag);
886 rq->tag = -1;
887
888 if (rq->rq_flags & RQF_MQ_INFLIGHT) {
889 rq->rq_flags &= ~RQF_MQ_INFLIGHT;
890 atomic_dec(&hctx->nr_active);
891 }
892}
893
Jens Axboebd166ef2017-01-17 06:03:22 -0700894/*
895 * If we fail getting a driver tag because all the driver tags are already
896 * assigned and on the dispatch list, BUT the first entry does not have a
897 * tag, then we could deadlock. For that case, move entries with assigned
898 * driver tags to the front, leaving the set of tagged requests in the
899 * same order, and the untagged set in the same order.
900 */
901static bool reorder_tags_to_front(struct list_head *list)
902{
903 struct request *rq, *tmp, *first = NULL;
904
905 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
906 if (rq == first)
907 break;
908 if (rq->tag != -1) {
909 list_move(&rq->queuelist, list);
910 if (!first)
911 first = rq;
912 }
913 }
914
915 return first != NULL;
916}
917
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800918static int blk_mq_dispatch_wake(wait_queue_t *wait, unsigned mode, int flags,
919 void *key)
920{
921 struct blk_mq_hw_ctx *hctx;
922
923 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
924
925 list_del(&wait->task_list);
926 clear_bit_unlock(BLK_MQ_S_TAG_WAITING, &hctx->state);
927 blk_mq_run_hw_queue(hctx, true);
928 return 1;
929}
930
931static bool blk_mq_dispatch_wait_add(struct blk_mq_hw_ctx *hctx)
932{
933 struct sbq_wait_state *ws;
934
935 /*
936 * The TAG_WAITING bit serves as a lock protecting hctx->dispatch_wait.
937 * The thread which wins the race to grab this bit adds the hardware
938 * queue to the wait queue.
939 */
940 if (test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state) ||
941 test_and_set_bit_lock(BLK_MQ_S_TAG_WAITING, &hctx->state))
942 return false;
943
944 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
945 ws = bt_wait_ptr(&hctx->tags->bitmap_tags, hctx);
946
947 /*
948 * As soon as this returns, it's no longer safe to fiddle with
949 * hctx->dispatch_wait, since a completion can wake up the wait queue
950 * and unlock the bit.
951 */
952 add_wait_queue(&ws->wait, &hctx->dispatch_wait);
953 return true;
954}
955
Jens Axboef04c3df2016-12-07 08:41:17 -0700956bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list)
957{
958 struct request_queue *q = hctx->queue;
959 struct request *rq;
960 LIST_HEAD(driver_list);
961 struct list_head *dptr;
962 int queued, ret = BLK_MQ_RQ_QUEUE_OK;
963
964 /*
965 * Start off with dptr being NULL, so we start the first request
966 * immediately, even if we have more pending.
967 */
968 dptr = NULL;
969
970 /*
971 * Now process all the entries, sending them to the driver.
972 */
973 queued = 0;
974 while (!list_empty(list)) {
975 struct blk_mq_queue_data bd;
976
977 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700978 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
979 if (!queued && reorder_tags_to_front(list))
980 continue;
Jens Axboe3c782d62017-01-26 12:50:36 -0700981
982 /*
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800983 * The initial allocation attempt failed, so we need to
984 * rerun the hardware queue when a tag is freed.
Jens Axboe3c782d62017-01-26 12:50:36 -0700985 */
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800986 if (blk_mq_dispatch_wait_add(hctx)) {
987 /*
988 * It's possible that a tag was freed in the
989 * window between the allocation failure and
990 * adding the hardware queue to the wait queue.
991 */
992 if (!blk_mq_get_driver_tag(rq, &hctx, false))
993 break;
994 } else {
Jens Axboe3c782d62017-01-26 12:50:36 -0700995 break;
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800996 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700997 }
Omar Sandovalda55f2c2017-02-22 10:58:29 -0800998
Jens Axboef04c3df2016-12-07 08:41:17 -0700999 list_del_init(&rq->queuelist);
1000
1001 bd.rq = rq;
1002 bd.list = dptr;
1003 bd.last = list_empty(list);
1004
1005 ret = q->mq_ops->queue_rq(hctx, &bd);
1006 switch (ret) {
1007 case BLK_MQ_RQ_QUEUE_OK:
1008 queued++;
1009 break;
1010 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe99cf1dc2017-01-26 12:32:32 -07001011 blk_mq_put_driver_tag(hctx, rq);
Jens Axboef04c3df2016-12-07 08:41:17 -07001012 list_add(&rq->queuelist, list);
1013 __blk_mq_requeue_request(rq);
1014 break;
1015 default:
1016 pr_err("blk-mq: bad return on queue: %d\n", ret);
1017 case BLK_MQ_RQ_QUEUE_ERROR:
1018 rq->errors = -EIO;
1019 blk_mq_end_request(rq, rq->errors);
1020 break;
1021 }
1022
1023 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
1024 break;
1025
1026 /*
1027 * We've done the first request. If we have more than 1
1028 * left in the list, set dptr to defer issue.
1029 */
1030 if (!dptr && list->next != list->prev)
1031 dptr = &driver_list;
1032 }
1033
1034 hctx->dispatched[queued_to_index(queued)]++;
1035
1036 /*
1037 * Any items that need requeuing? Stuff them into hctx->dispatch,
1038 * that is where we will continue on next queue run.
1039 */
1040 if (!list_empty(list)) {
1041 spin_lock(&hctx->lock);
Jens Axboec13660a2017-01-26 12:40:07 -07001042 list_splice_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001043 spin_unlock(&hctx->lock);
1044
1045 /*
1046 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
1047 * it's possible the queue is stopped and restarted again
1048 * before this. Queue restart will dispatch requests. And since
1049 * requests in rq_list aren't added into hctx->dispatch yet,
1050 * the requests in rq_list might get lost.
1051 *
1052 * blk_mq_run_hw_queue() already checks the STOPPED bit
Jens Axboebd166ef2017-01-17 06:03:22 -07001053 *
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001054 * If RESTART or TAG_WAITING is set, then let completion restart
1055 * the queue instead of potentially looping here.
Jens Axboebd166ef2017-01-17 06:03:22 -07001056 */
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001057 if (!blk_mq_sched_needs_restart(hctx) &&
1058 !test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state))
Jens Axboebd166ef2017-01-17 06:03:22 -07001059 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -07001060 }
1061
Jens Axboe2aa0f212017-02-17 11:35:35 -07001062 return queued != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001063}
1064
Bart Van Assche6a83e742016-11-02 10:09:51 -06001065static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1066{
1067 int srcu_idx;
1068
1069 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1070 cpu_online(hctx->next_cpu));
1071
1072 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1073 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001074 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001075 rcu_read_unlock();
1076 } else {
1077 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001078 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001079 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1080 }
1081}
1082
Jens Axboe506e9312014-05-07 10:26:44 -06001083/*
1084 * It'd be great if the workqueue API had a way to pass
1085 * in a mask and had some smarts for more clever placement.
1086 * For now we just round-robin here, switching for every
1087 * BLK_MQ_CPU_WORK_BATCH queued items.
1088 */
1089static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1090{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001091 if (hctx->queue->nr_hw_queues == 1)
1092 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001093
1094 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001095 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001096
1097 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1098 if (next_cpu >= nr_cpu_ids)
1099 next_cpu = cpumask_first(hctx->cpumask);
1100
1101 hctx->next_cpu = next_cpu;
1102 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1103 }
1104
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001105 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001106}
1107
Jens Axboe320ae512013-10-24 09:20:05 +01001108void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1109{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001110 if (unlikely(blk_mq_hctx_stopped(hctx) ||
1111 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001112 return;
1113
Jens Axboe1b792f22016-09-21 10:12:13 -06001114 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001115 int cpu = get_cpu();
1116 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001117 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001118 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001119 return;
1120 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001121
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001122 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001123 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001124
Jens Axboe27489a32016-08-24 15:54:25 -06001125 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001126}
1127
Mike Snitzerb94ec292015-03-11 23:56:38 -04001128void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001129{
1130 struct blk_mq_hw_ctx *hctx;
1131 int i;
1132
1133 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001134 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001135 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001136 continue;
1137
Mike Snitzerb94ec292015-03-11 23:56:38 -04001138 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001139 }
1140}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001141EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001142
Bart Van Asschefd001442016-10-28 17:19:37 -07001143/**
1144 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1145 * @q: request queue.
1146 *
1147 * The caller is responsible for serializing this function against
1148 * blk_mq_{start,stop}_hw_queue().
1149 */
1150bool blk_mq_queue_stopped(struct request_queue *q)
1151{
1152 struct blk_mq_hw_ctx *hctx;
1153 int i;
1154
1155 queue_for_each_hw_ctx(q, hctx, i)
1156 if (blk_mq_hctx_stopped(hctx))
1157 return true;
1158
1159 return false;
1160}
1161EXPORT_SYMBOL(blk_mq_queue_stopped);
1162
Jens Axboe320ae512013-10-24 09:20:05 +01001163void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1164{
Jens Axboe27489a32016-08-24 15:54:25 -06001165 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001166 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001167 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1168}
1169EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1170
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001171void blk_mq_stop_hw_queues(struct request_queue *q)
1172{
1173 struct blk_mq_hw_ctx *hctx;
1174 int i;
1175
1176 queue_for_each_hw_ctx(q, hctx, i)
1177 blk_mq_stop_hw_queue(hctx);
1178}
1179EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1180
Jens Axboe320ae512013-10-24 09:20:05 +01001181void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1182{
1183 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001184
Jens Axboe0ffbce82014-06-25 08:22:34 -06001185 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001186}
1187EXPORT_SYMBOL(blk_mq_start_hw_queue);
1188
Christoph Hellwig2f268552014-04-16 09:44:56 +02001189void blk_mq_start_hw_queues(struct request_queue *q)
1190{
1191 struct blk_mq_hw_ctx *hctx;
1192 int i;
1193
1194 queue_for_each_hw_ctx(q, hctx, i)
1195 blk_mq_start_hw_queue(hctx);
1196}
1197EXPORT_SYMBOL(blk_mq_start_hw_queues);
1198
Jens Axboeae911c52016-12-08 13:19:30 -07001199void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1200{
1201 if (!blk_mq_hctx_stopped(hctx))
1202 return;
1203
1204 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1205 blk_mq_run_hw_queue(hctx, async);
1206}
1207EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1208
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001209void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001210{
1211 struct blk_mq_hw_ctx *hctx;
1212 int i;
1213
Jens Axboeae911c52016-12-08 13:19:30 -07001214 queue_for_each_hw_ctx(q, hctx, i)
1215 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001216}
1217EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1218
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001219static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001220{
1221 struct blk_mq_hw_ctx *hctx;
1222
Jens Axboe27489a32016-08-24 15:54:25 -06001223 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001224
Jens Axboe320ae512013-10-24 09:20:05 +01001225 __blk_mq_run_hw_queue(hctx);
1226}
1227
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001228static void blk_mq_delay_work_fn(struct work_struct *work)
1229{
1230 struct blk_mq_hw_ctx *hctx;
1231
1232 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1233
1234 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1235 __blk_mq_run_hw_queue(hctx);
1236}
1237
1238void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1239{
Ming Lei19c66e52014-12-03 19:38:04 +08001240 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1241 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001242
Jens Axboe7e79dad2017-01-19 07:58:59 -07001243 blk_mq_stop_hw_queue(hctx);
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001244 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1245 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001246}
1247EXPORT_SYMBOL(blk_mq_delay_queue);
1248
Ming Leicfd0c552015-10-20 23:13:57 +08001249static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001250 struct request *rq,
1251 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001252{
Jens Axboee57690f2016-08-24 15:34:35 -06001253 struct blk_mq_ctx *ctx = rq->mq_ctx;
1254
Jens Axboe01b983c2013-11-19 18:59:10 -07001255 trace_block_rq_insert(hctx->queue, rq);
1256
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001257 if (at_head)
1258 list_add(&rq->queuelist, &ctx->rq_list);
1259 else
1260 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001261}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001262
Jens Axboe2c3ad662016-12-14 14:34:47 -07001263void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1264 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001265{
1266 struct blk_mq_ctx *ctx = rq->mq_ctx;
1267
Jens Axboee57690f2016-08-24 15:34:35 -06001268 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001269 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001270}
1271
Jens Axboebd166ef2017-01-17 06:03:22 -07001272void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1273 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001274
1275{
Jens Axboe320ae512013-10-24 09:20:05 +01001276 /*
1277 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1278 * offline now
1279 */
1280 spin_lock(&ctx->lock);
1281 while (!list_empty(list)) {
1282 struct request *rq;
1283
1284 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001285 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001286 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001287 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001288 }
Ming Leicfd0c552015-10-20 23:13:57 +08001289 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001290 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001291}
1292
1293static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1294{
1295 struct request *rqa = container_of(a, struct request, queuelist);
1296 struct request *rqb = container_of(b, struct request, queuelist);
1297
1298 return !(rqa->mq_ctx < rqb->mq_ctx ||
1299 (rqa->mq_ctx == rqb->mq_ctx &&
1300 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1301}
1302
1303void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1304{
1305 struct blk_mq_ctx *this_ctx;
1306 struct request_queue *this_q;
1307 struct request *rq;
1308 LIST_HEAD(list);
1309 LIST_HEAD(ctx_list);
1310 unsigned int depth;
1311
1312 list_splice_init(&plug->mq_list, &list);
1313
1314 list_sort(NULL, &list, plug_ctx_cmp);
1315
1316 this_q = NULL;
1317 this_ctx = NULL;
1318 depth = 0;
1319
1320 while (!list_empty(&list)) {
1321 rq = list_entry_rq(list.next);
1322 list_del_init(&rq->queuelist);
1323 BUG_ON(!rq->q);
1324 if (rq->mq_ctx != this_ctx) {
1325 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001326 trace_block_unplug(this_q, depth, from_schedule);
1327 blk_mq_sched_insert_requests(this_q, this_ctx,
1328 &ctx_list,
1329 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001330 }
1331
1332 this_ctx = rq->mq_ctx;
1333 this_q = rq->q;
1334 depth = 0;
1335 }
1336
1337 depth++;
1338 list_add_tail(&rq->queuelist, &ctx_list);
1339 }
1340
1341 /*
1342 * If 'this_ctx' is set, we know we have entries to complete
1343 * on 'ctx_list'. Do those.
1344 */
1345 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001346 trace_block_unplug(this_q, depth, from_schedule);
1347 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1348 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001349 }
1350}
1351
1352static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1353{
1354 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001355
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001356 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001357}
1358
Jens Axboe274a5842014-08-15 12:44:08 -06001359static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1360{
1361 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1362 !blk_queue_nomerges(hctx->queue);
1363}
1364
Jens Axboe07068d52014-05-22 10:40:51 -06001365static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1366 struct blk_mq_ctx *ctx,
1367 struct request *rq, struct bio *bio)
1368{
Ming Leie18378a2015-10-20 23:13:54 +08001369 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001370 blk_mq_bio_to_request(rq, bio);
1371 spin_lock(&ctx->lock);
1372insert_rq:
1373 __blk_mq_insert_request(hctx, rq, false);
1374 spin_unlock(&ctx->lock);
1375 return false;
1376 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001377 struct request_queue *q = hctx->queue;
1378
Jens Axboe07068d52014-05-22 10:40:51 -06001379 spin_lock(&ctx->lock);
1380 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1381 blk_mq_bio_to_request(rq, bio);
1382 goto insert_rq;
1383 }
1384
1385 spin_unlock(&ctx->lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001386 __blk_mq_finish_request(hctx, ctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001387 return true;
1388 }
1389}
1390
Jens Axboefd2d3322017-01-12 10:04:45 -07001391static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1392{
Jens Axboebd166ef2017-01-17 06:03:22 -07001393 if (rq->tag != -1)
1394 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1395
1396 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001397}
1398
Jens Axboe066a4a72016-11-11 12:24:46 -07001399static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001400{
Shaohua Lif984df12015-05-08 10:51:32 -07001401 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001402 struct blk_mq_queue_data bd = {
1403 .rq = rq,
1404 .list = NULL,
1405 .last = 1
1406 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001407 struct blk_mq_hw_ctx *hctx;
1408 blk_qc_t new_cookie;
1409 int ret;
Shaohua Lif984df12015-05-08 10:51:32 -07001410
Jens Axboebd166ef2017-01-17 06:03:22 -07001411 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001412 goto insert;
1413
Jens Axboebd166ef2017-01-17 06:03:22 -07001414 if (!blk_mq_get_driver_tag(rq, &hctx, false))
1415 goto insert;
1416
1417 new_cookie = request_to_qc_t(hctx, rq);
1418
Shaohua Lif984df12015-05-08 10:51:32 -07001419 /*
1420 * For OK queue, we are done. For error, kill it. Any other
1421 * error (busy), just add it to our list as we previously
1422 * would have done
1423 */
1424 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001425 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1426 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001427 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001428 }
Jens Axboe7b371632015-11-05 10:41:40 -07001429
1430 __blk_mq_requeue_request(rq);
1431
1432 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1433 *cookie = BLK_QC_T_NONE;
1434 rq->errors = -EIO;
1435 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001436 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001437 }
1438
Bart Van Assche2253efc2016-10-28 17:20:02 -07001439insert:
Jens Axboebd6737f2017-01-27 01:00:47 -07001440 blk_mq_sched_insert_request(rq, false, true, true, false);
Shaohua Lif984df12015-05-08 10:51:32 -07001441}
1442
Jens Axboe07068d52014-05-22 10:40:51 -06001443/*
1444 * Multiple hardware queue variant. This will not use per-process plugs,
1445 * but will attempt to bypass the hctx queueing if we can go straight to
1446 * hardware for SYNC IO.
1447 */
Jens Axboedece1632015-11-05 10:41:16 -07001448static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001449{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001450 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001451 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jens Axboe5a797e02017-01-26 12:22:11 -07001452 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001453 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001454 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001455 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001456 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001457 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001458 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001459
1460 blk_queue_bounce(q, &bio);
1461
1462 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001463 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001464 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001465 }
1466
Kent Overstreet54efd502015-04-23 22:37:18 -07001467 blk_queue_split(q, &bio, q->bio_split);
1468
Omar Sandoval87c279e2016-06-01 22:18:48 -07001469 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1470 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1471 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001472
Jens Axboebd166ef2017-01-17 06:03:22 -07001473 if (blk_mq_sched_bio_merge(q, bio))
1474 return BLK_QC_T_NONE;
1475
Jens Axboe87760e52016-11-09 12:38:14 -07001476 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1477
Jens Axboebd166ef2017-01-17 06:03:22 -07001478 trace_block_getrq(q, bio, bio->bi_opf);
1479
1480 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001481 if (unlikely(!rq)) {
1482 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001483 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001484 }
1485
1486 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001487
Jens Axboefd2d3322017-01-12 10:04:45 -07001488 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001489
1490 if (unlikely(is_flush_fua)) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001491 if (q->elevator)
1492 goto elv_insert;
Jens Axboe07068d52014-05-22 10:40:51 -06001493 blk_mq_bio_to_request(rq, bio);
1494 blk_insert_flush(rq);
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001495 goto run_queue;
Jens Axboe07068d52014-05-22 10:40:51 -06001496 }
1497
Shaohua Lif984df12015-05-08 10:51:32 -07001498 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001499 /*
1500 * If the driver supports defer issued based on 'last', then
1501 * queue it up like normal since we can potentially save some
1502 * CPU this way.
1503 */
Shaohua Lif984df12015-05-08 10:51:32 -07001504 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1505 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1506 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001507
1508 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001509
1510 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001511 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001512 * Otherwise the existing request in the plug list will be
1513 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001514 */
Shaohua Lif984df12015-05-08 10:51:32 -07001515 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001516 /*
1517 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001518 * happens, same_queue_rq is invalid and plug list is
1519 * empty
1520 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001521 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1522 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001523 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001524 }
Shaohua Lif984df12015-05-08 10:51:32 -07001525 list_add_tail(&rq->queuelist, &plug->mq_list);
1526 } else /* is_sync */
1527 old_rq = rq;
1528 blk_mq_put_ctx(data.ctx);
1529 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001530 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001531
1532 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1533 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001534 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001535 rcu_read_unlock();
1536 } else {
1537 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001538 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001539 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1540 }
Jens Axboe7b371632015-11-05 10:41:40 -07001541 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001542 }
1543
Jens Axboebd166ef2017-01-17 06:03:22 -07001544 if (q->elevator) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001545elv_insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001546 blk_mq_put_ctx(data.ctx);
1547 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001548 blk_mq_sched_insert_request(rq, false, true,
Jens Axboebd6737f2017-01-27 01:00:47 -07001549 !is_sync || is_flush_fua, true);
Jens Axboebd166ef2017-01-17 06:03:22 -07001550 goto done;
1551 }
Jens Axboe07068d52014-05-22 10:40:51 -06001552 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1553 /*
1554 * For a SYNC request, send it to the hardware immediately. For
1555 * an ASYNC request, just ensure that we run it later on. The
1556 * latter allows for merging opportunities and more efficient
1557 * dispatching.
1558 */
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001559run_queue:
Jens Axboe07068d52014-05-22 10:40:51 -06001560 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1561 }
Jens Axboe07068d52014-05-22 10:40:51 -06001562 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001563done:
1564 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001565}
1566
1567/*
1568 * Single hardware queue variant. This will attempt to use any per-process
1569 * plug for merging and IO deferral.
1570 */
Jens Axboedece1632015-11-05 10:41:16 -07001571static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001572{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001573 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001574 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jeff Moyere6c44382015-05-08 10:51:30 -07001575 struct blk_plug *plug;
1576 unsigned int request_count = 0;
Jens Axboe5a797e02017-01-26 12:22:11 -07001577 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001578 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001579 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001580 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001581
Jens Axboe07068d52014-05-22 10:40:51 -06001582 blk_queue_bounce(q, &bio);
1583
1584 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001585 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001586 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001587 }
1588
Kent Overstreet54efd502015-04-23 22:37:18 -07001589 blk_queue_split(q, &bio, q->bio_split);
1590
Omar Sandoval87c279e2016-06-01 22:18:48 -07001591 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1592 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1593 return BLK_QC_T_NONE;
1594 } else
1595 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001596
Jens Axboebd166ef2017-01-17 06:03:22 -07001597 if (blk_mq_sched_bio_merge(q, bio))
1598 return BLK_QC_T_NONE;
1599
Jens Axboe87760e52016-11-09 12:38:14 -07001600 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1601
Jens Axboebd166ef2017-01-17 06:03:22 -07001602 trace_block_getrq(q, bio, bio->bi_opf);
1603
1604 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001605 if (unlikely(!rq)) {
1606 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001607 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001608 }
1609
1610 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001611
Jens Axboefd2d3322017-01-12 10:04:45 -07001612 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001613
1614 if (unlikely(is_flush_fua)) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001615 if (q->elevator)
1616 goto elv_insert;
Jens Axboe320ae512013-10-24 09:20:05 +01001617 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001618 blk_insert_flush(rq);
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001619 goto run_queue;
Jens Axboe320ae512013-10-24 09:20:05 +01001620 }
1621
1622 /*
1623 * A task plug currently exists. Since this is completely lockless,
1624 * utilize that to temporarily store requests until the task is
1625 * either done or scheduled away.
1626 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001627 plug = current->plug;
1628 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001629 struct request *last = NULL;
1630
Jeff Moyere6c44382015-05-08 10:51:30 -07001631 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001632
1633 /*
1634 * @request_count may become stale because of schedule
1635 * out, so check the list again.
1636 */
1637 if (list_empty(&plug->mq_list))
1638 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001639 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001640 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001641 else
1642 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001643
1644 blk_mq_put_ctx(data.ctx);
1645
Shaohua Li600271d2016-11-03 17:03:54 -07001646 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1647 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001648 blk_flush_plug_list(plug, false);
1649 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001650 }
Jens Axboeb094f892015-11-20 20:29:45 -07001651
Jeff Moyere6c44382015-05-08 10:51:30 -07001652 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001653 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001654 }
1655
Jens Axboebd166ef2017-01-17 06:03:22 -07001656 if (q->elevator) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001657elv_insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001658 blk_mq_put_ctx(data.ctx);
1659 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001660 blk_mq_sched_insert_request(rq, false, true,
Jens Axboebd6737f2017-01-27 01:00:47 -07001661 !is_sync || is_flush_fua, true);
Jens Axboebd166ef2017-01-17 06:03:22 -07001662 goto done;
1663 }
Jens Axboe07068d52014-05-22 10:40:51 -06001664 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1665 /*
1666 * For a SYNC request, send it to the hardware immediately. For
1667 * an ASYNC request, just ensure that we run it later on. The
1668 * latter allows for merging opportunities and more efficient
1669 * dispatching.
1670 */
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001671run_queue:
Jens Axboe07068d52014-05-22 10:40:51 -06001672 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001673 }
1674
Jens Axboe07068d52014-05-22 10:40:51 -06001675 blk_mq_put_ctx(data.ctx);
Jens Axboebd166ef2017-01-17 06:03:22 -07001676done:
Jens Axboe7b371632015-11-05 10:41:40 -07001677 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001678}
1679
Jens Axboecc71a6f2017-01-11 14:29:56 -07001680void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1681 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001682{
1683 struct page *page;
1684
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001685 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001686 int i;
1687
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001688 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001689 struct request *rq = tags->static_rqs[i];
1690
1691 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001692 continue;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001693 set->ops->exit_request(set->driver_data, rq,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001694 hctx_idx, i);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001695 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001696 }
1697 }
1698
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001699 while (!list_empty(&tags->page_list)) {
1700 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001701 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001702 /*
1703 * Remove kmemleak object previously allocated in
1704 * blk_mq_init_rq_map().
1705 */
1706 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001707 __free_pages(page, page->private);
1708 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001709}
Jens Axboe320ae512013-10-24 09:20:05 +01001710
Jens Axboecc71a6f2017-01-11 14:29:56 -07001711void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1712{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001713 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001714 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001715 kfree(tags->static_rqs);
1716 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001717
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001718 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001719}
1720
Jens Axboecc71a6f2017-01-11 14:29:56 -07001721struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1722 unsigned int hctx_idx,
1723 unsigned int nr_tags,
1724 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001725{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001726 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08001727 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01001728
Shaohua Li59f082e2017-02-01 09:53:14 -08001729 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1730 if (node == NUMA_NO_NODE)
1731 node = set->numa_node;
1732
1733 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
Shaohua Li24391c02015-01-23 14:18:00 -07001734 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001735 if (!tags)
1736 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001737
Jens Axboecc71a6f2017-01-11 14:29:56 -07001738 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001739 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001740 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001741 if (!tags->rqs) {
1742 blk_mq_free_tags(tags);
1743 return NULL;
1744 }
Jens Axboe320ae512013-10-24 09:20:05 +01001745
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001746 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1747 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08001748 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001749 if (!tags->static_rqs) {
1750 kfree(tags->rqs);
1751 blk_mq_free_tags(tags);
1752 return NULL;
1753 }
1754
Jens Axboecc71a6f2017-01-11 14:29:56 -07001755 return tags;
1756}
1757
1758static size_t order_to_size(unsigned int order)
1759{
1760 return (size_t)PAGE_SIZE << order;
1761}
1762
1763int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1764 unsigned int hctx_idx, unsigned int depth)
1765{
1766 unsigned int i, j, entries_per_page, max_order = 4;
1767 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08001768 int node;
1769
1770 node = blk_mq_hw_queue_to_node(set->mq_map, hctx_idx);
1771 if (node == NUMA_NO_NODE)
1772 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001773
1774 INIT_LIST_HEAD(&tags->page_list);
1775
Jens Axboe320ae512013-10-24 09:20:05 +01001776 /*
1777 * rq_size is the size of the request plus driver payload, rounded
1778 * to the cacheline size
1779 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001780 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001781 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001782 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001783
Jens Axboecc71a6f2017-01-11 14:29:56 -07001784 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001785 int this_order = max_order;
1786 struct page *page;
1787 int to_do;
1788 void *p;
1789
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001790 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001791 this_order--;
1792
1793 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08001794 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001795 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001796 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001797 if (page)
1798 break;
1799 if (!this_order--)
1800 break;
1801 if (order_to_size(this_order) < rq_size)
1802 break;
1803 } while (1);
1804
1805 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001806 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001807
1808 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001809 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001810
1811 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001812 /*
1813 * Allow kmemleak to scan these pages as they contain pointers
1814 * to additional allocations like via ops->init_request().
1815 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001816 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001817 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001818 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001819 left -= to_do * rq_size;
1820 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001821 struct request *rq = p;
1822
1823 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001824 if (set->ops->init_request) {
1825 if (set->ops->init_request(set->driver_data,
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001826 rq, hctx_idx, i,
Shaohua Li59f082e2017-02-01 09:53:14 -08001827 node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001828 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001829 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001830 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001831 }
1832
Jens Axboe320ae512013-10-24 09:20:05 +01001833 p += rq_size;
1834 i++;
1835 }
1836 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001837 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001838
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001839fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001840 blk_mq_free_rqs(set, tags, hctx_idx);
1841 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001842}
1843
Jens Axboee57690f2016-08-24 15:34:35 -06001844/*
1845 * 'cpu' is going away. splice any existing rq_list entries from this
1846 * software queue to the hw queue dispatch list, and ensure that it
1847 * gets run.
1848 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001849static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001850{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001851 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001852 struct blk_mq_ctx *ctx;
1853 LIST_HEAD(tmp);
1854
Thomas Gleixner9467f852016-09-22 08:05:17 -06001855 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001856 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001857
1858 spin_lock(&ctx->lock);
1859 if (!list_empty(&ctx->rq_list)) {
1860 list_splice_init(&ctx->rq_list, &tmp);
1861 blk_mq_hctx_clear_pending(hctx, ctx);
1862 }
1863 spin_unlock(&ctx->lock);
1864
1865 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001866 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001867
Jens Axboee57690f2016-08-24 15:34:35 -06001868 spin_lock(&hctx->lock);
1869 list_splice_tail_init(&tmp, &hctx->dispatch);
1870 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001871
1872 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001873 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001874}
1875
Thomas Gleixner9467f852016-09-22 08:05:17 -06001876static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001877{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001878 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1879 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001880}
1881
Ming Leic3b4afc2015-06-04 22:25:04 +08001882/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001883static void blk_mq_exit_hctx(struct request_queue *q,
1884 struct blk_mq_tag_set *set,
1885 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1886{
Ming Leif70ced02014-09-25 23:23:47 +08001887 unsigned flush_start_tag = set->queue_depth;
1888
Ming Lei08e98fc2014-09-25 23:23:38 +08001889 blk_mq_tag_idle(hctx);
1890
Ming Leif70ced02014-09-25 23:23:47 +08001891 if (set->ops->exit_request)
1892 set->ops->exit_request(set->driver_data,
1893 hctx->fq->flush_rq, hctx_idx,
1894 flush_start_tag + hctx_idx);
1895
Ming Lei08e98fc2014-09-25 23:23:38 +08001896 if (set->ops->exit_hctx)
1897 set->ops->exit_hctx(hctx, hctx_idx);
1898
Bart Van Assche6a83e742016-11-02 10:09:51 -06001899 if (hctx->flags & BLK_MQ_F_BLOCKING)
1900 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1901
Thomas Gleixner9467f852016-09-22 08:05:17 -06001902 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001903 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001904 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001905}
1906
Ming Lei624dbe42014-05-27 23:35:13 +08001907static void blk_mq_exit_hw_queues(struct request_queue *q,
1908 struct blk_mq_tag_set *set, int nr_queue)
1909{
1910 struct blk_mq_hw_ctx *hctx;
1911 unsigned int i;
1912
1913 queue_for_each_hw_ctx(q, hctx, i) {
1914 if (i == nr_queue)
1915 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001916 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001917 }
Ming Lei624dbe42014-05-27 23:35:13 +08001918}
1919
1920static void blk_mq_free_hw_queues(struct request_queue *q,
1921 struct blk_mq_tag_set *set)
1922{
1923 struct blk_mq_hw_ctx *hctx;
1924 unsigned int i;
1925
Ming Leie09aae72015-01-29 20:17:27 +08001926 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001927 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001928}
1929
Ming Lei08e98fc2014-09-25 23:23:38 +08001930static int blk_mq_init_hctx(struct request_queue *q,
1931 struct blk_mq_tag_set *set,
1932 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1933{
1934 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001935 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001936
1937 node = hctx->numa_node;
1938 if (node == NUMA_NO_NODE)
1939 node = hctx->numa_node = set->numa_node;
1940
Jens Axboe27489a32016-08-24 15:54:25 -06001941 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001942 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1943 spin_lock_init(&hctx->lock);
1944 INIT_LIST_HEAD(&hctx->dispatch);
1945 hctx->queue = q;
1946 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001947 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001948
Thomas Gleixner9467f852016-09-22 08:05:17 -06001949 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001950
1951 hctx->tags = set->tags[hctx_idx];
1952
1953 /*
1954 * Allocate space for all possible cpus to avoid allocation at
1955 * runtime
1956 */
1957 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1958 GFP_KERNEL, node);
1959 if (!hctx->ctxs)
1960 goto unregister_cpu_notifier;
1961
Omar Sandoval88459642016-09-17 08:38:44 -06001962 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1963 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001964 goto free_ctxs;
1965
1966 hctx->nr_ctx = 0;
1967
1968 if (set->ops->init_hctx &&
1969 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1970 goto free_bitmap;
1971
Ming Leif70ced02014-09-25 23:23:47 +08001972 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1973 if (!hctx->fq)
1974 goto exit_hctx;
1975
1976 if (set->ops->init_request &&
1977 set->ops->init_request(set->driver_data,
1978 hctx->fq->flush_rq, hctx_idx,
1979 flush_start_tag + hctx_idx, node))
1980 goto free_fq;
1981
Bart Van Assche6a83e742016-11-02 10:09:51 -06001982 if (hctx->flags & BLK_MQ_F_BLOCKING)
1983 init_srcu_struct(&hctx->queue_rq_srcu);
1984
Ming Lei08e98fc2014-09-25 23:23:38 +08001985 return 0;
1986
Ming Leif70ced02014-09-25 23:23:47 +08001987 free_fq:
1988 kfree(hctx->fq);
1989 exit_hctx:
1990 if (set->ops->exit_hctx)
1991 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001992 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001993 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001994 free_ctxs:
1995 kfree(hctx->ctxs);
1996 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001997 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001998 return -1;
1999}
2000
Jens Axboe320ae512013-10-24 09:20:05 +01002001static void blk_mq_init_cpu_queues(struct request_queue *q,
2002 unsigned int nr_hw_queues)
2003{
2004 unsigned int i;
2005
2006 for_each_possible_cpu(i) {
2007 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
2008 struct blk_mq_hw_ctx *hctx;
2009
2010 memset(__ctx, 0, sizeof(*__ctx));
2011 __ctx->cpu = i;
2012 spin_lock_init(&__ctx->lock);
2013 INIT_LIST_HEAD(&__ctx->rq_list);
2014 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07002015 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
2016 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01002017
2018 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01002019 if (!cpu_online(i))
2020 continue;
2021
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002022 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06002023
Jens Axboe320ae512013-10-24 09:20:05 +01002024 /*
2025 * Set local node, IFF we have more than one hw queue. If
2026 * not, we remain on the home node of the device
2027 */
2028 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05302029 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01002030 }
2031}
2032
Jens Axboecc71a6f2017-01-11 14:29:56 -07002033static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2034{
2035 int ret = 0;
2036
2037 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2038 set->queue_depth, set->reserved_tags);
2039 if (!set->tags[hctx_idx])
2040 return false;
2041
2042 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2043 set->queue_depth);
2044 if (!ret)
2045 return true;
2046
2047 blk_mq_free_rq_map(set->tags[hctx_idx]);
2048 set->tags[hctx_idx] = NULL;
2049 return false;
2050}
2051
2052static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2053 unsigned int hctx_idx)
2054{
Jens Axboebd166ef2017-01-17 06:03:22 -07002055 if (set->tags[hctx_idx]) {
2056 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2057 blk_mq_free_rq_map(set->tags[hctx_idx]);
2058 set->tags[hctx_idx] = NULL;
2059 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002060}
2061
Akinobu Mita57783222015-09-27 02:09:23 +09002062static void blk_mq_map_swqueue(struct request_queue *q,
2063 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002064{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002065 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01002066 struct blk_mq_hw_ctx *hctx;
2067 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08002068 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002069
Akinobu Mita60de0742015-09-27 02:09:25 +09002070 /*
2071 * Avoid others reading imcomplete hctx->cpumask through sysfs
2072 */
2073 mutex_lock(&q->sysfs_lock);
2074
Jens Axboe320ae512013-10-24 09:20:05 +01002075 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06002076 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002077 hctx->nr_ctx = 0;
2078 }
2079
2080 /*
2081 * Map software to hardware queues
2082 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002083 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01002084 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002085 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002086 continue;
2087
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002088 hctx_idx = q->mq_map[i];
2089 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002090 if (!set->tags[hctx_idx] &&
2091 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002092 /*
2093 * If tags initialization fail for some hctx,
2094 * that hctx won't be brought online. In this
2095 * case, remap the current ctx to hctx[0] which
2096 * is guaranteed to always have tags allocated
2097 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002098 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002099 }
2100
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002101 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002102 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002103
Jens Axboee4043dc2014-04-09 10:18:23 -06002104 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002105 ctx->index_hw = hctx->nr_ctx;
2106 hctx->ctxs[hctx->nr_ctx++] = ctx;
2107 }
Jens Axboe506e9312014-05-07 10:26:44 -06002108
Akinobu Mita60de0742015-09-27 02:09:25 +09002109 mutex_unlock(&q->sysfs_lock);
2110
Jens Axboe506e9312014-05-07 10:26:44 -06002111 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002112 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002113 * If no software queues are mapped to this hardware queue,
2114 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002115 */
2116 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002117 /* Never unmap queue 0. We need it as a
2118 * fallback in case of a new remap fails
2119 * allocation
2120 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002121 if (i && set->tags[i])
2122 blk_mq_free_map_and_requests(set, i);
2123
Ming Lei2a34c082015-04-21 10:00:20 +08002124 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002125 continue;
2126 }
2127
Ming Lei2a34c082015-04-21 10:00:20 +08002128 hctx->tags = set->tags[i];
2129 WARN_ON(!hctx->tags);
2130
Jens Axboe484b4062014-05-21 14:01:15 -06002131 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002132 * Set the map size to the number of mapped software queues.
2133 * This is more accurate and more efficient than looping
2134 * over all possibly mapped software queues.
2135 */
Omar Sandoval88459642016-09-17 08:38:44 -06002136 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002137
2138 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002139 * Initialize batch roundrobin counts
2140 */
Jens Axboe506e9312014-05-07 10:26:44 -06002141 hctx->next_cpu = cpumask_first(hctx->cpumask);
2142 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2143 }
Jens Axboe320ae512013-10-24 09:20:05 +01002144}
2145
Jeff Moyer2404e602015-11-03 10:40:06 -05002146static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002147{
2148 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002149 int i;
2150
Jeff Moyer2404e602015-11-03 10:40:06 -05002151 queue_for_each_hw_ctx(q, hctx, i) {
2152 if (shared)
2153 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2154 else
2155 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2156 }
2157}
2158
2159static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2160{
2161 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002162
2163 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2164 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002165 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002166 blk_mq_unfreeze_queue(q);
2167 }
2168}
2169
2170static void blk_mq_del_queue_tag_set(struct request_queue *q)
2171{
2172 struct blk_mq_tag_set *set = q->tag_set;
2173
Jens Axboe0d2602c2014-05-13 15:10:52 -06002174 mutex_lock(&set->tag_list_lock);
2175 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002176 if (list_is_singular(&set->tag_list)) {
2177 /* just transitioned to unshared */
2178 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2179 /* update existing queue */
2180 blk_mq_update_tag_set_depth(set, false);
2181 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002182 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002183}
2184
2185static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2186 struct request_queue *q)
2187{
2188 q->tag_set = set;
2189
2190 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002191
2192 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2193 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2194 set->flags |= BLK_MQ_F_TAG_SHARED;
2195 /* update existing queue */
2196 blk_mq_update_tag_set_depth(set, true);
2197 }
2198 if (set->flags & BLK_MQ_F_TAG_SHARED)
2199 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002200 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002201
Jens Axboe0d2602c2014-05-13 15:10:52 -06002202 mutex_unlock(&set->tag_list_lock);
2203}
2204
Ming Leie09aae72015-01-29 20:17:27 +08002205/*
2206 * It is the actual release handler for mq, but we do it from
2207 * request queue's release handler for avoiding use-after-free
2208 * and headache because q->mq_kobj shouldn't have been introduced,
2209 * but we can't group ctx/kctx kobj without it.
2210 */
2211void blk_mq_release(struct request_queue *q)
2212{
2213 struct blk_mq_hw_ctx *hctx;
2214 unsigned int i;
2215
Jens Axboebd166ef2017-01-17 06:03:22 -07002216 blk_mq_sched_teardown(q);
2217
Ming Leie09aae72015-01-29 20:17:27 +08002218 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002219 queue_for_each_hw_ctx(q, hctx, i) {
2220 if (!hctx)
2221 continue;
2222 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08002223 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002224 }
Ming Leie09aae72015-01-29 20:17:27 +08002225
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002226 q->mq_map = NULL;
2227
Ming Leie09aae72015-01-29 20:17:27 +08002228 kfree(q->queue_hw_ctx);
2229
2230 /* ctx kobj stays in queue_ctx */
2231 free_percpu(q->queue_ctx);
2232}
2233
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002234struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002235{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002236 struct request_queue *uninit_q, *q;
2237
2238 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2239 if (!uninit_q)
2240 return ERR_PTR(-ENOMEM);
2241
2242 q = blk_mq_init_allocated_queue(set, uninit_q);
2243 if (IS_ERR(q))
2244 blk_cleanup_queue(uninit_q);
2245
2246 return q;
2247}
2248EXPORT_SYMBOL(blk_mq_init_queue);
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);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002264 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2265 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);
2295 free_cpumask_var(hctx->cpumask);
2296 kobject_put(&hctx->kobj);
2297 kfree(hctx->ctxs);
2298 kfree(hctx);
2299 hctxs[j] = NULL;
2300
2301 }
2302 }
2303 q->nr_hw_queues = i;
2304 blk_mq_sysfs_register(q);
2305}
2306
2307struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2308 struct request_queue *q)
2309{
Ming Lei66841672016-02-12 15:27:00 +08002310 /* mark the queue as mq asap */
2311 q->mq_ops = set->ops;
2312
Keith Busch868f2f02015-12-17 17:08:14 -07002313 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2314 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002315 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002316
2317 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2318 GFP_KERNEL, set->numa_node);
2319 if (!q->queue_hw_ctx)
2320 goto err_percpu;
2321
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002322 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002323
2324 blk_mq_realloc_hw_ctxs(set, q);
2325 if (!q->nr_hw_queues)
2326 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002327
Christoph Hellwig287922e2015-10-30 20:57:30 +08002328 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002329 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002330
2331 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002332
Jens Axboe94eddfb2013-11-19 09:25:07 -07002333 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002334
Jens Axboe05f1dd52014-05-29 09:53:32 -06002335 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2336 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2337
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002338 q->sg_reserved_size = INT_MAX;
2339
Mike Snitzer28494502016-09-14 13:28:30 -04002340 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002341 INIT_LIST_HEAD(&q->requeue_list);
2342 spin_lock_init(&q->requeue_lock);
2343
Jens Axboe07068d52014-05-22 10:40:51 -06002344 if (q->nr_hw_queues > 1)
2345 blk_queue_make_request(q, blk_mq_make_request);
2346 else
2347 blk_queue_make_request(q, blk_sq_make_request);
2348
Jens Axboeeba71762014-05-20 15:17:27 -06002349 /*
2350 * Do this after blk_queue_make_request() overrides it...
2351 */
2352 q->nr_requests = set->queue_depth;
2353
Jens Axboe64f1c212016-11-14 13:03:03 -07002354 /*
2355 * Default to classic polling
2356 */
2357 q->poll_nsec = -1;
2358
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002359 if (set->ops->complete)
2360 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002361
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002362 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002363
Akinobu Mita57783222015-09-27 02:09:23 +09002364 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002365 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002366
Jens Axboe320ae512013-10-24 09:20:05 +01002367 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002368 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002369 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002370
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002371 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002372 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002373
Jens Axboed3484992017-01-13 14:43:58 -07002374 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2375 int ret;
2376
2377 ret = blk_mq_sched_init(q);
2378 if (ret)
2379 return ERR_PTR(ret);
2380 }
2381
Jens Axboe320ae512013-10-24 09:20:05 +01002382 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002383
Jens Axboe320ae512013-10-24 09:20:05 +01002384err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002385 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002386err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002387 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002388err_exit:
2389 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002390 return ERR_PTR(-ENOMEM);
2391}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002392EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002393
2394void blk_mq_free_queue(struct request_queue *q)
2395{
Ming Lei624dbe42014-05-27 23:35:13 +08002396 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002397
Akinobu Mita0e626362015-09-27 02:09:22 +09002398 mutex_lock(&all_q_mutex);
2399 list_del_init(&q->all_q_node);
2400 mutex_unlock(&all_q_mutex);
2401
Jens Axboe87760e52016-11-09 12:38:14 -07002402 wbt_exit(q);
2403
Jens Axboe0d2602c2014-05-13 15:10:52 -06002404 blk_mq_del_queue_tag_set(q);
2405
Ming Lei624dbe42014-05-27 23:35:13 +08002406 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2407 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002408}
Jens Axboe320ae512013-10-24 09:20:05 +01002409
2410/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002411static void blk_mq_queue_reinit(struct request_queue *q,
2412 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002413{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002414 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002415
Jens Axboe67aec142014-05-30 08:25:36 -06002416 blk_mq_sysfs_unregister(q);
2417
Jens Axboe320ae512013-10-24 09:20:05 +01002418 /*
2419 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2420 * we should change hctx numa_node according to new topology (this
2421 * involves free and re-allocate memory, worthy doing?)
2422 */
2423
Akinobu Mita57783222015-09-27 02:09:23 +09002424 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002425
Jens Axboe67aec142014-05-30 08:25:36 -06002426 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002427}
2428
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002429/*
2430 * New online cpumask which is going to be set in this hotplug event.
2431 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2432 * one-by-one and dynamically allocating this could result in a failure.
2433 */
2434static struct cpumask cpuhp_online_new;
2435
2436static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002437{
2438 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002439
2440 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002441 /*
2442 * We need to freeze and reinit all existing queues. Freezing
2443 * involves synchronous wait for an RCU grace period and doing it
2444 * one by one may take a long time. Start freezing all queues in
2445 * one swoop and then wait for the completions so that freezing can
2446 * take place in parallel.
2447 */
2448 list_for_each_entry(q, &all_q_list, all_q_node)
2449 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002450 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002451 blk_mq_freeze_queue_wait(q);
2452
Jens Axboe320ae512013-10-24 09:20:05 +01002453 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002454 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002455
2456 list_for_each_entry(q, &all_q_list, all_q_node)
2457 blk_mq_unfreeze_queue(q);
2458
Jens Axboe320ae512013-10-24 09:20:05 +01002459 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002460}
2461
2462static int blk_mq_queue_reinit_dead(unsigned int cpu)
2463{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002464 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002465 blk_mq_queue_reinit_work();
2466 return 0;
2467}
2468
2469/*
2470 * Before hotadded cpu starts handling requests, new mappings must be
2471 * established. Otherwise, these requests in hw queue might never be
2472 * dispatched.
2473 *
2474 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2475 * for CPU0, and ctx1 for CPU1).
2476 *
2477 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2478 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2479 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002480 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2481 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2482 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2483 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002484 */
2485static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2486{
2487 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2488 cpumask_set_cpu(cpu, &cpuhp_online_new);
2489 blk_mq_queue_reinit_work();
2490 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002491}
2492
Jens Axboea5164402014-09-10 09:02:03 -06002493static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2494{
2495 int i;
2496
Jens Axboecc71a6f2017-01-11 14:29:56 -07002497 for (i = 0; i < set->nr_hw_queues; i++)
2498 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002499 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002500
2501 return 0;
2502
2503out_unwind:
2504 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002505 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002506
Jens Axboea5164402014-09-10 09:02:03 -06002507 return -ENOMEM;
2508}
2509
2510/*
2511 * Allocate the request maps associated with this tag_set. Note that this
2512 * may reduce the depth asked for, if memory is tight. set->queue_depth
2513 * will be updated to reflect the allocated depth.
2514 */
2515static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2516{
2517 unsigned int depth;
2518 int err;
2519
2520 depth = set->queue_depth;
2521 do {
2522 err = __blk_mq_alloc_rq_maps(set);
2523 if (!err)
2524 break;
2525
2526 set->queue_depth >>= 1;
2527 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2528 err = -ENOMEM;
2529 break;
2530 }
2531 } while (set->queue_depth);
2532
2533 if (!set->queue_depth || err) {
2534 pr_err("blk-mq: failed to allocate request map\n");
2535 return -ENOMEM;
2536 }
2537
2538 if (depth != set->queue_depth)
2539 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2540 depth, set->queue_depth);
2541
2542 return 0;
2543}
2544
Jens Axboea4391c62014-06-05 15:21:56 -06002545/*
2546 * Alloc a tag set to be associated with one or more request queues.
2547 * May fail with EINVAL for various error conditions. May adjust the
2548 * requested depth down, if if it too large. In that case, the set
2549 * value will be stored in set->queue_depth.
2550 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002551int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2552{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002553 int ret;
2554
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002555 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2556
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002557 if (!set->nr_hw_queues)
2558 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002559 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002560 return -EINVAL;
2561 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2562 return -EINVAL;
2563
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002564 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002565 return -EINVAL;
2566
Jens Axboea4391c62014-06-05 15:21:56 -06002567 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2568 pr_info("blk-mq: reduced tag depth to %u\n",
2569 BLK_MQ_MAX_DEPTH);
2570 set->queue_depth = BLK_MQ_MAX_DEPTH;
2571 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002572
Shaohua Li6637fad2014-11-30 16:00:58 -08002573 /*
2574 * If a crashdump is active, then we are potentially in a very
2575 * memory constrained environment. Limit us to 1 queue and
2576 * 64 tags to prevent using too much memory.
2577 */
2578 if (is_kdump_kernel()) {
2579 set->nr_hw_queues = 1;
2580 set->queue_depth = min(64U, set->queue_depth);
2581 }
Keith Busch868f2f02015-12-17 17:08:14 -07002582 /*
2583 * There is no use for more h/w queues than cpus.
2584 */
2585 if (set->nr_hw_queues > nr_cpu_ids)
2586 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002587
Keith Busch868f2f02015-12-17 17:08:14 -07002588 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002589 GFP_KERNEL, set->numa_node);
2590 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002591 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002592
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002593 ret = -ENOMEM;
2594 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2595 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002596 if (!set->mq_map)
2597 goto out_free_tags;
2598
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002599 if (set->ops->map_queues)
2600 ret = set->ops->map_queues(set);
2601 else
2602 ret = blk_mq_map_queues(set);
2603 if (ret)
2604 goto out_free_mq_map;
2605
2606 ret = blk_mq_alloc_rq_maps(set);
2607 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002608 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002609
Jens Axboe0d2602c2014-05-13 15:10:52 -06002610 mutex_init(&set->tag_list_lock);
2611 INIT_LIST_HEAD(&set->tag_list);
2612
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002613 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002614
2615out_free_mq_map:
2616 kfree(set->mq_map);
2617 set->mq_map = NULL;
2618out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002619 kfree(set->tags);
2620 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002621 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002622}
2623EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2624
2625void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2626{
2627 int i;
2628
Jens Axboecc71a6f2017-01-11 14:29:56 -07002629 for (i = 0; i < nr_cpu_ids; i++)
2630 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002631
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002632 kfree(set->mq_map);
2633 set->mq_map = NULL;
2634
Ming Lei981bd182014-04-24 00:07:34 +08002635 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002636 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002637}
2638EXPORT_SYMBOL(blk_mq_free_tag_set);
2639
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002640int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2641{
2642 struct blk_mq_tag_set *set = q->tag_set;
2643 struct blk_mq_hw_ctx *hctx;
2644 int i, ret;
2645
Jens Axboebd166ef2017-01-17 06:03:22 -07002646 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002647 return -EINVAL;
2648
Jens Axboe70f36b62017-01-19 10:59:07 -07002649 blk_mq_freeze_queue(q);
2650 blk_mq_quiesce_queue(q);
2651
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002652 ret = 0;
2653 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002654 if (!hctx->tags)
2655 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002656 /*
2657 * If we're using an MQ scheduler, just update the scheduler
2658 * queue depth. This is similar to what the old code would do.
2659 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002660 if (!hctx->sched_tags) {
2661 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2662 min(nr, set->queue_depth),
2663 false);
2664 } else {
2665 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2666 nr, true);
2667 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002668 if (ret)
2669 break;
2670 }
2671
2672 if (!ret)
2673 q->nr_requests = nr;
2674
Jens Axboe70f36b62017-01-19 10:59:07 -07002675 blk_mq_unfreeze_queue(q);
2676 blk_mq_start_stopped_hw_queues(q, true);
2677
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002678 return ret;
2679}
2680
Keith Busch868f2f02015-12-17 17:08:14 -07002681void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2682{
2683 struct request_queue *q;
2684
2685 if (nr_hw_queues > nr_cpu_ids)
2686 nr_hw_queues = nr_cpu_ids;
2687 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2688 return;
2689
2690 list_for_each_entry(q, &set->tag_list, tag_set_list)
2691 blk_mq_freeze_queue(q);
2692
2693 set->nr_hw_queues = nr_hw_queues;
2694 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2695 blk_mq_realloc_hw_ctxs(set, q);
2696
Josef Bacikf6f94302017-02-10 13:03:33 -05002697 /*
2698 * Manually set the make_request_fn as blk_queue_make_request
2699 * resets a lot of the queue settings.
2700 */
Keith Busch868f2f02015-12-17 17:08:14 -07002701 if (q->nr_hw_queues > 1)
Josef Bacikf6f94302017-02-10 13:03:33 -05002702 q->make_request_fn = blk_mq_make_request;
Keith Busch868f2f02015-12-17 17:08:14 -07002703 else
Josef Bacikf6f94302017-02-10 13:03:33 -05002704 q->make_request_fn = blk_sq_make_request;
Keith Busch868f2f02015-12-17 17:08:14 -07002705
2706 blk_mq_queue_reinit(q, cpu_online_mask);
2707 }
2708
2709 list_for_each_entry(q, &set->tag_list, tag_set_list)
2710 blk_mq_unfreeze_queue(q);
2711}
2712EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2713
Jens Axboe64f1c212016-11-14 13:03:03 -07002714static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2715 struct blk_mq_hw_ctx *hctx,
2716 struct request *rq)
2717{
2718 struct blk_rq_stat stat[2];
2719 unsigned long ret = 0;
2720
2721 /*
2722 * If stats collection isn't on, don't sleep but turn it on for
2723 * future users
2724 */
2725 if (!blk_stat_enable(q))
2726 return 0;
2727
2728 /*
2729 * We don't have to do this once per IO, should optimize this
2730 * to just use the current window of stats until it changes
2731 */
2732 memset(&stat, 0, sizeof(stat));
2733 blk_hctx_stat_get(hctx, stat);
2734
2735 /*
2736 * As an optimistic guess, use half of the mean service time
2737 * for this type of request. We can (and should) make this smarter.
2738 * For instance, if the completion latencies are tight, we can
2739 * get closer than just half the mean. This is especially
2740 * important on devices where the completion latencies are longer
2741 * than ~10 usec.
2742 */
2743 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2744 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2745 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2746 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2747
2748 return ret;
2749}
2750
Jens Axboe06426ad2016-11-14 13:01:59 -07002751static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002752 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002753 struct request *rq)
2754{
2755 struct hrtimer_sleeper hs;
2756 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002757 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002758 ktime_t kt;
2759
Jens Axboe64f1c212016-11-14 13:03:03 -07002760 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2761 return false;
2762
2763 /*
2764 * poll_nsec can be:
2765 *
2766 * -1: don't ever hybrid sleep
2767 * 0: use half of prev avg
2768 * >0: use this specific value
2769 */
2770 if (q->poll_nsec == -1)
2771 return false;
2772 else if (q->poll_nsec > 0)
2773 nsecs = q->poll_nsec;
2774 else
2775 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2776
2777 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002778 return false;
2779
2780 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2781
2782 /*
2783 * This will be replaced with the stats tracking code, using
2784 * 'avg_completion_time / 2' as the pre-sleep target.
2785 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002786 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002787
2788 mode = HRTIMER_MODE_REL;
2789 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2790 hrtimer_set_expires(&hs.timer, kt);
2791
2792 hrtimer_init_sleeper(&hs, current);
2793 do {
2794 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2795 break;
2796 set_current_state(TASK_UNINTERRUPTIBLE);
2797 hrtimer_start_expires(&hs.timer, mode);
2798 if (hs.task)
2799 io_schedule();
2800 hrtimer_cancel(&hs.timer);
2801 mode = HRTIMER_MODE_ABS;
2802 } while (hs.task && !signal_pending(current));
2803
2804 __set_current_state(TASK_RUNNING);
2805 destroy_hrtimer_on_stack(&hs.timer);
2806 return true;
2807}
2808
Jens Axboebbd7bb72016-11-04 09:34:34 -06002809static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2810{
2811 struct request_queue *q = hctx->queue;
2812 long state;
2813
Jens Axboe06426ad2016-11-14 13:01:59 -07002814 /*
2815 * If we sleep, have the caller restart the poll loop to reset
2816 * the state. Like for the other success return cases, the
2817 * caller is responsible for checking if the IO completed. If
2818 * the IO isn't complete, we'll get called again and will go
2819 * straight to the busy poll loop.
2820 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002821 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002822 return true;
2823
Jens Axboebbd7bb72016-11-04 09:34:34 -06002824 hctx->poll_considered++;
2825
2826 state = current->state;
2827 while (!need_resched()) {
2828 int ret;
2829
2830 hctx->poll_invoked++;
2831
2832 ret = q->mq_ops->poll(hctx, rq->tag);
2833 if (ret > 0) {
2834 hctx->poll_success++;
2835 set_current_state(TASK_RUNNING);
2836 return true;
2837 }
2838
2839 if (signal_pending_state(state, current))
2840 set_current_state(TASK_RUNNING);
2841
2842 if (current->state == TASK_RUNNING)
2843 return true;
2844 if (ret < 0)
2845 break;
2846 cpu_relax();
2847 }
2848
2849 return false;
2850}
2851
2852bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2853{
2854 struct blk_mq_hw_ctx *hctx;
2855 struct blk_plug *plug;
2856 struct request *rq;
2857
2858 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2859 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2860 return false;
2861
2862 plug = current->plug;
2863 if (plug)
2864 blk_flush_plug_list(plug, false);
2865
2866 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002867 if (!blk_qc_t_is_internal(cookie))
2868 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2869 else
2870 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboebbd7bb72016-11-04 09:34:34 -06002871
2872 return __blk_mq_poll(hctx, rq);
2873}
2874EXPORT_SYMBOL_GPL(blk_mq_poll);
2875
Jens Axboe676141e2014-03-20 13:29:18 -06002876void blk_mq_disable_hotplug(void)
2877{
2878 mutex_lock(&all_q_mutex);
2879}
2880
2881void blk_mq_enable_hotplug(void)
2882{
2883 mutex_unlock(&all_q_mutex);
2884}
2885
Jens Axboe320ae512013-10-24 09:20:05 +01002886static int __init blk_mq_init(void)
2887{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002888 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2889 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002890
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002891 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2892 blk_mq_queue_reinit_prepare,
2893 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002894 return 0;
2895}
2896subsys_initcall(blk_mq_init);