blob: 077c2416a9556549ad035f2d4af5b852958edbd0 [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"
33
34static DEFINE_MUTEX(all_q_mutex);
35static LIST_HEAD(all_q_list);
36
Jens Axboe320ae512013-10-24 09:20:05 +010037/*
38 * Check if any of the ctx's have pending work in this hardware queue
39 */
40static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
41{
Omar Sandoval88459642016-09-17 08:38:44 -060042 return sbitmap_any_bit_set(&hctx->ctx_map);
Jens Axboe320ae512013-10-24 09:20:05 +010043}
44
45/*
46 * Mark this ctx as having pending work in this hardware queue
47 */
48static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
49 struct blk_mq_ctx *ctx)
50{
Omar Sandoval88459642016-09-17 08:38:44 -060051 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
52 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060053}
54
55static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
56 struct blk_mq_ctx *ctx)
57{
Omar Sandoval88459642016-09-17 08:38:44 -060058 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010059}
60
Keith Buschb4c6a022014-12-19 17:54:14 -070061void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080062{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020063 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040064
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020065 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
66 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040067 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040068 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040069 }
Tejun Heof3af0202014-11-04 13:52:27 -050070}
Keith Buschb4c6a022014-12-19 17:54:14 -070071EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050072
73static void blk_mq_freeze_queue_wait(struct request_queue *q)
74{
Dan Williams3ef28e82015-10-21 13:20:12 -040075 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080076}
77
Tejun Heof3af0202014-11-04 13:52:27 -050078/*
79 * Guarantee no request is in use, so we can change any data structure of
80 * the queue afterward.
81 */
Dan Williams3ef28e82015-10-21 13:20:12 -040082void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050083{
Dan Williams3ef28e82015-10-21 13:20:12 -040084 /*
85 * In the !blk_mq case we are only calling this to kill the
86 * q_usage_counter, otherwise this increases the freeze depth
87 * and waits for it to return to zero. For this reason there is
88 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
89 * exported to drivers as the only user for unfreeze is blk_mq.
90 */
Tejun Heof3af0202014-11-04 13:52:27 -050091 blk_mq_freeze_queue_start(q);
92 blk_mq_freeze_queue_wait(q);
93}
Dan Williams3ef28e82015-10-21 13:20:12 -040094
95void blk_mq_freeze_queue(struct request_queue *q)
96{
97 /*
98 * ...just an alias to keep freeze and unfreeze actions balanced
99 * in the blk_mq_* namespace
100 */
101 blk_freeze_queue(q);
102}
Jens Axboec761d962015-01-02 15:05:12 -0700103EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500104
Keith Buschb4c6a022014-12-19 17:54:14 -0700105void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100106{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200107 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100108
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200109 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
110 WARN_ON_ONCE(freeze_depth < 0);
111 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400112 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100113 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600114 }
Jens Axboe320ae512013-10-24 09:20:05 +0100115}
Keith Buschb4c6a022014-12-19 17:54:14 -0700116EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100117
Bart Van Assche6a83e742016-11-02 10:09:51 -0600118/**
119 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
120 * @q: request queue.
121 *
122 * Note: this function does not prevent that the struct request end_io()
123 * callback function is invoked. Additionally, it is not prevented that
124 * new queue_rq() calls occur unless the queue has been stopped first.
125 */
126void blk_mq_quiesce_queue(struct request_queue *q)
127{
128 struct blk_mq_hw_ctx *hctx;
129 unsigned int i;
130 bool rcu = false;
131
132 blk_mq_stop_hw_queues(q);
133
134 queue_for_each_hw_ctx(q, hctx, i) {
135 if (hctx->flags & BLK_MQ_F_BLOCKING)
136 synchronize_srcu(&hctx->queue_rq_srcu);
137 else
138 rcu = true;
139 }
140 if (rcu)
141 synchronize_rcu();
142}
143EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
144
Jens Axboeaed3ea92014-12-22 14:04:42 -0700145void blk_mq_wake_waiters(struct request_queue *q)
146{
147 struct blk_mq_hw_ctx *hctx;
148 unsigned int i;
149
150 queue_for_each_hw_ctx(q, hctx, i)
151 if (blk_mq_hw_queue_mapped(hctx))
152 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700153
154 /*
155 * If we are called because the queue has now been marked as
156 * dying, we need to ensure that processes currently waiting on
157 * the queue are notified as well.
158 */
159 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700160}
161
Jens Axboe320ae512013-10-24 09:20:05 +0100162bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
163{
164 return blk_mq_has_free_tags(hctx->tags);
165}
166EXPORT_SYMBOL(blk_mq_can_queue);
167
Jens Axboe94eddfb2013-11-19 09:25:07 -0700168static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600169 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100170{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200171 INIT_LIST_HEAD(&rq->queuelist);
172 /* csd/requeue_work/fifo_time is initialized before use */
173 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100174 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600175 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200176 if (blk_queue_io_stat(q))
177 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200178 /* do not touch atomic flags, it needs atomic ops against the timer */
179 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 INIT_HLIST_NODE(&rq->hash);
181 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 rq->rq_disk = NULL;
183 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600184 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200185#ifdef CONFIG_BLK_CGROUP
186 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700187 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200188 rq->io_start_time_ns = 0;
189#endif
190 rq->nr_phys_segments = 0;
191#if defined(CONFIG_BLK_DEV_INTEGRITY)
192 rq->nr_integrity_segments = 0;
193#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200194 rq->special = NULL;
195 /* tag was already set */
196 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200197
Tony Battersby6f4a16262014-08-22 15:53:39 -0400198 rq->cmd = rq->__cmd;
199
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200200 rq->extra_len = 0;
201 rq->sense_len = 0;
202 rq->resid_len = 0;
203 rq->sense = NULL;
204
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200205 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600206 rq->timeout = 0;
207
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200208 rq->end_io = NULL;
209 rq->end_io_data = NULL;
210 rq->next_rq = NULL;
211
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600212 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100213}
214
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200215static struct request *
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600216__blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217{
218 struct request *rq;
219 unsigned int tag;
220
Ming Leicb96a422014-06-01 00:43:37 +0800221 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200222 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800223 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224
Ming Leicb96a422014-06-01 00:43:37 +0800225 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200226 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800227 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200228 }
229
230 rq->tag = tag;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600231 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200232 return rq;
233 }
234
235 return NULL;
236}
237
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100238struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
239 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100240{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200241 struct blk_mq_ctx *ctx;
242 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100243 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800244 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600245 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100246
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100247 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600248 if (ret)
249 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100250
Christoph Hellwigd8525642014-05-27 20:59:50 +0200251 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200252 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100253 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600254 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200255 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600256
Keith Buschc76541a2014-12-19 17:54:13 -0700257 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400258 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600259 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700260 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200261
262 rq->__data_len = 0;
263 rq->__sector = (sector_t) -1;
264 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100265 return rq;
266}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600267EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100268
Ming Lin1f5bd332016-06-13 16:45:21 +0200269struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
270 unsigned int flags, unsigned int hctx_idx)
271{
272 struct blk_mq_hw_ctx *hctx;
273 struct blk_mq_ctx *ctx;
274 struct request *rq;
275 struct blk_mq_alloc_data alloc_data;
276 int ret;
277
278 /*
279 * If the tag allocator sleeps we could get an allocation for a
280 * different hardware context. No need to complicate the low level
281 * allocator for this for the rare use case of a command tied to
282 * a specific queue.
283 */
284 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
285 return ERR_PTR(-EINVAL);
286
287 if (hctx_idx >= q->nr_hw_queues)
288 return ERR_PTR(-EIO);
289
290 ret = blk_queue_enter(q, true);
291 if (ret)
292 return ERR_PTR(ret);
293
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600294 /*
295 * Check if the hardware context is actually mapped to anything.
296 * If not tell the caller that it should skip this queue.
297 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200298 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600299 if (!blk_mq_hw_queue_mapped(hctx)) {
300 ret = -EXDEV;
301 goto out_queue_exit;
302 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200303 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
304
305 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600306 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200307 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600308 ret = -EWOULDBLOCK;
309 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200310 }
311
312 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600313
314out_queue_exit:
315 blk_queue_exit(q);
316 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200317}
318EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
319
Jens Axboe320ae512013-10-24 09:20:05 +0100320static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
321 struct blk_mq_ctx *ctx, struct request *rq)
322{
323 const int tag = rq->tag;
324 struct request_queue *q = rq->q;
325
Christoph Hellwige8064022016-10-20 15:12:13 +0200326 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600327 atomic_dec(&hctx->nr_active);
Christoph Hellwige8064022016-10-20 15:12:13 +0200328 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600329
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200330 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700331 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400332 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100333}
334
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700335void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100336{
337 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700338
339 ctx->rq_completed[rq_is_sync(rq)]++;
340 __blk_mq_free_request(hctx, ctx, rq);
341
342}
343EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
344
345void blk_mq_free_request(struct request *rq)
346{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200347 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100348}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700349EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100350
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700351inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100352{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700353 blk_account_io_done(rq);
354
Christoph Hellwig91b63632014-04-16 09:44:53 +0200355 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100356 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200357 } else {
358 if (unlikely(blk_bidi_rq(rq)))
359 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100360 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200361 }
Jens Axboe320ae512013-10-24 09:20:05 +0100362}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700363EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200364
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700365void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200366{
367 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
368 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700369 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200370}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700371EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100372
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800373static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100374{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800375 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100376
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800377 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100378}
379
Jens Axboeed851862014-05-30 21:20:50 -0600380static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100381{
382 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700383 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100384 int cpu;
385
Christoph Hellwig38535202014-04-25 02:32:53 -0700386 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800387 rq->q->softirq_done_fn(rq);
388 return;
389 }
Jens Axboe320ae512013-10-24 09:20:05 +0100390
391 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700392 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
393 shared = cpus_share_cache(cpu, ctx->cpu);
394
395 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800396 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800397 rq->csd.info = rq;
398 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100399 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800400 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800402 }
Jens Axboe320ae512013-10-24 09:20:05 +0100403 put_cpu();
404}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800405
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700406static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600407{
408 struct request_queue *q = rq->q;
409
410 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700411 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600412 else
413 blk_mq_ipi_complete_request(rq);
414}
415
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800416/**
417 * blk_mq_complete_request - end I/O on a request
418 * @rq: the request being processed
419 *
420 * Description:
421 * Ends all I/O on a request. It does not handle partial completions.
422 * The actual completion happens out-of-order, through a IPI handler.
423 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200424void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800425{
Jens Axboe95f09682014-05-27 17:46:48 -0600426 struct request_queue *q = rq->q;
427
428 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800429 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200430 if (!blk_mark_rq_complete(rq)) {
431 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600432 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200433 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800434}
435EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100436
Keith Busch973c0192015-01-07 18:55:43 -0700437int blk_mq_request_started(struct request *rq)
438{
439 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
440}
441EXPORT_SYMBOL_GPL(blk_mq_request_started);
442
Christoph Hellwige2490072014-09-13 16:40:09 -0700443void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100444{
445 struct request_queue *q = rq->q;
446
447 trace_block_rq_issue(q, rq);
448
Christoph Hellwig742ee692014-04-14 10:30:06 +0200449 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200450 if (unlikely(blk_bidi_rq(rq)))
451 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200452
Ming Lei2b8393b2014-06-10 00:16:41 +0800453 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600454
455 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600456 * Ensure that ->deadline is visible before set the started
457 * flag and clear the completed flag.
458 */
459 smp_mb__before_atomic();
460
461 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600462 * Mark us as started and clear complete. Complete might have been
463 * set if requeue raced with timeout, which then marked it as
464 * complete. So be sure to clear complete again when we start
465 * the request, otherwise we'll ignore the completion event.
466 */
Jens Axboe4b570522014-05-29 11:00:11 -0600467 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
468 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
469 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
470 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800471
472 if (q->dma_drain_size && blk_rq_bytes(rq)) {
473 /*
474 * Make sure space for the drain appears. We know we can do
475 * this because max_hw_segments has been adjusted to be one
476 * fewer than the device can handle.
477 */
478 rq->nr_phys_segments++;
479 }
Jens Axboe320ae512013-10-24 09:20:05 +0100480}
Christoph Hellwige2490072014-09-13 16:40:09 -0700481EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100482
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200483static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100484{
485 struct request_queue *q = rq->q;
486
487 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800488
Christoph Hellwige2490072014-09-13 16:40:09 -0700489 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
490 if (q->dma_drain_size && blk_rq_bytes(rq))
491 rq->nr_phys_segments--;
492 }
Jens Axboe320ae512013-10-24 09:20:05 +0100493}
494
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700495void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200496{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200497 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200498
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200499 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700500 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200501}
502EXPORT_SYMBOL(blk_mq_requeue_request);
503
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600504static void blk_mq_requeue_work(struct work_struct *work)
505{
506 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400507 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600508 LIST_HEAD(rq_list);
509 struct request *rq, *next;
510 unsigned long flags;
511
512 spin_lock_irqsave(&q->requeue_lock, flags);
513 list_splice_init(&q->requeue_list, &rq_list);
514 spin_unlock_irqrestore(&q->requeue_lock, flags);
515
516 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200517 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600518 continue;
519
Christoph Hellwige8064022016-10-20 15:12:13 +0200520 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600521 list_del_init(&rq->queuelist);
522 blk_mq_insert_request(rq, true, false, false);
523 }
524
525 while (!list_empty(&rq_list)) {
526 rq = list_entry(rq_list.next, struct request, queuelist);
527 list_del_init(&rq->queuelist);
528 blk_mq_insert_request(rq, false, false, false);
529 }
530
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700531 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600532}
533
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700534void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
535 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600536{
537 struct request_queue *q = rq->q;
538 unsigned long flags;
539
540 /*
541 * We abuse this flag that is otherwise used by the I/O scheduler to
542 * request head insertation from the workqueue.
543 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200544 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600545
546 spin_lock_irqsave(&q->requeue_lock, flags);
547 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200548 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600549 list_add(&rq->queuelist, &q->requeue_list);
550 } else {
551 list_add_tail(&rq->queuelist, &q->requeue_list);
552 }
553 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700554
555 if (kick_requeue_list)
556 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600557}
558EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
559
560void blk_mq_kick_requeue_list(struct request_queue *q)
561{
Mike Snitzer28494502016-09-14 13:28:30 -0400562 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600563}
564EXPORT_SYMBOL(blk_mq_kick_requeue_list);
565
Mike Snitzer28494502016-09-14 13:28:30 -0400566void blk_mq_delay_kick_requeue_list(struct request_queue *q,
567 unsigned long msecs)
568{
569 kblockd_schedule_delayed_work(&q->requeue_work,
570 msecs_to_jiffies(msecs));
571}
572EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
573
Jens Axboe1885b242015-01-07 18:55:45 -0700574void blk_mq_abort_requeue_list(struct request_queue *q)
575{
576 unsigned long flags;
577 LIST_HEAD(rq_list);
578
579 spin_lock_irqsave(&q->requeue_lock, flags);
580 list_splice_init(&q->requeue_list, &rq_list);
581 spin_unlock_irqrestore(&q->requeue_lock, flags);
582
583 while (!list_empty(&rq_list)) {
584 struct request *rq;
585
586 rq = list_first_entry(&rq_list, struct request, queuelist);
587 list_del_init(&rq->queuelist);
588 rq->errors = -EIO;
589 blk_mq_end_request(rq, rq->errors);
590 }
591}
592EXPORT_SYMBOL(blk_mq_abort_requeue_list);
593
Jens Axboe0e62f512014-06-04 10:23:49 -0600594struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
595{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600596 if (tag < tags->nr_tags) {
597 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700598 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600599 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700600
601 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600602}
603EXPORT_SYMBOL(blk_mq_tag_to_rq);
604
Jens Axboe320ae512013-10-24 09:20:05 +0100605struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700606 unsigned long next;
607 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100608};
609
Christoph Hellwig90415832014-09-22 10:21:48 -0600610void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100611{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700612 struct blk_mq_ops *ops = req->q->mq_ops;
613 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600614
615 /*
616 * We know that complete is set at this point. If STARTED isn't set
617 * anymore, then the request isn't active and the "timeout" should
618 * just be ignored. This can happen due to the bitflag ordering.
619 * Timeout first checks if STARTED is set, and if it is, assumes
620 * the request is active. But if we race with completion, then
621 * we both flags will get cleared. So check here again, and ignore
622 * a timeout event with a request that isn't active.
623 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700624 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
625 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600626
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700627 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700628 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600629
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700630 switch (ret) {
631 case BLK_EH_HANDLED:
632 __blk_mq_complete_request(req);
633 break;
634 case BLK_EH_RESET_TIMER:
635 blk_add_timer(req);
636 blk_clear_rq_complete(req);
637 break;
638 case BLK_EH_NOT_HANDLED:
639 break;
640 default:
641 printk(KERN_ERR "block: bad eh return: %d\n", ret);
642 break;
643 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600644}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700645
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700646static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
647 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100648{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700649 struct blk_mq_timeout_data *data = priv;
650
Keith Buscheb130db2015-01-08 08:59:53 -0700651 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
652 /*
653 * If a request wasn't started before the queue was
654 * marked dying, kill it here or it'll go unnoticed.
655 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700656 if (unlikely(blk_queue_dying(rq->q))) {
657 rq->errors = -EIO;
658 blk_mq_end_request(rq, rq->errors);
659 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700660 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700661 }
Jens Axboe320ae512013-10-24 09:20:05 +0100662
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700663 if (time_after_eq(jiffies, rq->deadline)) {
664 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700665 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700666 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
667 data->next = rq->deadline;
668 data->next_set = 1;
669 }
Jens Axboe320ae512013-10-24 09:20:05 +0100670}
671
Christoph Hellwig287922e2015-10-30 20:57:30 +0800672static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100673{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800674 struct request_queue *q =
675 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700676 struct blk_mq_timeout_data data = {
677 .next = 0,
678 .next_set = 0,
679 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700680 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100681
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600682 /* A deadlock might occur if a request is stuck requiring a
683 * timeout at the same time a queue freeze is waiting
684 * completion, since the timeout code would not be able to
685 * acquire the queue reference here.
686 *
687 * That's why we don't use blk_queue_enter here; instead, we use
688 * percpu_ref_tryget directly, because we need to be able to
689 * obtain a reference even in the short window between the queue
690 * starting to freeze, by dropping the first reference in
691 * blk_mq_freeze_queue_start, and the moment the last request is
692 * consumed, marked by the instant q_usage_counter reaches
693 * zero.
694 */
695 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800696 return;
697
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200698 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100699
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700700 if (data.next_set) {
701 data.next = blk_rq_timeout(round_jiffies_up(data.next));
702 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600703 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200704 struct blk_mq_hw_ctx *hctx;
705
Ming Leif054b562015-04-21 10:00:19 +0800706 queue_for_each_hw_ctx(q, hctx, i) {
707 /* the hctx may be unmapped, so check it here */
708 if (blk_mq_hw_queue_mapped(hctx))
709 blk_mq_tag_idle(hctx);
710 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600711 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800712 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100713}
714
715/*
716 * Reverse check our software queue for entries that we could potentially
717 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
718 * too much time checking for merges.
719 */
720static bool blk_mq_attempt_merge(struct request_queue *q,
721 struct blk_mq_ctx *ctx, struct bio *bio)
722{
723 struct request *rq;
724 int checked = 8;
725
726 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
727 int el_ret;
728
729 if (!checked--)
730 break;
731
732 if (!blk_rq_merge_ok(rq, bio))
733 continue;
734
735 el_ret = blk_try_merge(rq, bio);
736 if (el_ret == ELEVATOR_BACK_MERGE) {
737 if (bio_attempt_back_merge(q, rq, bio)) {
738 ctx->rq_merged++;
739 return true;
740 }
741 break;
742 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
743 if (bio_attempt_front_merge(q, rq, bio)) {
744 ctx->rq_merged++;
745 return true;
746 }
747 break;
748 }
749 }
750
751 return false;
752}
753
Omar Sandoval88459642016-09-17 08:38:44 -0600754struct flush_busy_ctx_data {
755 struct blk_mq_hw_ctx *hctx;
756 struct list_head *list;
757};
758
759static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
760{
761 struct flush_busy_ctx_data *flush_data = data;
762 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
763 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
764
765 sbitmap_clear_bit(sb, bitnr);
766 spin_lock(&ctx->lock);
767 list_splice_tail_init(&ctx->rq_list, flush_data->list);
768 spin_unlock(&ctx->lock);
769 return true;
770}
771
Jens Axboe320ae512013-10-24 09:20:05 +0100772/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600773 * Process software queues that have been marked busy, splicing them
774 * to the for-dispatch
775 */
776static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
777{
Omar Sandoval88459642016-09-17 08:38:44 -0600778 struct flush_busy_ctx_data data = {
779 .hctx = hctx,
780 .list = list,
781 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600782
Omar Sandoval88459642016-09-17 08:38:44 -0600783 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600784}
Jens Axboe1429d7c2014-05-19 09:23:55 -0600785
Jens Axboe703fd1c2016-09-16 13:59:14 -0600786static inline unsigned int queued_to_index(unsigned int queued)
787{
788 if (!queued)
789 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600790
Jens Axboe703fd1c2016-09-16 13:59:14 -0600791 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600792}
793
794/*
Jens Axboe320ae512013-10-24 09:20:05 +0100795 * Run this hardware queue, pulling any software queues mapped to it in.
796 * Note that this function currently has various problems around ordering
797 * of IO. In particular, we'd like FIFO behaviour on handling existing
798 * items on the hctx->dispatch list. Ignore that for now.
799 */
Bart Van Assche6a83e742016-11-02 10:09:51 -0600800static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +0100801{
802 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100803 struct request *rq;
804 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600805 LIST_HEAD(driver_list);
806 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600807 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100808
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700809 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100810 return;
811
812 hctx->run++;
813
814 /*
815 * Touch any software queue that has pending entries.
816 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600817 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100818
819 /*
820 * If we have previous entries on our dispatch list, grab them
821 * and stuff them at the front for more fair dispatch.
822 */
823 if (!list_empty_careful(&hctx->dispatch)) {
824 spin_lock(&hctx->lock);
825 if (!list_empty(&hctx->dispatch))
826 list_splice_init(&hctx->dispatch, &rq_list);
827 spin_unlock(&hctx->lock);
828 }
829
830 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600831 * Start off with dptr being NULL, so we start the first request
832 * immediately, even if we have more pending.
833 */
834 dptr = NULL;
835
836 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100837 * Now process all the entries, sending them to the driver.
838 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600839 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100840 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600841 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100842 int ret;
843
844 rq = list_first_entry(&rq_list, struct request, queuelist);
845 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100846
Jens Axboe74c45052014-10-29 11:14:52 -0600847 bd.rq = rq;
848 bd.list = dptr;
849 bd.last = list_empty(&rq_list);
850
851 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100852 switch (ret) {
853 case BLK_MQ_RQ_QUEUE_OK:
854 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700855 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100856 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100857 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200858 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100859 break;
860 default:
861 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100862 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800863 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700864 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100865 break;
866 }
867
868 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
869 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600870
871 /*
872 * We've done the first request. If we have more than 1
873 * left in the list, set dptr to defer issue.
874 */
875 if (!dptr && rq_list.next != rq_list.prev)
876 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100877 }
878
Jens Axboe703fd1c2016-09-16 13:59:14 -0600879 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100880
881 /*
882 * Any items that need requeuing? Stuff them into hctx->dispatch,
883 * that is where we will continue on next queue run.
884 */
885 if (!list_empty(&rq_list)) {
886 spin_lock(&hctx->lock);
887 list_splice(&rq_list, &hctx->dispatch);
888 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600889 /*
890 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
891 * it's possible the queue is stopped and restarted again
892 * before this. Queue restart will dispatch requests. And since
893 * requests in rq_list aren't added into hctx->dispatch yet,
894 * the requests in rq_list might get lost.
895 *
896 * blk_mq_run_hw_queue() already checks the STOPPED bit
897 **/
898 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100899 }
900}
901
Bart Van Assche6a83e742016-11-02 10:09:51 -0600902static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
903{
904 int srcu_idx;
905
906 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
907 cpu_online(hctx->next_cpu));
908
909 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
910 rcu_read_lock();
911 blk_mq_process_rq_list(hctx);
912 rcu_read_unlock();
913 } else {
914 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
915 blk_mq_process_rq_list(hctx);
916 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
917 }
918}
919
Jens Axboe506e9312014-05-07 10:26:44 -0600920/*
921 * It'd be great if the workqueue API had a way to pass
922 * in a mask and had some smarts for more clever placement.
923 * For now we just round-robin here, switching for every
924 * BLK_MQ_CPU_WORK_BATCH queued items.
925 */
926static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
927{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100928 if (hctx->queue->nr_hw_queues == 1)
929 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600930
931 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100932 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600933
934 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
935 if (next_cpu >= nr_cpu_ids)
936 next_cpu = cpumask_first(hctx->cpumask);
937
938 hctx->next_cpu = next_cpu;
939 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100940
941 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600942 }
943
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100944 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600945}
946
Jens Axboe320ae512013-10-24 09:20:05 +0100947void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
948{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700949 if (unlikely(blk_mq_hctx_stopped(hctx) ||
950 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100951 return;
952
Jens Axboe1b792f22016-09-21 10:12:13 -0600953 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100954 int cpu = get_cpu();
955 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100956 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100957 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100958 return;
959 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600960
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100961 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600962 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100963
Jens Axboe27489a32016-08-24 15:54:25 -0600964 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100965}
966
Mike Snitzerb94ec292015-03-11 23:56:38 -0400967void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100968{
969 struct blk_mq_hw_ctx *hctx;
970 int i;
971
972 queue_for_each_hw_ctx(q, hctx, i) {
973 if ((!blk_mq_hctx_has_pending(hctx) &&
974 list_empty_careful(&hctx->dispatch)) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700975 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +0100976 continue;
977
Mike Snitzerb94ec292015-03-11 23:56:38 -0400978 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100979 }
980}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400981EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100982
Bart Van Asschefd001442016-10-28 17:19:37 -0700983/**
984 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
985 * @q: request queue.
986 *
987 * The caller is responsible for serializing this function against
988 * blk_mq_{start,stop}_hw_queue().
989 */
990bool blk_mq_queue_stopped(struct request_queue *q)
991{
992 struct blk_mq_hw_ctx *hctx;
993 int i;
994
995 queue_for_each_hw_ctx(q, hctx, i)
996 if (blk_mq_hctx_stopped(hctx))
997 return true;
998
999 return false;
1000}
1001EXPORT_SYMBOL(blk_mq_queue_stopped);
1002
Jens Axboe320ae512013-10-24 09:20:05 +01001003void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1004{
Jens Axboe27489a32016-08-24 15:54:25 -06001005 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001006 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001007 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1008}
1009EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1010
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001011void blk_mq_stop_hw_queues(struct request_queue *q)
1012{
1013 struct blk_mq_hw_ctx *hctx;
1014 int i;
1015
1016 queue_for_each_hw_ctx(q, hctx, i)
1017 blk_mq_stop_hw_queue(hctx);
1018}
1019EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1020
Jens Axboe320ae512013-10-24 09:20:05 +01001021void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1022{
1023 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001024
Jens Axboe0ffbce82014-06-25 08:22:34 -06001025 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001026}
1027EXPORT_SYMBOL(blk_mq_start_hw_queue);
1028
Christoph Hellwig2f268552014-04-16 09:44:56 +02001029void blk_mq_start_hw_queues(struct request_queue *q)
1030{
1031 struct blk_mq_hw_ctx *hctx;
1032 int i;
1033
1034 queue_for_each_hw_ctx(q, hctx, i)
1035 blk_mq_start_hw_queue(hctx);
1036}
1037EXPORT_SYMBOL(blk_mq_start_hw_queues);
1038
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001039void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001040{
1041 struct blk_mq_hw_ctx *hctx;
1042 int i;
1043
1044 queue_for_each_hw_ctx(q, hctx, i) {
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001045 if (!blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001046 continue;
1047
1048 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001049 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001050 }
1051}
1052EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1053
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001054static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001055{
1056 struct blk_mq_hw_ctx *hctx;
1057
Jens Axboe27489a32016-08-24 15:54:25 -06001058 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001059
Jens Axboe320ae512013-10-24 09:20:05 +01001060 __blk_mq_run_hw_queue(hctx);
1061}
1062
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001063static void blk_mq_delay_work_fn(struct work_struct *work)
1064{
1065 struct blk_mq_hw_ctx *hctx;
1066
1067 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1068
1069 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1070 __blk_mq_run_hw_queue(hctx);
1071}
1072
1073void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1074{
Ming Lei19c66e52014-12-03 19:38:04 +08001075 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1076 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001077
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001078 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1079 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001080}
1081EXPORT_SYMBOL(blk_mq_delay_queue);
1082
Ming Leicfd0c552015-10-20 23:13:57 +08001083static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001084 struct request *rq,
1085 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001086{
Jens Axboee57690f2016-08-24 15:34:35 -06001087 struct blk_mq_ctx *ctx = rq->mq_ctx;
1088
Jens Axboe01b983c2013-11-19 18:59:10 -07001089 trace_block_rq_insert(hctx->queue, rq);
1090
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001091 if (at_head)
1092 list_add(&rq->queuelist, &ctx->rq_list);
1093 else
1094 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001095}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001096
Ming Leicfd0c552015-10-20 23:13:57 +08001097static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1098 struct request *rq, bool at_head)
1099{
1100 struct blk_mq_ctx *ctx = rq->mq_ctx;
1101
Jens Axboee57690f2016-08-24 15:34:35 -06001102 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001103 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001104}
1105
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001106void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001107 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001108{
Jens Axboee57690f2016-08-24 15:34:35 -06001109 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001110 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001111 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001112
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001113 spin_lock(&ctx->lock);
1114 __blk_mq_insert_request(hctx, rq, at_head);
1115 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001116
Jens Axboe320ae512013-10-24 09:20:05 +01001117 if (run_queue)
1118 blk_mq_run_hw_queue(hctx, async);
1119}
1120
1121static void blk_mq_insert_requests(struct request_queue *q,
1122 struct blk_mq_ctx *ctx,
1123 struct list_head *list,
1124 int depth,
1125 bool from_schedule)
1126
1127{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001128 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001129
1130 trace_block_unplug(q, depth, !from_schedule);
1131
Jens Axboe320ae512013-10-24 09:20:05 +01001132 /*
1133 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1134 * offline now
1135 */
1136 spin_lock(&ctx->lock);
1137 while (!list_empty(list)) {
1138 struct request *rq;
1139
1140 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001141 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001142 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001143 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001144 }
Ming Leicfd0c552015-10-20 23:13:57 +08001145 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001146 spin_unlock(&ctx->lock);
1147
Jens Axboe320ae512013-10-24 09:20:05 +01001148 blk_mq_run_hw_queue(hctx, from_schedule);
1149}
1150
1151static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1152{
1153 struct request *rqa = container_of(a, struct request, queuelist);
1154 struct request *rqb = container_of(b, struct request, queuelist);
1155
1156 return !(rqa->mq_ctx < rqb->mq_ctx ||
1157 (rqa->mq_ctx == rqb->mq_ctx &&
1158 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1159}
1160
1161void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1162{
1163 struct blk_mq_ctx *this_ctx;
1164 struct request_queue *this_q;
1165 struct request *rq;
1166 LIST_HEAD(list);
1167 LIST_HEAD(ctx_list);
1168 unsigned int depth;
1169
1170 list_splice_init(&plug->mq_list, &list);
1171
1172 list_sort(NULL, &list, plug_ctx_cmp);
1173
1174 this_q = NULL;
1175 this_ctx = NULL;
1176 depth = 0;
1177
1178 while (!list_empty(&list)) {
1179 rq = list_entry_rq(list.next);
1180 list_del_init(&rq->queuelist);
1181 BUG_ON(!rq->q);
1182 if (rq->mq_ctx != this_ctx) {
1183 if (this_ctx) {
1184 blk_mq_insert_requests(this_q, this_ctx,
1185 &ctx_list, depth,
1186 from_schedule);
1187 }
1188
1189 this_ctx = rq->mq_ctx;
1190 this_q = rq->q;
1191 depth = 0;
1192 }
1193
1194 depth++;
1195 list_add_tail(&rq->queuelist, &ctx_list);
1196 }
1197
1198 /*
1199 * If 'this_ctx' is set, we know we have entries to complete
1200 * on 'ctx_list'. Do those.
1201 */
1202 if (this_ctx) {
1203 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1204 from_schedule);
1205 }
1206}
1207
1208static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1209{
1210 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001211
Michael Callahana21f2a32016-05-03 11:12:49 -04001212 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001213}
1214
Jens Axboe274a5842014-08-15 12:44:08 -06001215static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1216{
1217 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1218 !blk_queue_nomerges(hctx->queue);
1219}
1220
Jens Axboe07068d52014-05-22 10:40:51 -06001221static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1222 struct blk_mq_ctx *ctx,
1223 struct request *rq, struct bio *bio)
1224{
Ming Leie18378a2015-10-20 23:13:54 +08001225 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001226 blk_mq_bio_to_request(rq, bio);
1227 spin_lock(&ctx->lock);
1228insert_rq:
1229 __blk_mq_insert_request(hctx, rq, false);
1230 spin_unlock(&ctx->lock);
1231 return false;
1232 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001233 struct request_queue *q = hctx->queue;
1234
Jens Axboe07068d52014-05-22 10:40:51 -06001235 spin_lock(&ctx->lock);
1236 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1237 blk_mq_bio_to_request(rq, bio);
1238 goto insert_rq;
1239 }
1240
1241 spin_unlock(&ctx->lock);
1242 __blk_mq_free_request(hctx, ctx, rq);
1243 return true;
1244 }
1245}
1246
Jens Axboe07068d52014-05-22 10:40:51 -06001247static struct request *blk_mq_map_request(struct request_queue *q,
1248 struct bio *bio,
Jens Axboe2552e3f2016-10-27 19:03:55 -06001249 struct blk_mq_alloc_data *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001250{
1251 struct blk_mq_hw_ctx *hctx;
1252 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001253 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01001254
Dan Williams3ef28e82015-10-21 13:20:12 -04001255 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001256 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001257 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001258
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001259 trace_block_getrq(q, bio, bio->bi_opf);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001260 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001261 rq = __blk_mq_alloc_request(data, bio->bi_opf);
Jens Axboe320ae512013-10-24 09:20:05 +01001262
Jens Axboe7dd2fb62016-10-27 09:49:19 -06001263 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001264 return rq;
1265}
1266
Bart Van Assche2253efc2016-10-28 17:20:02 -07001267static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1268 struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001269{
1270 int ret;
1271 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001272 struct blk_mq_queue_data bd = {
1273 .rq = rq,
1274 .list = NULL,
1275 .last = 1
1276 };
Jens Axboe7b371632015-11-05 10:41:40 -07001277 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001278
Bart Van Assche2253efc2016-10-28 17:20:02 -07001279 if (blk_mq_hctx_stopped(hctx))
1280 goto insert;
1281
Shaohua Lif984df12015-05-08 10:51:32 -07001282 /*
1283 * For OK queue, we are done. For error, kill it. Any other
1284 * error (busy), just add it to our list as we previously
1285 * would have done
1286 */
1287 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001288 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1289 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001290 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001291 }
Jens Axboe7b371632015-11-05 10:41:40 -07001292
1293 __blk_mq_requeue_request(rq);
1294
1295 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1296 *cookie = BLK_QC_T_NONE;
1297 rq->errors = -EIO;
1298 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001299 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001300 }
1301
Bart Van Assche2253efc2016-10-28 17:20:02 -07001302insert:
1303 blk_mq_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001304}
1305
Jens Axboe07068d52014-05-22 10:40:51 -06001306/*
1307 * Multiple hardware queue variant. This will not use per-process plugs,
1308 * but will attempt to bypass the hctx queueing if we can go straight to
1309 * hardware for SYNC IO.
1310 */
Jens Axboedece1632015-11-05 10:41:16 -07001311static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001312{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001313 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001314 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001315 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001316 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001317 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001318 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001319 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001320 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001321
1322 blk_queue_bounce(q, &bio);
1323
1324 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001325 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001326 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001327 }
1328
Kent Overstreet54efd502015-04-23 22:37:18 -07001329 blk_queue_split(q, &bio, q->bio_split);
1330
Omar Sandoval87c279e2016-06-01 22:18:48 -07001331 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1332 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1333 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001334
Jens Axboe07068d52014-05-22 10:40:51 -06001335 rq = blk_mq_map_request(q, bio, &data);
1336 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001337 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001338
Jens Axboe7b371632015-11-05 10:41:40 -07001339 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001340
1341 if (unlikely(is_flush_fua)) {
1342 blk_mq_bio_to_request(rq, bio);
1343 blk_insert_flush(rq);
1344 goto run_queue;
1345 }
1346
Shaohua Lif984df12015-05-08 10:51:32 -07001347 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001348 /*
1349 * If the driver supports defer issued based on 'last', then
1350 * queue it up like normal since we can potentially save some
1351 * CPU this way.
1352 */
Shaohua Lif984df12015-05-08 10:51:32 -07001353 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1354 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1355 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001356
1357 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001358
1359 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001360 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001361 * Otherwise the existing request in the plug list will be
1362 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001363 */
Shaohua Lif984df12015-05-08 10:51:32 -07001364 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001365 /*
1366 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001367 * happens, same_queue_rq is invalid and plug list is
1368 * empty
1369 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001370 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1371 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001372 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001373 }
Shaohua Lif984df12015-05-08 10:51:32 -07001374 list_add_tail(&rq->queuelist, &plug->mq_list);
1375 } else /* is_sync */
1376 old_rq = rq;
1377 blk_mq_put_ctx(data.ctx);
1378 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001379 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001380
1381 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1382 rcu_read_lock();
1383 blk_mq_try_issue_directly(data.hctx, old_rq, &cookie);
1384 rcu_read_unlock();
1385 } else {
1386 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
1387 blk_mq_try_issue_directly(data.hctx, old_rq, &cookie);
1388 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1389 }
Jens Axboe7b371632015-11-05 10:41:40 -07001390 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001391 }
1392
1393 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1394 /*
1395 * For a SYNC request, send it to the hardware immediately. For
1396 * an ASYNC request, just ensure that we run it later on. The
1397 * latter allows for merging opportunities and more efficient
1398 * dispatching.
1399 */
1400run_queue:
1401 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1402 }
Jens Axboe07068d52014-05-22 10:40:51 -06001403 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001404done:
1405 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001406}
1407
1408/*
1409 * Single hardware queue variant. This will attempt to use any per-process
1410 * plug for merging and IO deferral.
1411 */
Jens Axboedece1632015-11-05 10:41:16 -07001412static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001413{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001414 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001415 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001416 struct blk_plug *plug;
1417 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001418 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001419 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001420 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001421
Jens Axboe07068d52014-05-22 10:40:51 -06001422 blk_queue_bounce(q, &bio);
1423
1424 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001425 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001426 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001427 }
1428
Kent Overstreet54efd502015-04-23 22:37:18 -07001429 blk_queue_split(q, &bio, q->bio_split);
1430
Omar Sandoval87c279e2016-06-01 22:18:48 -07001431 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1432 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1433 return BLK_QC_T_NONE;
1434 } else
1435 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001436
1437 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001438 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001439 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001440
Jens Axboe7b371632015-11-05 10:41:40 -07001441 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001442
1443 if (unlikely(is_flush_fua)) {
1444 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001445 blk_insert_flush(rq);
1446 goto run_queue;
1447 }
1448
1449 /*
1450 * A task plug currently exists. Since this is completely lockless,
1451 * utilize that to temporarily store requests until the task is
1452 * either done or scheduled away.
1453 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001454 plug = current->plug;
1455 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001456 struct request *last = NULL;
1457
Jeff Moyere6c44382015-05-08 10:51:30 -07001458 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001459 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001460 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001461 else
1462 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001463
1464 blk_mq_put_ctx(data.ctx);
1465
Shaohua Li600271d2016-11-03 17:03:54 -07001466 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1467 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001468 blk_flush_plug_list(plug, false);
1469 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001470 }
Jens Axboeb094f892015-11-20 20:29:45 -07001471
Jeff Moyere6c44382015-05-08 10:51:30 -07001472 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001473 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001474 }
1475
Jens Axboe07068d52014-05-22 10:40:51 -06001476 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1477 /*
1478 * For a SYNC request, send it to the hardware immediately. For
1479 * an ASYNC request, just ensure that we run it later on. The
1480 * latter allows for merging opportunities and more efficient
1481 * dispatching.
1482 */
1483run_queue:
1484 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001485 }
1486
Jens Axboe07068d52014-05-22 10:40:51 -06001487 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001488 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001489}
1490
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001491static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1492 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001493{
1494 struct page *page;
1495
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001496 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001497 int i;
1498
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001499 for (i = 0; i < tags->nr_tags; i++) {
1500 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001501 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001502 set->ops->exit_request(set->driver_data, tags->rqs[i],
1503 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001504 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001505 }
1506 }
1507
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001508 while (!list_empty(&tags->page_list)) {
1509 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001510 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001511 /*
1512 * Remove kmemleak object previously allocated in
1513 * blk_mq_init_rq_map().
1514 */
1515 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001516 __free_pages(page, page->private);
1517 }
1518
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001519 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001520
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001521 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001522}
1523
1524static size_t order_to_size(unsigned int order)
1525{
Ming Lei4ca08502014-04-19 18:00:18 +08001526 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001527}
1528
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001529static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1530 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001531{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001532 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001533 unsigned int i, j, entries_per_page, max_order = 4;
1534 size_t rq_size, left;
1535
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001536 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001537 set->numa_node,
1538 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001539 if (!tags)
1540 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001541
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001542 INIT_LIST_HEAD(&tags->page_list);
1543
Jens Axboea5164402014-09-10 09:02:03 -06001544 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1545 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1546 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001547 if (!tags->rqs) {
1548 blk_mq_free_tags(tags);
1549 return NULL;
1550 }
Jens Axboe320ae512013-10-24 09:20:05 +01001551
1552 /*
1553 * rq_size is the size of the request plus driver payload, rounded
1554 * to the cacheline size
1555 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001556 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001557 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001558 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001559
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001560 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001561 int this_order = max_order;
1562 struct page *page;
1563 int to_do;
1564 void *p;
1565
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001566 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001567 this_order--;
1568
1569 do {
Jens Axboea5164402014-09-10 09:02:03 -06001570 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001571 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001572 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001573 if (page)
1574 break;
1575 if (!this_order--)
1576 break;
1577 if (order_to_size(this_order) < rq_size)
1578 break;
1579 } while (1);
1580
1581 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001582 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001583
1584 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001585 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001586
1587 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001588 /*
1589 * Allow kmemleak to scan these pages as they contain pointers
1590 * to additional allocations like via ops->init_request().
1591 */
1592 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001593 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001594 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001595 left -= to_do * rq_size;
1596 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001597 tags->rqs[i] = p;
1598 if (set->ops->init_request) {
1599 if (set->ops->init_request(set->driver_data,
1600 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001601 set->numa_node)) {
1602 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001603 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001604 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001605 }
1606
Jens Axboe320ae512013-10-24 09:20:05 +01001607 p += rq_size;
1608 i++;
1609 }
1610 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001611 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001612
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001613fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001614 blk_mq_free_rq_map(set, tags, hctx_idx);
1615 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001616}
1617
Jens Axboee57690f2016-08-24 15:34:35 -06001618/*
1619 * 'cpu' is going away. splice any existing rq_list entries from this
1620 * software queue to the hw queue dispatch list, and ensure that it
1621 * gets run.
1622 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001623static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001624{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001625 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001626 struct blk_mq_ctx *ctx;
1627 LIST_HEAD(tmp);
1628
Thomas Gleixner9467f852016-09-22 08:05:17 -06001629 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001630 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001631
1632 spin_lock(&ctx->lock);
1633 if (!list_empty(&ctx->rq_list)) {
1634 list_splice_init(&ctx->rq_list, &tmp);
1635 blk_mq_hctx_clear_pending(hctx, ctx);
1636 }
1637 spin_unlock(&ctx->lock);
1638
1639 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001640 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001641
Jens Axboee57690f2016-08-24 15:34:35 -06001642 spin_lock(&hctx->lock);
1643 list_splice_tail_init(&tmp, &hctx->dispatch);
1644 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001645
1646 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001647 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001648}
1649
Thomas Gleixner9467f852016-09-22 08:05:17 -06001650static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001651{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001652 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1653 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001654}
1655
Ming Leic3b4afc2015-06-04 22:25:04 +08001656/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001657static void blk_mq_exit_hctx(struct request_queue *q,
1658 struct blk_mq_tag_set *set,
1659 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1660{
Ming Leif70ced02014-09-25 23:23:47 +08001661 unsigned flush_start_tag = set->queue_depth;
1662
Ming Lei08e98fc2014-09-25 23:23:38 +08001663 blk_mq_tag_idle(hctx);
1664
Ming Leif70ced02014-09-25 23:23:47 +08001665 if (set->ops->exit_request)
1666 set->ops->exit_request(set->driver_data,
1667 hctx->fq->flush_rq, hctx_idx,
1668 flush_start_tag + hctx_idx);
1669
Ming Lei08e98fc2014-09-25 23:23:38 +08001670 if (set->ops->exit_hctx)
1671 set->ops->exit_hctx(hctx, hctx_idx);
1672
Bart Van Assche6a83e742016-11-02 10:09:51 -06001673 if (hctx->flags & BLK_MQ_F_BLOCKING)
1674 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1675
Thomas Gleixner9467f852016-09-22 08:05:17 -06001676 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001677 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001678 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001679}
1680
Ming Lei624dbe42014-05-27 23:35:13 +08001681static void blk_mq_exit_hw_queues(struct request_queue *q,
1682 struct blk_mq_tag_set *set, int nr_queue)
1683{
1684 struct blk_mq_hw_ctx *hctx;
1685 unsigned int i;
1686
1687 queue_for_each_hw_ctx(q, hctx, i) {
1688 if (i == nr_queue)
1689 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001690 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001691 }
Ming Lei624dbe42014-05-27 23:35:13 +08001692}
1693
1694static void blk_mq_free_hw_queues(struct request_queue *q,
1695 struct blk_mq_tag_set *set)
1696{
1697 struct blk_mq_hw_ctx *hctx;
1698 unsigned int i;
1699
Ming Leie09aae7e2015-01-29 20:17:27 +08001700 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001701 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001702}
1703
Ming Lei08e98fc2014-09-25 23:23:38 +08001704static int blk_mq_init_hctx(struct request_queue *q,
1705 struct blk_mq_tag_set *set,
1706 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1707{
1708 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001709 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001710
1711 node = hctx->numa_node;
1712 if (node == NUMA_NO_NODE)
1713 node = hctx->numa_node = set->numa_node;
1714
Jens Axboe27489a32016-08-24 15:54:25 -06001715 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001716 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1717 spin_lock_init(&hctx->lock);
1718 INIT_LIST_HEAD(&hctx->dispatch);
1719 hctx->queue = q;
1720 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001721 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001722
Thomas Gleixner9467f852016-09-22 08:05:17 -06001723 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001724
1725 hctx->tags = set->tags[hctx_idx];
1726
1727 /*
1728 * Allocate space for all possible cpus to avoid allocation at
1729 * runtime
1730 */
1731 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1732 GFP_KERNEL, node);
1733 if (!hctx->ctxs)
1734 goto unregister_cpu_notifier;
1735
Omar Sandoval88459642016-09-17 08:38:44 -06001736 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1737 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001738 goto free_ctxs;
1739
1740 hctx->nr_ctx = 0;
1741
1742 if (set->ops->init_hctx &&
1743 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1744 goto free_bitmap;
1745
Ming Leif70ced02014-09-25 23:23:47 +08001746 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1747 if (!hctx->fq)
1748 goto exit_hctx;
1749
1750 if (set->ops->init_request &&
1751 set->ops->init_request(set->driver_data,
1752 hctx->fq->flush_rq, hctx_idx,
1753 flush_start_tag + hctx_idx, node))
1754 goto free_fq;
1755
Bart Van Assche6a83e742016-11-02 10:09:51 -06001756 if (hctx->flags & BLK_MQ_F_BLOCKING)
1757 init_srcu_struct(&hctx->queue_rq_srcu);
1758
Ming Lei08e98fc2014-09-25 23:23:38 +08001759 return 0;
1760
Ming Leif70ced02014-09-25 23:23:47 +08001761 free_fq:
1762 kfree(hctx->fq);
1763 exit_hctx:
1764 if (set->ops->exit_hctx)
1765 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001766 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001767 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001768 free_ctxs:
1769 kfree(hctx->ctxs);
1770 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001771 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001772 return -1;
1773}
1774
Jens Axboe320ae512013-10-24 09:20:05 +01001775static void blk_mq_init_cpu_queues(struct request_queue *q,
1776 unsigned int nr_hw_queues)
1777{
1778 unsigned int i;
1779
1780 for_each_possible_cpu(i) {
1781 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1782 struct blk_mq_hw_ctx *hctx;
1783
1784 memset(__ctx, 0, sizeof(*__ctx));
1785 __ctx->cpu = i;
1786 spin_lock_init(&__ctx->lock);
1787 INIT_LIST_HEAD(&__ctx->rq_list);
1788 __ctx->queue = q;
1789
1790 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001791 if (!cpu_online(i))
1792 continue;
1793
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001794 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001795
Jens Axboe320ae512013-10-24 09:20:05 +01001796 /*
1797 * Set local node, IFF we have more than one hw queue. If
1798 * not, we remain on the home node of the device
1799 */
1800 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301801 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001802 }
1803}
1804
Akinobu Mita57783222015-09-27 02:09:23 +09001805static void blk_mq_map_swqueue(struct request_queue *q,
1806 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001807{
1808 unsigned int i;
1809 struct blk_mq_hw_ctx *hctx;
1810 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001811 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001812
Akinobu Mita60de0742015-09-27 02:09:25 +09001813 /*
1814 * Avoid others reading imcomplete hctx->cpumask through sysfs
1815 */
1816 mutex_lock(&q->sysfs_lock);
1817
Jens Axboe320ae512013-10-24 09:20:05 +01001818 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001819 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001820 hctx->nr_ctx = 0;
1821 }
1822
1823 /*
1824 * Map software to hardware queues
1825 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001826 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001827 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001828 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001829 continue;
1830
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001831 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001832 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001833
Jens Axboee4043dc2014-04-09 10:18:23 -06001834 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001835 ctx->index_hw = hctx->nr_ctx;
1836 hctx->ctxs[hctx->nr_ctx++] = ctx;
1837 }
Jens Axboe506e9312014-05-07 10:26:44 -06001838
Akinobu Mita60de0742015-09-27 02:09:25 +09001839 mutex_unlock(&q->sysfs_lock);
1840
Jens Axboe506e9312014-05-07 10:26:44 -06001841 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001842 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001843 * If no software queues are mapped to this hardware queue,
1844 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001845 */
1846 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001847 if (set->tags[i]) {
1848 blk_mq_free_rq_map(set, set->tags[i], i);
1849 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001850 }
Ming Lei2a34c082015-04-21 10:00:20 +08001851 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001852 continue;
1853 }
1854
Ming Lei2a34c082015-04-21 10:00:20 +08001855 /* unmapped hw queue can be remapped after CPU topo changed */
1856 if (!set->tags[i])
1857 set->tags[i] = blk_mq_init_rq_map(set, i);
1858 hctx->tags = set->tags[i];
1859 WARN_ON(!hctx->tags);
1860
Jens Axboe484b4062014-05-21 14:01:15 -06001861 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001862 * Set the map size to the number of mapped software queues.
1863 * This is more accurate and more efficient than looping
1864 * over all possibly mapped software queues.
1865 */
Omar Sandoval88459642016-09-17 08:38:44 -06001866 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001867
1868 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001869 * Initialize batch roundrobin counts
1870 */
Jens Axboe506e9312014-05-07 10:26:44 -06001871 hctx->next_cpu = cpumask_first(hctx->cpumask);
1872 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1873 }
Jens Axboe320ae512013-10-24 09:20:05 +01001874}
1875
Jeff Moyer2404e602015-11-03 10:40:06 -05001876static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001877{
1878 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001879 int i;
1880
Jeff Moyer2404e602015-11-03 10:40:06 -05001881 queue_for_each_hw_ctx(q, hctx, i) {
1882 if (shared)
1883 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1884 else
1885 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1886 }
1887}
1888
1889static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1890{
1891 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001892
1893 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1894 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001895 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001896 blk_mq_unfreeze_queue(q);
1897 }
1898}
1899
1900static void blk_mq_del_queue_tag_set(struct request_queue *q)
1901{
1902 struct blk_mq_tag_set *set = q->tag_set;
1903
Jens Axboe0d2602c2014-05-13 15:10:52 -06001904 mutex_lock(&set->tag_list_lock);
1905 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001906 if (list_is_singular(&set->tag_list)) {
1907 /* just transitioned to unshared */
1908 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1909 /* update existing queue */
1910 blk_mq_update_tag_set_depth(set, false);
1911 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001912 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001913}
1914
1915static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1916 struct request_queue *q)
1917{
1918 q->tag_set = set;
1919
1920 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001921
1922 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1923 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1924 set->flags |= BLK_MQ_F_TAG_SHARED;
1925 /* update existing queue */
1926 blk_mq_update_tag_set_depth(set, true);
1927 }
1928 if (set->flags & BLK_MQ_F_TAG_SHARED)
1929 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001930 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001931
Jens Axboe0d2602c2014-05-13 15:10:52 -06001932 mutex_unlock(&set->tag_list_lock);
1933}
1934
Ming Leie09aae7e2015-01-29 20:17:27 +08001935/*
1936 * It is the actual release handler for mq, but we do it from
1937 * request queue's release handler for avoiding use-after-free
1938 * and headache because q->mq_kobj shouldn't have been introduced,
1939 * but we can't group ctx/kctx kobj without it.
1940 */
1941void blk_mq_release(struct request_queue *q)
1942{
1943 struct blk_mq_hw_ctx *hctx;
1944 unsigned int i;
1945
1946 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001947 queue_for_each_hw_ctx(q, hctx, i) {
1948 if (!hctx)
1949 continue;
1950 kfree(hctx->ctxs);
Ming Leie09aae7e2015-01-29 20:17:27 +08001951 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001952 }
Ming Leie09aae7e2015-01-29 20:17:27 +08001953
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001954 q->mq_map = NULL;
1955
Ming Leie09aae7e2015-01-29 20:17:27 +08001956 kfree(q->queue_hw_ctx);
1957
1958 /* ctx kobj stays in queue_ctx */
1959 free_percpu(q->queue_ctx);
1960}
1961
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001962struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001963{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001964 struct request_queue *uninit_q, *q;
1965
1966 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1967 if (!uninit_q)
1968 return ERR_PTR(-ENOMEM);
1969
1970 q = blk_mq_init_allocated_queue(set, uninit_q);
1971 if (IS_ERR(q))
1972 blk_cleanup_queue(uninit_q);
1973
1974 return q;
1975}
1976EXPORT_SYMBOL(blk_mq_init_queue);
1977
Keith Busch868f2f02015-12-17 17:08:14 -07001978static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1979 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001980{
Keith Busch868f2f02015-12-17 17:08:14 -07001981 int i, j;
1982 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001983
Keith Busch868f2f02015-12-17 17:08:14 -07001984 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001985 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001986 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001987
Keith Busch868f2f02015-12-17 17:08:14 -07001988 if (hctxs[i])
1989 continue;
1990
1991 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001992 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1993 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001994 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07001995 break;
Jens Axboe320ae512013-10-24 09:20:05 +01001996
Jens Axboea86073e2014-10-13 15:41:54 -06001997 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07001998 node)) {
1999 kfree(hctxs[i]);
2000 hctxs[i] = NULL;
2001 break;
2002 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002003
Jens Axboe0d2602c2014-05-13 15:10:52 -06002004 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002005 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002006 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002007
2008 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2009 free_cpumask_var(hctxs[i]->cpumask);
2010 kfree(hctxs[i]);
2011 hctxs[i] = NULL;
2012 break;
2013 }
2014 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002015 }
Keith Busch868f2f02015-12-17 17:08:14 -07002016 for (j = i; j < q->nr_hw_queues; j++) {
2017 struct blk_mq_hw_ctx *hctx = hctxs[j];
2018
2019 if (hctx) {
2020 if (hctx->tags) {
2021 blk_mq_free_rq_map(set, hctx->tags, j);
2022 set->tags[j] = NULL;
2023 }
2024 blk_mq_exit_hctx(q, set, hctx, j);
2025 free_cpumask_var(hctx->cpumask);
2026 kobject_put(&hctx->kobj);
2027 kfree(hctx->ctxs);
2028 kfree(hctx);
2029 hctxs[j] = NULL;
2030
2031 }
2032 }
2033 q->nr_hw_queues = i;
2034 blk_mq_sysfs_register(q);
2035}
2036
2037struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2038 struct request_queue *q)
2039{
Ming Lei66841672016-02-12 15:27:00 +08002040 /* mark the queue as mq asap */
2041 q->mq_ops = set->ops;
2042
Keith Busch868f2f02015-12-17 17:08:14 -07002043 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2044 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002045 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002046
2047 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2048 GFP_KERNEL, set->numa_node);
2049 if (!q->queue_hw_ctx)
2050 goto err_percpu;
2051
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002052 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002053
2054 blk_mq_realloc_hw_ctxs(set, q);
2055 if (!q->nr_hw_queues)
2056 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002057
Christoph Hellwig287922e2015-10-30 20:57:30 +08002058 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002059 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002060
2061 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002062
Jens Axboe94eddfb2013-11-19 09:25:07 -07002063 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002064
Jens Axboe05f1dd52014-05-29 09:53:32 -06002065 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2066 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2067
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002068 q->sg_reserved_size = INT_MAX;
2069
Mike Snitzer28494502016-09-14 13:28:30 -04002070 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002071 INIT_LIST_HEAD(&q->requeue_list);
2072 spin_lock_init(&q->requeue_lock);
2073
Jens Axboe07068d52014-05-22 10:40:51 -06002074 if (q->nr_hw_queues > 1)
2075 blk_queue_make_request(q, blk_mq_make_request);
2076 else
2077 blk_queue_make_request(q, blk_sq_make_request);
2078
Jens Axboeeba71762014-05-20 15:17:27 -06002079 /*
2080 * Do this after blk_queue_make_request() overrides it...
2081 */
2082 q->nr_requests = set->queue_depth;
2083
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002084 if (set->ops->complete)
2085 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002086
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002087 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002088
Akinobu Mita57783222015-09-27 02:09:23 +09002089 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002090 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002091
Jens Axboe320ae512013-10-24 09:20:05 +01002092 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002093 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002094 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002095
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002096 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002097 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002098
Jens Axboe320ae512013-10-24 09:20:05 +01002099 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002100
Jens Axboe320ae512013-10-24 09:20:05 +01002101err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002102 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002103err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002104 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002105err_exit:
2106 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002107 return ERR_PTR(-ENOMEM);
2108}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002109EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002110
2111void blk_mq_free_queue(struct request_queue *q)
2112{
Ming Lei624dbe42014-05-27 23:35:13 +08002113 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002114
Akinobu Mita0e626362015-09-27 02:09:22 +09002115 mutex_lock(&all_q_mutex);
2116 list_del_init(&q->all_q_node);
2117 mutex_unlock(&all_q_mutex);
2118
Jens Axboe0d2602c2014-05-13 15:10:52 -06002119 blk_mq_del_queue_tag_set(q);
2120
Ming Lei624dbe42014-05-27 23:35:13 +08002121 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2122 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002123}
Jens Axboe320ae512013-10-24 09:20:05 +01002124
2125/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002126static void blk_mq_queue_reinit(struct request_queue *q,
2127 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002128{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002129 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002130
Jens Axboe67aec142014-05-30 08:25:36 -06002131 blk_mq_sysfs_unregister(q);
2132
Jens Axboe320ae512013-10-24 09:20:05 +01002133 /*
2134 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2135 * we should change hctx numa_node according to new topology (this
2136 * involves free and re-allocate memory, worthy doing?)
2137 */
2138
Akinobu Mita57783222015-09-27 02:09:23 +09002139 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002140
Jens Axboe67aec142014-05-30 08:25:36 -06002141 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002142}
2143
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002144/*
2145 * New online cpumask which is going to be set in this hotplug event.
2146 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2147 * one-by-one and dynamically allocating this could result in a failure.
2148 */
2149static struct cpumask cpuhp_online_new;
2150
2151static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002152{
2153 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002154
2155 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002156 /*
2157 * We need to freeze and reinit all existing queues. Freezing
2158 * involves synchronous wait for an RCU grace period and doing it
2159 * one by one may take a long time. Start freezing all queues in
2160 * one swoop and then wait for the completions so that freezing can
2161 * take place in parallel.
2162 */
2163 list_for_each_entry(q, &all_q_list, all_q_node)
2164 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002165 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002166 blk_mq_freeze_queue_wait(q);
2167
Ming Leif054b562015-04-21 10:00:19 +08002168 /*
2169 * timeout handler can't touch hw queue during the
2170 * reinitialization
2171 */
2172 del_timer_sync(&q->timeout);
2173 }
2174
Jens Axboe320ae512013-10-24 09:20:05 +01002175 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002176 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002177
2178 list_for_each_entry(q, &all_q_list, all_q_node)
2179 blk_mq_unfreeze_queue(q);
2180
Jens Axboe320ae512013-10-24 09:20:05 +01002181 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002182}
2183
2184static int blk_mq_queue_reinit_dead(unsigned int cpu)
2185{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002186 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002187 blk_mq_queue_reinit_work();
2188 return 0;
2189}
2190
2191/*
2192 * Before hotadded cpu starts handling requests, new mappings must be
2193 * established. Otherwise, these requests in hw queue might never be
2194 * dispatched.
2195 *
2196 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2197 * for CPU0, and ctx1 for CPU1).
2198 *
2199 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2200 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2201 *
2202 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2203 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2204 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2205 * is ignored.
2206 */
2207static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2208{
2209 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2210 cpumask_set_cpu(cpu, &cpuhp_online_new);
2211 blk_mq_queue_reinit_work();
2212 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002213}
2214
Jens Axboea5164402014-09-10 09:02:03 -06002215static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2216{
2217 int i;
2218
2219 for (i = 0; i < set->nr_hw_queues; i++) {
2220 set->tags[i] = blk_mq_init_rq_map(set, i);
2221 if (!set->tags[i])
2222 goto out_unwind;
2223 }
2224
2225 return 0;
2226
2227out_unwind:
2228 while (--i >= 0)
2229 blk_mq_free_rq_map(set, set->tags[i], i);
2230
Jens Axboea5164402014-09-10 09:02:03 -06002231 return -ENOMEM;
2232}
2233
2234/*
2235 * Allocate the request maps associated with this tag_set. Note that this
2236 * may reduce the depth asked for, if memory is tight. set->queue_depth
2237 * will be updated to reflect the allocated depth.
2238 */
2239static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2240{
2241 unsigned int depth;
2242 int err;
2243
2244 depth = set->queue_depth;
2245 do {
2246 err = __blk_mq_alloc_rq_maps(set);
2247 if (!err)
2248 break;
2249
2250 set->queue_depth >>= 1;
2251 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2252 err = -ENOMEM;
2253 break;
2254 }
2255 } while (set->queue_depth);
2256
2257 if (!set->queue_depth || err) {
2258 pr_err("blk-mq: failed to allocate request map\n");
2259 return -ENOMEM;
2260 }
2261
2262 if (depth != set->queue_depth)
2263 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2264 depth, set->queue_depth);
2265
2266 return 0;
2267}
2268
Jens Axboea4391c62014-06-05 15:21:56 -06002269/*
2270 * Alloc a tag set to be associated with one or more request queues.
2271 * May fail with EINVAL for various error conditions. May adjust the
2272 * requested depth down, if if it too large. In that case, the set
2273 * value will be stored in set->queue_depth.
2274 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002275int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2276{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002277 int ret;
2278
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002279 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2280
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002281 if (!set->nr_hw_queues)
2282 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002283 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002284 return -EINVAL;
2285 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2286 return -EINVAL;
2287
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002288 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002289 return -EINVAL;
2290
Jens Axboea4391c62014-06-05 15:21:56 -06002291 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2292 pr_info("blk-mq: reduced tag depth to %u\n",
2293 BLK_MQ_MAX_DEPTH);
2294 set->queue_depth = BLK_MQ_MAX_DEPTH;
2295 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002296
Shaohua Li6637fad2014-11-30 16:00:58 -08002297 /*
2298 * If a crashdump is active, then we are potentially in a very
2299 * memory constrained environment. Limit us to 1 queue and
2300 * 64 tags to prevent using too much memory.
2301 */
2302 if (is_kdump_kernel()) {
2303 set->nr_hw_queues = 1;
2304 set->queue_depth = min(64U, set->queue_depth);
2305 }
Keith Busch868f2f02015-12-17 17:08:14 -07002306 /*
2307 * There is no use for more h/w queues than cpus.
2308 */
2309 if (set->nr_hw_queues > nr_cpu_ids)
2310 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002311
Keith Busch868f2f02015-12-17 17:08:14 -07002312 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002313 GFP_KERNEL, set->numa_node);
2314 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002315 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002316
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002317 ret = -ENOMEM;
2318 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2319 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002320 if (!set->mq_map)
2321 goto out_free_tags;
2322
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002323 if (set->ops->map_queues)
2324 ret = set->ops->map_queues(set);
2325 else
2326 ret = blk_mq_map_queues(set);
2327 if (ret)
2328 goto out_free_mq_map;
2329
2330 ret = blk_mq_alloc_rq_maps(set);
2331 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002332 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002333
Jens Axboe0d2602c2014-05-13 15:10:52 -06002334 mutex_init(&set->tag_list_lock);
2335 INIT_LIST_HEAD(&set->tag_list);
2336
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002337 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002338
2339out_free_mq_map:
2340 kfree(set->mq_map);
2341 set->mq_map = NULL;
2342out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002343 kfree(set->tags);
2344 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002345 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002346}
2347EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2348
2349void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2350{
2351 int i;
2352
Keith Busch868f2f02015-12-17 17:08:14 -07002353 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002354 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002355 blk_mq_free_rq_map(set, set->tags[i], i);
2356 }
2357
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002358 kfree(set->mq_map);
2359 set->mq_map = NULL;
2360
Ming Lei981bd182014-04-24 00:07:34 +08002361 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002362 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002363}
2364EXPORT_SYMBOL(blk_mq_free_tag_set);
2365
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002366int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2367{
2368 struct blk_mq_tag_set *set = q->tag_set;
2369 struct blk_mq_hw_ctx *hctx;
2370 int i, ret;
2371
2372 if (!set || nr > set->queue_depth)
2373 return -EINVAL;
2374
2375 ret = 0;
2376 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002377 if (!hctx->tags)
2378 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002379 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2380 if (ret)
2381 break;
2382 }
2383
2384 if (!ret)
2385 q->nr_requests = nr;
2386
2387 return ret;
2388}
2389
Keith Busch868f2f02015-12-17 17:08:14 -07002390void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2391{
2392 struct request_queue *q;
2393
2394 if (nr_hw_queues > nr_cpu_ids)
2395 nr_hw_queues = nr_cpu_ids;
2396 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2397 return;
2398
2399 list_for_each_entry(q, &set->tag_list, tag_set_list)
2400 blk_mq_freeze_queue(q);
2401
2402 set->nr_hw_queues = nr_hw_queues;
2403 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2404 blk_mq_realloc_hw_ctxs(set, q);
2405
2406 if (q->nr_hw_queues > 1)
2407 blk_queue_make_request(q, blk_mq_make_request);
2408 else
2409 blk_queue_make_request(q, blk_sq_make_request);
2410
2411 blk_mq_queue_reinit(q, cpu_online_mask);
2412 }
2413
2414 list_for_each_entry(q, &set->tag_list, tag_set_list)
2415 blk_mq_unfreeze_queue(q);
2416}
2417EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2418
Jens Axboe676141e2014-03-20 13:29:18 -06002419void blk_mq_disable_hotplug(void)
2420{
2421 mutex_lock(&all_q_mutex);
2422}
2423
2424void blk_mq_enable_hotplug(void)
2425{
2426 mutex_unlock(&all_q_mutex);
2427}
2428
Jens Axboe320ae512013-10-24 09:20:05 +01002429static int __init blk_mq_init(void)
2430{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002431 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2432 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002433
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002434 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2435 blk_mq_queue_reinit_prepare,
2436 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002437 return 0;
2438}
2439subsys_initcall(blk_mq_init);