blob: 80d483864247ff5176afd9fba93a71e0bf51e704 [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);
227 hctx = q->mq_ops->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
269 hctx = q->queue_hw_ctx[hctx_idx];
270 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
271
272 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
273 rq = __blk_mq_alloc_request(&alloc_data, rw, 0);
274 if (!rq) {
275 blk_queue_exit(q);
276 return ERR_PTR(-EWOULDBLOCK);
277 }
278
279 return rq;
280}
281EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
282
Jens Axboe320ae512013-10-24 09:20:05 +0100283static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
284 struct blk_mq_ctx *ctx, struct request *rq)
285{
286 const int tag = rq->tag;
287 struct request_queue *q = rq->q;
288
Jens Axboe0d2602c2014-05-13 15:10:52 -0600289 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
290 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200291 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600292
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200293 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700294 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400295 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100296}
297
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700298void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100299{
300 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700301
302 ctx->rq_completed[rq_is_sync(rq)]++;
303 __blk_mq_free_request(hctx, ctx, rq);
304
305}
306EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
307
308void blk_mq_free_request(struct request *rq)
309{
Jens Axboe320ae512013-10-24 09:20:05 +0100310 struct blk_mq_hw_ctx *hctx;
311 struct request_queue *q = rq->q;
312
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700313 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
314 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100315}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700316EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100317
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700318inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100319{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700320 blk_account_io_done(rq);
321
Christoph Hellwig91b63632014-04-16 09:44:53 +0200322 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100323 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200324 } else {
325 if (unlikely(blk_bidi_rq(rq)))
326 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100327 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200328 }
Jens Axboe320ae512013-10-24 09:20:05 +0100329}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700330EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200331
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700332void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200333{
334 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
335 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700336 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200337}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700338EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100339
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800340static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100341{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800342 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100343
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800344 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100345}
346
Jens Axboeed851862014-05-30 21:20:50 -0600347static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100348{
349 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700350 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100351 int cpu;
352
Christoph Hellwig38535202014-04-25 02:32:53 -0700353 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800354 rq->q->softirq_done_fn(rq);
355 return;
356 }
Jens Axboe320ae512013-10-24 09:20:05 +0100357
358 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700359 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
360 shared = cpus_share_cache(cpu, ctx->cpu);
361
362 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800363 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800364 rq->csd.info = rq;
365 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100366 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800367 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800368 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800369 }
Jens Axboe320ae512013-10-24 09:20:05 +0100370 put_cpu();
371}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800372
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700373static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600374{
375 struct request_queue *q = rq->q;
376
377 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700378 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600379 else
380 blk_mq_ipi_complete_request(rq);
381}
382
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800383/**
384 * blk_mq_complete_request - end I/O on a request
385 * @rq: the request being processed
386 *
387 * Description:
388 * Ends all I/O on a request. It does not handle partial completions.
389 * The actual completion happens out-of-order, through a IPI handler.
390 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200391void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800392{
Jens Axboe95f09682014-05-27 17:46:48 -0600393 struct request_queue *q = rq->q;
394
395 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800396 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200397 if (!blk_mark_rq_complete(rq)) {
398 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600399 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200400 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401}
402EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100403
Keith Busch973c0192015-01-07 18:55:43 -0700404int blk_mq_request_started(struct request *rq)
405{
406 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
407}
408EXPORT_SYMBOL_GPL(blk_mq_request_started);
409
Christoph Hellwige2490072014-09-13 16:40:09 -0700410void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100411{
412 struct request_queue *q = rq->q;
413
414 trace_block_rq_issue(q, rq);
415
Christoph Hellwig742ee692014-04-14 10:30:06 +0200416 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200417 if (unlikely(blk_bidi_rq(rq)))
418 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200419
Ming Lei2b8393b2014-06-10 00:16:41 +0800420 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600421
422 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600423 * Ensure that ->deadline is visible before set the started
424 * flag and clear the completed flag.
425 */
426 smp_mb__before_atomic();
427
428 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600429 * Mark us as started and clear complete. Complete might have been
430 * set if requeue raced with timeout, which then marked it as
431 * complete. So be sure to clear complete again when we start
432 * the request, otherwise we'll ignore the completion event.
433 */
Jens Axboe4b570522014-05-29 11:00:11 -0600434 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
435 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
436 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
437 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800438
439 if (q->dma_drain_size && blk_rq_bytes(rq)) {
440 /*
441 * Make sure space for the drain appears. We know we can do
442 * this because max_hw_segments has been adjusted to be one
443 * fewer than the device can handle.
444 */
445 rq->nr_phys_segments++;
446 }
Jens Axboe320ae512013-10-24 09:20:05 +0100447}
Christoph Hellwige2490072014-09-13 16:40:09 -0700448EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100449
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200450static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100451{
452 struct request_queue *q = rq->q;
453
454 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800455
Christoph Hellwige2490072014-09-13 16:40:09 -0700456 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
457 if (q->dma_drain_size && blk_rq_bytes(rq))
458 rq->nr_phys_segments--;
459 }
Jens Axboe320ae512013-10-24 09:20:05 +0100460}
461
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200462void blk_mq_requeue_request(struct request *rq)
463{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200464 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200465
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200466 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600467 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200468}
469EXPORT_SYMBOL(blk_mq_requeue_request);
470
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600471static void blk_mq_requeue_work(struct work_struct *work)
472{
473 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400474 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600475 LIST_HEAD(rq_list);
476 struct request *rq, *next;
477 unsigned long flags;
478
479 spin_lock_irqsave(&q->requeue_lock, flags);
480 list_splice_init(&q->requeue_list, &rq_list);
481 spin_unlock_irqrestore(&q->requeue_lock, flags);
482
483 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
484 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
485 continue;
486
487 rq->cmd_flags &= ~REQ_SOFTBARRIER;
488 list_del_init(&rq->queuelist);
489 blk_mq_insert_request(rq, true, false, false);
490 }
491
492 while (!list_empty(&rq_list)) {
493 rq = list_entry(rq_list.next, struct request, queuelist);
494 list_del_init(&rq->queuelist);
495 blk_mq_insert_request(rq, false, false, false);
496 }
497
Jens Axboe8b957412014-09-19 13:10:29 -0600498 /*
499 * Use the start variant of queue running here, so that running
500 * the requeue work will kick stopped queues.
501 */
502 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600503}
504
505void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
506{
507 struct request_queue *q = rq->q;
508 unsigned long flags;
509
510 /*
511 * We abuse this flag that is otherwise used by the I/O scheduler to
512 * request head insertation from the workqueue.
513 */
514 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
515
516 spin_lock_irqsave(&q->requeue_lock, flags);
517 if (at_head) {
518 rq->cmd_flags |= REQ_SOFTBARRIER;
519 list_add(&rq->queuelist, &q->requeue_list);
520 } else {
521 list_add_tail(&rq->queuelist, &q->requeue_list);
522 }
523 spin_unlock_irqrestore(&q->requeue_lock, flags);
524}
525EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
526
Keith Buschc68ed592015-01-07 18:55:44 -0700527void blk_mq_cancel_requeue_work(struct request_queue *q)
528{
Mike Snitzer28494502016-09-14 13:28:30 -0400529 cancel_delayed_work_sync(&q->requeue_work);
Keith Buschc68ed592015-01-07 18:55:44 -0700530}
531EXPORT_SYMBOL_GPL(blk_mq_cancel_requeue_work);
532
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600533void blk_mq_kick_requeue_list(struct request_queue *q)
534{
Mike Snitzer28494502016-09-14 13:28:30 -0400535 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600536}
537EXPORT_SYMBOL(blk_mq_kick_requeue_list);
538
Mike Snitzer28494502016-09-14 13:28:30 -0400539void blk_mq_delay_kick_requeue_list(struct request_queue *q,
540 unsigned long msecs)
541{
542 kblockd_schedule_delayed_work(&q->requeue_work,
543 msecs_to_jiffies(msecs));
544}
545EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
546
Jens Axboe1885b242015-01-07 18:55:45 -0700547void blk_mq_abort_requeue_list(struct request_queue *q)
548{
549 unsigned long flags;
550 LIST_HEAD(rq_list);
551
552 spin_lock_irqsave(&q->requeue_lock, flags);
553 list_splice_init(&q->requeue_list, &rq_list);
554 spin_unlock_irqrestore(&q->requeue_lock, flags);
555
556 while (!list_empty(&rq_list)) {
557 struct request *rq;
558
559 rq = list_first_entry(&rq_list, struct request, queuelist);
560 list_del_init(&rq->queuelist);
561 rq->errors = -EIO;
562 blk_mq_end_request(rq, rq->errors);
563 }
564}
565EXPORT_SYMBOL(blk_mq_abort_requeue_list);
566
Jens Axboe0e62f512014-06-04 10:23:49 -0600567struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
568{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600569 if (tag < tags->nr_tags) {
570 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700571 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600572 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700573
574 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600575}
576EXPORT_SYMBOL(blk_mq_tag_to_rq);
577
Jens Axboe320ae512013-10-24 09:20:05 +0100578struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700579 unsigned long next;
580 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100581};
582
Christoph Hellwig90415832014-09-22 10:21:48 -0600583void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100584{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700585 struct blk_mq_ops *ops = req->q->mq_ops;
586 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600587
588 /*
589 * We know that complete is set at this point. If STARTED isn't set
590 * anymore, then the request isn't active and the "timeout" should
591 * just be ignored. This can happen due to the bitflag ordering.
592 * Timeout first checks if STARTED is set, and if it is, assumes
593 * the request is active. But if we race with completion, then
594 * we both flags will get cleared. So check here again, and ignore
595 * a timeout event with a request that isn't active.
596 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700597 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
598 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600599
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700600 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700601 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600602
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700603 switch (ret) {
604 case BLK_EH_HANDLED:
605 __blk_mq_complete_request(req);
606 break;
607 case BLK_EH_RESET_TIMER:
608 blk_add_timer(req);
609 blk_clear_rq_complete(req);
610 break;
611 case BLK_EH_NOT_HANDLED:
612 break;
613 default:
614 printk(KERN_ERR "block: bad eh return: %d\n", ret);
615 break;
616 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600617}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700618
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700619static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
620 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100621{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700622 struct blk_mq_timeout_data *data = priv;
623
Keith Buscheb130db2015-01-08 08:59:53 -0700624 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
625 /*
626 * If a request wasn't started before the queue was
627 * marked dying, kill it here or it'll go unnoticed.
628 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700629 if (unlikely(blk_queue_dying(rq->q))) {
630 rq->errors = -EIO;
631 blk_mq_end_request(rq, rq->errors);
632 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700633 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700634 }
Jens Axboe320ae512013-10-24 09:20:05 +0100635
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700636 if (time_after_eq(jiffies, rq->deadline)) {
637 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700638 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700639 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
640 data->next = rq->deadline;
641 data->next_set = 1;
642 }
Jens Axboe320ae512013-10-24 09:20:05 +0100643}
644
Christoph Hellwig287922e2015-10-30 20:57:30 +0800645static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100646{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800647 struct request_queue *q =
648 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700649 struct blk_mq_timeout_data data = {
650 .next = 0,
651 .next_set = 0,
652 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700653 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100654
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600655 /* A deadlock might occur if a request is stuck requiring a
656 * timeout at the same time a queue freeze is waiting
657 * completion, since the timeout code would not be able to
658 * acquire the queue reference here.
659 *
660 * That's why we don't use blk_queue_enter here; instead, we use
661 * percpu_ref_tryget directly, because we need to be able to
662 * obtain a reference even in the short window between the queue
663 * starting to freeze, by dropping the first reference in
664 * blk_mq_freeze_queue_start, and the moment the last request is
665 * consumed, marked by the instant q_usage_counter reaches
666 * zero.
667 */
668 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800669 return;
670
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200671 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100672
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700673 if (data.next_set) {
674 data.next = blk_rq_timeout(round_jiffies_up(data.next));
675 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600676 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200677 struct blk_mq_hw_ctx *hctx;
678
Ming Leif054b562015-04-21 10:00:19 +0800679 queue_for_each_hw_ctx(q, hctx, i) {
680 /* the hctx may be unmapped, so check it here */
681 if (blk_mq_hw_queue_mapped(hctx))
682 blk_mq_tag_idle(hctx);
683 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600684 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800685 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100686}
687
688/*
689 * Reverse check our software queue for entries that we could potentially
690 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
691 * too much time checking for merges.
692 */
693static bool blk_mq_attempt_merge(struct request_queue *q,
694 struct blk_mq_ctx *ctx, struct bio *bio)
695{
696 struct request *rq;
697 int checked = 8;
698
699 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
700 int el_ret;
701
702 if (!checked--)
703 break;
704
705 if (!blk_rq_merge_ok(rq, bio))
706 continue;
707
708 el_ret = blk_try_merge(rq, bio);
709 if (el_ret == ELEVATOR_BACK_MERGE) {
710 if (bio_attempt_back_merge(q, rq, bio)) {
711 ctx->rq_merged++;
712 return true;
713 }
714 break;
715 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
716 if (bio_attempt_front_merge(q, rq, bio)) {
717 ctx->rq_merged++;
718 return true;
719 }
720 break;
721 }
722 }
723
724 return false;
725}
726
Omar Sandoval88459642016-09-17 08:38:44 -0600727struct flush_busy_ctx_data {
728 struct blk_mq_hw_ctx *hctx;
729 struct list_head *list;
730};
731
732static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
733{
734 struct flush_busy_ctx_data *flush_data = data;
735 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
736 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
737
738 sbitmap_clear_bit(sb, bitnr);
739 spin_lock(&ctx->lock);
740 list_splice_tail_init(&ctx->rq_list, flush_data->list);
741 spin_unlock(&ctx->lock);
742 return true;
743}
744
Jens Axboe320ae512013-10-24 09:20:05 +0100745/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600746 * Process software queues that have been marked busy, splicing them
747 * to the for-dispatch
748 */
749static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
750{
Omar Sandoval88459642016-09-17 08:38:44 -0600751 struct flush_busy_ctx_data data = {
752 .hctx = hctx,
753 .list = list,
754 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600755
Omar Sandoval88459642016-09-17 08:38:44 -0600756 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600757}
758
Jens Axboe703fd1c2016-09-16 13:59:14 -0600759static inline unsigned int queued_to_index(unsigned int queued)
760{
761 if (!queued)
762 return 0;
763
764 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
765}
766
Jens Axboe1429d7c2014-05-19 09:23:55 -0600767/*
Jens Axboe320ae512013-10-24 09:20:05 +0100768 * Run this hardware queue, pulling any software queues mapped to it in.
769 * Note that this function currently has various problems around ordering
770 * of IO. In particular, we'd like FIFO behaviour on handling existing
771 * items on the hctx->dispatch list. Ignore that for now.
772 */
773static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
774{
775 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100776 struct request *rq;
777 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600778 LIST_HEAD(driver_list);
779 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600780 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100781
Jens Axboe5d12f902014-03-19 15:25:02 -0600782 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100783 return;
784
Jens Axboe0e87e582016-08-24 15:38:01 -0600785 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
786 cpu_online(hctx->next_cpu));
787
Jens Axboe320ae512013-10-24 09:20:05 +0100788 hctx->run++;
789
790 /*
791 * Touch any software queue that has pending entries.
792 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600793 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100794
795 /*
796 * If we have previous entries on our dispatch list, grab them
797 * and stuff them at the front for more fair dispatch.
798 */
799 if (!list_empty_careful(&hctx->dispatch)) {
800 spin_lock(&hctx->lock);
801 if (!list_empty(&hctx->dispatch))
802 list_splice_init(&hctx->dispatch, &rq_list);
803 spin_unlock(&hctx->lock);
804 }
805
806 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600807 * Start off with dptr being NULL, so we start the first request
808 * immediately, even if we have more pending.
809 */
810 dptr = NULL;
811
812 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100813 * Now process all the entries, sending them to the driver.
814 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600815 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100816 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600817 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100818 int ret;
819
820 rq = list_first_entry(&rq_list, struct request, queuelist);
821 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100822
Jens Axboe74c45052014-10-29 11:14:52 -0600823 bd.rq = rq;
824 bd.list = dptr;
825 bd.last = list_empty(&rq_list);
826
827 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100828 switch (ret) {
829 case BLK_MQ_RQ_QUEUE_OK:
830 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700831 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100832 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100833 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200834 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100835 break;
836 default:
837 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100838 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800839 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700840 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100841 break;
842 }
843
844 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
845 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600846
847 /*
848 * We've done the first request. If we have more than 1
849 * left in the list, set dptr to defer issue.
850 */
851 if (!dptr && rq_list.next != rq_list.prev)
852 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100853 }
854
Jens Axboe703fd1c2016-09-16 13:59:14 -0600855 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100856
857 /*
858 * Any items that need requeuing? Stuff them into hctx->dispatch,
859 * that is where we will continue on next queue run.
860 */
861 if (!list_empty(&rq_list)) {
862 spin_lock(&hctx->lock);
863 list_splice(&rq_list, &hctx->dispatch);
864 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600865 /*
866 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
867 * it's possible the queue is stopped and restarted again
868 * before this. Queue restart will dispatch requests. And since
869 * requests in rq_list aren't added into hctx->dispatch yet,
870 * the requests in rq_list might get lost.
871 *
872 * blk_mq_run_hw_queue() already checks the STOPPED bit
873 **/
874 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100875 }
876}
877
Jens Axboe506e9312014-05-07 10:26:44 -0600878/*
879 * It'd be great if the workqueue API had a way to pass
880 * in a mask and had some smarts for more clever placement.
881 * For now we just round-robin here, switching for every
882 * BLK_MQ_CPU_WORK_BATCH queued items.
883 */
884static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
885{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100886 if (hctx->queue->nr_hw_queues == 1)
887 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600888
889 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100890 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600891
892 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
893 if (next_cpu >= nr_cpu_ids)
894 next_cpu = cpumask_first(hctx->cpumask);
895
896 hctx->next_cpu = next_cpu;
897 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100898
899 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600900 }
901
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100902 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600903}
904
Jens Axboe320ae512013-10-24 09:20:05 +0100905void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
906{
Ming Lei19c66e52014-12-03 19:38:04 +0800907 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
908 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100909 return;
910
Paolo Bonzini398205b2014-11-07 23:03:59 +0100911 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100912 int cpu = get_cpu();
913 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100914 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100915 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100916 return;
917 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600918
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100919 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600920 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100921
Jens Axboe27489a32016-08-24 15:54:25 -0600922 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100923}
924
Mike Snitzerb94ec292015-03-11 23:56:38 -0400925void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100926{
927 struct blk_mq_hw_ctx *hctx;
928 int i;
929
930 queue_for_each_hw_ctx(q, hctx, i) {
931 if ((!blk_mq_hctx_has_pending(hctx) &&
932 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600933 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100934 continue;
935
Mike Snitzerb94ec292015-03-11 23:56:38 -0400936 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100937 }
938}
Mike Snitzerb94ec292015-03-11 23:56:38 -0400939EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +0100940
941void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
942{
Jens Axboe27489a32016-08-24 15:54:25 -0600943 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600944 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100945 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
946}
947EXPORT_SYMBOL(blk_mq_stop_hw_queue);
948
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100949void blk_mq_stop_hw_queues(struct request_queue *q)
950{
951 struct blk_mq_hw_ctx *hctx;
952 int i;
953
954 queue_for_each_hw_ctx(q, hctx, i)
955 blk_mq_stop_hw_queue(hctx);
956}
957EXPORT_SYMBOL(blk_mq_stop_hw_queues);
958
Jens Axboe320ae512013-10-24 09:20:05 +0100959void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
960{
961 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600962
Jens Axboe0ffbce82014-06-25 08:22:34 -0600963 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100964}
965EXPORT_SYMBOL(blk_mq_start_hw_queue);
966
Christoph Hellwig2f268552014-04-16 09:44:56 +0200967void blk_mq_start_hw_queues(struct request_queue *q)
968{
969 struct blk_mq_hw_ctx *hctx;
970 int i;
971
972 queue_for_each_hw_ctx(q, hctx, i)
973 blk_mq_start_hw_queue(hctx);
974}
975EXPORT_SYMBOL(blk_mq_start_hw_queues);
976
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200977void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100978{
979 struct blk_mq_hw_ctx *hctx;
980 int i;
981
982 queue_for_each_hw_ctx(q, hctx, i) {
983 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
984 continue;
985
986 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200987 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100988 }
989}
990EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
991
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600992static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100993{
994 struct blk_mq_hw_ctx *hctx;
995
Jens Axboe27489a32016-08-24 15:54:25 -0600996 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600997
Jens Axboe320ae512013-10-24 09:20:05 +0100998 __blk_mq_run_hw_queue(hctx);
999}
1000
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001001static void blk_mq_delay_work_fn(struct work_struct *work)
1002{
1003 struct blk_mq_hw_ctx *hctx;
1004
1005 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1006
1007 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1008 __blk_mq_run_hw_queue(hctx);
1009}
1010
1011void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1012{
Ming Lei19c66e52014-12-03 19:38:04 +08001013 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1014 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001015
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001016 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1017 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001018}
1019EXPORT_SYMBOL(blk_mq_delay_queue);
1020
Ming Leicfd0c552015-10-20 23:13:57 +08001021static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001022 struct request *rq,
1023 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001024{
Jens Axboee57690f2016-08-24 15:34:35 -06001025 struct blk_mq_ctx *ctx = rq->mq_ctx;
1026
Jens Axboe01b983c2013-11-19 18:59:10 -07001027 trace_block_rq_insert(hctx->queue, rq);
1028
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001029 if (at_head)
1030 list_add(&rq->queuelist, &ctx->rq_list);
1031 else
1032 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001033}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001034
Ming Leicfd0c552015-10-20 23:13:57 +08001035static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1036 struct request *rq, bool at_head)
1037{
1038 struct blk_mq_ctx *ctx = rq->mq_ctx;
1039
Jens Axboee57690f2016-08-24 15:34:35 -06001040 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001041 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001042}
1043
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001044void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001045 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001046{
Jens Axboee57690f2016-08-24 15:34:35 -06001047 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001048 struct request_queue *q = rq->q;
1049 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001050
Jens Axboe320ae512013-10-24 09:20:05 +01001051 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1052
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001053 spin_lock(&ctx->lock);
1054 __blk_mq_insert_request(hctx, rq, at_head);
1055 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001056
Jens Axboe320ae512013-10-24 09:20:05 +01001057 if (run_queue)
1058 blk_mq_run_hw_queue(hctx, async);
1059}
1060
1061static void blk_mq_insert_requests(struct request_queue *q,
1062 struct blk_mq_ctx *ctx,
1063 struct list_head *list,
1064 int depth,
1065 bool from_schedule)
1066
1067{
1068 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001069
1070 trace_block_unplug(q, depth, !from_schedule);
1071
Jens Axboe320ae512013-10-24 09:20:05 +01001072 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1073
1074 /*
1075 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1076 * offline now
1077 */
1078 spin_lock(&ctx->lock);
1079 while (!list_empty(list)) {
1080 struct request *rq;
1081
1082 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001083 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001084 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001085 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001086 }
Ming Leicfd0c552015-10-20 23:13:57 +08001087 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001088 spin_unlock(&ctx->lock);
1089
Jens Axboe320ae512013-10-24 09:20:05 +01001090 blk_mq_run_hw_queue(hctx, from_schedule);
1091}
1092
1093static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1094{
1095 struct request *rqa = container_of(a, struct request, queuelist);
1096 struct request *rqb = container_of(b, struct request, queuelist);
1097
1098 return !(rqa->mq_ctx < rqb->mq_ctx ||
1099 (rqa->mq_ctx == rqb->mq_ctx &&
1100 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1101}
1102
1103void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1104{
1105 struct blk_mq_ctx *this_ctx;
1106 struct request_queue *this_q;
1107 struct request *rq;
1108 LIST_HEAD(list);
1109 LIST_HEAD(ctx_list);
1110 unsigned int depth;
1111
1112 list_splice_init(&plug->mq_list, &list);
1113
1114 list_sort(NULL, &list, plug_ctx_cmp);
1115
1116 this_q = NULL;
1117 this_ctx = NULL;
1118 depth = 0;
1119
1120 while (!list_empty(&list)) {
1121 rq = list_entry_rq(list.next);
1122 list_del_init(&rq->queuelist);
1123 BUG_ON(!rq->q);
1124 if (rq->mq_ctx != this_ctx) {
1125 if (this_ctx) {
1126 blk_mq_insert_requests(this_q, this_ctx,
1127 &ctx_list, depth,
1128 from_schedule);
1129 }
1130
1131 this_ctx = rq->mq_ctx;
1132 this_q = rq->q;
1133 depth = 0;
1134 }
1135
1136 depth++;
1137 list_add_tail(&rq->queuelist, &ctx_list);
1138 }
1139
1140 /*
1141 * If 'this_ctx' is set, we know we have entries to complete
1142 * on 'ctx_list'. Do those.
1143 */
1144 if (this_ctx) {
1145 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1146 from_schedule);
1147 }
1148}
1149
1150static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1151{
1152 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001153
Michael Callahana21f2a32016-05-03 11:12:49 -04001154 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001155}
1156
Jens Axboe274a5842014-08-15 12:44:08 -06001157static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1158{
1159 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1160 !blk_queue_nomerges(hctx->queue);
1161}
1162
Jens Axboe07068d52014-05-22 10:40:51 -06001163static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1164 struct blk_mq_ctx *ctx,
1165 struct request *rq, struct bio *bio)
1166{
Ming Leie18378a2015-10-20 23:13:54 +08001167 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001168 blk_mq_bio_to_request(rq, bio);
1169 spin_lock(&ctx->lock);
1170insert_rq:
1171 __blk_mq_insert_request(hctx, rq, false);
1172 spin_unlock(&ctx->lock);
1173 return false;
1174 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001175 struct request_queue *q = hctx->queue;
1176
Jens Axboe07068d52014-05-22 10:40:51 -06001177 spin_lock(&ctx->lock);
1178 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1179 blk_mq_bio_to_request(rq, bio);
1180 goto insert_rq;
1181 }
1182
1183 spin_unlock(&ctx->lock);
1184 __blk_mq_free_request(hctx, ctx, rq);
1185 return true;
1186 }
1187}
1188
1189struct blk_map_ctx {
1190 struct blk_mq_hw_ctx *hctx;
1191 struct blk_mq_ctx *ctx;
1192};
1193
1194static struct request *blk_mq_map_request(struct request_queue *q,
1195 struct bio *bio,
1196 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001197{
1198 struct blk_mq_hw_ctx *hctx;
1199 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001200 struct request *rq;
Mike Christiecc6e3b12016-06-05 14:32:12 -05001201 int op = bio_data_dir(bio);
1202 int op_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +08001203 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001204
Dan Williams3ef28e82015-10-21 13:20:12 -04001205 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001206 ctx = blk_mq_get_ctx(q);
1207 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1208
Jens Axboe1eff9d32016-08-05 15:35:16 -06001209 if (rw_is_sync(bio_op(bio), bio->bi_opf))
Mike Christiecc6e3b12016-06-05 14:32:12 -05001210 op_flags |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001211
Mike Christiecc6e3b12016-06-05 14:32:12 -05001212 trace_block_getrq(q, bio, op);
Christoph Hellwig63581af2016-09-22 11:38:23 -07001213 blk_mq_set_alloc_data(&alloc_data, q, 0, ctx, hctx);
Mike Christiecc6e3b12016-06-05 14:32:12 -05001214 rq = __blk_mq_alloc_request(&alloc_data, op, op_flags);
Jens Axboe320ae512013-10-24 09:20:05 +01001215
1216 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001217 data->hctx = hctx;
1218 data->ctx = ctx;
1219 return rq;
1220}
1221
Jens Axboe7b371632015-11-05 10:41:40 -07001222static int blk_mq_direct_issue_request(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001223{
1224 int ret;
1225 struct request_queue *q = rq->q;
1226 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q,
1227 rq->mq_ctx->cpu);
1228 struct blk_mq_queue_data bd = {
1229 .rq = rq,
1230 .list = NULL,
1231 .last = 1
1232 };
Jens Axboe7b371632015-11-05 10:41:40 -07001233 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001234
1235 /*
1236 * For OK queue, we are done. For error, kill it. Any other
1237 * error (busy), just add it to our list as we previously
1238 * would have done
1239 */
1240 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001241 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1242 *cookie = new_cookie;
Shaohua Lif984df12015-05-08 10:51:32 -07001243 return 0;
Shaohua Lif984df12015-05-08 10:51:32 -07001244 }
Jens Axboe7b371632015-11-05 10:41:40 -07001245
1246 __blk_mq_requeue_request(rq);
1247
1248 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1249 *cookie = BLK_QC_T_NONE;
1250 rq->errors = -EIO;
1251 blk_mq_end_request(rq, rq->errors);
1252 return 0;
1253 }
1254
1255 return -1;
Shaohua Lif984df12015-05-08 10:51:32 -07001256}
1257
Jens Axboe07068d52014-05-22 10:40:51 -06001258/*
1259 * Multiple hardware queue variant. This will not use per-process plugs,
1260 * but will attempt to bypass the hctx queueing if we can go straight to
1261 * hardware for SYNC IO.
1262 */
Jens Axboedece1632015-11-05 10:41:16 -07001263static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001264{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001265 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1266 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe07068d52014-05-22 10:40:51 -06001267 struct blk_map_ctx data;
1268 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001269 unsigned int request_count = 0;
1270 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001271 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001272 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001273
1274 blk_queue_bounce(q, &bio);
1275
1276 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001277 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001278 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001279 }
1280
Kent Overstreet54efd502015-04-23 22:37:18 -07001281 blk_queue_split(q, &bio, q->bio_split);
1282
Omar Sandoval87c279e2016-06-01 22:18:48 -07001283 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1284 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1285 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001286
Jens Axboe07068d52014-05-22 10:40:51 -06001287 rq = blk_mq_map_request(q, bio, &data);
1288 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001289 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001290
Jens Axboe7b371632015-11-05 10:41:40 -07001291 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001292
1293 if (unlikely(is_flush_fua)) {
1294 blk_mq_bio_to_request(rq, bio);
1295 blk_insert_flush(rq);
1296 goto run_queue;
1297 }
1298
Shaohua Lif984df12015-05-08 10:51:32 -07001299 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001300 /*
1301 * If the driver supports defer issued based on 'last', then
1302 * queue it up like normal since we can potentially save some
1303 * CPU this way.
1304 */
Shaohua Lif984df12015-05-08 10:51:32 -07001305 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1306 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1307 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001308
1309 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001310
1311 /*
Jens Axboeb094f892015-11-20 20:29:45 -07001312 * We do limited pluging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001313 * Otherwise the existing request in the plug list will be
1314 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001315 */
Shaohua Lif984df12015-05-08 10:51:32 -07001316 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001317 /*
1318 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001319 * happens, same_queue_rq is invalid and plug list is
1320 * empty
1321 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001322 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1323 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001324 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001325 }
Shaohua Lif984df12015-05-08 10:51:32 -07001326 list_add_tail(&rq->queuelist, &plug->mq_list);
1327 } else /* is_sync */
1328 old_rq = rq;
1329 blk_mq_put_ctx(data.ctx);
1330 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001331 goto done;
1332 if (!blk_mq_direct_issue_request(old_rq, &cookie))
1333 goto done;
Shaohua Lif984df12015-05-08 10:51:32 -07001334 blk_mq_insert_request(old_rq, false, true, true);
Jens Axboe7b371632015-11-05 10:41:40 -07001335 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001336 }
1337
1338 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1339 /*
1340 * For a SYNC request, send it to the hardware immediately. For
1341 * an ASYNC request, just ensure that we run it later on. The
1342 * latter allows for merging opportunities and more efficient
1343 * dispatching.
1344 */
1345run_queue:
1346 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1347 }
Jens Axboe07068d52014-05-22 10:40:51 -06001348 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001349done:
1350 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001351}
1352
1353/*
1354 * Single hardware queue variant. This will attempt to use any per-process
1355 * plug for merging and IO deferral.
1356 */
Jens Axboedece1632015-11-05 10:41:16 -07001357static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001358{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001359 const int is_sync = rw_is_sync(bio_op(bio), bio->bi_opf);
1360 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001361 struct blk_plug *plug;
1362 unsigned int request_count = 0;
Jens Axboe07068d52014-05-22 10:40:51 -06001363 struct blk_map_ctx data;
1364 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001365 blk_qc_t cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001366
Jens Axboe07068d52014-05-22 10:40:51 -06001367 blk_queue_bounce(q, &bio);
1368
1369 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001370 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001371 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001372 }
1373
Kent Overstreet54efd502015-04-23 22:37:18 -07001374 blk_queue_split(q, &bio, q->bio_split);
1375
Omar Sandoval87c279e2016-06-01 22:18:48 -07001376 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1377 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1378 return BLK_QC_T_NONE;
1379 } else
1380 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001381
1382 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001383 if (unlikely(!rq))
Jens Axboedece1632015-11-05 10:41:16 -07001384 return BLK_QC_T_NONE;
Jens Axboe320ae512013-10-24 09:20:05 +01001385
Jens Axboe7b371632015-11-05 10:41:40 -07001386 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001387
1388 if (unlikely(is_flush_fua)) {
1389 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001390 blk_insert_flush(rq);
1391 goto run_queue;
1392 }
1393
1394 /*
1395 * A task plug currently exists. Since this is completely lockless,
1396 * utilize that to temporarily store requests until the task is
1397 * either done or scheduled away.
1398 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001399 plug = current->plug;
1400 if (plug) {
1401 blk_mq_bio_to_request(rq, bio);
Ming Lei676d0602015-10-20 23:13:56 +08001402 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001403 trace_block_plug(q);
Jens Axboeb094f892015-11-20 20:29:45 -07001404
1405 blk_mq_put_ctx(data.ctx);
1406
1407 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001408 blk_flush_plug_list(plug, false);
1409 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001410 }
Jens Axboeb094f892015-11-20 20:29:45 -07001411
Jeff Moyere6c44382015-05-08 10:51:30 -07001412 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001413 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001414 }
1415
Jens Axboe07068d52014-05-22 10:40:51 -06001416 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1417 /*
1418 * For a SYNC request, send it to the hardware immediately. For
1419 * an ASYNC request, just ensure that we run it later on. The
1420 * latter allows for merging opportunities and more efficient
1421 * dispatching.
1422 */
1423run_queue:
1424 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001425 }
1426
Jens Axboe07068d52014-05-22 10:40:51 -06001427 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001428 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001429}
1430
1431/*
1432 * Default mapping to a software queue, since we use one per CPU.
1433 */
1434struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1435{
1436 return q->queue_hw_ctx[q->mq_map[cpu]];
1437}
1438EXPORT_SYMBOL(blk_mq_map_queue);
1439
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001440static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1441 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001442{
1443 struct page *page;
1444
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001445 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001446 int i;
1447
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001448 for (i = 0; i < tags->nr_tags; i++) {
1449 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001450 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001451 set->ops->exit_request(set->driver_data, tags->rqs[i],
1452 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001453 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001454 }
1455 }
1456
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001457 while (!list_empty(&tags->page_list)) {
1458 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001459 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001460 /*
1461 * Remove kmemleak object previously allocated in
1462 * blk_mq_init_rq_map().
1463 */
1464 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001465 __free_pages(page, page->private);
1466 }
1467
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001468 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001469
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001470 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001471}
1472
1473static size_t order_to_size(unsigned int order)
1474{
Ming Lei4ca08502014-04-19 18:00:18 +08001475 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001476}
1477
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001478static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1479 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001480{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001481 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001482 unsigned int i, j, entries_per_page, max_order = 4;
1483 size_t rq_size, left;
1484
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001485 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001486 set->numa_node,
1487 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001488 if (!tags)
1489 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001490
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001491 INIT_LIST_HEAD(&tags->page_list);
1492
Jens Axboea5164402014-09-10 09:02:03 -06001493 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1494 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1495 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001496 if (!tags->rqs) {
1497 blk_mq_free_tags(tags);
1498 return NULL;
1499 }
Jens Axboe320ae512013-10-24 09:20:05 +01001500
1501 /*
1502 * rq_size is the size of the request plus driver payload, rounded
1503 * to the cacheline size
1504 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001505 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001506 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001507 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001508
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001509 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001510 int this_order = max_order;
1511 struct page *page;
1512 int to_do;
1513 void *p;
1514
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001515 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001516 this_order--;
1517
1518 do {
Jens Axboea5164402014-09-10 09:02:03 -06001519 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001520 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001521 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001522 if (page)
1523 break;
1524 if (!this_order--)
1525 break;
1526 if (order_to_size(this_order) < rq_size)
1527 break;
1528 } while (1);
1529
1530 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001531 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001532
1533 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001534 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001535
1536 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001537 /*
1538 * Allow kmemleak to scan these pages as they contain pointers
1539 * to additional allocations like via ops->init_request().
1540 */
1541 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001542 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001543 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001544 left -= to_do * rq_size;
1545 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001546 tags->rqs[i] = p;
1547 if (set->ops->init_request) {
1548 if (set->ops->init_request(set->driver_data,
1549 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001550 set->numa_node)) {
1551 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001552 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001553 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001554 }
1555
Jens Axboe320ae512013-10-24 09:20:05 +01001556 p += rq_size;
1557 i++;
1558 }
1559 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001560 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001561
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001562fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001563 blk_mq_free_rq_map(set, tags, hctx_idx);
1564 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001565}
1566
Jens Axboee57690f2016-08-24 15:34:35 -06001567/*
1568 * 'cpu' is going away. splice any existing rq_list entries from this
1569 * software queue to the hw queue dispatch list, and ensure that it
1570 * gets run.
1571 */
Jens Axboe484b4062014-05-21 14:01:15 -06001572static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1573{
Jens Axboe484b4062014-05-21 14:01:15 -06001574 struct blk_mq_ctx *ctx;
1575 LIST_HEAD(tmp);
1576
Jens Axboee57690f2016-08-24 15:34:35 -06001577 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001578
1579 spin_lock(&ctx->lock);
1580 if (!list_empty(&ctx->rq_list)) {
1581 list_splice_init(&ctx->rq_list, &tmp);
1582 blk_mq_hctx_clear_pending(hctx, ctx);
1583 }
1584 spin_unlock(&ctx->lock);
1585
1586 if (list_empty(&tmp))
1587 return NOTIFY_OK;
1588
Jens Axboee57690f2016-08-24 15:34:35 -06001589 spin_lock(&hctx->lock);
1590 list_splice_tail_init(&tmp, &hctx->dispatch);
1591 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001592
1593 blk_mq_run_hw_queue(hctx, true);
Jens Axboe484b4062014-05-21 14:01:15 -06001594 return NOTIFY_OK;
1595}
1596
Jens Axboe484b4062014-05-21 14:01:15 -06001597static int blk_mq_hctx_notify(void *data, unsigned long action,
1598 unsigned int cpu)
1599{
1600 struct blk_mq_hw_ctx *hctx = data;
1601
1602 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1603 return blk_mq_hctx_cpu_offline(hctx, cpu);
Ming Lei2a34c082015-04-21 10:00:20 +08001604
1605 /*
1606 * In case of CPU online, tags may be reallocated
1607 * in blk_mq_map_swqueue() after mapping is updated.
1608 */
Jens Axboe484b4062014-05-21 14:01:15 -06001609
1610 return NOTIFY_OK;
1611}
1612
Ming Leic3b4afc2015-06-04 22:25:04 +08001613/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001614static void blk_mq_exit_hctx(struct request_queue *q,
1615 struct blk_mq_tag_set *set,
1616 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1617{
Ming Leif70ced02014-09-25 23:23:47 +08001618 unsigned flush_start_tag = set->queue_depth;
1619
Ming Lei08e98fc2014-09-25 23:23:38 +08001620 blk_mq_tag_idle(hctx);
1621
Ming Leif70ced02014-09-25 23:23:47 +08001622 if (set->ops->exit_request)
1623 set->ops->exit_request(set->driver_data,
1624 hctx->fq->flush_rq, hctx_idx,
1625 flush_start_tag + hctx_idx);
1626
Ming Lei08e98fc2014-09-25 23:23:38 +08001627 if (set->ops->exit_hctx)
1628 set->ops->exit_hctx(hctx, hctx_idx);
1629
1630 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001631 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001632 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001633}
1634
Ming Lei624dbe42014-05-27 23:35:13 +08001635static void blk_mq_exit_hw_queues(struct request_queue *q,
1636 struct blk_mq_tag_set *set, int nr_queue)
1637{
1638 struct blk_mq_hw_ctx *hctx;
1639 unsigned int i;
1640
1641 queue_for_each_hw_ctx(q, hctx, i) {
1642 if (i == nr_queue)
1643 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001644 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001645 }
Ming Lei624dbe42014-05-27 23:35:13 +08001646}
1647
1648static void blk_mq_free_hw_queues(struct request_queue *q,
1649 struct blk_mq_tag_set *set)
1650{
1651 struct blk_mq_hw_ctx *hctx;
1652 unsigned int i;
1653
Ming Leie09aae72015-01-29 20:17:27 +08001654 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001655 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001656}
1657
Ming Lei08e98fc2014-09-25 23:23:38 +08001658static int blk_mq_init_hctx(struct request_queue *q,
1659 struct blk_mq_tag_set *set,
1660 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1661{
1662 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001663 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001664
1665 node = hctx->numa_node;
1666 if (node == NUMA_NO_NODE)
1667 node = hctx->numa_node = set->numa_node;
1668
Jens Axboe27489a32016-08-24 15:54:25 -06001669 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001670 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1671 spin_lock_init(&hctx->lock);
1672 INIT_LIST_HEAD(&hctx->dispatch);
1673 hctx->queue = q;
1674 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001675 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001676
1677 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1678 blk_mq_hctx_notify, hctx);
1679 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1680
1681 hctx->tags = set->tags[hctx_idx];
1682
1683 /*
1684 * Allocate space for all possible cpus to avoid allocation at
1685 * runtime
1686 */
1687 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1688 GFP_KERNEL, node);
1689 if (!hctx->ctxs)
1690 goto unregister_cpu_notifier;
1691
Omar Sandoval88459642016-09-17 08:38:44 -06001692 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1693 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001694 goto free_ctxs;
1695
1696 hctx->nr_ctx = 0;
1697
1698 if (set->ops->init_hctx &&
1699 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1700 goto free_bitmap;
1701
Ming Leif70ced02014-09-25 23:23:47 +08001702 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1703 if (!hctx->fq)
1704 goto exit_hctx;
1705
1706 if (set->ops->init_request &&
1707 set->ops->init_request(set->driver_data,
1708 hctx->fq->flush_rq, hctx_idx,
1709 flush_start_tag + hctx_idx, node))
1710 goto free_fq;
1711
Ming Lei08e98fc2014-09-25 23:23:38 +08001712 return 0;
1713
Ming Leif70ced02014-09-25 23:23:47 +08001714 free_fq:
1715 kfree(hctx->fq);
1716 exit_hctx:
1717 if (set->ops->exit_hctx)
1718 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001719 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001720 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001721 free_ctxs:
1722 kfree(hctx->ctxs);
1723 unregister_cpu_notifier:
1724 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1725
1726 return -1;
1727}
1728
Jens Axboe320ae512013-10-24 09:20:05 +01001729static void blk_mq_init_cpu_queues(struct request_queue *q,
1730 unsigned int nr_hw_queues)
1731{
1732 unsigned int i;
1733
1734 for_each_possible_cpu(i) {
1735 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1736 struct blk_mq_hw_ctx *hctx;
1737
1738 memset(__ctx, 0, sizeof(*__ctx));
1739 __ctx->cpu = i;
1740 spin_lock_init(&__ctx->lock);
1741 INIT_LIST_HEAD(&__ctx->rq_list);
1742 __ctx->queue = q;
1743
1744 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001745 if (!cpu_online(i))
1746 continue;
1747
Jens Axboee4043dc2014-04-09 10:18:23 -06001748 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001749
Jens Axboe320ae512013-10-24 09:20:05 +01001750 /*
1751 * Set local node, IFF we have more than one hw queue. If
1752 * not, we remain on the home node of the device
1753 */
1754 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301755 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001756 }
1757}
1758
Akinobu Mita57783222015-09-27 02:09:23 +09001759static void blk_mq_map_swqueue(struct request_queue *q,
1760 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001761{
1762 unsigned int i;
1763 struct blk_mq_hw_ctx *hctx;
1764 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001765 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001766
Akinobu Mita60de0742015-09-27 02:09:25 +09001767 /*
1768 * Avoid others reading imcomplete hctx->cpumask through sysfs
1769 */
1770 mutex_lock(&q->sysfs_lock);
1771
Jens Axboe320ae512013-10-24 09:20:05 +01001772 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001773 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001774 hctx->nr_ctx = 0;
1775 }
1776
1777 /*
1778 * Map software to hardware queues
1779 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001780 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001781 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001782 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001783 continue;
1784
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001785 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001786 hctx = q->mq_ops->map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001787
Jens Axboee4043dc2014-04-09 10:18:23 -06001788 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001789 ctx->index_hw = hctx->nr_ctx;
1790 hctx->ctxs[hctx->nr_ctx++] = ctx;
1791 }
Jens Axboe506e9312014-05-07 10:26:44 -06001792
Akinobu Mita60de0742015-09-27 02:09:25 +09001793 mutex_unlock(&q->sysfs_lock);
1794
Jens Axboe506e9312014-05-07 10:26:44 -06001795 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001796 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001797 * If no software queues are mapped to this hardware queue,
1798 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001799 */
1800 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001801 if (set->tags[i]) {
1802 blk_mq_free_rq_map(set, set->tags[i], i);
1803 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001804 }
Ming Lei2a34c082015-04-21 10:00:20 +08001805 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001806 continue;
1807 }
1808
Ming Lei2a34c082015-04-21 10:00:20 +08001809 /* unmapped hw queue can be remapped after CPU topo changed */
1810 if (!set->tags[i])
1811 set->tags[i] = blk_mq_init_rq_map(set, i);
1812 hctx->tags = set->tags[i];
1813 WARN_ON(!hctx->tags);
1814
Raghavendra K Te0e827b2015-12-02 16:57:06 +05301815 cpumask_copy(hctx->tags->cpumask, hctx->cpumask);
Jens Axboe484b4062014-05-21 14:01:15 -06001816 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001817 * Set the map size to the number of mapped software queues.
1818 * This is more accurate and more efficient than looping
1819 * over all possibly mapped software queues.
1820 */
Omar Sandoval88459642016-09-17 08:38:44 -06001821 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001822
1823 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001824 * Initialize batch roundrobin counts
1825 */
Jens Axboe506e9312014-05-07 10:26:44 -06001826 hctx->next_cpu = cpumask_first(hctx->cpumask);
1827 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1828 }
Jens Axboe320ae512013-10-24 09:20:05 +01001829}
1830
Jeff Moyer2404e602015-11-03 10:40:06 -05001831static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001832{
1833 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001834 int i;
1835
Jeff Moyer2404e602015-11-03 10:40:06 -05001836 queue_for_each_hw_ctx(q, hctx, i) {
1837 if (shared)
1838 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1839 else
1840 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1841 }
1842}
1843
1844static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1845{
1846 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001847
1848 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1849 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001850 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001851 blk_mq_unfreeze_queue(q);
1852 }
1853}
1854
1855static void blk_mq_del_queue_tag_set(struct request_queue *q)
1856{
1857 struct blk_mq_tag_set *set = q->tag_set;
1858
Jens Axboe0d2602c2014-05-13 15:10:52 -06001859 mutex_lock(&set->tag_list_lock);
1860 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001861 if (list_is_singular(&set->tag_list)) {
1862 /* just transitioned to unshared */
1863 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1864 /* update existing queue */
1865 blk_mq_update_tag_set_depth(set, false);
1866 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001867 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001868}
1869
1870static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1871 struct request_queue *q)
1872{
1873 q->tag_set = set;
1874
1875 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001876
1877 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1878 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1879 set->flags |= BLK_MQ_F_TAG_SHARED;
1880 /* update existing queue */
1881 blk_mq_update_tag_set_depth(set, true);
1882 }
1883 if (set->flags & BLK_MQ_F_TAG_SHARED)
1884 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001885 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001886
Jens Axboe0d2602c2014-05-13 15:10:52 -06001887 mutex_unlock(&set->tag_list_lock);
1888}
1889
Ming Leie09aae72015-01-29 20:17:27 +08001890/*
1891 * It is the actual release handler for mq, but we do it from
1892 * request queue's release handler for avoiding use-after-free
1893 * and headache because q->mq_kobj shouldn't have been introduced,
1894 * but we can't group ctx/kctx kobj without it.
1895 */
1896void blk_mq_release(struct request_queue *q)
1897{
1898 struct blk_mq_hw_ctx *hctx;
1899 unsigned int i;
1900
1901 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001902 queue_for_each_hw_ctx(q, hctx, i) {
1903 if (!hctx)
1904 continue;
1905 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08001906 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08001907 }
Ming Leie09aae72015-01-29 20:17:27 +08001908
Akinobu Mitaa723bab2015-09-27 02:09:21 +09001909 kfree(q->mq_map);
1910 q->mq_map = NULL;
1911
Ming Leie09aae72015-01-29 20:17:27 +08001912 kfree(q->queue_hw_ctx);
1913
1914 /* ctx kobj stays in queue_ctx */
1915 free_percpu(q->queue_ctx);
1916}
1917
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001918struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001919{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001920 struct request_queue *uninit_q, *q;
1921
1922 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1923 if (!uninit_q)
1924 return ERR_PTR(-ENOMEM);
1925
1926 q = blk_mq_init_allocated_queue(set, uninit_q);
1927 if (IS_ERR(q))
1928 blk_cleanup_queue(uninit_q);
1929
1930 return q;
1931}
1932EXPORT_SYMBOL(blk_mq_init_queue);
1933
Keith Busch868f2f02015-12-17 17:08:14 -07001934static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1935 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04001936{
Keith Busch868f2f02015-12-17 17:08:14 -07001937 int i, j;
1938 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001939
Keith Busch868f2f02015-12-17 17:08:14 -07001940 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001941 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07001942 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06001943
Keith Busch868f2f02015-12-17 17:08:14 -07001944 if (hctxs[i])
1945 continue;
1946
1947 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001948 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1949 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001950 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07001951 break;
Jens Axboe320ae512013-10-24 09:20:05 +01001952
Jens Axboea86073e2014-10-13 15:41:54 -06001953 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07001954 node)) {
1955 kfree(hctxs[i]);
1956 hctxs[i] = NULL;
1957 break;
1958 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001959
Jens Axboe0d2602c2014-05-13 15:10:52 -06001960 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001961 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001962 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07001963
1964 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
1965 free_cpumask_var(hctxs[i]->cpumask);
1966 kfree(hctxs[i]);
1967 hctxs[i] = NULL;
1968 break;
1969 }
1970 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001971 }
Keith Busch868f2f02015-12-17 17:08:14 -07001972 for (j = i; j < q->nr_hw_queues; j++) {
1973 struct blk_mq_hw_ctx *hctx = hctxs[j];
1974
1975 if (hctx) {
1976 if (hctx->tags) {
1977 blk_mq_free_rq_map(set, hctx->tags, j);
1978 set->tags[j] = NULL;
1979 }
1980 blk_mq_exit_hctx(q, set, hctx, j);
1981 free_cpumask_var(hctx->cpumask);
1982 kobject_put(&hctx->kobj);
1983 kfree(hctx->ctxs);
1984 kfree(hctx);
1985 hctxs[j] = NULL;
1986
1987 }
1988 }
1989 q->nr_hw_queues = i;
1990 blk_mq_sysfs_register(q);
1991}
1992
1993struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
1994 struct request_queue *q)
1995{
Ming Lei66841672016-02-12 15:27:00 +08001996 /* mark the queue as mq asap */
1997 q->mq_ops = set->ops;
1998
Keith Busch868f2f02015-12-17 17:08:14 -07001999 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2000 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002001 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002002
2003 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2004 GFP_KERNEL, set->numa_node);
2005 if (!q->queue_hw_ctx)
2006 goto err_percpu;
2007
2008 q->mq_map = blk_mq_make_queue_map(set);
2009 if (!q->mq_map)
2010 goto err_map;
2011
2012 blk_mq_realloc_hw_ctxs(set, q);
2013 if (!q->nr_hw_queues)
2014 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002015
Christoph Hellwig287922e2015-10-30 20:57:30 +08002016 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002017 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002018
2019 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002020
Jens Axboe94eddfb2013-11-19 09:25:07 -07002021 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002022
Jens Axboe05f1dd52014-05-29 09:53:32 -06002023 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2024 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2025
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002026 q->sg_reserved_size = INT_MAX;
2027
Mike Snitzer28494502016-09-14 13:28:30 -04002028 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002029 INIT_LIST_HEAD(&q->requeue_list);
2030 spin_lock_init(&q->requeue_lock);
2031
Jens Axboe07068d52014-05-22 10:40:51 -06002032 if (q->nr_hw_queues > 1)
2033 blk_queue_make_request(q, blk_mq_make_request);
2034 else
2035 blk_queue_make_request(q, blk_sq_make_request);
2036
Jens Axboeeba71762014-05-20 15:17:27 -06002037 /*
2038 * Do this after blk_queue_make_request() overrides it...
2039 */
2040 q->nr_requests = set->queue_depth;
2041
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002042 if (set->ops->complete)
2043 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002044
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002045 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002046
Akinobu Mita57783222015-09-27 02:09:23 +09002047 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002048 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002049
Jens Axboe320ae512013-10-24 09:20:05 +01002050 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002051 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002052 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002053
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002054 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002055 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002056
Jens Axboe320ae512013-10-24 09:20:05 +01002057 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002058
Jens Axboe320ae512013-10-24 09:20:05 +01002059err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002060 kfree(q->mq_map);
Jens Axboef14bbe72014-05-27 12:06:53 -06002061err_map:
Keith Busch868f2f02015-12-17 17:08:14 -07002062 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002063err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002064 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002065err_exit:
2066 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002067 return ERR_PTR(-ENOMEM);
2068}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002069EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002070
2071void blk_mq_free_queue(struct request_queue *q)
2072{
Ming Lei624dbe42014-05-27 23:35:13 +08002073 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002074
Akinobu Mita0e626362015-09-27 02:09:22 +09002075 mutex_lock(&all_q_mutex);
2076 list_del_init(&q->all_q_node);
2077 mutex_unlock(&all_q_mutex);
2078
Jens Axboe0d2602c2014-05-13 15:10:52 -06002079 blk_mq_del_queue_tag_set(q);
2080
Ming Lei624dbe42014-05-27 23:35:13 +08002081 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2082 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002083}
Jens Axboe320ae512013-10-24 09:20:05 +01002084
2085/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002086static void blk_mq_queue_reinit(struct request_queue *q,
2087 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002088{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002089 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002090
Jens Axboe67aec142014-05-30 08:25:36 -06002091 blk_mq_sysfs_unregister(q);
2092
Akinobu Mita57783222015-09-27 02:09:23 +09002093 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002094
2095 /*
2096 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2097 * we should change hctx numa_node according to new topology (this
2098 * involves free and re-allocate memory, worthy doing?)
2099 */
2100
Akinobu Mita57783222015-09-27 02:09:23 +09002101 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002102
Jens Axboe67aec142014-05-30 08:25:36 -06002103 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002104}
2105
Paul Gortmakerf618ef72013-11-14 08:26:02 -07002106static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
2107 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01002108{
2109 struct request_queue *q;
Akinobu Mita57783222015-09-27 02:09:23 +09002110 int cpu = (unsigned long)hcpu;
2111 /*
2112 * New online cpumask which is going to be set in this hotplug event.
2113 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2114 * one-by-one and dynamically allocating this could result in a failure.
2115 */
2116 static struct cpumask online_new;
Jens Axboe320ae512013-10-24 09:20:05 +01002117
2118 /*
Akinobu Mita57783222015-09-27 02:09:23 +09002119 * Before hotadded cpu starts handling requests, new mappings must
2120 * be established. Otherwise, these requests in hw queue might
2121 * never be dispatched.
2122 *
2123 * For example, there is a single hw queue (hctx) and two CPU queues
2124 * (ctx0 for CPU0, and ctx1 for CPU1).
2125 *
2126 * Now CPU1 is just onlined and a request is inserted into
2127 * ctx1->rq_list and set bit0 in pending bitmap as ctx1->index_hw is
2128 * still zero.
2129 *
2130 * And then while running hw queue, flush_busy_ctxs() finds bit0 is
2131 * set in pending bitmap and tries to retrieve requests in
2132 * hctx->ctxs[0]->rq_list. But htx->ctxs[0] is a pointer to ctx0,
2133 * so the request in ctx1->rq_list is ignored.
Jens Axboe320ae512013-10-24 09:20:05 +01002134 */
Akinobu Mita57783222015-09-27 02:09:23 +09002135 switch (action & ~CPU_TASKS_FROZEN) {
2136 case CPU_DEAD:
2137 case CPU_UP_CANCELED:
2138 cpumask_copy(&online_new, cpu_online_mask);
2139 break;
2140 case CPU_UP_PREPARE:
2141 cpumask_copy(&online_new, cpu_online_mask);
2142 cpumask_set_cpu(cpu, &online_new);
2143 break;
2144 default:
Jens Axboe320ae512013-10-24 09:20:05 +01002145 return NOTIFY_OK;
Akinobu Mita57783222015-09-27 02:09:23 +09002146 }
Jens Axboe320ae512013-10-24 09:20:05 +01002147
2148 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002149
2150 /*
2151 * We need to freeze and reinit all existing queues. Freezing
2152 * involves synchronous wait for an RCU grace period and doing it
2153 * one by one may take a long time. Start freezing all queues in
2154 * one swoop and then wait for the completions so that freezing can
2155 * take place in parallel.
2156 */
2157 list_for_each_entry(q, &all_q_list, all_q_node)
2158 blk_mq_freeze_queue_start(q);
Ming Leif054b562015-04-21 10:00:19 +08002159 list_for_each_entry(q, &all_q_list, all_q_node) {
Tejun Heof3af0202014-11-04 13:52:27 -05002160 blk_mq_freeze_queue_wait(q);
2161
Ming Leif054b562015-04-21 10:00:19 +08002162 /*
2163 * timeout handler can't touch hw queue during the
2164 * reinitialization
2165 */
2166 del_timer_sync(&q->timeout);
2167 }
2168
Jens Axboe320ae512013-10-24 09:20:05 +01002169 list_for_each_entry(q, &all_q_list, all_q_node)
Akinobu Mita57783222015-09-27 02:09:23 +09002170 blk_mq_queue_reinit(q, &online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002171
2172 list_for_each_entry(q, &all_q_list, all_q_node)
2173 blk_mq_unfreeze_queue(q);
2174
Jens Axboe320ae512013-10-24 09:20:05 +01002175 mutex_unlock(&all_q_mutex);
2176 return NOTIFY_OK;
2177}
2178
Jens Axboea5164402014-09-10 09:02:03 -06002179static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2180{
2181 int i;
2182
2183 for (i = 0; i < set->nr_hw_queues; i++) {
2184 set->tags[i] = blk_mq_init_rq_map(set, i);
2185 if (!set->tags[i])
2186 goto out_unwind;
2187 }
2188
2189 return 0;
2190
2191out_unwind:
2192 while (--i >= 0)
2193 blk_mq_free_rq_map(set, set->tags[i], i);
2194
Jens Axboea5164402014-09-10 09:02:03 -06002195 return -ENOMEM;
2196}
2197
2198/*
2199 * Allocate the request maps associated with this tag_set. Note that this
2200 * may reduce the depth asked for, if memory is tight. set->queue_depth
2201 * will be updated to reflect the allocated depth.
2202 */
2203static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2204{
2205 unsigned int depth;
2206 int err;
2207
2208 depth = set->queue_depth;
2209 do {
2210 err = __blk_mq_alloc_rq_maps(set);
2211 if (!err)
2212 break;
2213
2214 set->queue_depth >>= 1;
2215 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2216 err = -ENOMEM;
2217 break;
2218 }
2219 } while (set->queue_depth);
2220
2221 if (!set->queue_depth || err) {
2222 pr_err("blk-mq: failed to allocate request map\n");
2223 return -ENOMEM;
2224 }
2225
2226 if (depth != set->queue_depth)
2227 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2228 depth, set->queue_depth);
2229
2230 return 0;
2231}
2232
Keith Buschf26cdc82015-06-01 09:29:53 -06002233struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags)
2234{
2235 return tags->cpumask;
2236}
2237EXPORT_SYMBOL_GPL(blk_mq_tags_cpumask);
2238
Jens Axboea4391c62014-06-05 15:21:56 -06002239/*
2240 * Alloc a tag set to be associated with one or more request queues.
2241 * May fail with EINVAL for various error conditions. May adjust the
2242 * requested depth down, if if it too large. In that case, the set
2243 * value will be stored in set->queue_depth.
2244 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002245int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2246{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002247 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2248
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002249 if (!set->nr_hw_queues)
2250 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002251 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002252 return -EINVAL;
2253 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2254 return -EINVAL;
2255
Xiaoguang Wangf9018ac2015-03-30 13:19:14 +08002256 if (!set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002257 return -EINVAL;
2258
Jens Axboea4391c62014-06-05 15:21:56 -06002259 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2260 pr_info("blk-mq: reduced tag depth to %u\n",
2261 BLK_MQ_MAX_DEPTH);
2262 set->queue_depth = BLK_MQ_MAX_DEPTH;
2263 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002264
Shaohua Li6637fad2014-11-30 16:00:58 -08002265 /*
2266 * If a crashdump is active, then we are potentially in a very
2267 * memory constrained environment. Limit us to 1 queue and
2268 * 64 tags to prevent using too much memory.
2269 */
2270 if (is_kdump_kernel()) {
2271 set->nr_hw_queues = 1;
2272 set->queue_depth = min(64U, set->queue_depth);
2273 }
Keith Busch868f2f02015-12-17 17:08:14 -07002274 /*
2275 * There is no use for more h/w queues than cpus.
2276 */
2277 if (set->nr_hw_queues > nr_cpu_ids)
2278 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002279
Keith Busch868f2f02015-12-17 17:08:14 -07002280 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002281 GFP_KERNEL, set->numa_node);
2282 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002283 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002284
Jens Axboea5164402014-09-10 09:02:03 -06002285 if (blk_mq_alloc_rq_maps(set))
2286 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002287
Jens Axboe0d2602c2014-05-13 15:10:52 -06002288 mutex_init(&set->tag_list_lock);
2289 INIT_LIST_HEAD(&set->tag_list);
2290
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002291 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002292enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002293 kfree(set->tags);
2294 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002295 return -ENOMEM;
2296}
2297EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2298
2299void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2300{
2301 int i;
2302
Keith Busch868f2f02015-12-17 17:08:14 -07002303 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002304 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002305 blk_mq_free_rq_map(set, set->tags[i], i);
2306 }
2307
Ming Lei981bd182014-04-24 00:07:34 +08002308 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002309 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002310}
2311EXPORT_SYMBOL(blk_mq_free_tag_set);
2312
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002313int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2314{
2315 struct blk_mq_tag_set *set = q->tag_set;
2316 struct blk_mq_hw_ctx *hctx;
2317 int i, ret;
2318
2319 if (!set || nr > set->queue_depth)
2320 return -EINVAL;
2321
2322 ret = 0;
2323 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002324 if (!hctx->tags)
2325 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002326 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2327 if (ret)
2328 break;
2329 }
2330
2331 if (!ret)
2332 q->nr_requests = nr;
2333
2334 return ret;
2335}
2336
Keith Busch868f2f02015-12-17 17:08:14 -07002337void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2338{
2339 struct request_queue *q;
2340
2341 if (nr_hw_queues > nr_cpu_ids)
2342 nr_hw_queues = nr_cpu_ids;
2343 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2344 return;
2345
2346 list_for_each_entry(q, &set->tag_list, tag_set_list)
2347 blk_mq_freeze_queue(q);
2348
2349 set->nr_hw_queues = nr_hw_queues;
2350 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2351 blk_mq_realloc_hw_ctxs(set, q);
2352
2353 if (q->nr_hw_queues > 1)
2354 blk_queue_make_request(q, blk_mq_make_request);
2355 else
2356 blk_queue_make_request(q, blk_sq_make_request);
2357
2358 blk_mq_queue_reinit(q, cpu_online_mask);
2359 }
2360
2361 list_for_each_entry(q, &set->tag_list, tag_set_list)
2362 blk_mq_unfreeze_queue(q);
2363}
2364EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2365
Jens Axboe676141e2014-03-20 13:29:18 -06002366void blk_mq_disable_hotplug(void)
2367{
2368 mutex_lock(&all_q_mutex);
2369}
2370
2371void blk_mq_enable_hotplug(void)
2372{
2373 mutex_unlock(&all_q_mutex);
2374}
2375
Jens Axboe320ae512013-10-24 09:20:05 +01002376static int __init blk_mq_init(void)
2377{
Jens Axboe320ae512013-10-24 09:20:05 +01002378 blk_mq_cpu_init();
2379
Tejun Heoadd703f2014-07-01 10:34:38 -06002380 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002381
2382 return 0;
2383}
2384subsys_initcall(blk_mq_init);