blob: 81caceb96c3c1c444f82b0eaa389084b39f7308d [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,
Mike Christiecc6e3b12016-06-05 14:32:12 -0500142 struct request *rq, int op,
143 unsigned int op_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100144{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700145 if (blk_queue_io_stat(q))
Mike Christiecc6e3b12016-06-05 14:32:12 -0500146 op_flags |= REQ_IO_STAT;
Jens Axboe94eddfb2013-11-19 09:25:07 -0700147
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200148 INIT_LIST_HEAD(&rq->queuelist);
149 /* csd/requeue_work/fifo_time is initialized before use */
150 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100151 rq->mq_ctx = ctx;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500152 req_set_op_attrs(rq, op, op_flags);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200153 /* do not touch atomic flags, it needs atomic ops against the timer */
154 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200155 INIT_HLIST_NODE(&rq->hash);
156 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200157 rq->rq_disk = NULL;
158 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600159 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200160#ifdef CONFIG_BLK_CGROUP
161 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700162 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200163 rq->io_start_time_ns = 0;
164#endif
165 rq->nr_phys_segments = 0;
166#if defined(CONFIG_BLK_DEV_INTEGRITY)
167 rq->nr_integrity_segments = 0;
168#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200169 rq->special = NULL;
170 /* tag was already set */
171 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200172
Tony Battersby6f4a16262014-08-22 15:53:39 -0400173 rq->cmd = rq->__cmd;
174
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200175 rq->extra_len = 0;
176 rq->sense_len = 0;
177 rq->resid_len = 0;
178 rq->sense = NULL;
179
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600181 rq->timeout = 0;
182
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200183 rq->end_io = NULL;
184 rq->end_io_data = NULL;
185 rq->next_rq = NULL;
186
Mike Christied9d8c5c2016-06-05 14:32:16 -0500187 ctx->rq_dispatched[rw_is_sync(op, op_flags)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100188}
189
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200190static struct request *
Mike Christiecc6e3b12016-06-05 14:32:12 -0500191__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int op, int op_flags)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200192{
193 struct request *rq;
194 unsigned int tag;
195
Ming Leicb96a422014-06-01 00:43:37 +0800196 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200197 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800198 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200199
Ming Leicb96a422014-06-01 00:43:37 +0800200 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200201 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800202 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200203 }
204
205 rq->tag = tag;
Mike Christiecc6e3b12016-06-05 14:32:12 -0500206 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op, op_flags);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200207 return rq;
208 }
209
210 return NULL;
211}
212
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100213struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
214 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100215{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200216 struct blk_mq_ctx *ctx;
217 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100218 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800219 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600220 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100221
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100222 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600223 if (ret)
224 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100225
Christoph Hellwigd8525642014-05-27 20:59:50 +0200226 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200227 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100228 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -0500229 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200230 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600231
Keith Buschc76541a2014-12-19 17:54:13 -0700232 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400233 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600234 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700235 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200236
237 rq->__data_len = 0;
238 rq->__sector = (sector_t) -1;
239 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100240 return rq;
241}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600242EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100243
Ming Lin1f5bd332016-06-13 16:45:21 +0200244struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
245 unsigned int flags, unsigned int hctx_idx)
246{
247 struct blk_mq_hw_ctx *hctx;
248 struct blk_mq_ctx *ctx;
249 struct request *rq;
250 struct blk_mq_alloc_data alloc_data;
251 int ret;
252
253 /*
254 * If the tag allocator sleeps we could get an allocation for a
255 * different hardware context. No need to complicate the low level
256 * allocator for this for the rare use case of a command tied to
257 * a specific queue.
258 */
259 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
260 return ERR_PTR(-EINVAL);
261
262 if (hctx_idx >= q->nr_hw_queues)
263 return ERR_PTR(-EIO);
264
265 ret = blk_queue_enter(q, true);
266 if (ret)
267 return ERR_PTR(ret);
268
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600269 /*
270 * Check if the hardware context is actually mapped to anything.
271 * If not tell the caller that it should skip this queue.
272 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200273 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600274 if (!blk_mq_hw_queue_mapped(hctx)) {
275 ret = -EXDEV;
276 goto out_queue_exit;
277 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200278 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
279
280 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
281 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
282 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600283 ret = -EWOULDBLOCK;
284 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200285 }
286
287 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600288
289out_queue_exit:
290 blk_queue_exit(q);
291 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200292}
293EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
294
Jens Axboe320ae512013-10-24 09:20:05 +0100295static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
296 struct blk_mq_ctx *ctx, struct request *rq)
297{
298 const int tag = rq->tag;
299 struct request_queue *q = rq->q;
300
Jens Axboe0d2602c2014-05-13 15:10:52 -0600301 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
302 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200303 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600304
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200305 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700306 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400307 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100308}
309
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700310void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100311{
312 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700313
314 ctx->rq_completed[rq_is_sync(rq)]++;
315 __blk_mq_free_request(hctx, ctx, rq);
316
317}
318EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
319
320void blk_mq_free_request(struct request *rq)
321{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200322 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100323}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700324EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100325
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700326inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100327{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700328 blk_account_io_done(rq);
329
Christoph Hellwig91b63632014-04-16 09:44:53 +0200330 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100331 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200332 } else {
333 if (unlikely(blk_bidi_rq(rq)))
334 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100335 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200336 }
Jens Axboe320ae512013-10-24 09:20:05 +0100337}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700338EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200339
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700340void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200341{
342 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
343 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700344 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200345}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700346EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100347
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800348static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100349{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800350 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100351
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800352 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100353}
354
Jens Axboeed851862014-05-30 21:20:50 -0600355static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100356{
357 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700358 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100359 int cpu;
360
Christoph Hellwig38535202014-04-25 02:32:53 -0700361 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800362 rq->q->softirq_done_fn(rq);
363 return;
364 }
Jens Axboe320ae512013-10-24 09:20:05 +0100365
366 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700367 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
368 shared = cpus_share_cache(cpu, ctx->cpu);
369
370 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800371 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800372 rq->csd.info = rq;
373 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100374 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800375 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800376 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800377 }
Jens Axboe320ae512013-10-24 09:20:05 +0100378 put_cpu();
379}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800380
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700381static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600382{
383 struct request_queue *q = rq->q;
384
385 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700386 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600387 else
388 blk_mq_ipi_complete_request(rq);
389}
390
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800391/**
392 * blk_mq_complete_request - end I/O on a request
393 * @rq: the request being processed
394 *
395 * Description:
396 * Ends all I/O on a request. It does not handle partial completions.
397 * The actual completion happens out-of-order, through a IPI handler.
398 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200399void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800400{
Jens Axboe95f09682014-05-27 17:46:48 -0600401 struct request_queue *q = rq->q;
402
403 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800404 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200405 if (!blk_mark_rq_complete(rq)) {
406 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600407 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200408 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800409}
410EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100411
Keith Busch973c0192015-01-07 18:55:43 -0700412int blk_mq_request_started(struct request *rq)
413{
414 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
415}
416EXPORT_SYMBOL_GPL(blk_mq_request_started);
417
Christoph Hellwige2490072014-09-13 16:40:09 -0700418void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100419{
420 struct request_queue *q = rq->q;
421
422 trace_block_rq_issue(q, rq);
423
Christoph Hellwig742ee692014-04-14 10:30:06 +0200424 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200425 if (unlikely(blk_bidi_rq(rq)))
426 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200427
Ming Lei2b8393b2014-06-10 00:16:41 +0800428 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600429
430 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600431 * Ensure that ->deadline is visible before set the started
432 * flag and clear the completed flag.
433 */
434 smp_mb__before_atomic();
435
436 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600437 * Mark us as started and clear complete. Complete might have been
438 * set if requeue raced with timeout, which then marked it as
439 * complete. So be sure to clear complete again when we start
440 * the request, otherwise we'll ignore the completion event.
441 */
Jens Axboe4b570522014-05-29 11:00:11 -0600442 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
443 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
444 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
445 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800446
447 if (q->dma_drain_size && blk_rq_bytes(rq)) {
448 /*
449 * Make sure space for the drain appears. We know we can do
450 * this because max_hw_segments has been adjusted to be one
451 * fewer than the device can handle.
452 */
453 rq->nr_phys_segments++;
454 }
Jens Axboe320ae512013-10-24 09:20:05 +0100455}
Christoph Hellwige2490072014-09-13 16:40:09 -0700456EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100457
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200458static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100459{
460 struct request_queue *q = rq->q;
461
462 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800463
Christoph Hellwige2490072014-09-13 16:40:09 -0700464 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
465 if (q->dma_drain_size && blk_rq_bytes(rq))
466 rq->nr_phys_segments--;
467 }
Jens Axboe320ae512013-10-24 09:20:05 +0100468}
469
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200470void blk_mq_requeue_request(struct request *rq)
471{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200472 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200473
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200474 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600475 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200476}
477EXPORT_SYMBOL(blk_mq_requeue_request);
478
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600479static void blk_mq_requeue_work(struct work_struct *work)
480{
481 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400482 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600483 LIST_HEAD(rq_list);
484 struct request *rq, *next;
485 unsigned long flags;
486
487 spin_lock_irqsave(&q->requeue_lock, flags);
488 list_splice_init(&q->requeue_list, &rq_list);
489 spin_unlock_irqrestore(&q->requeue_lock, flags);
490
491 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
492 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
493 continue;
494
495 rq->cmd_flags &= ~REQ_SOFTBARRIER;
496 list_del_init(&rq->queuelist);
497 blk_mq_insert_request(rq, true, false, false);
498 }
499
500 while (!list_empty(&rq_list)) {
501 rq = list_entry(rq_list.next, struct request, queuelist);
502 list_del_init(&rq->queuelist);
503 blk_mq_insert_request(rq, false, false, false);
504 }
505
Jens Axboe8b957412014-09-19 13:10:29 -0600506 /*
507 * Use the start variant of queue running here, so that running
508 * the requeue work will kick stopped queues.
509 */
510 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600511}
512
513void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
514{
515 struct request_queue *q = rq->q;
516 unsigned long flags;
517
518 /*
519 * We abuse this flag that is otherwise used by the I/O scheduler to
520 * request head insertation from the workqueue.
521 */
522 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
523
524 spin_lock_irqsave(&q->requeue_lock, flags);
525 if (at_head) {
526 rq->cmd_flags |= REQ_SOFTBARRIER;
527 list_add(&rq->queuelist, &q->requeue_list);
528 } else {
529 list_add_tail(&rq->queuelist, &q->requeue_list);
530 }
531 spin_unlock_irqrestore(&q->requeue_lock, flags);
532}
533EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
534
Keith Buschc68ed592015-01-07 18:55:44 -0700535void blk_mq_cancel_requeue_work(struct request_queue *q)
536{
Mike Snitzer28494502016-09-14 13:28:30 -0400537 cancel_delayed_work_sync(&q->requeue_work);
Keith Buschc68ed592015-01-07 18:55:44 -0700538}
539EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
540
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600541void blk_mq_kick_requeue_list(struct request_queue *q)
542{
Mike Snitzer28494502016-09-14 13:28:30 -0400543 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600544}
545EXPORT_SYMBOL(blk_mq_kick_requeue_list);
546
Mike Snitzer28494502016-09-14 13:28:30 -0400547void blk_mq_delay_kick_requeue_list(struct request_queue *q,
548 unsigned long msecs)
549{
550 kblockd_schedule_delayed_work(&q->requeue_work,
551 msecs_to_jiffies(msecs));
552}
553EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
554
Jens Axboe1885b242015-01-07 18:55:45 -0700555void blk_mq_abort_requeue_list(struct request_queue *q)
556{
557 unsigned long flags;
558 LIST_HEAD(rq_list);
559
560 spin_lock_irqsave(&q->requeue_lock, flags);
561 list_splice_init(&q->requeue_list, &rq_list);
562 spin_unlock_irqrestore(&q->requeue_lock, flags);
563
564 while (!list_empty(&rq_list)) {
565 struct request *rq;
566
567 rq = list_first_entry(&rq_list, struct request, queuelist);
568 list_del_init(&rq->queuelist);
569 rq->errors = -EIO;
570 blk_mq_end_request(rq, rq->errors);
571 }
572}
573EXPORT_SYMBOL(blk_mq_abort_requeue_list);
574
Jens Axboe0e62f512014-06-04 10:23:49 -0600575struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
576{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600577 if (tag < tags->nr_tags) {
578 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700579 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600580 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700581
582 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600583}
584EXPORT_SYMBOL(blk_mq_tag_to_rq);
585
Jens Axboe320ae512013-10-24 09:20:05 +0100586struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700587 unsigned long next;
588 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100589};
590
Christoph Hellwig90415832014-09-22 10:21:48 -0600591void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100592{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700593 struct blk_mq_ops *ops = req->q->mq_ops;
594 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600595
596 /*
597 * We know that complete is set at this point. If STARTED isn't set
598 * anymore, then the request isn't active and the "timeout" should
599 * just be ignored. This can happen due to the bitflag ordering.
600 * Timeout first checks if STARTED is set, and if it is, assumes
601 * the request is active. But if we race with completion, then
602 * we both flags will get cleared. So check here again, and ignore
603 * a timeout event with a request that isn't active.
604 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700605 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
606 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600607
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700608 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700609 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600610
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700611 switch (ret) {
612 case BLK_EH_HANDLED:
613 __blk_mq_complete_request(req);
614 break;
615 case BLK_EH_RESET_TIMER:
616 blk_add_timer(req);
617 blk_clear_rq_complete(req);
618 break;
619 case BLK_EH_NOT_HANDLED:
620 break;
621 default:
622 printk(KERN_ERR "block: bad eh return: %d\n", ret);
623 break;
624 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600625}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700626
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700627static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
628 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100629{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700630 struct blk_mq_timeout_data *data = priv;
631
Keith Buscheb130db2015-01-08 08:59:53 -0700632 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
633 /*
634 * If a request wasn't started before the queue was
635 * marked dying, kill it here or it'll go unnoticed.
636 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700637 if (unlikely(blk_queue_dying(rq->q))) {
638 rq->errors = -EIO;
639 blk_mq_end_request(rq, rq->errors);
640 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700641 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700642 }
Jens Axboe320ae512013-10-24 09:20:05 +0100643
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700644 if (time_after_eq(jiffies, rq->deadline)) {
645 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700646 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700647 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
648 data->next = rq->deadline;
649 data->next_set = 1;
650 }
Jens Axboe320ae512013-10-24 09:20:05 +0100651}
652
Christoph Hellwig287922e2015-10-30 20:57:30 +0800653static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100654{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800655 struct request_queue *q =
656 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700657 struct blk_mq_timeout_data data = {
658 .next = 0,
659 .next_set = 0,
660 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700661 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100662
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600663 /* A deadlock might occur if a request is stuck requiring a
664 * timeout at the same time a queue freeze is waiting
665 * completion, since the timeout code would not be able to
666 * acquire the queue reference here.
667 *
668 * That's why we don't use blk_queue_enter here; instead, we use
669 * percpu_ref_tryget directly, because we need to be able to
670 * obtain a reference even in the short window between the queue
671 * starting to freeze, by dropping the first reference in
672 * blk_mq_freeze_queue_start, and the moment the last request is
673 * consumed, marked by the instant q_usage_counter reaches
674 * zero.
675 */
676 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800677 return;
678
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200679 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100680
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700681 if (data.next_set) {
682 data.next = blk_rq_timeout(round_jiffies_up(data.next));
683 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600684 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200685 struct blk_mq_hw_ctx *hctx;
686
Ming Leif054b562015-04-21 10:00:19 +0800687 queue_for_each_hw_ctx(q, hctx, i) {
688 /* the hctx may be unmapped, so check it here */
689 if (blk_mq_hw_queue_mapped(hctx))
690 blk_mq_tag_idle(hctx);
691 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600692 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800693 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100694}
695
696/*
697 * Reverse check our software queue for entries that we could potentially
698 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
699 * too much time checking for merges.
700 */
701static bool blk_mq_attempt_merge(struct request_queue *q,
702 struct blk_mq_ctx *ctx, struct bio *bio)
703{
704 struct request *rq;
705 int checked = 8;
706
707 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
708 int el_ret;
709
710 if (!checked--)
711 break;
712
713 if (!blk_rq_merge_ok(rq, bio))
714 continue;
715
716 el_ret = blk_try_merge(rq, bio);
717 if (el_ret == ELEVATOR_BACK_MERGE) {
718 if (bio_attempt_back_merge(q, rq, bio)) {
719 ctx->rq_merged++;
720 return true;
721 }
722 break;
723 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
724 if (bio_attempt_front_merge(q, rq, bio)) {
725 ctx->rq_merged++;
726 return true;
727 }
728 break;
729 }
730 }
731
732 return false;
733}
734
Omar Sandoval88459642016-09-17 08:38:44 -0600735struct flush_busy_ctx_data {
736 struct blk_mq_hw_ctx *hctx;
737 struct list_head *list;
738};
739
740static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
741{
742 struct flush_busy_ctx_data *flush_data = data;
743 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
744 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
745
746 sbitmap_clear_bit(sb, bitnr);
747 spin_lock(&ctx->lock);
748 list_splice_tail_init(&ctx->rq_list, flush_data->list);
749 spin_unlock(&ctx->lock);
750 return true;
751}
752
Jens Axboe320ae512013-10-24 09:20:05 +0100753/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600754 * Process software queues that have been marked busy, splicing them
755 * to the for-dispatch
756 */
757static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
758{
Omar Sandoval88459642016-09-17 08:38:44 -0600759 struct flush_busy_ctx_data data = {
760 .hctx = hctx,
761 .list = list,
762 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600763
Omar Sandoval88459642016-09-17 08:38:44 -0600764 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600765}
Jens Axboe1429d7c2014-05-19 09:23:55 -0600766
Jens Axboe703fd1c2016-09-16 13:59:14 -0600767static inline unsigned int queued_to_index(unsigned int queued)
768{
769 if (!queued)
770 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600771
Jens Axboe703fd1c2016-09-16 13:59:14 -0600772 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600773}
774
775/*
Jens Axboe320ae512013-10-24 09:20:05 +0100776 * Run this hardware queue, pulling any software queues mapped to it in.
777 * Note that this function currently has various problems around ordering
778 * of IO. In particular, we'd like FIFO behaviour on handling existing
779 * items on the hctx->dispatch list. Ignore that for now.
780 */
781static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
782{
783 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100784 struct request *rq;
785 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600786 LIST_HEAD(driver_list);
787 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600788 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100789
Jens Axboe5d12f902014-03-19 15:25:02 -0600790 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100791 return;
792
Jens Axboe0e87e582016-08-24 15:38:01 -0600793 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
794 cpu_online(hctx->next_cpu));
795
Jens Axboe320ae512013-10-24 09:20:05 +0100796 hctx->run++;
797
798 /*
799 * Touch any software queue that has pending entries.
800 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600801 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100802
803 /*
804 * If we have previous entries on our dispatch list, grab them
805 * and stuff them at the front for more fair dispatch.
806 */
807 if (!list_empty_careful(&hctx->dispatch)) {
808 spin_lock(&hctx->lock);
809 if (!list_empty(&hctx->dispatch))
810 list_splice_init(&hctx->dispatch, &rq_list);
811 spin_unlock(&hctx->lock);
812 }
813
814 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600815 * Start off with dptr being NULL, so we start the first request
816 * immediately, even if we have more pending.
817 */
818 dptr = NULL;
819
820 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100821 * Now process all the entries, sending them to the driver.
822 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600823 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100824 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600825 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100826 int ret;
827
828 rq = list_first_entry(&rq_list, struct request, queuelist);
829 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100830
Jens Axboe74c45052014-10-29 11:14:52 -0600831 bd.rq = rq;
832 bd.list = dptr;
833 bd.last = list_empty(&rq_list);
834
835 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100836 switch (ret) {
837 case BLK_MQ_RQ_QUEUE_OK:
838 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700839 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100840 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100841 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200842 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100843 break;
844 default:
845 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100846 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800847 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700848 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100849 break;
850 }
851
852 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
853 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600854
855 /*
856 * We've done the first request. If we have more than 1
857 * left in the list, set dptr to defer issue.
858 */
859 if (!dptr && rq_list.next != rq_list.prev)
860 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100861 }
862
Jens Axboe703fd1c2016-09-16 13:59:14 -0600863 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100864
865 /*
866 * Any items that need requeuing? Stuff them into hctx->dispatch,
867 * that is where we will continue on next queue run.
868 */
869 if (!list_empty(&rq_list)) {
870 spin_lock(&hctx->lock);
871 list_splice(&rq_list, &hctx->dispatch);
872 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600873 /*
874 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
875 * it's possible the queue is stopped and restarted again
876 * before this. Queue restart will dispatch requests. And since
877 * requests in rq_list aren't added into hctx->dispatch yet,
878 * the requests in rq_list might get lost.
879 *
880 * blk_mq_run_hw_queue() already checks the STOPPED bit
881 **/
882 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100883 }
884}
885
Jens Axboe506e9312014-05-07 10:26:44 -0600886/*
887 * It'd be great if the workqueue API had a way to pass
888 * in a mask and had some smarts for more clever placement.
889 * For now we just round-robin here, switching for every
890 * BLK_MQ_CPU_WORK_BATCH queued items.
891 */
892static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
893{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100894 if (hctx->queue->nr_hw_queues == 1)
895 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600896
897 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazid9c19f92016-09-28 00:24:24 -0300898 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600899
900 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
901 if (next_cpu >= nr_cpu_ids)
902 next_cpu = cpumask_first(hctx->cpumask);
903
904 hctx->next_cpu = next_cpu;
905 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
906 }
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
1191struct blk_map_ctx {
1192 struct blk_mq_hw_ctx *hctx;
1193 struct blk_mq_ctx *ctx;
1194};
1195
1196static struct request *blk_mq_map_request(struct request_queue *q,
1197 struct bio *bio,
1198 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001199{
1200 struct blk_mq_hw_ctx *hctx;
1201 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001202 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001203 int op = bio_data_dir(bio);
1204 int op_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +08001205 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001206
Dan Williams3ef28e82015-10-21 13:20:12 -04001207 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001208 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001209 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001210
Jens Axboe1eff9d32016-08-05 15:35:16 -06001211 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001212 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001213
Mike Christiecc6e3b12016-06-05 14:32:12 -05001214 trace_block_getrq(q, bio, op);
Christoph Hellwig63581af2016-09-22 11:38:23 -07001215 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001216 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Jens Axboe320ae512013-10-24 09:20:05 +01001217
Jens Axboe7fe31132016-10-27 09:49:19 -06001218 data->hctx = alloc_data.hctx;
1219 data->ctx = alloc_data.ctx;
1220 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001221 return rq;
1222}
1223
Jens Axboe7b371632015-11-05 10:41:40 -07001224static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001225{
1226 int ret;
1227 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001228 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Shaohua Lif984df12015-05-08 10:51:32 -07001229 struct blk_mq_queue_data bd = {
1230 .rq = rq,
1231 .list = NULL,
1232 .last = 1
1233 };
Jens Axboe7b371632015-11-05 10:41:40 -07001234 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001235
1236 /*
1237 * For OK queue, we are done. For error, kill it. Any other
1238 * error (busy), just add it to our list as we previously
1239 * would have done
1240 */
1241 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001242 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1243 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001244 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001245 }
Jens Axboe7b371632015-11-05 10:41:40 -07001246
1247 __blk_mq_requeue_request(rq);
1248
1249 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1250 *cookie = BLK_QC_T_NONE;
1251 rq->errors = -EIO;
1252 blk_mq_end_request(rq, rq->errors);
1253 return 0;
1254 }
1255
1256 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001257}
1258
Jens Axboe07068d52014-05-22 10:40:51 -06001259/*
1260 * Multiple hardware queue variant. This will not use per-process plugs,
1261 * but will attempt to bypass the hctx queueing if we can go straight to
1262 * hardware for SYNC IO.
1263 */
Jens Axboedece1632015-11-05 10:41:16 -07001264static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001265{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001266 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1267 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001268 struct blk_map_ctx data;
1269 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001270 unsigned int request_count = 0;
1271 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001272 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001273 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001274
1275 blk_queue_bounce(q, &bio);
1276
1277 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001278 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001279 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001280 }
1281
Kent Overstreet54efd502015-04-23 22:37:18 -07001282 blk_queue_split(q, &bio, q->bio_split);
1283
Omar Sandoval87c279e2016-06-01 22:18:48 -07001284 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1285 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1286 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001287
Jens Axboe07068d52014-05-22 10:40:51 -06001288 rq = blk_mq_map_request(q, bio, &data);
1289 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001290 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001291
Jens Axboe7b371632015-11-05 10:41:40 -07001292 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001293
1294 if (unlikely(is_flush_fua)) {
1295 blk_mq_bio_to_request(rq, bio);
1296 blk_insert_flush(rq);
1297 goto run_queue;
1298 }
1299
Shaohua Lif984df12015-05-08 10:51:32 -07001300 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001301 /*
1302 * If the driver supports defer issued based on 'last', then
1303 * queue it up like normal since we can potentially save some
1304 * CPU this way.
1305 */
Shaohua Lif984df12015-05-08 10:51:32 -07001306 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1307 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1308 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001309
1310 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001311
1312 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001313 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001314 * Otherwise the existing request in the plug list will be
1315 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001316 */
Shaohua Lif984df12015-05-08 10:51:32 -07001317 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001318 /*
1319 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001320 * happens, same_queue_rq is invalid and plug list is
1321 * empty
1322 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001323 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1324 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001325 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001326 }
Shaohua Lif984df12015-05-08 10:51:32 -07001327 list_add_tail(&rq->queuelist, &plug->mq_list);
1328 } else /* is_sync */
1329 old_rq = rq;
1330 blk_mq_put_ctx(data.ctx);
1331 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001332 goto done;
Bart Van Assche67b00692016-10-28 17:18:48 -07001333 if (test_bit(BLK_MQ_S_STOPPED, &data.hctx->state) ||
1334 blk_mq_direct_issue_request(old_rq, &cookie) != 0)
1335 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001336 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001337 }
1338
1339 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1340 /*
1341 * For a SYNC request, send it to the hardware immediately. For
1342 * an ASYNC request, just ensure that we run it later on. The
1343 * latter allows for merging opportunities and more efficient
1344 * dispatching.
1345 */
1346run_queue:
1347 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1348 }
Jens Axboe07068d52014-05-22 10:40:51 -06001349 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001350done:
1351 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001352}
1353
1354/*
1355 * Single hardware queue variant. This will attempt to use any per-process
1356 * plug for merging and IO deferral.
1357 */
Jens Axboedece1632015-11-05 10:41:16 -07001358static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001359{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001360 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1361 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001362 struct blk_plug *plug;
1363 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001364 struct blk_map_ctx data;
1365 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001366 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001367
Jens Axboe07068d52014-05-22 10:40:51 -06001368 blk_queue_bounce(q, &bio);
1369
1370 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001371 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001372 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001373 }
1374
Kent Overstreet54efd502015-04-23 22:37:18 -07001375 blk_queue_split(q, &bio, q->bio_split);
1376
Omar Sandoval87c279e2016-06-01 22:18:48 -07001377 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1378 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1379 return BLK_QC_T_NONE;
1380 } else
1381 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001382
1383 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001384 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001385 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001386
Jens Axboe7b371632015-11-05 10:41:40 -07001387 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001388
1389 if (unlikely(is_flush_fua)) {
1390 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001391 blk_insert_flush(rq);
1392 goto run_queue;
1393 }
1394
1395 /*
1396 * A task plug currently exists. Since this is completely lockless,
1397 * utilize that to temporarily store requests until the task is
1398 * either done or scheduled away.
1399 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001400 plug = current->plug;
1401 if (plug) {
1402 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001403 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001404 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001405
1406 blk_mq_put_ctx(data.ctx);
1407
1408 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001409 blk_flush_plug_list(plug, false);
1410 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001411 }
Jens Axboeb094f892015-11-20 20:29:45 -07001412
Jeff Moyere6c44382015-05-08 10:51:30 -07001413 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001414 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001415 }
1416
Jens Axboe07068d52014-05-22 10:40:51 -06001417 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1418 /*
1419 * For a SYNC request, send it to the hardware immediately. For
1420 * an ASYNC request, just ensure that we run it later on. The
1421 * latter allows for merging opportunities and more efficient
1422 * dispatching.
1423 */
1424run_queue:
1425 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001426 }
1427
Jens Axboe07068d52014-05-22 10:40:51 -06001428 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001429 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001430}
1431
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001432static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1433 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001434{
1435 struct page *page;
1436
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001437 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001438 int i;
1439
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001440 for (i = 0; i < tags->nr_tags; i++) {
1441 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001442 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001443 set->ops->exit_request(set->driver_data, tags->rqs[i],
1444 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001445 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001446 }
1447 }
1448
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001449 while (!list_empty(&tags->page_list)) {
1450 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001451 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001452 /*
1453 * Remove kmemleak object previously allocated in
1454 * blk_mq_init_rq_map().
1455 */
1456 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001457 __free_pages(page, page->private);
1458 }
1459
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001460 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001461
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001462 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001463}
1464
1465static size_t order_to_size(unsigned int order)
1466{
Ming Lei4ca08502014-04-19 18:00:18 +08001467 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001468}
1469
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001470static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1471 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001472{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001473 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001474 unsigned int i, j, entries_per_page, max_order = 4;
1475 size_t rq_size, left;
1476
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001477 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001478 set->numa_node,
1479 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001480 if (!tags)
1481 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001482
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001483 INIT_LIST_HEAD(&tags->page_list);
1484
Jens Axboea5164402014-09-10 09:02:03 -06001485 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1486 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1487 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001488 if (!tags->rqs) {
1489 blk_mq_free_tags(tags);
1490 return NULL;
1491 }
Jens Axboe320ae512013-10-24 09:20:05 +01001492
1493 /*
1494 * rq_size is the size of the request plus driver payload, rounded
1495 * to the cacheline size
1496 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001497 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001498 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001499 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001500
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001501 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001502 int this_order = max_order;
1503 struct page *page;
1504 int to_do;
1505 void *p;
1506
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001507 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001508 this_order--;
1509
1510 do {
Jens Axboea5164402014-09-10 09:02:03 -06001511 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001512 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001513 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001514 if (page)
1515 break;
1516 if (!this_order--)
1517 break;
1518 if (order_to_size(this_order) < rq_size)
1519 break;
1520 } while (1);
1521
1522 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001523 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001524
1525 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001526 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001527
1528 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001529 /*
1530 * Allow kmemleak to scan these pages as they contain pointers
1531 * to additional allocations like via ops->init_request().
1532 */
1533 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001534 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001535 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001536 left -= to_do * rq_size;
1537 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001538 tags->rqs[i] = p;
1539 if (set->ops->init_request) {
1540 if (set->ops->init_request(set->driver_data,
1541 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001542 set->numa_node)) {
1543 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001544 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001545 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001546 }
1547
Jens Axboe320ae512013-10-24 09:20:05 +01001548 p += rq_size;
1549 i++;
1550 }
1551 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001552 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001553
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001554fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001555 blk_mq_free_rq_map(set, tags, hctx_idx);
1556 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001557}
1558
Jens Axboee57690f2016-08-24 15:34:35 -06001559/*
1560 * 'cpu' is going away. splice any existing rq_list entries from this
1561 * software queue to the hw queue dispatch list, and ensure that it
1562 * gets run.
1563 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001564static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001565{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001566 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001567 struct blk_mq_ctx *ctx;
1568 LIST_HEAD(tmp);
1569
Thomas Gleixner9467f852016-09-22 08:05:17 -06001570 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001571 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001572
1573 spin_lock(&ctx->lock);
1574 if (!list_empty(&ctx->rq_list)) {
1575 list_splice_init(&ctx->rq_list, &tmp);
1576 blk_mq_hctx_clear_pending(hctx, ctx);
1577 }
1578 spin_unlock(&ctx->lock);
1579
1580 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001581 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001582
Jens Axboee57690f2016-08-24 15:34:35 -06001583 spin_lock(&hctx->lock);
1584 list_splice_tail_init(&tmp, &hctx->dispatch);
1585 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001586
1587 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001588 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001589}
1590
Thomas Gleixner9467f852016-09-22 08:05:17 -06001591static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001592{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001593 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1594 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001595}
1596
Ming Leic3b4afc2015-06-04 22:25:04 +08001597/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001598static void blk_mq_exit_hctx(struct request_queue *q,
1599 struct blk_mq_tag_set *set,
1600 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1601{
Ming Leif70ced02014-09-25 23:23:47 +08001602 unsigned flush_start_tag = set->queue_depth;
1603
Ming Lei08e98fc2014-09-25 23:23:38 +08001604 blk_mq_tag_idle(hctx);
1605
Ming Leif70ced02014-09-25 23:23:47 +08001606 if (set->ops->exit_request)
1607 set->ops->exit_request(set->driver_data,
1608 hctx->fq->flush_rq, hctx_idx,
1609 flush_start_tag + hctx_idx);
1610
Ming Lei08e98fc2014-09-25 23:23:38 +08001611 if (set->ops->exit_hctx)
1612 set->ops->exit_hctx(hctx, hctx_idx);
1613
Thomas Gleixner9467f852016-09-22 08:05:17 -06001614 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001615 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001616 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001617}
1618
Ming Lei624dbe42014-05-27 23:35:13 +08001619static void blk_mq_exit_hw_queues(struct request_queue *q,
1620 struct blk_mq_tag_set *set, int nr_queue)
1621{
1622 struct blk_mq_hw_ctx *hctx;
1623 unsigned int i;
1624
1625 queue_for_each_hw_ctx(q, hctx, i) {
1626 if (i == nr_queue)
1627 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001628 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001629 }
Ming Lei624dbe42014-05-27 23:35:13 +08001630}
1631
1632static void blk_mq_free_hw_queues(struct request_queue *q,
1633 struct blk_mq_tag_set *set)
1634{
1635 struct blk_mq_hw_ctx *hctx;
1636 unsigned int i;
1637
Ming Leie09aae72015-01-29 20:17:27 +08001638 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001639 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001640}
1641
Ming Lei08e98fc2014-09-25 23:23:38 +08001642static int blk_mq_init_hctx(struct request_queue *q,
1643 struct blk_mq_tag_set *set,
1644 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1645{
1646 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001647 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001648
1649 node = hctx->numa_node;
1650 if (node == NUMA_NO_NODE)
1651 node = hctx->numa_node = set->numa_node;
1652
Jens Axboe27489a32016-08-24 15:54:25 -06001653 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001654 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1655 spin_lock_init(&hctx->lock);
1656 INIT_LIST_HEAD(&hctx->dispatch);
1657 hctx->queue = q;
1658 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001659 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001660
Thomas Gleixner9467f852016-09-22 08:05:17 -06001661 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001662
1663 hctx->tags = set->tags[hctx_idx];
1664
1665 /*
1666 * Allocate space for all possible cpus to avoid allocation at
1667 * runtime
1668 */
1669 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1670 GFP_KERNEL, node);
1671 if (!hctx->ctxs)
1672 goto unregister_cpu_notifier;
1673
Omar Sandoval88459642016-09-17 08:38:44 -06001674 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1675 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001676 goto free_ctxs;
1677
1678 hctx->nr_ctx = 0;
1679
1680 if (set->ops->init_hctx &&
1681 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1682 goto free_bitmap;
1683
Ming Leif70ced02014-09-25 23:23:47 +08001684 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1685 if (!hctx->fq)
1686 goto exit_hctx;
1687
1688 if (set->ops->init_request &&
1689 set->ops->init_request(set->driver_data,
1690 hctx->fq->flush_rq, hctx_idx,
1691 flush_start_tag + hctx_idx, node))
1692 goto free_fq;
1693
Ming Lei08e98fc2014-09-25 23:23:38 +08001694 return 0;
1695
Ming Leif70ced02014-09-25 23:23:47 +08001696 free_fq:
1697 kfree(hctx->fq);
1698 exit_hctx:
1699 if (set->ops->exit_hctx)
1700 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001701 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001702 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001703 free_ctxs:
1704 kfree(hctx->ctxs);
1705 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001706 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001707 return -1;
1708}
1709
Jens Axboe320ae512013-10-24 09:20:05 +01001710static void blk_mq_init_cpu_queues(struct request_queue *q,
1711 unsigned int nr_hw_queues)
1712{
1713 unsigned int i;
1714
1715 for_each_possible_cpu(i) {
1716 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1717 struct blk_mq_hw_ctx *hctx;
1718
1719 memset(__ctx, 0, sizeof(*__ctx));
1720 __ctx->cpu = i;
1721 spin_lock_init(&__ctx->lock);
1722 INIT_LIST_HEAD(&__ctx->rq_list);
1723 __ctx->queue = q;
1724
1725 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001726 if (!cpu_online(i))
1727 continue;
1728
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001729 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001730
Jens Axboe320ae512013-10-24 09:20:05 +01001731 /*
1732 * Set local node, IFF we have more than one hw queue. If
1733 * not, we remain on the home node of the device
1734 */
1735 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301736 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001737 }
1738}
1739
Akinobu Mita57783222015-09-27 02:09:23 +09001740static void blk_mq_map_swqueue(struct request_queue *q,
1741 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001742{
1743 unsigned int i;
1744 struct blk_mq_hw_ctx *hctx;
1745 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001746 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001747
Akinobu Mita60de0742015-09-27 02:09:25 +09001748 /*
1749 * Avoid others reading imcomplete hctx->cpumask through sysfs
1750 */
1751 mutex_lock(&q->sysfs_lock);
1752
Jens Axboe320ae512013-10-24 09:20:05 +01001753 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001754 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001755 hctx->nr_ctx = 0;
1756 }
1757
1758 /*
1759 * Map software to hardware queues
1760 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001761 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001762 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001763 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001764 continue;
1765
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001766 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001767 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001768
Jens Axboee4043dc2014-04-09 10:18:23 -06001769 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001770 ctx->index_hw = hctx->nr_ctx;
1771 hctx->ctxs[hctx->nr_ctx++] = ctx;
1772 }
Jens Axboe506e9312014-05-07 10:26:44 -06001773
Akinobu Mita60de0742015-09-27 02:09:25 +09001774 mutex_unlock(&q->sysfs_lock);
1775
Jens Axboe506e9312014-05-07 10:26:44 -06001776 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001777 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001778 * If no software queues are mapped to this hardware queue,
1779 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001780 */
1781 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001782 if (set->tags[i]) {
1783 blk_mq_free_rq_map(set, set->tags[i], i);
1784 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001785 }
Ming Lei2a34c082015-04-21 10:00:20 +08001786 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001787 continue;
1788 }
1789
Ming Lei2a34c082015-04-21 10:00:20 +08001790 /* unmapped hw queue can be remapped after CPU topo changed */
1791 if (!set->tags[i])
1792 set->tags[i] = blk_mq_init_rq_map(set, i);
1793 hctx->tags = set->tags[i];
1794 WARN_ON(!hctx->tags);
1795
Jens Axboe484b4062014-05-21 14:01:15 -06001796 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001797 * Set the map size to the number of mapped software queues.
1798 * This is more accurate and more efficient than looping
1799 * over all possibly mapped software queues.
1800 */
Omar Sandoval88459642016-09-17 08:38:44 -06001801 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001802
1803 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001804 * Initialize batch roundrobin counts
1805 */
Jens Axboe506e9312014-05-07 10:26:44 -06001806 hctx->next_cpu = cpumask_first(hctx->cpumask);
1807 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1808 }
Jens Axboe320ae512013-10-24 09:20:05 +01001809}
1810
Jeff Moyer2404e602015-11-03 10:40:06 -05001811static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001812{
1813 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001814 int i;
1815
Jeff Moyer2404e602015-11-03 10:40:06 -05001816 queue_for_each_hw_ctx(q, hctx, i) {
1817 if (shared)
1818 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1819 else
1820 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1821 }
1822}
1823
1824static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1825{
1826 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001827
1828 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1829 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001830 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001831 blk_mq_unfreeze_queue(q);
1832 }
1833}
1834
1835static void blk_mq_del_queue_tag_set(struct request_queue *q)
1836{
1837 struct blk_mq_tag_set *set = q->tag_set;
1838
Jens Axboe0d2602c2014-05-13 15:10:52 -06001839 mutex_lock(&set->tag_list_lock);
1840 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001841 if (list_is_singular(&set->tag_list)) {
1842 /* just transitioned to unshared */
1843 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1844 /* update existing queue */
1845 blk_mq_update_tag_set_depth(set, false);
1846 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001847 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001848}
1849
1850static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1851 struct request_queue *q)
1852{
1853 q->tag_set = set;
1854
1855 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001856
1857 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1858 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1859 set->flags |= BLK_MQ_F_TAG_SHARED;
1860 /* update existing queue */
1861 blk_mq_update_tag_set_depth(set, true);
1862 }
1863 if (set->flags & BLK_MQ_F_TAG_SHARED)
1864 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001865 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001866
Jens Axboe0d2602c2014-05-13 15:10:52 -06001867 mutex_unlock(&set->tag_list_lock);
1868}
1869
Ming Leie09aae72015-01-29 20:17:27 +08001870/*
1871 * It is the actual release handler for mq, but we do it from
1872 * request queue's release handler for avoiding use-after-free
1873 * and headache because q->mq_kobj shouldn't have been introduced,
1874 * but we can't group ctx/kctx kobj without it.
1875 */
1876void blk_mq_release(struct request_queue *q)
1877{
1878 struct blk_mq_hw_ctx *hctx;
1879 unsigned int i;
1880
1881 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001882 queue_for_each_hw_ctx(q, hctx, i) {
1883 if (!hctx)
1884 continue;
1885 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001886 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001887 }
Ming Leie09aae72015-01-29 20:17:27 +08001888
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001889 q->mq_map = NULL;
1890
Ming Leie09aae72015-01-29 20:17:27 +08001891 kfree(q->queue_hw_ctx);
1892
1893 /* ctx kobj stays in queue_ctx */
1894 free_percpu(q->queue_ctx);
1895}
1896
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001897struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001898{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001899 struct request_queue *uninit_q, *q;
1900
1901 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1902 if (!uninit_q)
1903 return ERR_PTR(-ENOMEM);
1904
1905 q = blk_mq_init_allocated_queue(set, uninit_q);
1906 if (IS_ERR(q))
1907 blk_cleanup_queue(uninit_q);
1908
1909 return q;
1910}
1911EXPORT_SYMBOL(blk_mq_init_queue);
1912
Keith Busch868f2f02015-12-17 17:08:14 -07001913static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1914 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001915{
Keith Busch868f2f02015-12-17 17:08:14 -07001916 int i, j;
1917 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001918
Keith Busch868f2f02015-12-17 17:08:14 -07001919 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001920 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001921 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001922
Keith Busch868f2f02015-12-17 17:08:14 -07001923 if (hctxs[i])
1924 continue;
1925
1926 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001927 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1928 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001929 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07001930 break;
Jens Axboe320ae512013-10-24 09:20:05 +01001931
Jens Axboea86073e2014-10-13 15:41:54 -06001932 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07001933 node)) {
1934 kfree(hctxs[i]);
1935 hctxs[i] = NULL;
1936 break;
1937 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001938
Jens Axboe0d2602c2014-05-13 15:10:52 -06001939 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001940 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001941 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07001942
1943 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
1944 free_cpumask_var(hctxs[i]->cpumask);
1945 kfree(hctxs[i]);
1946 hctxs[i] = NULL;
1947 break;
1948 }
1949 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001950 }
Keith Busch868f2f02015-12-17 17:08:14 -07001951 for (j = i; j < q->nr_hw_queues; j++) {
1952 struct blk_mq_hw_ctx *hctx = hctxs[j];
1953
1954 if (hctx) {
1955 if (hctx->tags) {
1956 blk_mq_free_rq_map(set, hctx->tags, j);
1957 set->tags[j] = NULL;
1958 }
1959 blk_mq_exit_hctx(q, set, hctx, j);
1960 free_cpumask_var(hctx->cpumask);
1961 kobject_put(&hctx->kobj);
1962 kfree(hctx->ctxs);
1963 kfree(hctx);
1964 hctxs[j] = NULL;
1965
1966 }
1967 }
1968 q->nr_hw_queues = i;
1969 blk_mq_sysfs_register(q);
1970}
1971
1972struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
1973 struct request_queue *q)
1974{
Ming Lei66841672016-02-12 15:27:00 +08001975 /* mark the queue as mq asap */
1976 q->mq_ops = set->ops;
1977
Keith Busch868f2f02015-12-17 17:08:14 -07001978 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
1979 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07001980 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07001981
1982 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
1983 GFP_KERNEL, set->numa_node);
1984 if (!q->queue_hw_ctx)
1985 goto err_percpu;
1986
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02001987 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07001988
1989 blk_mq_realloc_hw_ctxs(set, q);
1990 if (!q->nr_hw_queues)
1991 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01001992
Christoph Hellwig287922e2015-10-30 20:57:30 +08001993 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08001994 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01001995
1996 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01001997
Jens Axboe94eddfb2013-11-19 09:25:07 -07001998 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001999
Jens Axboe05f1dd52014-05-29 09:53:32 -06002000 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2001 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2002
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002003 q->sg_reserved_size = INT_MAX;
2004
Mike Snitzer28494502016-09-14 13:28:30 -04002005 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002006 INIT_LIST_HEAD(&q->requeue_list);
2007 spin_lock_init(&q->requeue_lock);
2008
Jens Axboe07068d52014-05-22 10:40:51 -06002009 if (q->nr_hw_queues > 1)
2010 blk_queue_make_request(q, blk_mq_make_request);
2011 else
2012 blk_queue_make_request(q, blk_sq_make_request);
2013
Jens Axboeeba71762014-05-20 15:17:27 -06002014 /*
2015 * Do this after blk_queue_make_request() overrides it...
2016 */
2017 q->nr_requests = set->queue_depth;
2018
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002019 if (set->ops->complete)
2020 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002021
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002022 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002023
Akinobu Mita57783222015-09-27 02:09:23 +09002024 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002025 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002026
Jens Axboe320ae512013-10-24 09:20:05 +01002027 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002028 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002029 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002030
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002031 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002032 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002033
Jens Axboe320ae512013-10-24 09:20:05 +01002034 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002035
Jens Axboe320ae512013-10-24 09:20:05 +01002036err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002037 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002038err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002039 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002040err_exit:
2041 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002042 return ERR_PTR(-ENOMEM);
2043}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002044EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002045
2046void blk_mq_free_queue(struct request_queue *q)
2047{
Ming Lei624dbe42014-05-27 23:35:13 +08002048 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002049
Akinobu Mita0e626362015-09-27 02:09:22 +09002050 mutex_lock(&all_q_mutex);
2051 list_del_init(&q->all_q_node);
2052 mutex_unlock(&all_q_mutex);
2053
Jens Axboe0d2602c2014-05-13 15:10:52 -06002054 blk_mq_del_queue_tag_set(q);
2055
Ming Lei624dbe42014-05-27 23:35:13 +08002056 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2057 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002058}
Jens Axboe320ae512013-10-24 09:20:05 +01002059
2060/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002061static void blk_mq_queue_reinit(struct request_queue *q,
2062 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002063{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002064 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002065
Jens Axboe67aec142014-05-30 08:25:36 -06002066 blk_mq_sysfs_unregister(q);
2067
Jens Axboe320ae512013-10-24 09:20:05 +01002068 /*
2069 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2070 * we should change hctx numa_node according to new topology (this
2071 * involves free and re-allocate memory, worthy doing?)
2072 */
2073
Akinobu Mita57783222015-09-27 02:09:23 +09002074 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002075
Jens Axboe67aec142014-05-30 08:25:36 -06002076 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002077}
2078
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002079/*
2080 * New online cpumask which is going to be set in this hotplug event.
2081 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2082 * one-by-one and dynamically allocating this could result in a failure.
2083 */
2084static struct cpumask cpuhp_online_new;
2085
2086static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002087{
2088 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002089
2090 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002091 /*
2092 * We need to freeze and reinit all existing queues. Freezing
2093 * involves synchronous wait for an RCU grace period and doing it
2094 * one by one may take a long time. Start freezing all queues in
2095 * one swoop and then wait for the completions so that freezing can
2096 * take place in parallel.
2097 */
2098 list_for_each_entry(q, &all_q_list, all_q_node)
2099 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002100 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002101 blk_mq_freeze_queue_wait(q);
2102
Ming Leif054b562015-04-21 10:00:19 +08002103 /*
2104 * timeout handler can't touch hw queue during the
2105 * reinitialization
2106 */
2107 del_timer_sync(&q->timeout);
2108 }
2109
Jens Axboe320ae512013-10-24 09:20:05 +01002110 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002111 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002112
2113 list_for_each_entry(q, &all_q_list, all_q_node)
2114 blk_mq_unfreeze_queue(q);
2115
Jens Axboe320ae512013-10-24 09:20:05 +01002116 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002117}
2118
2119static int blk_mq_queue_reinit_dead(unsigned int cpu)
2120{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002121 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002122 blk_mq_queue_reinit_work();
2123 return 0;
2124}
2125
2126/*
2127 * Before hotadded cpu starts handling requests, new mappings must be
2128 * established. Otherwise, these requests in hw queue might never be
2129 * dispatched.
2130 *
2131 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2132 * for CPU0, and ctx1 for CPU1).
2133 *
2134 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2135 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2136 *
2137 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2138 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2139 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2140 * is ignored.
2141 */
2142static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2143{
2144 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2145 cpumask_set_cpu(cpu, &cpuhp_online_new);
2146 blk_mq_queue_reinit_work();
2147 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002148}
2149
Jens Axboea5164402014-09-10 09:02:03 -06002150static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2151{
2152 int i;
2153
2154 for (i = 0; i < set->nr_hw_queues; i++) {
2155 set->tags[i] = blk_mq_init_rq_map(set, i);
2156 if (!set->tags[i])
2157 goto out_unwind;
2158 }
2159
2160 return 0;
2161
2162out_unwind:
2163 while (--i >= 0)
2164 blk_mq_free_rq_map(set, set->tags[i], i);
2165
Jens Axboea5164402014-09-10 09:02:03 -06002166 return -ENOMEM;
2167}
2168
2169/*
2170 * Allocate the request maps associated with this tag_set. Note that this
2171 * may reduce the depth asked for, if memory is tight. set->queue_depth
2172 * will be updated to reflect the allocated depth.
2173 */
2174static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2175{
2176 unsigned int depth;
2177 int err;
2178
2179 depth = set->queue_depth;
2180 do {
2181 err = __blk_mq_alloc_rq_maps(set);
2182 if (!err)
2183 break;
2184
2185 set->queue_depth >>= 1;
2186 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2187 err = -ENOMEM;
2188 break;
2189 }
2190 } while (set->queue_depth);
2191
2192 if (!set->queue_depth || err) {
2193 pr_err("blk-mq: failed to allocate request map\n");
2194 return -ENOMEM;
2195 }
2196
2197 if (depth != set->queue_depth)
2198 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2199 depth, set->queue_depth);
2200
2201 return 0;
2202}
2203
Jens Axboea4391c62014-06-05 15:21:56 -06002204/*
2205 * Alloc a tag set to be associated with one or more request queues.
2206 * May fail with EINVAL for various error conditions. May adjust the
2207 * requested depth down, if if it too large. In that case, the set
2208 * value will be stored in set->queue_depth.
2209 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002210int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2211{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002212 int ret;
2213
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002214 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2215
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002216 if (!set->nr_hw_queues)
2217 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002218 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002219 return -EINVAL;
2220 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2221 return -EINVAL;
2222
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002223 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002224 return -EINVAL;
2225
Jens Axboea4391c62014-06-05 15:21:56 -06002226 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2227 pr_info("blk-mq: reduced tag depth to %u\n",
2228 BLK_MQ_MAX_DEPTH);
2229 set->queue_depth = BLK_MQ_MAX_DEPTH;
2230 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002231
Shaohua Li6637fad2014-11-30 16:00:58 -08002232 /*
2233 * If a crashdump is active, then we are potentially in a very
2234 * memory constrained environment. Limit us to 1 queue and
2235 * 64 tags to prevent using too much memory.
2236 */
2237 if (is_kdump_kernel()) {
2238 set->nr_hw_queues = 1;
2239 set->queue_depth = min(64U, set->queue_depth);
2240 }
Keith Busch868f2f02015-12-17 17:08:14 -07002241 /*
2242 * There is no use for more h/w queues than cpus.
2243 */
2244 if (set->nr_hw_queues > nr_cpu_ids)
2245 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002246
Keith Busch868f2f02015-12-17 17:08:14 -07002247 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002248 GFP_KERNEL, set->numa_node);
2249 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002250 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002251
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002252 ret = -ENOMEM;
2253 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2254 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002255 if (!set->mq_map)
2256 goto out_free_tags;
2257
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002258 if (set->ops->map_queues)
2259 ret = set->ops->map_queues(set);
2260 else
2261 ret = blk_mq_map_queues(set);
2262 if (ret)
2263 goto out_free_mq_map;
2264
2265 ret = blk_mq_alloc_rq_maps(set);
2266 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002267 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002268
Jens Axboe0d2602c2014-05-13 15:10:52 -06002269 mutex_init(&set->tag_list_lock);
2270 INIT_LIST_HEAD(&set->tag_list);
2271
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002272 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002273
2274out_free_mq_map:
2275 kfree(set->mq_map);
2276 set->mq_map = NULL;
2277out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002278 kfree(set->tags);
2279 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002280 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002281}
2282EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2283
2284void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2285{
2286 int i;
2287
Keith Busch868f2f02015-12-17 17:08:14 -07002288 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002289 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002290 blk_mq_free_rq_map(set, set->tags[i], i);
2291 }
2292
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002293 kfree(set->mq_map);
2294 set->mq_map = NULL;
2295
Ming Lei981bd182014-04-24 00:07:34 +08002296 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002297 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002298}
2299EXPORT_SYMBOL(blk_mq_free_tag_set);
2300
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002301int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2302{
2303 struct blk_mq_tag_set *set = q->tag_set;
2304 struct blk_mq_hw_ctx *hctx;
2305 int i, ret;
2306
2307 if (!set || nr > set->queue_depth)
2308 return -EINVAL;
2309
2310 ret = 0;
2311 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002312 if (!hctx->tags)
2313 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002314 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2315 if (ret)
2316 break;
2317 }
2318
2319 if (!ret)
2320 q->nr_requests = nr;
2321
2322 return ret;
2323}
2324
Keith Busch868f2f02015-12-17 17:08:14 -07002325void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2326{
2327 struct request_queue *q;
2328
2329 if (nr_hw_queues > nr_cpu_ids)
2330 nr_hw_queues = nr_cpu_ids;
2331 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2332 return;
2333
2334 list_for_each_entry(q, &set->tag_list, tag_set_list)
2335 blk_mq_freeze_queue(q);
2336
2337 set->nr_hw_queues = nr_hw_queues;
2338 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2339 blk_mq_realloc_hw_ctxs(set, q);
2340
2341 if (q->nr_hw_queues > 1)
2342 blk_queue_make_request(q, blk_mq_make_request);
2343 else
2344 blk_queue_make_request(q, blk_sq_make_request);
2345
2346 blk_mq_queue_reinit(q, cpu_online_mask);
2347 }
2348
2349 list_for_each_entry(q, &set->tag_list, tag_set_list)
2350 blk_mq_unfreeze_queue(q);
2351}
2352EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2353
Jens Axboe676141e2014-03-20 13:29:18 -06002354void blk_mq_disable_hotplug(void)
2355{
2356 mutex_lock(&all_q_mutex);
2357}
2358
2359void blk_mq_enable_hotplug(void)
2360{
2361 mutex_unlock(&all_q_mutex);
2362}
2363
Jens Axboe320ae512013-10-24 09:20:05 +01002364static int __init blk_mq_init(void)
2365{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002366 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2367 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002368
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002369 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2370 blk_mq_queue_reinit_prepare,
2371 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002372 return 0;
2373}
2374subsys_initcall(blk_mq_init);