blob: 2da1a0ee33182ebe3cf707ec1b2c8fe3a0635134 [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
Jens Axboeaed3ea92014-12-22 14:04:42 -0700118void blk_mq_wake_waiters(struct request_queue *q)
119{
120 struct blk_mq_hw_ctx *hctx;
121 unsigned int i;
122
123 queue_for_each_hw_ctx(q, hctx, i)
124 if (blk_mq_hw_queue_mapped(hctx))
125 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700126
127 /*
128 * If we are called because the queue has now been marked as
129 * dying, we need to ensure that processes currently waiting on
130 * the queue are notified as well.
131 */
132 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700133}
134
Jens Axboe320ae512013-10-24 09:20:05 +0100135bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
136{
137 return blk_mq_has_free_tags(hctx->tags);
138}
139EXPORT_SYMBOL(blk_mq_can_queue);
140
Jens Axboe94eddfb2013-11-19 09:25:07 -0700141static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600142 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100143{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200144 INIT_LIST_HEAD(&rq->queuelist);
145 /* csd/requeue_work/fifo_time is initialized before use */
146 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100147 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600148 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200149 if (blk_queue_io_stat(q))
150 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200151 /* do not touch atomic flags, it needs atomic ops against the timer */
152 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200153 INIT_HLIST_NODE(&rq->hash);
154 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200155 rq->rq_disk = NULL;
156 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600157 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200158#ifdef CONFIG_BLK_CGROUP
159 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700160 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200161 rq->io_start_time_ns = 0;
162#endif
163 rq->nr_phys_segments = 0;
164#if defined(CONFIG_BLK_DEV_INTEGRITY)
165 rq->nr_integrity_segments = 0;
166#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200167 rq->special = NULL;
168 /* tag was already set */
169 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200170
Tony Battersby6f4a16262014-08-22 15:53:39 -0400171 rq->cmd = rq->__cmd;
172
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200173 rq->extra_len = 0;
174 rq->sense_len = 0;
175 rq->resid_len = 0;
176 rq->sense = NULL;
177
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200178 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600179 rq->timeout = 0;
180
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200181 rq->end_io = NULL;
182 rq->end_io_data = NULL;
183 rq->next_rq = NULL;
184
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600185 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100186}
187
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200188static struct request *
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600189__blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200190{
191 struct request *rq;
192 unsigned int tag;
193
Ming Leicb96a42c2014-06-01 00:43:37 +0800194 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200195 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a42c2014-06-01 00:43:37 +0800196 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200197
Ming Leicb96a42c2014-06-01 00:43:37 +0800198 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200199 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a42c2014-06-01 00:43:37 +0800200 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200201 }
202
203 rq->tag = tag;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600204 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200205 return rq;
206 }
207
208 return NULL;
209}
210
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100211struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
212 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100213{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200214 struct blk_mq_ctx *ctx;
215 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100216 struct request *rq;
Ming Leicb96a42c2014-06-01 00:43:37 +0800217 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600218 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100219
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100220 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600221 if (ret)
222 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100223
Christoph Hellwigd8525642014-05-27 20:59:50 +0200224 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200225 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100226 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600227 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200228 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600229
Keith Buschc76541a2014-12-19 17:54:13 -0700230 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400231 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600232 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700233 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200234
235 rq->__data_len = 0;
236 rq->__sector = (sector_t) -1;
237 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100238 return rq;
239}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600240EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100241
Ming Lin1f5bd332016-06-13 16:45:21 +0200242struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
243 unsigned int flags, unsigned int hctx_idx)
244{
245 struct blk_mq_hw_ctx *hctx;
246 struct blk_mq_ctx *ctx;
247 struct request *rq;
248 struct blk_mq_alloc_data alloc_data;
249 int ret;
250
251 /*
252 * If the tag allocator sleeps we could get an allocation for a
253 * different hardware context. No need to complicate the low level
254 * allocator for this for the rare use case of a command tied to
255 * a specific queue.
256 */
257 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
258 return ERR_PTR(-EINVAL);
259
260 if (hctx_idx >= q->nr_hw_queues)
261 return ERR_PTR(-EIO);
262
263 ret = blk_queue_enter(q, true);
264 if (ret)
265 return ERR_PTR(ret);
266
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600267 /*
268 * Check if the hardware context is actually mapped to anything.
269 * If not tell the caller that it should skip this queue.
270 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200271 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600272 if (!blk_mq_hw_queue_mapped(hctx)) {
273 ret = -EXDEV;
274 goto out_queue_exit;
275 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200276 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
277
278 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600279 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200280 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600281 ret = -EWOULDBLOCK;
282 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200283 }
284
285 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600286
287out_queue_exit:
288 blk_queue_exit(q);
289 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200290}
291EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
292
Jens Axboe320ae512013-10-24 09:20:05 +0100293static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
294 struct blk_mq_ctx *ctx, struct request *rq)
295{
296 const int tag = rq->tag;
297 struct request_queue *q = rq->q;
298
Christoph Hellwige8064022016-10-20 15:12:13 +0200299 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600300 atomic_dec(&hctx->nr_active);
Christoph Hellwige8064022016-10-20 15:12:13 +0200301 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600302
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200303 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700304 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400305 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100306}
307
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700308void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100309{
310 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700311
312 ctx->rq_completed[rq_is_sync(rq)]++;
313 __blk_mq_free_request(hctx, ctx, rq);
314
315}
316EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
317
318void blk_mq_free_request(struct request *rq)
319{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200320 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100321}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700322EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100323
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700324inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100325{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700326 blk_account_io_done(rq);
327
Christoph Hellwig91b63632014-04-16 09:44:53 +0200328 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100329 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200330 } else {
331 if (unlikely(blk_bidi_rq(rq)))
332 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100333 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200334 }
Jens Axboe320ae512013-10-24 09:20:05 +0100335}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700336EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200337
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700338void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200339{
340 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
341 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700342 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200343}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700344EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100345
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800346static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100347{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800348 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100349
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800350 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100351}
352
Jens Axboeed851862014-05-30 21:20:50 -0600353static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100354{
355 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700356 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100357 int cpu;
358
Christoph Hellwig38535202014-04-25 02:32:53 -0700359 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800360 rq->q->softirq_done_fn(rq);
361 return;
362 }
Jens Axboe320ae512013-10-24 09:20:05 +0100363
364 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700365 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
366 shared = cpus_share_cache(cpu, ctx->cpu);
367
368 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800369 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800370 rq->csd.info = rq;
371 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100372 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800373 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800374 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800375 }
Jens Axboe320ae512013-10-24 09:20:05 +0100376 put_cpu();
377}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800378
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700379static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600380{
381 struct request_queue *q = rq->q;
382
383 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700384 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600385 else
386 blk_mq_ipi_complete_request(rq);
387}
388
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800389/**
390 * blk_mq_complete_request - end I/O on a request
391 * @rq: the request being processed
392 *
393 * Description:
394 * Ends all I/O on a request. It does not handle partial completions.
395 * The actual completion happens out-of-order, through a IPI handler.
396 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200397void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398{
Jens Axboe95f09682014-05-27 17:46:48 -0600399 struct request_queue *q = rq->q;
400
401 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800402 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200403 if (!blk_mark_rq_complete(rq)) {
404 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600405 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200406 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800407}
408EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100409
Keith Busch973c0192015-01-07 18:55:43 -0700410int blk_mq_request_started(struct request *rq)
411{
412 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
413}
414EXPORT_SYMBOL_GPL(blk_mq_request_started);
415
Christoph Hellwige2490072014-09-13 16:40:09 -0700416void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100417{
418 struct request_queue *q = rq->q;
419
420 trace_block_rq_issue(q, rq);
421
Christoph Hellwig742ee692014-04-14 10:30:06 +0200422 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200423 if (unlikely(blk_bidi_rq(rq)))
424 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200425
Ming Lei2b8393b2014-06-10 00:16:41 +0800426 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600427
428 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600429 * Ensure that ->deadline is visible before set the started
430 * flag and clear the completed flag.
431 */
432 smp_mb__before_atomic();
433
434 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600435 * Mark us as started and clear complete. Complete might have been
436 * set if requeue raced with timeout, which then marked it as
437 * complete. So be sure to clear complete again when we start
438 * the request, otherwise we'll ignore the completion event.
439 */
Jens Axboe4b570522014-05-29 11:00:11 -0600440 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
441 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
442 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
443 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800444
445 if (q->dma_drain_size && blk_rq_bytes(rq)) {
446 /*
447 * Make sure space for the drain appears. We know we can do
448 * this because max_hw_segments has been adjusted to be one
449 * fewer than the device can handle.
450 */
451 rq->nr_phys_segments++;
452 }
Jens Axboe320ae512013-10-24 09:20:05 +0100453}
Christoph Hellwige2490072014-09-13 16:40:09 -0700454EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100455
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200456static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100457{
458 struct request_queue *q = rq->q;
459
460 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800461
Christoph Hellwige2490072014-09-13 16:40:09 -0700462 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
463 if (q->dma_drain_size && blk_rq_bytes(rq))
464 rq->nr_phys_segments--;
465 }
Jens Axboe320ae512013-10-24 09:20:05 +0100466}
467
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200468void blk_mq_requeue_request(struct request *rq)
469{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200470 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200471
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200472 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600473 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200474}
475EXPORT_SYMBOL(blk_mq_requeue_request);
476
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600477static void blk_mq_requeue_work(struct work_struct *work)
478{
479 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400480 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600481 LIST_HEAD(rq_list);
482 struct request *rq, *next;
483 unsigned long flags;
484
485 spin_lock_irqsave(&q->requeue_lock, flags);
486 list_splice_init(&q->requeue_list, &rq_list);
487 spin_unlock_irqrestore(&q->requeue_lock, flags);
488
489 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200490 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600491 continue;
492
Christoph Hellwige8064022016-10-20 15:12:13 +0200493 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600494 list_del_init(&rq->queuelist);
495 blk_mq_insert_request(rq, true, false, false);
496 }
497
498 while (!list_empty(&rq_list)) {
499 rq = list_entry(rq_list.next, struct request, queuelist);
500 list_del_init(&rq->queuelist);
501 blk_mq_insert_request(rq, false, false, false);
502 }
503
Jens Axboe8b957412014-09-19 13:10:29 -0600504 /*
505 * Use the start variant of queue running here, so that running
506 * the requeue work will kick stopped queues.
507 */
508 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600509}
510
511void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
512{
513 struct request_queue *q = rq->q;
514 unsigned long flags;
515
516 /*
517 * We abuse this flag that is otherwise used by the I/O scheduler to
518 * request head insertation from the workqueue.
519 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200520 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600521
522 spin_lock_irqsave(&q->requeue_lock, flags);
523 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200524 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600525 list_add(&rq->queuelist, &q->requeue_list);
526 } else {
527 list_add_tail(&rq->queuelist, &q->requeue_list);
528 }
529 spin_unlock_irqrestore(&q->requeue_lock, flags);
530}
531EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
532
Keith Buschc68ed592015-01-07 18:55:44 -0700533void blk_mq_cancel_requeue_work(struct request_queue *q)
534{
Mike Snitzer28494502016-09-14 13:28:30 -0400535 cancel_delayed_work_sync(&q->requeue_work);
Keith Buschc68ed592015-01-07 18:55:44 -0700536}
537EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
538
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600539void blk_mq_kick_requeue_list(struct request_queue *q)
540{
Mike Snitzer28494502016-09-14 13:28:30 -0400541 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600542}
543EXPORT_SYMBOL(blk_mq_kick_requeue_list);
544
Mike Snitzer28494502016-09-14 13:28:30 -0400545void blk_mq_delay_kick_requeue_list(struct request_queue *q,
546 unsigned long msecs)
547{
548 kblockd_schedule_delayed_work(&q->requeue_work,
549 msecs_to_jiffies(msecs));
550}
551EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
552
Jens Axboe1885b242015-01-07 18:55:45 -0700553void blk_mq_abort_requeue_list(struct request_queue *q)
554{
555 unsigned long flags;
556 LIST_HEAD(rq_list);
557
558 spin_lock_irqsave(&q->requeue_lock, flags);
559 list_splice_init(&q->requeue_list, &rq_list);
560 spin_unlock_irqrestore(&q->requeue_lock, flags);
561
562 while (!list_empty(&rq_list)) {
563 struct request *rq;
564
565 rq = list_first_entry(&rq_list, struct request, queuelist);
566 list_del_init(&rq->queuelist);
567 rq->errors = -EIO;
568 blk_mq_end_request(rq, rq->errors);
569 }
570}
571EXPORT_SYMBOL(blk_mq_abort_requeue_list);
572
Jens Axboe0e62f512014-06-04 10:23:49 -0600573struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
574{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600575 if (tag < tags->nr_tags) {
576 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700577 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600578 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700579
580 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600581}
582EXPORT_SYMBOL(blk_mq_tag_to_rq);
583
Jens Axboe320ae512013-10-24 09:20:05 +0100584struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700585 unsigned long next;
586 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100587};
588
Christoph Hellwig90415832014-09-22 10:21:48 -0600589void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100590{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700591 struct blk_mq_ops *ops = req->q->mq_ops;
592 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600593
594 /*
595 * We know that complete is set at this point. If STARTED isn't set
596 * anymore, then the request isn't active and the "timeout" should
597 * just be ignored. This can happen due to the bitflag ordering.
598 * Timeout first checks if STARTED is set, and if it is, assumes
599 * the request is active. But if we race with completion, then
600 * we both flags will get cleared. So check here again, and ignore
601 * a timeout event with a request that isn't active.
602 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700603 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
604 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600605
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700606 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700607 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600608
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700609 switch (ret) {
610 case BLK_EH_HANDLED:
611 __blk_mq_complete_request(req);
612 break;
613 case BLK_EH_RESET_TIMER:
614 blk_add_timer(req);
615 blk_clear_rq_complete(req);
616 break;
617 case BLK_EH_NOT_HANDLED:
618 break;
619 default:
620 printk(KERN_ERR "block: bad eh return: %d\n", ret);
621 break;
622 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600623}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700624
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700625static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
626 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100627{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700628 struct blk_mq_timeout_data *data = priv;
629
Keith Buscheb130db2015-01-08 08:59:53 -0700630 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
631 /*
632 * If a request wasn't started before the queue was
633 * marked dying, kill it here or it'll go unnoticed.
634 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700635 if (unlikely(blk_queue_dying(rq->q))) {
636 rq->errors = -EIO;
637 blk_mq_end_request(rq, rq->errors);
638 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700639 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700640 }
Jens Axboe320ae512013-10-24 09:20:05 +0100641
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700642 if (time_after_eq(jiffies, rq->deadline)) {
643 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700644 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700645 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
646 data->next = rq->deadline;
647 data->next_set = 1;
648 }
Jens Axboe320ae512013-10-24 09:20:05 +0100649}
650
Christoph Hellwig287922e2015-10-30 20:57:30 +0800651static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100652{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800653 struct request_queue *q =
654 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700655 struct blk_mq_timeout_data data = {
656 .next = 0,
657 .next_set = 0,
658 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700659 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100660
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600661 /* A deadlock might occur if a request is stuck requiring a
662 * timeout at the same time a queue freeze is waiting
663 * completion, since the timeout code would not be able to
664 * acquire the queue reference here.
665 *
666 * That's why we don't use blk_queue_enter here; instead, we use
667 * percpu_ref_tryget directly, because we need to be able to
668 * obtain a reference even in the short window between the queue
669 * starting to freeze, by dropping the first reference in
670 * blk_mq_freeze_queue_start, and the moment the last request is
671 * consumed, marked by the instant q_usage_counter reaches
672 * zero.
673 */
674 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800675 return;
676
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200677 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100678
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700679 if (data.next_set) {
680 data.next = blk_rq_timeout(round_jiffies_up(data.next));
681 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600682 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200683 struct blk_mq_hw_ctx *hctx;
684
Ming Leif054b562015-04-21 10:00:19 +0800685 queue_for_each_hw_ctx(q, hctx, i) {
686 /* the hctx may be unmapped, so check it here */
687 if (blk_mq_hw_queue_mapped(hctx))
688 blk_mq_tag_idle(hctx);
689 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600690 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800691 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100692}
693
694/*
695 * Reverse check our software queue for entries that we could potentially
696 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
697 * too much time checking for merges.
698 */
699static bool blk_mq_attempt_merge(struct request_queue *q,
700 struct blk_mq_ctx *ctx, struct bio *bio)
701{
702 struct request *rq;
703 int checked = 8;
704
705 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
706 int el_ret;
707
708 if (!checked--)
709 break;
710
711 if (!blk_rq_merge_ok(rq, bio))
712 continue;
713
714 el_ret = blk_try_merge(rq, bio);
715 if (el_ret == ELEVATOR_BACK_MERGE) {
716 if (bio_attempt_back_merge(q, rq, bio)) {
717 ctx->rq_merged++;
718 return true;
719 }
720 break;
721 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
722 if (bio_attempt_front_merge(q, rq, bio)) {
723 ctx->rq_merged++;
724 return true;
725 }
726 break;
727 }
728 }
729
730 return false;
731}
732
Omar Sandoval88459642016-09-17 08:38:44 -0600733struct flush_busy_ctx_data {
734 struct blk_mq_hw_ctx *hctx;
735 struct list_head *list;
736};
737
738static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
739{
740 struct flush_busy_ctx_data *flush_data = data;
741 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
742 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
743
744 sbitmap_clear_bit(sb, bitnr);
745 spin_lock(&ctx->lock);
746 list_splice_tail_init(&ctx->rq_list, flush_data->list);
747 spin_unlock(&ctx->lock);
748 return true;
749}
750
Jens Axboe320ae512013-10-24 09:20:05 +0100751/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600752 * Process software queues that have been marked busy, splicing them
753 * to the for-dispatch
754 */
755static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
756{
Omar Sandoval88459642016-09-17 08:38:44 -0600757 struct flush_busy_ctx_data data = {
758 .hctx = hctx,
759 .list = list,
760 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600761
Omar Sandoval88459642016-09-17 08:38:44 -0600762 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600763}
Jens Axboe1429d7c2014-05-19 09:23:55 -0600764
Jens Axboe703fd1c2016-09-16 13:59:14 -0600765static inline unsigned int queued_to_index(unsigned int queued)
766{
767 if (!queued)
768 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600769
Jens Axboe703fd1c2016-09-16 13:59:14 -0600770 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600771}
772
773/*
Jens Axboe320ae512013-10-24 09:20:05 +0100774 * Run this hardware queue, pulling any software queues mapped to it in.
775 * Note that this function currently has various problems around ordering
776 * of IO. In particular, we'd like FIFO behaviour on handling existing
777 * items on the hctx->dispatch list. Ignore that for now.
778 */
779static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
780{
781 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100782 struct request *rq;
783 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600784 LIST_HEAD(driver_list);
785 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600786 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100787
Jens Axboe5d12f902014-03-19 15:25:02 -0600788 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100789 return;
790
Jens Axboe0e87e582016-08-24 15:38:01 -0600791 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
792 cpu_online(hctx->next_cpu));
793
Jens Axboe320ae512013-10-24 09:20:05 +0100794 hctx->run++;
795
796 /*
797 * Touch any software queue that has pending entries.
798 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600799 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100800
801 /*
802 * If we have previous entries on our dispatch list, grab them
803 * and stuff them at the front for more fair dispatch.
804 */
805 if (!list_empty_careful(&hctx->dispatch)) {
806 spin_lock(&hctx->lock);
807 if (!list_empty(&hctx->dispatch))
808 list_splice_init(&hctx->dispatch, &rq_list);
809 spin_unlock(&hctx->lock);
810 }
811
812 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600813 * Start off with dptr being NULL, so we start the first request
814 * immediately, even if we have more pending.
815 */
816 dptr = NULL;
817
818 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100819 * Now process all the entries, sending them to the driver.
820 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600821 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100822 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600823 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100824 int ret;
825
826 rq = list_first_entry(&rq_list, struct request, queuelist);
827 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100828
Jens Axboe74c45052014-10-29 11:14:52 -0600829 bd.rq = rq;
830 bd.list = dptr;
831 bd.last = list_empty(&rq_list);
832
833 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100834 switch (ret) {
835 case BLK_MQ_RQ_QUEUE_OK:
836 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700837 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100838 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100839 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200840 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100841 break;
842 default:
843 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100844 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800845 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700846 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100847 break;
848 }
849
850 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
851 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600852
853 /*
854 * We've done the first request. If we have more than 1
855 * left in the list, set dptr to defer issue.
856 */
857 if (!dptr && rq_list.next != rq_list.prev)
858 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100859 }
860
Jens Axboe703fd1c2016-09-16 13:59:14 -0600861 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100862
863 /*
864 * Any items that need requeuing? Stuff them into hctx->dispatch,
865 * that is where we will continue on next queue run.
866 */
867 if (!list_empty(&rq_list)) {
868 spin_lock(&hctx->lock);
869 list_splice(&rq_list, &hctx->dispatch);
870 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600871 /*
872 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
873 * it's possible the queue is stopped and restarted again
874 * before this. Queue restart will dispatch requests. And since
875 * requests in rq_list aren't added into hctx->dispatch yet,
876 * the requests in rq_list might get lost.
877 *
878 * blk_mq_run_hw_queue() already checks the STOPPED bit
879 **/
880 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100881 }
882}
883
Jens Axboe506e9312014-05-07 10:26:44 -0600884/*
885 * It'd be great if the workqueue API had a way to pass
886 * in a mask and had some smarts for more clever placement.
887 * For now we just round-robin here, switching for every
888 * BLK_MQ_CPU_WORK_BATCH queued items.
889 */
890static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
891{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100892 if (hctx->queue->nr_hw_queues == 1)
893 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600894
895 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100896 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600897
898 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
899 if (next_cpu >= nr_cpu_ids)
900 next_cpu = cpumask_first(hctx->cpumask);
901
902 hctx->next_cpu = next_cpu;
903 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100904
905 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600906 }
907
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100908 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600909}
910
Jens Axboe320ae512013-10-24 09:20:05 +0100911void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
912{
Ming Lei19c66e52014-12-03 19:38:04 +0800913 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
914 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100915 return;
916
Jens Axboe1b792f22016-09-21 10:12:13 -0600917 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100918 int cpu = get_cpu();
919 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100920 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100921 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100922 return;
923 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600924
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100925 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600926 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100927
Jens Axboe27489a32016-08-24 15:54:25 -0600928 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100929}
930
Mike Snitzerb94ec292015-03-11 23:56:38 -0400931void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100932{
933 struct blk_mq_hw_ctx *hctx;
934 int i;
935
936 queue_for_each_hw_ctx(q, hctx, i) {
937 if ((!blk_mq_hctx_has_pending(hctx) &&
938 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600939 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100940 continue;
941
Mike Snitzerb94ec292015-03-11 23:56:38 -0400942 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100943 }
944}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400945EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100946
947void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
948{
Jens Axboe27489a32016-08-24 15:54:25 -0600949 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600950 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100951 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
952}
953EXPORT_SYMBOL(blk_mq_stop_hw_queue);
954
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100955void blk_mq_stop_hw_queues(struct request_queue *q)
956{
957 struct blk_mq_hw_ctx *hctx;
958 int i;
959
960 queue_for_each_hw_ctx(q, hctx, i)
961 blk_mq_stop_hw_queue(hctx);
962}
963EXPORT_SYMBOL(blk_mq_stop_hw_queues);
964
Jens Axboe320ae512013-10-24 09:20:05 +0100965void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
966{
967 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600968
Jens Axboe0ffbce82014-06-25 08:22:34 -0600969 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100970}
971EXPORT_SYMBOL(blk_mq_start_hw_queue);
972
Christoph Hellwig2f268552014-04-16 09:44:56 +0200973void blk_mq_start_hw_queues(struct request_queue *q)
974{
975 struct blk_mq_hw_ctx *hctx;
976 int i;
977
978 queue_for_each_hw_ctx(q, hctx, i)
979 blk_mq_start_hw_queue(hctx);
980}
981EXPORT_SYMBOL(blk_mq_start_hw_queues);
982
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200983void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100984{
985 struct blk_mq_hw_ctx *hctx;
986 int i;
987
988 queue_for_each_hw_ctx(q, hctx, i) {
989 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
990 continue;
991
992 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200993 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100994 }
995}
996EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
997
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600998static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100999{
1000 struct blk_mq_hw_ctx *hctx;
1001
Jens Axboe27489a32016-08-24 15:54:25 -06001002 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001003
Jens Axboe320ae512013-10-24 09:20:05 +01001004 __blk_mq_run_hw_queue(hctx);
1005}
1006
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001007static void blk_mq_delay_work_fn(struct work_struct *work)
1008{
1009 struct blk_mq_hw_ctx *hctx;
1010
1011 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1012
1013 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1014 __blk_mq_run_hw_queue(hctx);
1015}
1016
1017void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1018{
Ming Lei19c66e52014-12-03 19:38:04 +08001019 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1020 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001021
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001022 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1023 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001024}
1025EXPORT_SYMBOL(blk_mq_delay_queue);
1026
Ming Leicfd0c552015-10-20 23:13:57 +08001027static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001028 struct request *rq,
1029 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001030{
Jens Axboee57690f2016-08-24 15:34:35 -06001031 struct blk_mq_ctx *ctx = rq->mq_ctx;
1032
Jens Axboe01b983c2013-11-19 18:59:10 -07001033 trace_block_rq_insert(hctx->queue, rq);
1034
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001035 if (at_head)
1036 list_add(&rq->queuelist, &ctx->rq_list);
1037 else
1038 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001039}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001040
Ming Leicfd0c552015-10-20 23:13:57 +08001041static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1042 struct request *rq, bool at_head)
1043{
1044 struct blk_mq_ctx *ctx = rq->mq_ctx;
1045
Jens Axboee57690f2016-08-24 15:34:35 -06001046 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001047 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001048}
1049
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001050void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001051 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001052{
Jens Axboee57690f2016-08-24 15:34:35 -06001053 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001054 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001055 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001056
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001057 spin_lock(&ctx->lock);
1058 __blk_mq_insert_request(hctx, rq, at_head);
1059 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001060
Jens Axboe320ae512013-10-24 09:20:05 +01001061 if (run_queue)
1062 blk_mq_run_hw_queue(hctx, async);
1063}
1064
1065static void blk_mq_insert_requests(struct request_queue *q,
1066 struct blk_mq_ctx *ctx,
1067 struct list_head *list,
1068 int depth,
1069 bool from_schedule)
1070
1071{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001072 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001073
1074 trace_block_unplug(q, depth, !from_schedule);
1075
Jens Axboe320ae512013-10-24 09:20:05 +01001076 /*
1077 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1078 * offline now
1079 */
1080 spin_lock(&ctx->lock);
1081 while (!list_empty(list)) {
1082 struct request *rq;
1083
1084 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001085 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001086 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001087 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001088 }
Ming Leicfd0c552015-10-20 23:13:57 +08001089 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001090 spin_unlock(&ctx->lock);
1091
Jens Axboe320ae512013-10-24 09:20:05 +01001092 blk_mq_run_hw_queue(hctx, from_schedule);
1093}
1094
1095static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1096{
1097 struct request *rqa = container_of(a, struct request, queuelist);
1098 struct request *rqb = container_of(b, struct request, queuelist);
1099
1100 return !(rqa->mq_ctx < rqb->mq_ctx ||
1101 (rqa->mq_ctx == rqb->mq_ctx &&
1102 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1103}
1104
1105void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1106{
1107 struct blk_mq_ctx *this_ctx;
1108 struct request_queue *this_q;
1109 struct request *rq;
1110 LIST_HEAD(list);
1111 LIST_HEAD(ctx_list);
1112 unsigned int depth;
1113
1114 list_splice_init(&plug->mq_list, &list);
1115
1116 list_sort(NULL, &list, plug_ctx_cmp);
1117
1118 this_q = NULL;
1119 this_ctx = NULL;
1120 depth = 0;
1121
1122 while (!list_empty(&list)) {
1123 rq = list_entry_rq(list.next);
1124 list_del_init(&rq->queuelist);
1125 BUG_ON(!rq->q);
1126 if (rq->mq_ctx != this_ctx) {
1127 if (this_ctx) {
1128 blk_mq_insert_requests(this_q, this_ctx,
1129 &ctx_list, depth,
1130 from_schedule);
1131 }
1132
1133 this_ctx = rq->mq_ctx;
1134 this_q = rq->q;
1135 depth = 0;
1136 }
1137
1138 depth++;
1139 list_add_tail(&rq->queuelist, &ctx_list);
1140 }
1141
1142 /*
1143 * If 'this_ctx' is set, we know we have entries to complete
1144 * on 'ctx_list'. Do those.
1145 */
1146 if (this_ctx) {
1147 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1148 from_schedule);
1149 }
1150}
1151
1152static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1153{
1154 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001155
Michael Callahana21f2a32016-05-03 11:12:49 -04001156 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001157}
1158
Jens Axboe274a5842014-08-15 12:44:08 -06001159static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1160{
1161 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1162 !blk_queue_nomerges(hctx->queue);
1163}
1164
Jens Axboe07068d52014-05-22 10:40:51 -06001165static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1166 struct blk_mq_ctx *ctx,
1167 struct request *rq, struct bio *bio)
1168{
Ming Leie18378a2015-10-20 23:13:54 +08001169 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001170 blk_mq_bio_to_request(rq, bio);
1171 spin_lock(&ctx->lock);
1172insert_rq:
1173 __blk_mq_insert_request(hctx, rq, false);
1174 spin_unlock(&ctx->lock);
1175 return false;
1176 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001177 struct request_queue *q = hctx->queue;
1178
Jens Axboe07068d52014-05-22 10:40:51 -06001179 spin_lock(&ctx->lock);
1180 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1181 blk_mq_bio_to_request(rq, bio);
1182 goto insert_rq;
1183 }
1184
1185 spin_unlock(&ctx->lock);
1186 __blk_mq_free_request(hctx, ctx, rq);
1187 return true;
1188 }
1189}
1190
Jens Axboe07068d52014-05-22 10:40:51 -06001191static struct request *blk_mq_map_request(struct request_queue *q,
1192 struct bio *bio,
Jens Axboe2552e3f2016-10-27 19:03:55 -06001193 struct blk_mq_alloc_data *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001194{
1195 struct blk_mq_hw_ctx *hctx;
1196 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001197 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01001198
Dan Williams3ef28e82015-10-21 13:20:12 -04001199 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001200 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001201 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001202
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001203 trace_block_getrq(q, bio, bio->bi_opf);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001204 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001205 rq = __blk_mq_alloc_request(data, bio->bi_opf);
Jens Axboe320ae512013-10-24 09:20:05 +01001206
Jens Axboe7dd2fb62016-10-27 09:49:19 -06001207 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001208 return rq;
1209}
1210
Jens Axboe7b371632015-11-05 10:41:40 -07001211static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001212{
1213 int ret;
1214 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001215 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Shaohua Lif984df12015-05-08 10:51:32 -07001216 struct blk_mq_queue_data bd = {
1217 .rq = rq,
1218 .list = NULL,
1219 .last = 1
1220 };
Jens Axboe7b371632015-11-05 10:41:40 -07001221 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001222
1223 /*
1224 * For OK queue, we are done. For error, kill it. Any other
1225 * error (busy), just add it to our list as we previously
1226 * would have done
1227 */
1228 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001229 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1230 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001231 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001232 }
Jens Axboe7b371632015-11-05 10:41:40 -07001233
1234 __blk_mq_requeue_request(rq);
1235
1236 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1237 *cookie = BLK_QC_T_NONE;
1238 rq->errors = -EIO;
1239 blk_mq_end_request(rq, rq->errors);
1240 return 0;
1241 }
1242
1243 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001244}
1245
Jens Axboe07068d52014-05-22 10:40:51 -06001246/*
1247 * Multiple hardware queue variant. This will not use per-process plugs,
1248 * but will attempt to bypass the hctx queueing if we can go straight to
1249 * hardware for SYNC IO.
1250 */
Jens Axboedece1632015-11-05 10:41:16 -07001251static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001252{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001253 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001254 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001255 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001256 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001257 unsigned int request_count = 0;
1258 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001259 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001260 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001261
1262 blk_queue_bounce(q, &bio);
1263
1264 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001265 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001266 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001267 }
1268
Kent Overstreet54efd502015-04-23 22:37:18 -07001269 blk_queue_split(q, &bio, q->bio_split);
1270
Omar Sandoval87c279e2016-06-01 22:18:48 -07001271 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1272 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1273 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001274
Jens Axboe07068d52014-05-22 10:40:51 -06001275 rq = blk_mq_map_request(q, bio, &data);
1276 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001277 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001278
Jens Axboe7b371632015-11-05 10:41:40 -07001279 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001280
1281 if (unlikely(is_flush_fua)) {
1282 blk_mq_bio_to_request(rq, bio);
1283 blk_insert_flush(rq);
1284 goto run_queue;
1285 }
1286
Shaohua Lif984df12015-05-08 10:51:32 -07001287 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001288 /*
1289 * If the driver supports defer issued based on 'last', then
1290 * queue it up like normal since we can potentially save some
1291 * CPU this way.
1292 */
Shaohua Lif984df12015-05-08 10:51:32 -07001293 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1294 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1295 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001296
1297 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001298
1299 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001300 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001301 * Otherwise the existing request in the plug list will be
1302 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001303 */
Shaohua Lif984df12015-05-08 10:51:32 -07001304 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001305 /*
1306 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001307 * happens, same_queue_rq is invalid and plug list is
1308 * empty
1309 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001310 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1311 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001312 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001313 }
Shaohua Lif984df12015-05-08 10:51:32 -07001314 list_add_tail(&rq->queuelist, &plug->mq_list);
1315 } else /* is_sync */
1316 old_rq = rq;
1317 blk_mq_put_ctx(data.ctx);
1318 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001319 goto done;
1320 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1321 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001322 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001323 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001324 }
1325
1326 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1327 /*
1328 * For a SYNC request, send it to the hardware immediately. For
1329 * an ASYNC request, just ensure that we run it later on. The
1330 * latter allows for merging opportunities and more efficient
1331 * dispatching.
1332 */
1333run_queue:
1334 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1335 }
Jens Axboe07068d52014-05-22 10:40:51 -06001336 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001337done:
1338 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001339}
1340
1341/*
1342 * Single hardware queue variant. This will attempt to use any per-process
1343 * plug for merging and IO deferral.
1344 */
Jens Axboedece1632015-11-05 10:41:16 -07001345static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001346{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001347 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001348 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001349 struct blk_plug *plug;
1350 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001351 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001352 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001353 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001354
Jens Axboe07068d52014-05-22 10:40:51 -06001355 blk_queue_bounce(q, &bio);
1356
1357 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001358 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001359 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001360 }
1361
Kent Overstreet54efd502015-04-23 22:37:18 -07001362 blk_queue_split(q, &bio, q->bio_split);
1363
Omar Sandoval87c279e2016-06-01 22:18:48 -07001364 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1365 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1366 return BLK_QC_T_NONE;
1367 } else
1368 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001369
1370 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001371 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001372 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001373
Jens Axboe7b371632015-11-05 10:41:40 -07001374 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001375
1376 if (unlikely(is_flush_fua)) {
1377 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001378 blk_insert_flush(rq);
1379 goto run_queue;
1380 }
1381
1382 /*
1383 * A task plug currently exists. Since this is completely lockless,
1384 * utilize that to temporarily store requests until the task is
1385 * either done or scheduled away.
1386 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001387 plug = current->plug;
1388 if (plug) {
1389 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001390 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001391 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001392
1393 blk_mq_put_ctx(data.ctx);
1394
1395 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001396 blk_flush_plug_list(plug, false);
1397 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001398 }
Jens Axboeb094f892015-11-20 20:29:45 -07001399
Jeff Moyere6c44382015-05-08 10:51:30 -07001400 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001401 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001402 }
1403
Jens Axboe07068d52014-05-22 10:40:51 -06001404 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1405 /*
1406 * For a SYNC request, send it to the hardware immediately. For
1407 * an ASYNC request, just ensure that we run it later on. The
1408 * latter allows for merging opportunities and more efficient
1409 * dispatching.
1410 */
1411run_queue:
1412 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001413 }
1414
Jens Axboe07068d52014-05-22 10:40:51 -06001415 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001416 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001417}
1418
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001419static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1420 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001421{
1422 struct page *page;
1423
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001424 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001425 int i;
1426
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001427 for (i = 0; i < tags->nr_tags; i++) {
1428 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001429 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001430 set->ops->exit_request(set->driver_data, tags->rqs[i],
1431 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001432 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001433 }
1434 }
1435
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001436 while (!list_empty(&tags->page_list)) {
1437 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001438 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001439 /*
1440 * Remove kmemleak object previously allocated in
1441 * blk_mq_init_rq_map().
1442 */
1443 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001444 __free_pages(page, page->private);
1445 }
1446
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001447 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001448
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001449 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001450}
1451
1452static size_t order_to_size(unsigned int order)
1453{
Ming Lei4ca08502014-04-19 18:00:18 +08001454 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001455}
1456
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001457static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1458 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001459{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001460 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001461 unsigned int i, j, entries_per_page, max_order = 4;
1462 size_t rq_size, left;
1463
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001464 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001465 set->numa_node,
1466 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001467 if (!tags)
1468 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001469
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001470 INIT_LIST_HEAD(&tags->page_list);
1471
Jens Axboea5164402014-09-10 09:02:03 -06001472 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1473 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1474 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001475 if (!tags->rqs) {
1476 blk_mq_free_tags(tags);
1477 return NULL;
1478 }
Jens Axboe320ae512013-10-24 09:20:05 +01001479
1480 /*
1481 * rq_size is the size of the request plus driver payload, rounded
1482 * to the cacheline size
1483 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001484 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001485 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001486 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001487
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001488 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001489 int this_order = max_order;
1490 struct page *page;
1491 int to_do;
1492 void *p;
1493
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001494 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001495 this_order--;
1496
1497 do {
Jens Axboea5164402014-09-10 09:02:03 -06001498 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001499 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001500 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001501 if (page)
1502 break;
1503 if (!this_order--)
1504 break;
1505 if (order_to_size(this_order) < rq_size)
1506 break;
1507 } while (1);
1508
1509 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001510 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001511
1512 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001513 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001514
1515 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001516 /*
1517 * Allow kmemleak to scan these pages as they contain pointers
1518 * to additional allocations like via ops->init_request().
1519 */
1520 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001521 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001522 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001523 left -= to_do * rq_size;
1524 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001525 tags->rqs[i] = p;
1526 if (set->ops->init_request) {
1527 if (set->ops->init_request(set->driver_data,
1528 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001529 set->numa_node)) {
1530 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001531 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001532 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001533 }
1534
Jens Axboe320ae512013-10-24 09:20:05 +01001535 p += rq_size;
1536 i++;
1537 }
1538 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001539 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001540
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001541fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001542 blk_mq_free_rq_map(set, tags, hctx_idx);
1543 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001544}
1545
Jens Axboee57690f2016-08-24 15:34:35 -06001546/*
1547 * 'cpu' is going away. splice any existing rq_list entries from this
1548 * software queue to the hw queue dispatch list, and ensure that it
1549 * gets run.
1550 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001551static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001552{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001553 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001554 struct blk_mq_ctx *ctx;
1555 LIST_HEAD(tmp);
1556
Thomas Gleixner9467f852016-09-22 08:05:17 -06001557 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001558 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001559
1560 spin_lock(&ctx->lock);
1561 if (!list_empty(&ctx->rq_list)) {
1562 list_splice_init(&ctx->rq_list, &tmp);
1563 blk_mq_hctx_clear_pending(hctx, ctx);
1564 }
1565 spin_unlock(&ctx->lock);
1566
1567 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001568 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001569
Jens Axboee57690f2016-08-24 15:34:35 -06001570 spin_lock(&hctx->lock);
1571 list_splice_tail_init(&tmp, &hctx->dispatch);
1572 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001573
1574 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001575 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001576}
1577
Thomas Gleixner9467f852016-09-22 08:05:17 -06001578static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001579{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001580 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1581 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001582}
1583
Ming Leic3b4afc2015-06-04 22:25:04 +08001584/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001585static void blk_mq_exit_hctx(struct request_queue *q,
1586 struct blk_mq_tag_set *set,
1587 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1588{
Ming Leif70ced02014-09-25 23:23:47 +08001589 unsigned flush_start_tag = set->queue_depth;
1590
Ming Lei08e98fc2014-09-25 23:23:38 +08001591 blk_mq_tag_idle(hctx);
1592
Ming Leif70ced02014-09-25 23:23:47 +08001593 if (set->ops->exit_request)
1594 set->ops->exit_request(set->driver_data,
1595 hctx->fq->flush_rq, hctx_idx,
1596 flush_start_tag + hctx_idx);
1597
Ming Lei08e98fc2014-09-25 23:23:38 +08001598 if (set->ops->exit_hctx)
1599 set->ops->exit_hctx(hctx, hctx_idx);
1600
Thomas Gleixner9467f852016-09-22 08:05:17 -06001601 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001602 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001603 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001604}
1605
Ming Lei624dbe42014-05-27 23:35:13 +08001606static void blk_mq_exit_hw_queues(struct request_queue *q,
1607 struct blk_mq_tag_set *set, int nr_queue)
1608{
1609 struct blk_mq_hw_ctx *hctx;
1610 unsigned int i;
1611
1612 queue_for_each_hw_ctx(q, hctx, i) {
1613 if (i == nr_queue)
1614 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001615 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001616 }
Ming Lei624dbe42014-05-27 23:35:13 +08001617}
1618
1619static void blk_mq_free_hw_queues(struct request_queue *q,
1620 struct blk_mq_tag_set *set)
1621{
1622 struct blk_mq_hw_ctx *hctx;
1623 unsigned int i;
1624
Ming Leie09aae72015-01-29 20:17:27 +08001625 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001626 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001627}
1628
Ming Lei08e98fc2014-09-25 23:23:38 +08001629static int blk_mq_init_hctx(struct request_queue *q,
1630 struct blk_mq_tag_set *set,
1631 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1632{
1633 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001634 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001635
1636 node = hctx->numa_node;
1637 if (node == NUMA_NO_NODE)
1638 node = hctx->numa_node = set->numa_node;
1639
Jens Axboe27489a32016-08-24 15:54:25 -06001640 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001641 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1642 spin_lock_init(&hctx->lock);
1643 INIT_LIST_HEAD(&hctx->dispatch);
1644 hctx->queue = q;
1645 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001646 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001647
Thomas Gleixner9467f852016-09-22 08:05:17 -06001648 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001649
1650 hctx->tags = set->tags[hctx_idx];
1651
1652 /*
1653 * Allocate space for all possible cpus to avoid allocation at
1654 * runtime
1655 */
1656 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1657 GFP_KERNEL, node);
1658 if (!hctx->ctxs)
1659 goto unregister_cpu_notifier;
1660
Omar Sandoval88459642016-09-17 08:38:44 -06001661 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1662 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001663 goto free_ctxs;
1664
1665 hctx->nr_ctx = 0;
1666
1667 if (set->ops->init_hctx &&
1668 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1669 goto free_bitmap;
1670
Ming Leif70ced02014-09-25 23:23:47 +08001671 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1672 if (!hctx->fq)
1673 goto exit_hctx;
1674
1675 if (set->ops->init_request &&
1676 set->ops->init_request(set->driver_data,
1677 hctx->fq->flush_rq, hctx_idx,
1678 flush_start_tag + hctx_idx, node))
1679 goto free_fq;
1680
Ming Lei08e98fc2014-09-25 23:23:38 +08001681 return 0;
1682
Ming Leif70ced02014-09-25 23:23:47 +08001683 free_fq:
1684 kfree(hctx->fq);
1685 exit_hctx:
1686 if (set->ops->exit_hctx)
1687 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001688 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001689 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001690 free_ctxs:
1691 kfree(hctx->ctxs);
1692 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001693 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001694 return -1;
1695}
1696
Jens Axboe320ae512013-10-24 09:20:05 +01001697static void blk_mq_init_cpu_queues(struct request_queue *q,
1698 unsigned int nr_hw_queues)
1699{
1700 unsigned int i;
1701
1702 for_each_possible_cpu(i) {
1703 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1704 struct blk_mq_hw_ctx *hctx;
1705
1706 memset(__ctx, 0, sizeof(*__ctx));
1707 __ctx->cpu = i;
1708 spin_lock_init(&__ctx->lock);
1709 INIT_LIST_HEAD(&__ctx->rq_list);
1710 __ctx->queue = q;
1711
1712 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001713 if (!cpu_online(i))
1714 continue;
1715
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001716 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001717
Jens Axboe320ae512013-10-24 09:20:05 +01001718 /*
1719 * Set local node, IFF we have more than one hw queue. If
1720 * not, we remain on the home node of the device
1721 */
1722 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301723 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001724 }
1725}
1726
Akinobu Mita57783222015-09-27 02:09:23 +09001727static void blk_mq_map_swqueue(struct request_queue *q,
1728 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001729{
1730 unsigned int i;
1731 struct blk_mq_hw_ctx *hctx;
1732 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001733 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001734
Akinobu Mita60de0742015-09-27 02:09:25 +09001735 /*
1736 * Avoid others reading imcomplete hctx->cpumask through sysfs
1737 */
1738 mutex_lock(&q->sysfs_lock);
1739
Jens Axboe320ae512013-10-24 09:20:05 +01001740 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001741 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001742 hctx->nr_ctx = 0;
1743 }
1744
1745 /*
1746 * Map software to hardware queues
1747 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001748 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001749 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001750 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001751 continue;
1752
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001753 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001754 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001755
Jens Axboee4043dc2014-04-09 10:18:23 -06001756 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001757 ctx->index_hw = hctx->nr_ctx;
1758 hctx->ctxs[hctx->nr_ctx++] = ctx;
1759 }
Jens Axboe506e9312014-05-07 10:26:44 -06001760
Akinobu Mita60de0742015-09-27 02:09:25 +09001761 mutex_unlock(&q->sysfs_lock);
1762
Jens Axboe506e9312014-05-07 10:26:44 -06001763 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001764 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001765 * If no software queues are mapped to this hardware queue,
1766 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001767 */
1768 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001769 if (set->tags[i]) {
1770 blk_mq_free_rq_map(set, set->tags[i], i);
1771 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001772 }
Ming Lei2a34c082015-04-21 10:00:20 +08001773 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001774 continue;
1775 }
1776
Ming Lei2a34c082015-04-21 10:00:20 +08001777 /* unmapped hw queue can be remapped after CPU topo changed */
1778 if (!set->tags[i])
1779 set->tags[i] = blk_mq_init_rq_map(set, i);
1780 hctx->tags = set->tags[i];
1781 WARN_ON(!hctx->tags);
1782
Jens Axboe484b4062014-05-21 14:01:15 -06001783 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001784 * Set the map size to the number of mapped software queues.
1785 * This is more accurate and more efficient than looping
1786 * over all possibly mapped software queues.
1787 */
Omar Sandoval88459642016-09-17 08:38:44 -06001788 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001789
1790 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001791 * Initialize batch roundrobin counts
1792 */
Jens Axboe506e9312014-05-07 10:26:44 -06001793 hctx->next_cpu = cpumask_first(hctx->cpumask);
1794 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1795 }
Jens Axboe320ae512013-10-24 09:20:05 +01001796}
1797
Jeff Moyer2404e602015-11-03 10:40:06 -05001798static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001799{
1800 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001801 int i;
1802
Jeff Moyer2404e602015-11-03 10:40:06 -05001803 queue_for_each_hw_ctx(q, hctx, i) {
1804 if (shared)
1805 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1806 else
1807 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1808 }
1809}
1810
1811static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1812{
1813 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001814
1815 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1816 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001817 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001818 blk_mq_unfreeze_queue(q);
1819 }
1820}
1821
1822static void blk_mq_del_queue_tag_set(struct request_queue *q)
1823{
1824 struct blk_mq_tag_set *set = q->tag_set;
1825
Jens Axboe0d2602c2014-05-13 15:10:52 -06001826 mutex_lock(&set->tag_list_lock);
1827 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001828 if (list_is_singular(&set->tag_list)) {
1829 /* just transitioned to unshared */
1830 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1831 /* update existing queue */
1832 blk_mq_update_tag_set_depth(set, false);
1833 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001834 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001835}
1836
1837static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1838 struct request_queue *q)
1839{
1840 q->tag_set = set;
1841
1842 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001843
1844 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1845 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1846 set->flags |= BLK_MQ_F_TAG_SHARED;
1847 /* update existing queue */
1848 blk_mq_update_tag_set_depth(set, true);
1849 }
1850 if (set->flags & BLK_MQ_F_TAG_SHARED)
1851 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001852 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001853
Jens Axboe0d2602c2014-05-13 15:10:52 -06001854 mutex_unlock(&set->tag_list_lock);
1855}
1856
Ming Leie09aae72015-01-29 20:17:27 +08001857/*
1858 * It is the actual release handler for mq, but we do it from
1859 * request queue's release handler for avoiding use-after-free
1860 * and headache because q->mq_kobj shouldn't have been introduced,
1861 * but we can't group ctx/kctx kobj without it.
1862 */
1863void blk_mq_release(struct request_queue *q)
1864{
1865 struct blk_mq_hw_ctx *hctx;
1866 unsigned int i;
1867
1868 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001869 queue_for_each_hw_ctx(q, hctx, i) {
1870 if (!hctx)
1871 continue;
1872 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001873 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001874 }
Ming Leie09aae72015-01-29 20:17:27 +08001875
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001876 q->mq_map = NULL;
1877
Ming Leie09aae72015-01-29 20:17:27 +08001878 kfree(q->queue_hw_ctx);
1879
1880 /* ctx kobj stays in queue_ctx */
1881 free_percpu(q->queue_ctx);
1882}
1883
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001884struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001885{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001886 struct request_queue *uninit_q, *q;
1887
1888 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1889 if (!uninit_q)
1890 return ERR_PTR(-ENOMEM);
1891
1892 q = blk_mq_init_allocated_queue(set, uninit_q);
1893 if (IS_ERR(q))
1894 blk_cleanup_queue(uninit_q);
1895
1896 return q;
1897}
1898EXPORT_SYMBOL(blk_mq_init_queue);
1899
Keith Busch868f2f02015-12-17 17:08:14 -07001900static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1901 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001902{
Keith Busch868f2f02015-12-17 17:08:14 -07001903 int i, j;
1904 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001905
Keith Busch868f2f02015-12-17 17:08:14 -07001906 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001907 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001908 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001909
Keith Busch868f2f02015-12-17 17:08:14 -07001910 if (hctxs[i])
1911 continue;
1912
1913 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001914 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1915 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001916 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07001917 break;
Jens Axboe320ae512013-10-24 09:20:05 +01001918
Jens Axboea86073e2014-10-13 15:41:54 -06001919 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07001920 node)) {
1921 kfree(hctxs[i]);
1922 hctxs[i] = NULL;
1923 break;
1924 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001925
Jens Axboe0d2602c2014-05-13 15:10:52 -06001926 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001927 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001928 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07001929
1930 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
1931 free_cpumask_var(hctxs[i]->cpumask);
1932 kfree(hctxs[i]);
1933 hctxs[i] = NULL;
1934 break;
1935 }
1936 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001937 }
Keith Busch868f2f02015-12-17 17:08:14 -07001938 for (j = i; j < q->nr_hw_queues; j++) {
1939 struct blk_mq_hw_ctx *hctx = hctxs[j];
1940
1941 if (hctx) {
1942 if (hctx->tags) {
1943 blk_mq_free_rq_map(set, hctx->tags, j);
1944 set->tags[j] = NULL;
1945 }
1946 blk_mq_exit_hctx(q, set, hctx, j);
1947 free_cpumask_var(hctx->cpumask);
1948 kobject_put(&hctx->kobj);
1949 kfree(hctx->ctxs);
1950 kfree(hctx);
1951 hctxs[j] = NULL;
1952
1953 }
1954 }
1955 q->nr_hw_queues = i;
1956 blk_mq_sysfs_register(q);
1957}
1958
1959struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
1960 struct request_queue *q)
1961{
Ming Lei66841672016-02-12 15:27:00 +08001962 /* mark the queue as mq asap */
1963 q->mq_ops = set->ops;
1964
Keith Busch868f2f02015-12-17 17:08:14 -07001965 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
1966 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07001967 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07001968
1969 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
1970 GFP_KERNEL, set->numa_node);
1971 if (!q->queue_hw_ctx)
1972 goto err_percpu;
1973
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02001974 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07001975
1976 blk_mq_realloc_hw_ctxs(set, q);
1977 if (!q->nr_hw_queues)
1978 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01001979
Christoph Hellwig287922e2015-10-30 20:57:30 +08001980 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08001981 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01001982
1983 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01001984
Jens Axboe94eddfb2013-11-19 09:25:07 -07001985 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001986
Jens Axboe05f1dd52014-05-29 09:53:32 -06001987 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1988 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1989
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001990 q->sg_reserved_size = INT_MAX;
1991
Mike Snitzer28494502016-09-14 13:28:30 -04001992 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001993 INIT_LIST_HEAD(&q->requeue_list);
1994 spin_lock_init(&q->requeue_lock);
1995
Jens Axboe07068d52014-05-22 10:40:51 -06001996 if (q->nr_hw_queues > 1)
1997 blk_queue_make_request(q, blk_mq_make_request);
1998 else
1999 blk_queue_make_request(q, blk_sq_make_request);
2000
Jens Axboeeba71762014-05-20 15:17:27 -06002001 /*
2002 * Do this after blk_queue_make_request() overrides it...
2003 */
2004 q->nr_requests = set->queue_depth;
2005
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002006 if (set->ops->complete)
2007 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002008
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002009 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002010
Akinobu Mita57783222015-09-27 02:09:23 +09002011 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002012 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002013
Jens Axboe320ae512013-10-24 09:20:05 +01002014 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002015 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002016 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002017
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002018 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002019 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002020
Jens Axboe320ae512013-10-24 09:20:05 +01002021 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002022
Jens Axboe320ae512013-10-24 09:20:05 +01002023err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002024 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002025err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002026 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002027err_exit:
2028 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002029 return ERR_PTR(-ENOMEM);
2030}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002031EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002032
2033void blk_mq_free_queue(struct request_queue *q)
2034{
Ming Lei624dbe42014-05-27 23:35:13 +08002035 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002036
Akinobu Mita0e626362015-09-27 02:09:22 +09002037 mutex_lock(&all_q_mutex);
2038 list_del_init(&q->all_q_node);
2039 mutex_unlock(&all_q_mutex);
2040
Jens Axboe0d2602c2014-05-13 15:10:52 -06002041 blk_mq_del_queue_tag_set(q);
2042
Ming Lei624dbe42014-05-27 23:35:13 +08002043 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2044 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002045}
Jens Axboe320ae512013-10-24 09:20:05 +01002046
2047/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002048static void blk_mq_queue_reinit(struct request_queue *q,
2049 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002050{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002051 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002052
Jens Axboe67aec142014-05-30 08:25:36 -06002053 blk_mq_sysfs_unregister(q);
2054
Jens Axboe320ae512013-10-24 09:20:05 +01002055 /*
2056 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2057 * we should change hctx numa_node according to new topology (this
2058 * involves free and re-allocate memory, worthy doing?)
2059 */
2060
Akinobu Mita57783222015-09-27 02:09:23 +09002061 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002062
Jens Axboe67aec142014-05-30 08:25:36 -06002063 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002064}
2065
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002066/*
2067 * New online cpumask which is going to be set in this hotplug event.
2068 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2069 * one-by-one and dynamically allocating this could result in a failure.
2070 */
2071static struct cpumask cpuhp_online_new;
2072
2073static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002074{
2075 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002076
2077 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002078 /*
2079 * We need to freeze and reinit all existing queues. Freezing
2080 * involves synchronous wait for an RCU grace period and doing it
2081 * one by one may take a long time. Start freezing all queues in
2082 * one swoop and then wait for the completions so that freezing can
2083 * take place in parallel.
2084 */
2085 list_for_each_entry(q, &all_q_list, all_q_node)
2086 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002087 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002088 blk_mq_freeze_queue_wait(q);
2089
Ming Leif054b562015-04-21 10:00:19 +08002090 /*
2091 * timeout handler can't touch hw queue during the
2092 * reinitialization
2093 */
2094 del_timer_sync(&q->timeout);
2095 }
2096
Jens Axboe320ae512013-10-24 09:20:05 +01002097 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002098 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002099
2100 list_for_each_entry(q, &all_q_list, all_q_node)
2101 blk_mq_unfreeze_queue(q);
2102
Jens Axboe320ae512013-10-24 09:20:05 +01002103 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002104}
2105
2106static int blk_mq_queue_reinit_dead(unsigned int cpu)
2107{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002108 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002109 blk_mq_queue_reinit_work();
2110 return 0;
2111}
2112
2113/*
2114 * Before hotadded cpu starts handling requests, new mappings must be
2115 * established. Otherwise, these requests in hw queue might never be
2116 * dispatched.
2117 *
2118 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2119 * for CPU0, and ctx1 for CPU1).
2120 *
2121 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2122 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2123 *
2124 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2125 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2126 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2127 * is ignored.
2128 */
2129static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2130{
2131 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2132 cpumask_set_cpu(cpu, &cpuhp_online_new);
2133 blk_mq_queue_reinit_work();
2134 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002135}
2136
Jens Axboea5164402014-09-10 09:02:03 -06002137static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2138{
2139 int i;
2140
2141 for (i = 0; i < set->nr_hw_queues; i++) {
2142 set->tags[i] = blk_mq_init_rq_map(set, i);
2143 if (!set->tags[i])
2144 goto out_unwind;
2145 }
2146
2147 return 0;
2148
2149out_unwind:
2150 while (--i >= 0)
2151 blk_mq_free_rq_map(set, set->tags[i], i);
2152
Jens Axboea5164402014-09-10 09:02:03 -06002153 return -ENOMEM;
2154}
2155
2156/*
2157 * Allocate the request maps associated with this tag_set. Note that this
2158 * may reduce the depth asked for, if memory is tight. set->queue_depth
2159 * will be updated to reflect the allocated depth.
2160 */
2161static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2162{
2163 unsigned int depth;
2164 int err;
2165
2166 depth = set->queue_depth;
2167 do {
2168 err = __blk_mq_alloc_rq_maps(set);
2169 if (!err)
2170 break;
2171
2172 set->queue_depth >>= 1;
2173 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2174 err = -ENOMEM;
2175 break;
2176 }
2177 } while (set->queue_depth);
2178
2179 if (!set->queue_depth || err) {
2180 pr_err("blk-mq: failed to allocate request map\n");
2181 return -ENOMEM;
2182 }
2183
2184 if (depth != set->queue_depth)
2185 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2186 depth, set->queue_depth);
2187
2188 return 0;
2189}
2190
Jens Axboea4391c62014-06-05 15:21:56 -06002191/*
2192 * Alloc a tag set to be associated with one or more request queues.
2193 * May fail with EINVAL for various error conditions. May adjust the
2194 * requested depth down, if if it too large. In that case, the set
2195 * value will be stored in set->queue_depth.
2196 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002197int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2198{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002199 int ret;
2200
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002201 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2202
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002203 if (!set->nr_hw_queues)
2204 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002205 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002206 return -EINVAL;
2207 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2208 return -EINVAL;
2209
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002210 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002211 return -EINVAL;
2212
Jens Axboea4391c62014-06-05 15:21:56 -06002213 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2214 pr_info("blk-mq: reduced tag depth to %u\n",
2215 BLK_MQ_MAX_DEPTH);
2216 set->queue_depth = BLK_MQ_MAX_DEPTH;
2217 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002218
Shaohua Li6637fad2014-11-30 16:00:58 -08002219 /*
2220 * If a crashdump is active, then we are potentially in a very
2221 * memory constrained environment. Limit us to 1 queue and
2222 * 64 tags to prevent using too much memory.
2223 */
2224 if (is_kdump_kernel()) {
2225 set->nr_hw_queues = 1;
2226 set->queue_depth = min(64U, set->queue_depth);
2227 }
Keith Busch868f2f02015-12-17 17:08:14 -07002228 /*
2229 * There is no use for more h/w queues than cpus.
2230 */
2231 if (set->nr_hw_queues > nr_cpu_ids)
2232 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002233
Keith Busch868f2f02015-12-17 17:08:14 -07002234 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002235 GFP_KERNEL, set->numa_node);
2236 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002237 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002238
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002239 ret = -ENOMEM;
2240 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2241 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002242 if (!set->mq_map)
2243 goto out_free_tags;
2244
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002245 if (set->ops->map_queues)
2246 ret = set->ops->map_queues(set);
2247 else
2248 ret = blk_mq_map_queues(set);
2249 if (ret)
2250 goto out_free_mq_map;
2251
2252 ret = blk_mq_alloc_rq_maps(set);
2253 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002254 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002255
Jens Axboe0d2602c2014-05-13 15:10:52 -06002256 mutex_init(&set->tag_list_lock);
2257 INIT_LIST_HEAD(&set->tag_list);
2258
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002259 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002260
2261out_free_mq_map:
2262 kfree(set->mq_map);
2263 set->mq_map = NULL;
2264out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002265 kfree(set->tags);
2266 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002267 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002268}
2269EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2270
2271void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2272{
2273 int i;
2274
Keith Busch868f2f02015-12-17 17:08:14 -07002275 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002276 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002277 blk_mq_free_rq_map(set, set->tags[i], i);
2278 }
2279
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002280 kfree(set->mq_map);
2281 set->mq_map = NULL;
2282
Ming Lei981bd182014-04-24 00:07:34 +08002283 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002284 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002285}
2286EXPORT_SYMBOL(blk_mq_free_tag_set);
2287
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002288int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2289{
2290 struct blk_mq_tag_set *set = q->tag_set;
2291 struct blk_mq_hw_ctx *hctx;
2292 int i, ret;
2293
2294 if (!set || nr > set->queue_depth)
2295 return -EINVAL;
2296
2297 ret = 0;
2298 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002299 if (!hctx->tags)
2300 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002301 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2302 if (ret)
2303 break;
2304 }
2305
2306 if (!ret)
2307 q->nr_requests = nr;
2308
2309 return ret;
2310}
2311
Keith Busch868f2f02015-12-17 17:08:14 -07002312void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2313{
2314 struct request_queue *q;
2315
2316 if (nr_hw_queues > nr_cpu_ids)
2317 nr_hw_queues = nr_cpu_ids;
2318 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2319 return;
2320
2321 list_for_each_entry(q, &set->tag_list, tag_set_list)
2322 blk_mq_freeze_queue(q);
2323
2324 set->nr_hw_queues = nr_hw_queues;
2325 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2326 blk_mq_realloc_hw_ctxs(set, q);
2327
2328 if (q->nr_hw_queues > 1)
2329 blk_queue_make_request(q, blk_mq_make_request);
2330 else
2331 blk_queue_make_request(q, blk_sq_make_request);
2332
2333 blk_mq_queue_reinit(q, cpu_online_mask);
2334 }
2335
2336 list_for_each_entry(q, &set->tag_list, tag_set_list)
2337 blk_mq_unfreeze_queue(q);
2338}
2339EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2340
Jens Axboe676141e2014-03-20 13:29:18 -06002341void blk_mq_disable_hotplug(void)
2342{
2343 mutex_lock(&all_q_mutex);
2344}
2345
2346void blk_mq_enable_hotplug(void)
2347{
2348 mutex_unlock(&all_q_mutex);
2349}
2350
Jens Axboe320ae512013-10-24 09:20:05 +01002351static int __init blk_mq_init(void)
2352{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002353 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2354 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002355
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002356 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2357 blk_mq_queue_reinit_prepare,
2358 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002359 return 0;
2360}
2361subsys_initcall(blk_mq_init);