blob: bac12caece0664fa0c690a33fa35c60ca83e039d [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
Jens Axboe320ae512013-10-24 09:20:05 +01007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010012#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010013#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060024#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060025#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010026
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070033#include "blk-stat.h"
Jens Axboe87760e52016-11-09 12:38:14 -070034#include "blk-wbt.h"
Jens Axboe320ae512013-10-24 09:20:05 +010035
36static DEFINE_MUTEX(all_q_mutex);
37static LIST_HEAD(all_q_list);
38
Jens Axboe320ae512013-10-24 09:20:05 +010039/*
40 * Check if any of the ctx's have pending work in this hardware queue
41 */
42static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
43{
Omar Sandoval88459642016-09-17 08:38:44 -060044 return sbitmap_any_bit_set(&hctx->ctx_map);
Jens Axboe320ae512013-10-24 09:20:05 +010045}
46
47/*
48 * Mark this ctx as having pending work in this hardware queue
49 */
50static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
51 struct blk_mq_ctx *ctx)
52{
Omar Sandoval88459642016-09-17 08:38:44 -060053 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
54 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060055}
56
57static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
58 struct blk_mq_ctx *ctx)
59{
Omar Sandoval88459642016-09-17 08:38:44 -060060 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010061}
62
Keith Buschb4c6a022014-12-19 17:54:14 -070063void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080064{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020065 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040066
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020067 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
68 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040069 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040070 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040071 }
Tejun Heof3af0202014-11-04 13:52:27 -050072}
Keith Buschb4c6a022014-12-19 17:54:14 -070073EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050074
75static void blk_mq_freeze_queue_wait(struct request_queue *q)
76{
Dan Williams3ef28e82015-10-21 13:20:12 -040077 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080078}
79
Tejun Heof3af0202014-11-04 13:52:27 -050080/*
81 * Guarantee no request is in use, so we can change any data structure of
82 * the queue afterward.
83 */
Dan Williams3ef28e82015-10-21 13:20:12 -040084void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050085{
Dan Williams3ef28e82015-10-21 13:20:12 -040086 /*
87 * In the !blk_mq case we are only calling this to kill the
88 * q_usage_counter, otherwise this increases the freeze depth
89 * and waits for it to return to zero. For this reason there is
90 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
91 * exported to drivers as the only user for unfreeze is blk_mq.
92 */
Tejun Heof3af0202014-11-04 13:52:27 -050093 blk_mq_freeze_queue_start(q);
94 blk_mq_freeze_queue_wait(q);
95}
Dan Williams3ef28e82015-10-21 13:20:12 -040096
97void blk_mq_freeze_queue(struct request_queue *q)
98{
99 /*
100 * ...just an alias to keep freeze and unfreeze actions balanced
101 * in the blk_mq_* namespace
102 */
103 blk_freeze_queue(q);
104}
Jens Axboec761d962015-01-02 15:05:12 -0700105EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500106
Keith Buschb4c6a022014-12-19 17:54:14 -0700107void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100108{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200109 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100110
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200111 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
112 WARN_ON_ONCE(freeze_depth < 0);
113 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400114 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100115 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600116 }
Jens Axboe320ae512013-10-24 09:20:05 +0100117}
Keith Buschb4c6a022014-12-19 17:54:14 -0700118EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100119
Bart Van Assche6a83e742016-11-02 10:09:51 -0600120/**
121 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
122 * @q: request queue.
123 *
124 * Note: this function does not prevent that the struct request end_io()
125 * callback function is invoked. Additionally, it is not prevented that
126 * new queue_rq() calls occur unless the queue has been stopped first.
127 */
128void blk_mq_quiesce_queue(struct request_queue *q)
129{
130 struct blk_mq_hw_ctx *hctx;
131 unsigned int i;
132 bool rcu = false;
133
134 blk_mq_stop_hw_queues(q);
135
136 queue_for_each_hw_ctx(q, hctx, i) {
137 if (hctx->flags & BLK_MQ_F_BLOCKING)
138 synchronize_srcu(&hctx->queue_rq_srcu);
139 else
140 rcu = true;
141 }
142 if (rcu)
143 synchronize_rcu();
144}
145EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
146
Jens Axboeaed3ea92014-12-22 14:04:42 -0700147void blk_mq_wake_waiters(struct request_queue *q)
148{
149 struct blk_mq_hw_ctx *hctx;
150 unsigned int i;
151
152 queue_for_each_hw_ctx(q, hctx, i)
153 if (blk_mq_hw_queue_mapped(hctx))
154 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700155
156 /*
157 * If we are called because the queue has now been marked as
158 * dying, we need to ensure that processes currently waiting on
159 * the queue are notified as well.
160 */
161 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700162}
163
Jens Axboe320ae512013-10-24 09:20:05 +0100164bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
165{
166 return blk_mq_has_free_tags(hctx->tags);
167}
168EXPORT_SYMBOL(blk_mq_can_queue);
169
Jens Axboe94eddfb2013-11-19 09:25:07 -0700170static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600171 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100172{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200173 INIT_LIST_HEAD(&rq->queuelist);
174 /* csd/requeue_work/fifo_time is initialized before use */
175 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100176 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600177 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200178 if (blk_queue_io_stat(q))
179 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 /* do not touch atomic flags, it needs atomic ops against the timer */
181 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 INIT_HLIST_NODE(&rq->hash);
183 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200184 rq->rq_disk = NULL;
185 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600186 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200187#ifdef CONFIG_BLK_CGROUP
188 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700189 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190 rq->io_start_time_ns = 0;
191#endif
192 rq->nr_phys_segments = 0;
193#if defined(CONFIG_BLK_DEV_INTEGRITY)
194 rq->nr_integrity_segments = 0;
195#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200196 rq->special = NULL;
197 /* tag was already set */
198 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200199
Tony Battersby6f4a16262014-08-22 15:53:39 -0400200 rq->cmd = rq->__cmd;
201
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200202 rq->extra_len = 0;
203 rq->sense_len = 0;
204 rq->resid_len = 0;
205 rq->sense = NULL;
206
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200207 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600208 rq->timeout = 0;
209
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200210 rq->end_io = NULL;
211 rq->end_io_data = NULL;
212 rq->next_rq = NULL;
213
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600214 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100215}
216
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217static struct request *
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600218__blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200219{
220 struct request *rq;
221 unsigned int tag;
222
Ming Leicb96a42c2014-06-01 00:43:37 +0800223 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a42c2014-06-01 00:43:37 +0800225 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200226
Ming Leicb96a42c2014-06-01 00:43:37 +0800227 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200228 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a42c2014-06-01 00:43:37 +0800229 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200230 }
231
232 rq->tag = tag;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600233 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200234 return rq;
235 }
236
237 return NULL;
238}
239
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100240struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
241 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100242{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200243 struct blk_mq_ctx *ctx;
244 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100245 struct request *rq;
Ming Leicb96a42c2014-06-01 00:43:37 +0800246 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600247 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100248
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100249 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600250 if (ret)
251 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100252
Christoph Hellwigd8525642014-05-27 20:59:50 +0200253 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200254 hctx = blk_mq_map_queue(q, ctx->cpu);
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100255 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600256 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200257 blk_mq_put_ctx(ctx);
Jens Axboe841bac22016-09-21 10:08:43 -0600258
Keith Buschc76541a2014-12-19 17:54:13 -0700259 if (!rq) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400260 blk_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600261 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700262 }
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200263
264 rq->__data_len = 0;
265 rq->__sector = (sector_t) -1;
266 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100267 return rq;
268}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600269EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100270
Ming Lin1f5bd332016-06-13 16:45:21 +0200271struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
272 unsigned int flags, unsigned int hctx_idx)
273{
274 struct blk_mq_hw_ctx *hctx;
275 struct blk_mq_ctx *ctx;
276 struct request *rq;
277 struct blk_mq_alloc_data alloc_data;
278 int ret;
279
280 /*
281 * If the tag allocator sleeps we could get an allocation for a
282 * different hardware context. No need to complicate the low level
283 * allocator for this for the rare use case of a command tied to
284 * a specific queue.
285 */
286 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
287 return ERR_PTR(-EINVAL);
288
289 if (hctx_idx >= q->nr_hw_queues)
290 return ERR_PTR(-EIO);
291
292 ret = blk_queue_enter(q, true);
293 if (ret)
294 return ERR_PTR(ret);
295
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600296 /*
297 * Check if the hardware context is actually mapped to anything.
298 * If not tell the caller that it should skip this queue.
299 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200300 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600301 if (!blk_mq_hw_queue_mapped(hctx)) {
302 ret = -EXDEV;
303 goto out_queue_exit;
304 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200305 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
306
307 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600308 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200309 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600310 ret = -EWOULDBLOCK;
311 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200312 }
313
314 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600315
316out_queue_exit:
317 blk_queue_exit(q);
318 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200319}
320EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
321
Jens Axboe320ae512013-10-24 09:20:05 +0100322static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
323 struct blk_mq_ctx *ctx, struct request *rq)
324{
325 const int tag = rq->tag;
326 struct request_queue *q = rq->q;
327
Christoph Hellwige8064022016-10-20 15:12:13 +0200328 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600329 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700330
331 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200332 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600333
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200334 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700335 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700336 blk_mq_put_tag(hctx, ctx, tag);
Dan Williams3ef28e82015-10-21 13:20:12 -0400337 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100338}
339
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700340void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100341{
342 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700343
344 ctx->rq_completed[rq_is_sync(rq)]++;
345 __blk_mq_free_request(hctx, ctx, rq);
346
347}
348EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
349
350void blk_mq_free_request(struct request *rq)
351{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200352 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100353}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700354EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100355
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700356inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100357{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700358 blk_account_io_done(rq);
359
Christoph Hellwig91b63632014-04-16 09:44:53 +0200360 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700361 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100362 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200363 } else {
364 if (unlikely(blk_bidi_rq(rq)))
365 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100366 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200367 }
Jens Axboe320ae512013-10-24 09:20:05 +0100368}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700369EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200370
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700371void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200372{
373 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
374 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700375 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200376}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700377EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100378
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800379static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100380{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800381 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100382
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800383 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100384}
385
Jens Axboeed851862014-05-30 21:20:50 -0600386static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100387{
388 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700389 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100390 int cpu;
391
Christoph Hellwig38535202014-04-25 02:32:53 -0700392 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800393 rq->q->softirq_done_fn(rq);
394 return;
395 }
Jens Axboe320ae512013-10-24 09:20:05 +0100396
397 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700398 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
399 shared = cpus_share_cache(cpu, ctx->cpu);
400
401 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800402 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800403 rq->csd.info = rq;
404 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100405 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800406 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800407 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800408 }
Jens Axboe320ae512013-10-24 09:20:05 +0100409 put_cpu();
410}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800411
Jens Axboecf43e6b2016-11-07 21:32:37 -0700412static void blk_mq_stat_add(struct request *rq)
413{
414 if (rq->rq_flags & RQF_STATS) {
415 /*
416 * We could rq->mq_ctx here, but there's less of a risk
417 * of races if we have the completion event add the stats
418 * to the local software queue.
419 */
420 struct blk_mq_ctx *ctx;
421
422 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
423 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
424 }
425}
426
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700427static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600428{
429 struct request_queue *q = rq->q;
430
Jens Axboecf43e6b2016-11-07 21:32:37 -0700431 blk_mq_stat_add(rq);
432
Jens Axboeed851862014-05-30 21:20:50 -0600433 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700434 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600435 else
436 blk_mq_ipi_complete_request(rq);
437}
438
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800439/**
440 * blk_mq_complete_request - end I/O on a request
441 * @rq: the request being processed
442 *
443 * Description:
444 * Ends all I/O on a request. It does not handle partial completions.
445 * The actual completion happens out-of-order, through a IPI handler.
446 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200447void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800448{
Jens Axboe95f09682014-05-27 17:46:48 -0600449 struct request_queue *q = rq->q;
450
451 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800452 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200453 if (!blk_mark_rq_complete(rq)) {
454 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600455 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200456 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800457}
458EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100459
Keith Busch973c0192015-01-07 18:55:43 -0700460int blk_mq_request_started(struct request *rq)
461{
462 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
463}
464EXPORT_SYMBOL_GPL(blk_mq_request_started);
465
Christoph Hellwige2490072014-09-13 16:40:09 -0700466void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100467{
468 struct request_queue *q = rq->q;
469
470 trace_block_rq_issue(q, rq);
471
Christoph Hellwig742ee692014-04-14 10:30:06 +0200472 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200473 if (unlikely(blk_bidi_rq(rq)))
474 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200475
Jens Axboecf43e6b2016-11-07 21:32:37 -0700476 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
477 blk_stat_set_issue_time(&rq->issue_stat);
478 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700479 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700480 }
481
Ming Lei2b8393b2014-06-10 00:16:41 +0800482 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600483
484 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600485 * Ensure that ->deadline is visible before set the started
486 * flag and clear the completed flag.
487 */
488 smp_mb__before_atomic();
489
490 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600491 * Mark us as started and clear complete. Complete might have been
492 * set if requeue raced with timeout, which then marked it as
493 * complete. So be sure to clear complete again when we start
494 * the request, otherwise we'll ignore the completion event.
495 */
Jens Axboe4b570522014-05-29 11:00:11 -0600496 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
497 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
498 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
499 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800500
501 if (q->dma_drain_size && blk_rq_bytes(rq)) {
502 /*
503 * Make sure space for the drain appears. We know we can do
504 * this because max_hw_segments has been adjusted to be one
505 * fewer than the device can handle.
506 */
507 rq->nr_phys_segments++;
508 }
Jens Axboe320ae512013-10-24 09:20:05 +0100509}
Christoph Hellwige2490072014-09-13 16:40:09 -0700510EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100511
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200512static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100513{
514 struct request_queue *q = rq->q;
515
516 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700517 wbt_requeue(q->rq_wb, &rq->issue_stat);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800518
Christoph Hellwige2490072014-09-13 16:40:09 -0700519 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
520 if (q->dma_drain_size && blk_rq_bytes(rq))
521 rq->nr_phys_segments--;
522 }
Jens Axboe320ae512013-10-24 09:20:05 +0100523}
524
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700525void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200526{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200527 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200528
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200529 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700530 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200531}
532EXPORT_SYMBOL(blk_mq_requeue_request);
533
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600534static void blk_mq_requeue_work(struct work_struct *work)
535{
536 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400537 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600538 LIST_HEAD(rq_list);
539 struct request *rq, *next;
540 unsigned long flags;
541
542 spin_lock_irqsave(&q->requeue_lock, flags);
543 list_splice_init(&q->requeue_list, &rq_list);
544 spin_unlock_irqrestore(&q->requeue_lock, flags);
545
546 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200547 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600548 continue;
549
Christoph Hellwige8064022016-10-20 15:12:13 +0200550 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600551 list_del_init(&rq->queuelist);
552 blk_mq_insert_request(rq, true, false, false);
553 }
554
555 while (!list_empty(&rq_list)) {
556 rq = list_entry(rq_list.next, struct request, queuelist);
557 list_del_init(&rq->queuelist);
558 blk_mq_insert_request(rq, false, false, false);
559 }
560
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700561 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600562}
563
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700564void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
565 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600566{
567 struct request_queue *q = rq->q;
568 unsigned long flags;
569
570 /*
571 * We abuse this flag that is otherwise used by the I/O scheduler to
572 * request head insertation from the workqueue.
573 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200574 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600575
576 spin_lock_irqsave(&q->requeue_lock, flags);
577 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200578 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600579 list_add(&rq->queuelist, &q->requeue_list);
580 } else {
581 list_add_tail(&rq->queuelist, &q->requeue_list);
582 }
583 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700584
585 if (kick_requeue_list)
586 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600587}
588EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
589
590void blk_mq_kick_requeue_list(struct request_queue *q)
591{
Mike Snitzer28494502016-09-14 13:28:30 -0400592 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600593}
594EXPORT_SYMBOL(blk_mq_kick_requeue_list);
595
Mike Snitzer28494502016-09-14 13:28:30 -0400596void blk_mq_delay_kick_requeue_list(struct request_queue *q,
597 unsigned long msecs)
598{
599 kblockd_schedule_delayed_work(&q->requeue_work,
600 msecs_to_jiffies(msecs));
601}
602EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
603
Jens Axboe1885b242015-01-07 18:55:45 -0700604void blk_mq_abort_requeue_list(struct request_queue *q)
605{
606 unsigned long flags;
607 LIST_HEAD(rq_list);
608
609 spin_lock_irqsave(&q->requeue_lock, flags);
610 list_splice_init(&q->requeue_list, &rq_list);
611 spin_unlock_irqrestore(&q->requeue_lock, flags);
612
613 while (!list_empty(&rq_list)) {
614 struct request *rq;
615
616 rq = list_first_entry(&rq_list, struct request, queuelist);
617 list_del_init(&rq->queuelist);
618 rq->errors = -EIO;
619 blk_mq_end_request(rq, rq->errors);
620 }
621}
622EXPORT_SYMBOL(blk_mq_abort_requeue_list);
623
Jens Axboe0e62f512014-06-04 10:23:49 -0600624struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
625{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600626 if (tag < tags->nr_tags) {
627 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700628 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600629 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700630
631 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600632}
633EXPORT_SYMBOL(blk_mq_tag_to_rq);
634
Jens Axboe320ae512013-10-24 09:20:05 +0100635struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700636 unsigned long next;
637 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100638};
639
Christoph Hellwig90415832014-09-22 10:21:48 -0600640void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100641{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700642 struct blk_mq_ops *ops = req->q->mq_ops;
643 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600644
645 /*
646 * We know that complete is set at this point. If STARTED isn't set
647 * anymore, then the request isn't active and the "timeout" should
648 * just be ignored. This can happen due to the bitflag ordering.
649 * Timeout first checks if STARTED is set, and if it is, assumes
650 * the request is active. But if we race with completion, then
651 * we both flags will get cleared. So check here again, and ignore
652 * a timeout event with a request that isn't active.
653 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700654 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
655 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600656
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700657 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700658 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600659
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700660 switch (ret) {
661 case BLK_EH_HANDLED:
662 __blk_mq_complete_request(req);
663 break;
664 case BLK_EH_RESET_TIMER:
665 blk_add_timer(req);
666 blk_clear_rq_complete(req);
667 break;
668 case BLK_EH_NOT_HANDLED:
669 break;
670 default:
671 printk(KERN_ERR "block: bad eh return: %d\n", ret);
672 break;
673 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600674}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700675
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700676static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
677 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100678{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700679 struct blk_mq_timeout_data *data = priv;
680
Keith Buscheb130db2015-01-08 08:59:53 -0700681 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
682 /*
683 * If a request wasn't started before the queue was
684 * marked dying, kill it here or it'll go unnoticed.
685 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700686 if (unlikely(blk_queue_dying(rq->q))) {
687 rq->errors = -EIO;
688 blk_mq_end_request(rq, rq->errors);
689 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700690 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700691 }
Jens Axboe320ae512013-10-24 09:20:05 +0100692
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700693 if (time_after_eq(jiffies, rq->deadline)) {
694 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700695 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700696 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
697 data->next = rq->deadline;
698 data->next_set = 1;
699 }
Jens Axboe320ae512013-10-24 09:20:05 +0100700}
701
Christoph Hellwig287922e2015-10-30 20:57:30 +0800702static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100703{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800704 struct request_queue *q =
705 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700706 struct blk_mq_timeout_data data = {
707 .next = 0,
708 .next_set = 0,
709 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700710 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100711
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600712 /* A deadlock might occur if a request is stuck requiring a
713 * timeout at the same time a queue freeze is waiting
714 * completion, since the timeout code would not be able to
715 * acquire the queue reference here.
716 *
717 * That's why we don't use blk_queue_enter here; instead, we use
718 * percpu_ref_tryget directly, because we need to be able to
719 * obtain a reference even in the short window between the queue
720 * starting to freeze, by dropping the first reference in
721 * blk_mq_freeze_queue_start, and the moment the last request is
722 * consumed, marked by the instant q_usage_counter reaches
723 * zero.
724 */
725 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800726 return;
727
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200728 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100729
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700730 if (data.next_set) {
731 data.next = blk_rq_timeout(round_jiffies_up(data.next));
732 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600733 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200734 struct blk_mq_hw_ctx *hctx;
735
Ming Leif054b562015-04-21 10:00:19 +0800736 queue_for_each_hw_ctx(q, hctx, i) {
737 /* the hctx may be unmapped, so check it here */
738 if (blk_mq_hw_queue_mapped(hctx))
739 blk_mq_tag_idle(hctx);
740 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600741 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800742 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100743}
744
745/*
746 * Reverse check our software queue for entries that we could potentially
747 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
748 * too much time checking for merges.
749 */
750static bool blk_mq_attempt_merge(struct request_queue *q,
751 struct blk_mq_ctx *ctx, struct bio *bio)
752{
753 struct request *rq;
754 int checked = 8;
755
756 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
757 int el_ret;
758
759 if (!checked--)
760 break;
761
762 if (!blk_rq_merge_ok(rq, bio))
763 continue;
764
765 el_ret = blk_try_merge(rq, bio);
766 if (el_ret == ELEVATOR_BACK_MERGE) {
767 if (bio_attempt_back_merge(q, rq, bio)) {
768 ctx->rq_merged++;
769 return true;
770 }
771 break;
772 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
773 if (bio_attempt_front_merge(q, rq, bio)) {
774 ctx->rq_merged++;
775 return true;
776 }
777 break;
778 }
779 }
780
781 return false;
782}
783
Omar Sandoval88459642016-09-17 08:38:44 -0600784struct flush_busy_ctx_data {
785 struct blk_mq_hw_ctx *hctx;
786 struct list_head *list;
787};
788
789static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
790{
791 struct flush_busy_ctx_data *flush_data = data;
792 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
793 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
794
795 sbitmap_clear_bit(sb, bitnr);
796 spin_lock(&ctx->lock);
797 list_splice_tail_init(&ctx->rq_list, flush_data->list);
798 spin_unlock(&ctx->lock);
799 return true;
800}
801
Jens Axboe320ae512013-10-24 09:20:05 +0100802/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600803 * Process software queues that have been marked busy, splicing them
804 * to the for-dispatch
805 */
806static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
807{
Omar Sandoval88459642016-09-17 08:38:44 -0600808 struct flush_busy_ctx_data data = {
809 .hctx = hctx,
810 .list = list,
811 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600812
Omar Sandoval88459642016-09-17 08:38:44 -0600813 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600814}
Jens Axboe1429d7c2014-05-19 09:23:55 -0600815
Jens Axboe703fd1c2016-09-16 13:59:14 -0600816static inline unsigned int queued_to_index(unsigned int queued)
817{
818 if (!queued)
819 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600820
Jens Axboe703fd1c2016-09-16 13:59:14 -0600821 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600822}
823
824/*
Jens Axboe320ae512013-10-24 09:20:05 +0100825 * Run this hardware queue, pulling any software queues mapped to it in.
826 * Note that this function currently has various problems around ordering
827 * of IO. In particular, we'd like FIFO behaviour on handling existing
828 * items on the hctx->dispatch list. Ignore that for now.
829 */
Bart Van Assche6a83e742016-11-02 10:09:51 -0600830static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +0100831{
832 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100833 struct request *rq;
834 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600835 LIST_HEAD(driver_list);
836 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600837 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100838
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700839 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100840 return;
841
842 hctx->run++;
843
844 /*
845 * Touch any software queue that has pending entries.
846 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600847 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100848
849 /*
850 * If we have previous entries on our dispatch list, grab them
851 * and stuff them at the front for more fair dispatch.
852 */
853 if (!list_empty_careful(&hctx->dispatch)) {
854 spin_lock(&hctx->lock);
855 if (!list_empty(&hctx->dispatch))
856 list_splice_init(&hctx->dispatch, &rq_list);
857 spin_unlock(&hctx->lock);
858 }
859
860 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600861 * Start off with dptr being NULL, so we start the first request
862 * immediately, even if we have more pending.
863 */
864 dptr = NULL;
865
866 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100867 * Now process all the entries, sending them to the driver.
868 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600869 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100870 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600871 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100872 int ret;
873
874 rq = list_first_entry(&rq_list, struct request, queuelist);
875 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100876
Jens Axboe74c45052014-10-29 11:14:52 -0600877 bd.rq = rq;
878 bd.list = dptr;
879 bd.last = list_empty(&rq_list);
880
881 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100882 switch (ret) {
883 case BLK_MQ_RQ_QUEUE_OK:
884 queued++;
Omar Sandoval52b9c332016-06-08 18:22:20 -0700885 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100886 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100887 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200888 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100889 break;
890 default:
891 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100892 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800893 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700894 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100895 break;
896 }
897
898 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
899 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600900
901 /*
902 * We've done the first request. If we have more than 1
903 * left in the list, set dptr to defer issue.
904 */
905 if (!dptr && rq_list.next != rq_list.prev)
906 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100907 }
908
Jens Axboe703fd1c2016-09-16 13:59:14 -0600909 hctx->dispatched[queued_to_index(queued)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100910
911 /*
912 * Any items that need requeuing? Stuff them into hctx->dispatch,
913 * that is where we will continue on next queue run.
914 */
915 if (!list_empty(&rq_list)) {
916 spin_lock(&hctx->lock);
917 list_splice(&rq_list, &hctx->dispatch);
918 spin_unlock(&hctx->lock);
Shaohua Li9ba52e52015-05-04 14:32:48 -0600919 /*
920 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
921 * it's possible the queue is stopped and restarted again
922 * before this. Queue restart will dispatch requests. And since
923 * requests in rq_list aren't added into hctx->dispatch yet,
924 * the requests in rq_list might get lost.
925 *
926 * blk_mq_run_hw_queue() already checks the STOPPED bit
927 **/
928 blk_mq_run_hw_queue(hctx, true);
Jens Axboe320ae512013-10-24 09:20:05 +0100929 }
930}
931
Bart Van Assche6a83e742016-11-02 10:09:51 -0600932static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
933{
934 int srcu_idx;
935
936 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
937 cpu_online(hctx->next_cpu));
938
939 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
940 rcu_read_lock();
941 blk_mq_process_rq_list(hctx);
942 rcu_read_unlock();
943 } else {
944 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
945 blk_mq_process_rq_list(hctx);
946 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
947 }
948}
949
Jens Axboe506e9312014-05-07 10:26:44 -0600950/*
951 * It'd be great if the workqueue API had a way to pass
952 * in a mask and had some smarts for more clever placement.
953 * For now we just round-robin here, switching for every
954 * BLK_MQ_CPU_WORK_BATCH queued items.
955 */
956static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
957{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100958 if (hctx->queue->nr_hw_queues == 1)
959 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600960
961 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -0300962 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600963
964 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
965 if (next_cpu >= nr_cpu_ids)
966 next_cpu = cpumask_first(hctx->cpumask);
967
968 hctx->next_cpu = next_cpu;
969 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
970 }
971
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100972 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600973}
974
Jens Axboe320ae512013-10-24 09:20:05 +0100975void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
976{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -0700977 if (unlikely(blk_mq_hctx_stopped(hctx) ||
978 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100979 return;
980
Jens Axboe1b792f22016-09-21 10:12:13 -0600981 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100982 int cpu = get_cpu();
983 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100984 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100985 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100986 return;
987 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600988
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100989 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600990 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100991
Jens Axboe27489a32016-08-24 15:54:25 -0600992 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100993}
994
Mike Snitzerb94ec292015-03-11 23:56:38 -0400995void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100996{
997 struct blk_mq_hw_ctx *hctx;
998 int i;
999
1000 queue_for_each_hw_ctx(q, hctx, i) {
1001 if ((!blk_mq_hctx_has_pending(hctx) &&
1002 list_empty_careful(&hctx->dispatch)) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001003 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001004 continue;
1005
Mike Snitzerb94ec292015-03-11 23:56:38 -04001006 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001007 }
1008}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001009EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001010
Bart Van Asschefd001442016-10-28 17:19:37 -07001011/**
1012 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1013 * @q: request queue.
1014 *
1015 * The caller is responsible for serializing this function against
1016 * blk_mq_{start,stop}_hw_queue().
1017 */
1018bool blk_mq_queue_stopped(struct request_queue *q)
1019{
1020 struct blk_mq_hw_ctx *hctx;
1021 int i;
1022
1023 queue_for_each_hw_ctx(q, hctx, i)
1024 if (blk_mq_hctx_stopped(hctx))
1025 return true;
1026
1027 return false;
1028}
1029EXPORT_SYMBOL(blk_mq_queue_stopped);
1030
Jens Axboe320ae512013-10-24 09:20:05 +01001031void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1032{
Jens Axboe27489a32016-08-24 15:54:25 -06001033 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001034 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001035 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1036}
1037EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1038
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001039void blk_mq_stop_hw_queues(struct request_queue *q)
1040{
1041 struct blk_mq_hw_ctx *hctx;
1042 int i;
1043
1044 queue_for_each_hw_ctx(q, hctx, i)
1045 blk_mq_stop_hw_queue(hctx);
1046}
1047EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1048
Jens Axboe320ae512013-10-24 09:20:05 +01001049void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1050{
1051 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001052
Jens Axboe0ffbce82014-06-25 08:22:34 -06001053 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001054}
1055EXPORT_SYMBOL(blk_mq_start_hw_queue);
1056
Christoph Hellwig2f268552014-04-16 09:44:56 +02001057void blk_mq_start_hw_queues(struct request_queue *q)
1058{
1059 struct blk_mq_hw_ctx *hctx;
1060 int i;
1061
1062 queue_for_each_hw_ctx(q, hctx, i)
1063 blk_mq_start_hw_queue(hctx);
1064}
1065EXPORT_SYMBOL(blk_mq_start_hw_queues);
1066
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001067void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001068{
1069 struct blk_mq_hw_ctx *hctx;
1070 int i;
1071
1072 queue_for_each_hw_ctx(q, hctx, i) {
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001073 if (!blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001074 continue;
1075
1076 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001077 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001078 }
1079}
1080EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1081
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001082static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001083{
1084 struct blk_mq_hw_ctx *hctx;
1085
Jens Axboe27489a32016-08-24 15:54:25 -06001086 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001087
Jens Axboe320ae512013-10-24 09:20:05 +01001088 __blk_mq_run_hw_queue(hctx);
1089}
1090
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001091static void blk_mq_delay_work_fn(struct work_struct *work)
1092{
1093 struct blk_mq_hw_ctx *hctx;
1094
1095 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1096
1097 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1098 __blk_mq_run_hw_queue(hctx);
1099}
1100
1101void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1102{
Ming Lei19c66e52014-12-03 19:38:04 +08001103 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1104 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001105
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001106 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1107 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001108}
1109EXPORT_SYMBOL(blk_mq_delay_queue);
1110
Ming Leicfd0c552015-10-20 23:13:57 +08001111static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001112 struct request *rq,
1113 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001114{
Jens Axboee57690f2016-08-24 15:34:35 -06001115 struct blk_mq_ctx *ctx = rq->mq_ctx;
1116
Jens Axboe01b983c2013-11-19 18:59:10 -07001117 trace_block_rq_insert(hctx->queue, rq);
1118
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001119 if (at_head)
1120 list_add(&rq->queuelist, &ctx->rq_list);
1121 else
1122 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001123}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001124
Ming Leicfd0c552015-10-20 23:13:57 +08001125static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1126 struct request *rq, bool at_head)
1127{
1128 struct blk_mq_ctx *ctx = rq->mq_ctx;
1129
Jens Axboee57690f2016-08-24 15:34:35 -06001130 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001131 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001132}
1133
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001134void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
Jens Axboee57690f2016-08-24 15:34:35 -06001135 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001136{
Jens Axboee57690f2016-08-24 15:34:35 -06001137 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001138 struct request_queue *q = rq->q;
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001139 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001140
Christoph Hellwiga57a1782014-09-16 14:44:07 -07001141 spin_lock(&ctx->lock);
1142 __blk_mq_insert_request(hctx, rq, at_head);
1143 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001144
Jens Axboe320ae512013-10-24 09:20:05 +01001145 if (run_queue)
1146 blk_mq_run_hw_queue(hctx, async);
1147}
1148
1149static void blk_mq_insert_requests(struct request_queue *q,
1150 struct blk_mq_ctx *ctx,
1151 struct list_head *list,
1152 int depth,
1153 bool from_schedule)
1154
1155{
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001156 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001157
1158 trace_block_unplug(q, depth, !from_schedule);
1159
Jens Axboe320ae512013-10-24 09:20:05 +01001160 /*
1161 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1162 * offline now
1163 */
1164 spin_lock(&ctx->lock);
1165 while (!list_empty(list)) {
1166 struct request *rq;
1167
1168 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001169 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001170 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001171 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001172 }
Ming Leicfd0c552015-10-20 23:13:57 +08001173 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001174 spin_unlock(&ctx->lock);
1175
Jens Axboe320ae512013-10-24 09:20:05 +01001176 blk_mq_run_hw_queue(hctx, from_schedule);
1177}
1178
1179static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1180{
1181 struct request *rqa = container_of(a, struct request, queuelist);
1182 struct request *rqb = container_of(b, struct request, queuelist);
1183
1184 return !(rqa->mq_ctx < rqb->mq_ctx ||
1185 (rqa->mq_ctx == rqb->mq_ctx &&
1186 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1187}
1188
1189void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1190{
1191 struct blk_mq_ctx *this_ctx;
1192 struct request_queue *this_q;
1193 struct request *rq;
1194 LIST_HEAD(list);
1195 LIST_HEAD(ctx_list);
1196 unsigned int depth;
1197
1198 list_splice_init(&plug->mq_list, &list);
1199
1200 list_sort(NULL, &list, plug_ctx_cmp);
1201
1202 this_q = NULL;
1203 this_ctx = NULL;
1204 depth = 0;
1205
1206 while (!list_empty(&list)) {
1207 rq = list_entry_rq(list.next);
1208 list_del_init(&rq->queuelist);
1209 BUG_ON(!rq->q);
1210 if (rq->mq_ctx != this_ctx) {
1211 if (this_ctx) {
1212 blk_mq_insert_requests(this_q, this_ctx,
1213 &ctx_list, depth,
1214 from_schedule);
1215 }
1216
1217 this_ctx = rq->mq_ctx;
1218 this_q = rq->q;
1219 depth = 0;
1220 }
1221
1222 depth++;
1223 list_add_tail(&rq->queuelist, &ctx_list);
1224 }
1225
1226 /*
1227 * If 'this_ctx' is set, we know we have entries to complete
1228 * on 'ctx_list'. Do those.
1229 */
1230 if (this_ctx) {
1231 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1232 from_schedule);
1233 }
1234}
1235
1236static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1237{
1238 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001239
Michael Callahana21f2a32016-05-03 11:12:49 -04001240 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001241}
1242
Jens Axboe274a5842014-08-15 12:44:08 -06001243static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1244{
1245 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1246 !blk_queue_nomerges(hctx->queue);
1247}
1248
Jens Axboe07068d52014-05-22 10:40:51 -06001249static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1250 struct blk_mq_ctx *ctx,
1251 struct request *rq, struct bio *bio)
1252{
Ming Leie18378a2015-10-20 23:13:54 +08001253 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001254 blk_mq_bio_to_request(rq, bio);
1255 spin_lock(&ctx->lock);
1256insert_rq:
1257 __blk_mq_insert_request(hctx, rq, false);
1258 spin_unlock(&ctx->lock);
1259 return false;
1260 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001261 struct request_queue *q = hctx->queue;
1262
Jens Axboe07068d52014-05-22 10:40:51 -06001263 spin_lock(&ctx->lock);
1264 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1265 blk_mq_bio_to_request(rq, bio);
1266 goto insert_rq;
1267 }
1268
1269 spin_unlock(&ctx->lock);
1270 __blk_mq_free_request(hctx, ctx, rq);
1271 return true;
1272 }
1273}
1274
Jens Axboe07068d52014-05-22 10:40:51 -06001275static struct request *blk_mq_map_request(struct request_queue *q,
1276 struct bio *bio,
Jens Axboe2552e3f2016-10-27 19:03:55 -06001277 struct blk_mq_alloc_data *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001278{
1279 struct blk_mq_hw_ctx *hctx;
1280 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001281 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01001282
Dan Williams3ef28e82015-10-21 13:20:12 -04001283 blk_queue_enter_live(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001284 ctx = blk_mq_get_ctx(q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001285 hctx = blk_mq_map_queue(q, ctx->cpu);
Jens Axboe320ae512013-10-24 09:20:05 +01001286
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001287 trace_block_getrq(q, bio, bio->bi_opf);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001288 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001289 rq = __blk_mq_alloc_request(data, bio->bi_opf);
Jens Axboe320ae512013-10-24 09:20:05 +01001290
Jens Axboe7dd2fb62016-10-27 09:49:19 -06001291 data->hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001292 return rq;
1293}
1294
Jens Axboe066a4a72016-11-11 12:24:46 -07001295static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001296{
1297 int ret;
1298 struct request_queue *q = rq->q;
Jens Axboe066a4a72016-11-11 12:24:46 -07001299 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Shaohua Lif984df12015-05-08 10:51:32 -07001300 struct blk_mq_queue_data bd = {
1301 .rq = rq,
1302 .list = NULL,
1303 .last = 1
1304 };
Jens Axboe7b371632015-11-05 10:41:40 -07001305 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
Shaohua Lif984df12015-05-08 10:51:32 -07001306
Bart Van Assche2253efc2016-10-28 17:20:02 -07001307 if (blk_mq_hctx_stopped(hctx))
1308 goto insert;
1309
Shaohua Lif984df12015-05-08 10:51:32 -07001310 /*
1311 * For OK queue, we are done. For error, kill it. Any other
1312 * error (busy), just add it to our list as we previously
1313 * would have done
1314 */
1315 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001316 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1317 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001318 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001319 }
Jens Axboe7b371632015-11-05 10:41:40 -07001320
1321 __blk_mq_requeue_request(rq);
1322
1323 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1324 *cookie = BLK_QC_T_NONE;
1325 rq->errors = -EIO;
1326 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001327 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001328 }
1329
Bart Van Assche2253efc2016-10-28 17:20:02 -07001330insert:
1331 blk_mq_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001332}
1333
Jens Axboe07068d52014-05-22 10:40:51 -06001334/*
1335 * Multiple hardware queue variant. This will not use per-process plugs,
1336 * but will attempt to bypass the hctx queueing if we can go straight to
1337 * hardware for SYNC IO.
1338 */
Jens Axboedece1632015-11-05 10:41:16 -07001339static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001340{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001341 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001342 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001343 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001344 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001345 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001346 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001347 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001348 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001349 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001350
1351 blk_queue_bounce(q, &bio);
1352
1353 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001354 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001355 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001356 }
1357
Kent Overstreet54efd502015-04-23 22:37:18 -07001358 blk_queue_split(q, &bio, q->bio_split);
1359
Omar Sandoval87c279e2016-06-01 22:18:48 -07001360 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1361 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1362 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001363
Jens Axboe87760e52016-11-09 12:38:14 -07001364 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1365
Jens Axboe07068d52014-05-22 10:40:51 -06001366 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001367 if (unlikely(!rq)) {
1368 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001369 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001370 }
1371
1372 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001373
Jens Axboe7b371632015-11-05 10:41:40 -07001374 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe07068d52014-05-22 10:40:51 -06001375
1376 if (unlikely(is_flush_fua)) {
1377 blk_mq_bio_to_request(rq, bio);
1378 blk_insert_flush(rq);
1379 goto run_queue;
1380 }
1381
Shaohua Lif984df12015-05-08 10:51:32 -07001382 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001383 /*
1384 * If the driver supports defer issued based on 'last', then
1385 * queue it up like normal since we can potentially save some
1386 * CPU this way.
1387 */
Shaohua Lif984df12015-05-08 10:51:32 -07001388 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1389 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1390 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001391
1392 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001393
1394 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001395 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001396 * Otherwise the existing request in the plug list will be
1397 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001398 */
Shaohua Lif984df12015-05-08 10:51:32 -07001399 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001400 /*
1401 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001402 * happens, same_queue_rq is invalid and plug list is
1403 * empty
1404 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001405 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1406 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001407 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001408 }
Shaohua Lif984df12015-05-08 10:51:32 -07001409 list_add_tail(&rq->queuelist, &plug->mq_list);
1410 } else /* is_sync */
1411 old_rq = rq;
1412 blk_mq_put_ctx(data.ctx);
1413 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001414 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001415
1416 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1417 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001418 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001419 rcu_read_unlock();
1420 } else {
1421 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001422 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001423 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1424 }
Jens Axboe7b371632015-11-05 10:41:40 -07001425 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001426 }
1427
1428 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1429 /*
1430 * For a SYNC request, send it to the hardware immediately. For
1431 * an ASYNC request, just ensure that we run it later on. The
1432 * latter allows for merging opportunities and more efficient
1433 * dispatching.
1434 */
1435run_queue:
1436 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1437 }
Jens Axboe07068d52014-05-22 10:40:51 -06001438 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001439done:
1440 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001441}
1442
1443/*
1444 * Single hardware queue variant. This will attempt to use any per-process
1445 * plug for merging and IO deferral.
1446 */
Jens Axboedece1632015-11-05 10:41:16 -07001447static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001448{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001449 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001450 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001451 struct blk_plug *plug;
1452 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001453 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001454 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001455 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001456 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001457
Jens Axboe07068d52014-05-22 10:40:51 -06001458 blk_queue_bounce(q, &bio);
1459
1460 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001461 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001462 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001463 }
1464
Kent Overstreet54efd502015-04-23 22:37:18 -07001465 blk_queue_split(q, &bio, q->bio_split);
1466
Omar Sandoval87c279e2016-06-01 22:18:48 -07001467 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1468 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1469 return BLK_QC_T_NONE;
1470 } else
1471 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001472
Jens Axboe87760e52016-11-09 12:38:14 -07001473 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1474
Jens Axboe07068d52014-05-22 10:40:51 -06001475 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001476 if (unlikely(!rq)) {
1477 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001478 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001479 }
1480
1481 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001482
Jens Axboe7b371632015-11-05 10:41:40 -07001483 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
Jens Axboe320ae512013-10-24 09:20:05 +01001484
1485 if (unlikely(is_flush_fua)) {
1486 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001487 blk_insert_flush(rq);
1488 goto run_queue;
1489 }
1490
1491 /*
1492 * A task plug currently exists. Since this is completely lockless,
1493 * utilize that to temporarily store requests until the task is
1494 * either done or scheduled away.
1495 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001496 plug = current->plug;
1497 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001498 struct request *last = NULL;
1499
Jeff Moyere6c44382015-05-08 10:51:30 -07001500 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001501
1502 /*
1503 * @request_count may become stale because of schedule
1504 * out, so check the list again.
1505 */
1506 if (list_empty(&plug->mq_list))
1507 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001508 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001509 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001510 else
1511 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001512
1513 blk_mq_put_ctx(data.ctx);
1514
Shaohua Li600271d2016-11-03 17:03:54 -07001515 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1516 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001517 blk_flush_plug_list(plug, false);
1518 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001519 }
Jens Axboeb094f892015-11-20 20:29:45 -07001520
Jeff Moyere6c44382015-05-08 10:51:30 -07001521 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001522 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001523 }
1524
Jens Axboe07068d52014-05-22 10:40:51 -06001525 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1526 /*
1527 * For a SYNC request, send it to the hardware immediately. For
1528 * an ASYNC request, just ensure that we run it later on. The
1529 * latter allows for merging opportunities and more efficient
1530 * dispatching.
1531 */
1532run_queue:
1533 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001534 }
1535
Jens Axboe07068d52014-05-22 10:40:51 -06001536 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001537 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001538}
1539
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001540static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1541 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001542{
1543 struct page *page;
1544
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001545 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001546 int i;
1547
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001548 for (i = 0; i < tags->nr_tags; i++) {
1549 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001550 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001551 set->ops->exit_request(set->driver_data, tags->rqs[i],
1552 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001553 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001554 }
1555 }
1556
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001557 while (!list_empty(&tags->page_list)) {
1558 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001559 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001560 /*
1561 * Remove kmemleak object previously allocated in
1562 * blk_mq_init_rq_map().
1563 */
1564 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001565 __free_pages(page, page->private);
1566 }
1567
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001568 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001569
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001570 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001571}
1572
1573static size_t order_to_size(unsigned int order)
1574{
Ming Lei4ca08502014-04-19 18:00:18 +08001575 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001576}
1577
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001578static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1579 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001580{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001581 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001582 unsigned int i, j, entries_per_page, max_order = 4;
1583 size_t rq_size, left;
1584
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001585 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001586 set->numa_node,
1587 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001588 if (!tags)
1589 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001590
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001591 INIT_LIST_HEAD(&tags->page_list);
1592
Jens Axboea5164402014-09-10 09:02:03 -06001593 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1594 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1595 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001596 if (!tags->rqs) {
1597 blk_mq_free_tags(tags);
1598 return NULL;
1599 }
Jens Axboe320ae512013-10-24 09:20:05 +01001600
1601 /*
1602 * rq_size is the size of the request plus driver payload, rounded
1603 * to the cacheline size
1604 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001605 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001606 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001607 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001608
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001609 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001610 int this_order = max_order;
1611 struct page *page;
1612 int to_do;
1613 void *p;
1614
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001615 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001616 this_order--;
1617
1618 do {
Jens Axboea5164402014-09-10 09:02:03 -06001619 page = alloc_pages_node(set->numa_node,
Linus Torvaldsac211172015-04-09 14:12:22 -07001620 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001621 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001622 if (page)
1623 break;
1624 if (!this_order--)
1625 break;
1626 if (order_to_size(this_order) < rq_size)
1627 break;
1628 } while (1);
1629
1630 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001631 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001632
1633 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001634 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001635
1636 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001637 /*
1638 * Allow kmemleak to scan these pages as they contain pointers
1639 * to additional allocations like via ops->init_request().
1640 */
1641 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
Jens Axboe320ae512013-10-24 09:20:05 +01001642 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001643 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001644 left -= to_do * rq_size;
1645 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001646 tags->rqs[i] = p;
1647 if (set->ops->init_request) {
1648 if (set->ops->init_request(set->driver_data,
1649 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001650 set->numa_node)) {
1651 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001652 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001653 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001654 }
1655
Jens Axboe320ae512013-10-24 09:20:05 +01001656 p += rq_size;
1657 i++;
1658 }
1659 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001660 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001661
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001662fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001663 blk_mq_free_rq_map(set, tags, hctx_idx);
1664 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001665}
1666
Jens Axboee57690f2016-08-24 15:34:35 -06001667/*
1668 * 'cpu' is going away. splice any existing rq_list entries from this
1669 * software queue to the hw queue dispatch list, and ensure that it
1670 * gets run.
1671 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001672static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001673{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001674 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001675 struct blk_mq_ctx *ctx;
1676 LIST_HEAD(tmp);
1677
Thomas Gleixner9467f852016-09-22 08:05:17 -06001678 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001679 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001680
1681 spin_lock(&ctx->lock);
1682 if (!list_empty(&ctx->rq_list)) {
1683 list_splice_init(&ctx->rq_list, &tmp);
1684 blk_mq_hctx_clear_pending(hctx, ctx);
1685 }
1686 spin_unlock(&ctx->lock);
1687
1688 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001689 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001690
Jens Axboee57690f2016-08-24 15:34:35 -06001691 spin_lock(&hctx->lock);
1692 list_splice_tail_init(&tmp, &hctx->dispatch);
1693 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001694
1695 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001696 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001697}
1698
Thomas Gleixner9467f852016-09-22 08:05:17 -06001699static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001700{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001701 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1702 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001703}
1704
Ming Leic3b4afc2015-06-04 22:25:04 +08001705/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001706static void blk_mq_exit_hctx(struct request_queue *q,
1707 struct blk_mq_tag_set *set,
1708 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1709{
Ming Leif70ced02014-09-25 23:23:47 +08001710 unsigned flush_start_tag = set->queue_depth;
1711
Ming Lei08e98fc2014-09-25 23:23:38 +08001712 blk_mq_tag_idle(hctx);
1713
Ming Leif70ced02014-09-25 23:23:47 +08001714 if (set->ops->exit_request)
1715 set->ops->exit_request(set->driver_data,
1716 hctx->fq->flush_rq, hctx_idx,
1717 flush_start_tag + hctx_idx);
1718
Ming Lei08e98fc2014-09-25 23:23:38 +08001719 if (set->ops->exit_hctx)
1720 set->ops->exit_hctx(hctx, hctx_idx);
1721
Bart Van Assche6a83e742016-11-02 10:09:51 -06001722 if (hctx->flags & BLK_MQ_F_BLOCKING)
1723 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1724
Thomas Gleixner9467f852016-09-22 08:05:17 -06001725 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001726 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001727 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001728}
1729
Ming Lei624dbe42014-05-27 23:35:13 +08001730static void blk_mq_exit_hw_queues(struct request_queue *q,
1731 struct blk_mq_tag_set *set, int nr_queue)
1732{
1733 struct blk_mq_hw_ctx *hctx;
1734 unsigned int i;
1735
1736 queue_for_each_hw_ctx(q, hctx, i) {
1737 if (i == nr_queue)
1738 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001739 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001740 }
Ming Lei624dbe42014-05-27 23:35:13 +08001741}
1742
1743static void blk_mq_free_hw_queues(struct request_queue *q,
1744 struct blk_mq_tag_set *set)
1745{
1746 struct blk_mq_hw_ctx *hctx;
1747 unsigned int i;
1748
Ming Leie09aae72015-01-29 20:17:27 +08001749 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001750 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001751}
1752
Ming Lei08e98fc2014-09-25 23:23:38 +08001753static int blk_mq_init_hctx(struct request_queue *q,
1754 struct blk_mq_tag_set *set,
1755 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1756{
1757 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001758 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001759
1760 node = hctx->numa_node;
1761 if (node == NUMA_NO_NODE)
1762 node = hctx->numa_node = set->numa_node;
1763
Jens Axboe27489a32016-08-24 15:54:25 -06001764 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001765 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1766 spin_lock_init(&hctx->lock);
1767 INIT_LIST_HEAD(&hctx->dispatch);
1768 hctx->queue = q;
1769 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001770 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001771
Thomas Gleixner9467f852016-09-22 08:05:17 -06001772 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001773
1774 hctx->tags = set->tags[hctx_idx];
1775
1776 /*
1777 * Allocate space for all possible cpus to avoid allocation at
1778 * runtime
1779 */
1780 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1781 GFP_KERNEL, node);
1782 if (!hctx->ctxs)
1783 goto unregister_cpu_notifier;
1784
Omar Sandoval88459642016-09-17 08:38:44 -06001785 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1786 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001787 goto free_ctxs;
1788
1789 hctx->nr_ctx = 0;
1790
1791 if (set->ops->init_hctx &&
1792 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1793 goto free_bitmap;
1794
Ming Leif70ced02014-09-25 23:23:47 +08001795 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1796 if (!hctx->fq)
1797 goto exit_hctx;
1798
1799 if (set->ops->init_request &&
1800 set->ops->init_request(set->driver_data,
1801 hctx->fq->flush_rq, hctx_idx,
1802 flush_start_tag + hctx_idx, node))
1803 goto free_fq;
1804
Bart Van Assche6a83e742016-11-02 10:09:51 -06001805 if (hctx->flags & BLK_MQ_F_BLOCKING)
1806 init_srcu_struct(&hctx->queue_rq_srcu);
1807
Ming Lei08e98fc2014-09-25 23:23:38 +08001808 return 0;
1809
Ming Leif70ced02014-09-25 23:23:47 +08001810 free_fq:
1811 kfree(hctx->fq);
1812 exit_hctx:
1813 if (set->ops->exit_hctx)
1814 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001815 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001816 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001817 free_ctxs:
1818 kfree(hctx->ctxs);
1819 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001820 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001821 return -1;
1822}
1823
Jens Axboe320ae512013-10-24 09:20:05 +01001824static void blk_mq_init_cpu_queues(struct request_queue *q,
1825 unsigned int nr_hw_queues)
1826{
1827 unsigned int i;
1828
1829 for_each_possible_cpu(i) {
1830 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1831 struct blk_mq_hw_ctx *hctx;
1832
1833 memset(__ctx, 0, sizeof(*__ctx));
1834 __ctx->cpu = i;
1835 spin_lock_init(&__ctx->lock);
1836 INIT_LIST_HEAD(&__ctx->rq_list);
1837 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001838 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1839 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001840
1841 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001842 if (!cpu_online(i))
1843 continue;
1844
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001845 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001846
Jens Axboe320ae512013-10-24 09:20:05 +01001847 /*
1848 * Set local node, IFF we have more than one hw queue. If
1849 * not, we remain on the home node of the device
1850 */
1851 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301852 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001853 }
1854}
1855
Akinobu Mita57783222015-09-27 02:09:23 +09001856static void blk_mq_map_swqueue(struct request_queue *q,
1857 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001858{
1859 unsigned int i;
1860 struct blk_mq_hw_ctx *hctx;
1861 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001862 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001863
Akinobu Mita60de0742015-09-27 02:09:25 +09001864 /*
1865 * Avoid others reading imcomplete hctx->cpumask through sysfs
1866 */
1867 mutex_lock(&q->sysfs_lock);
1868
Jens Axboe320ae512013-10-24 09:20:05 +01001869 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001870 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001871 hctx->nr_ctx = 0;
1872 }
1873
1874 /*
1875 * Map software to hardware queues
1876 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001877 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001878 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09001879 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06001880 continue;
1881
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001882 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001883 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07001884
Jens Axboee4043dc2014-04-09 10:18:23 -06001885 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001886 ctx->index_hw = hctx->nr_ctx;
1887 hctx->ctxs[hctx->nr_ctx++] = ctx;
1888 }
Jens Axboe506e9312014-05-07 10:26:44 -06001889
Akinobu Mita60de0742015-09-27 02:09:25 +09001890 mutex_unlock(&q->sysfs_lock);
1891
Jens Axboe506e9312014-05-07 10:26:44 -06001892 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001893 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001894 * If no software queues are mapped to this hardware queue,
1895 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001896 */
1897 if (!hctx->nr_ctx) {
Jens Axboe484b4062014-05-21 14:01:15 -06001898 if (set->tags[i]) {
1899 blk_mq_free_rq_map(set, set->tags[i], i);
1900 set->tags[i] = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001901 }
Ming Lei2a34c082015-04-21 10:00:20 +08001902 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06001903 continue;
1904 }
1905
Ming Lei2a34c082015-04-21 10:00:20 +08001906 /* unmapped hw queue can be remapped after CPU topo changed */
1907 if (!set->tags[i])
1908 set->tags[i] = blk_mq_init_rq_map(set, i);
1909 hctx->tags = set->tags[i];
1910 WARN_ON(!hctx->tags);
1911
Jens Axboe484b4062014-05-21 14:01:15 -06001912 /*
Chong Yuan889fa312015-04-15 11:39:29 -06001913 * Set the map size to the number of mapped software queues.
1914 * This is more accurate and more efficient than looping
1915 * over all possibly mapped software queues.
1916 */
Omar Sandoval88459642016-09-17 08:38:44 -06001917 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06001918
1919 /*
Jens Axboe484b4062014-05-21 14:01:15 -06001920 * Initialize batch roundrobin counts
1921 */
Jens Axboe506e9312014-05-07 10:26:44 -06001922 hctx->next_cpu = cpumask_first(hctx->cpumask);
1923 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1924 }
Jens Axboe320ae512013-10-24 09:20:05 +01001925}
1926
Jeff Moyer2404e602015-11-03 10:40:06 -05001927static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06001928{
1929 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001930 int i;
1931
Jeff Moyer2404e602015-11-03 10:40:06 -05001932 queue_for_each_hw_ctx(q, hctx, i) {
1933 if (shared)
1934 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1935 else
1936 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1937 }
1938}
1939
1940static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1941{
1942 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06001943
1944 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1945 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05001946 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001947 blk_mq_unfreeze_queue(q);
1948 }
1949}
1950
1951static void blk_mq_del_queue_tag_set(struct request_queue *q)
1952{
1953 struct blk_mq_tag_set *set = q->tag_set;
1954
Jens Axboe0d2602c2014-05-13 15:10:52 -06001955 mutex_lock(&set->tag_list_lock);
1956 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001957 if (list_is_singular(&set->tag_list)) {
1958 /* just transitioned to unshared */
1959 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1960 /* update existing queue */
1961 blk_mq_update_tag_set_depth(set, false);
1962 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001963 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001964}
1965
1966static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1967 struct request_queue *q)
1968{
1969 q->tag_set = set;
1970
1971 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05001972
1973 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1974 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1975 set->flags |= BLK_MQ_F_TAG_SHARED;
1976 /* update existing queue */
1977 blk_mq_update_tag_set_depth(set, true);
1978 }
1979 if (set->flags & BLK_MQ_F_TAG_SHARED)
1980 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001981 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05001982
Jens Axboe0d2602c2014-05-13 15:10:52 -06001983 mutex_unlock(&set->tag_list_lock);
1984}
1985
Ming Leie09aae72015-01-29 20:17:27 +08001986/*
1987 * It is the actual release handler for mq, but we do it from
1988 * request queue's release handler for avoiding use-after-free
1989 * and headache because q->mq_kobj shouldn't have been introduced,
1990 * but we can't group ctx/kctx kobj without it.
1991 */
1992void blk_mq_release(struct request_queue *q)
1993{
1994 struct blk_mq_hw_ctx *hctx;
1995 unsigned int i;
1996
1997 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08001998 queue_for_each_hw_ctx(q, hctx, i) {
1999 if (!hctx)
2000 continue;
2001 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08002002 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002003 }
Ming Leie09aae72015-01-29 20:17:27 +08002004
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002005 q->mq_map = NULL;
2006
Ming Leie09aae72015-01-29 20:17:27 +08002007 kfree(q->queue_hw_ctx);
2008
2009 /* ctx kobj stays in queue_ctx */
2010 free_percpu(q->queue_ctx);
2011}
2012
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002013struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002014{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002015 struct request_queue *uninit_q, *q;
2016
2017 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2018 if (!uninit_q)
2019 return ERR_PTR(-ENOMEM);
2020
2021 q = blk_mq_init_allocated_queue(set, uninit_q);
2022 if (IS_ERR(q))
2023 blk_cleanup_queue(uninit_q);
2024
2025 return q;
2026}
2027EXPORT_SYMBOL(blk_mq_init_queue);
2028
Keith Busch868f2f02015-12-17 17:08:14 -07002029static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2030 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002031{
Keith Busch868f2f02015-12-17 17:08:14 -07002032 int i, j;
2033 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002034
Keith Busch868f2f02015-12-17 17:08:14 -07002035 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002036 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002037 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002038
Keith Busch868f2f02015-12-17 17:08:14 -07002039 if (hctxs[i])
2040 continue;
2041
2042 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002043 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2044 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002045 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002046 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002047
Jens Axboea86073e2014-10-13 15:41:54 -06002048 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002049 node)) {
2050 kfree(hctxs[i]);
2051 hctxs[i] = NULL;
2052 break;
2053 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002054
Jens Axboe0d2602c2014-05-13 15:10:52 -06002055 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002056 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002057 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002058
2059 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2060 free_cpumask_var(hctxs[i]->cpumask);
2061 kfree(hctxs[i]);
2062 hctxs[i] = NULL;
2063 break;
2064 }
2065 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002066 }
Keith Busch868f2f02015-12-17 17:08:14 -07002067 for (j = i; j < q->nr_hw_queues; j++) {
2068 struct blk_mq_hw_ctx *hctx = hctxs[j];
2069
2070 if (hctx) {
2071 if (hctx->tags) {
2072 blk_mq_free_rq_map(set, hctx->tags, j);
2073 set->tags[j] = NULL;
2074 }
2075 blk_mq_exit_hctx(q, set, hctx, j);
2076 free_cpumask_var(hctx->cpumask);
2077 kobject_put(&hctx->kobj);
2078 kfree(hctx->ctxs);
2079 kfree(hctx);
2080 hctxs[j] = NULL;
2081
2082 }
2083 }
2084 q->nr_hw_queues = i;
2085 blk_mq_sysfs_register(q);
2086}
2087
2088struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2089 struct request_queue *q)
2090{
Ming Lei66841672016-02-12 15:27:00 +08002091 /* mark the queue as mq asap */
2092 q->mq_ops = set->ops;
2093
Keith Busch868f2f02015-12-17 17:08:14 -07002094 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2095 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002096 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002097
2098 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2099 GFP_KERNEL, set->numa_node);
2100 if (!q->queue_hw_ctx)
2101 goto err_percpu;
2102
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002103 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002104
2105 blk_mq_realloc_hw_ctxs(set, q);
2106 if (!q->nr_hw_queues)
2107 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002108
Christoph Hellwig287922e2015-10-30 20:57:30 +08002109 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002110 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002111
2112 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002113
Jens Axboe94eddfb2013-11-19 09:25:07 -07002114 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002115
Jens Axboe05f1dd52014-05-29 09:53:32 -06002116 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2117 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2118
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002119 q->sg_reserved_size = INT_MAX;
2120
Mike Snitzer28494502016-09-14 13:28:30 -04002121 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002122 INIT_LIST_HEAD(&q->requeue_list);
2123 spin_lock_init(&q->requeue_lock);
2124
Jens Axboe07068d52014-05-22 10:40:51 -06002125 if (q->nr_hw_queues > 1)
2126 blk_queue_make_request(q, blk_mq_make_request);
2127 else
2128 blk_queue_make_request(q, blk_sq_make_request);
2129
Jens Axboeeba71762014-05-20 15:17:27 -06002130 /*
2131 * Do this after blk_queue_make_request() overrides it...
2132 */
2133 q->nr_requests = set->queue_depth;
2134
Jens Axboe64f1c212016-11-14 13:03:03 -07002135 /*
2136 * Default to classic polling
2137 */
2138 q->poll_nsec = -1;
2139
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002140 if (set->ops->complete)
2141 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002142
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002143 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002144
Akinobu Mita57783222015-09-27 02:09:23 +09002145 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002146 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002147
Jens Axboe320ae512013-10-24 09:20:05 +01002148 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002149 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002150 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002151
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002152 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002153 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002154
Jens Axboe320ae512013-10-24 09:20:05 +01002155 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002156
Jens Axboe320ae512013-10-24 09:20:05 +01002157err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002158 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002159err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002160 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002161err_exit:
2162 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002163 return ERR_PTR(-ENOMEM);
2164}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002165EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002166
2167void blk_mq_free_queue(struct request_queue *q)
2168{
Ming Lei624dbe42014-05-27 23:35:13 +08002169 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002170
Akinobu Mita0e626362015-09-27 02:09:22 +09002171 mutex_lock(&all_q_mutex);
2172 list_del_init(&q->all_q_node);
2173 mutex_unlock(&all_q_mutex);
2174
Jens Axboe87760e52016-11-09 12:38:14 -07002175 wbt_exit(q);
2176
Jens Axboe0d2602c2014-05-13 15:10:52 -06002177 blk_mq_del_queue_tag_set(q);
2178
Ming Lei624dbe42014-05-27 23:35:13 +08002179 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2180 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002181}
Jens Axboe320ae512013-10-24 09:20:05 +01002182
2183/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002184static void blk_mq_queue_reinit(struct request_queue *q,
2185 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002186{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002187 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002188
Jens Axboe67aec142014-05-30 08:25:36 -06002189 blk_mq_sysfs_unregister(q);
2190
Jens Axboe320ae512013-10-24 09:20:05 +01002191 /*
2192 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2193 * we should change hctx numa_node according to new topology (this
2194 * involves free and re-allocate memory, worthy doing?)
2195 */
2196
Akinobu Mita57783222015-09-27 02:09:23 +09002197 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002198
Jens Axboe67aec142014-05-30 08:25:36 -06002199 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002200}
2201
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002202/*
2203 * New online cpumask which is going to be set in this hotplug event.
2204 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2205 * one-by-one and dynamically allocating this could result in a failure.
2206 */
2207static struct cpumask cpuhp_online_new;
2208
2209static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002210{
2211 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002212
2213 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002214 /*
2215 * We need to freeze and reinit all existing queues. Freezing
2216 * involves synchronous wait for an RCU grace period and doing it
2217 * one by one may take a long time. Start freezing all queues in
2218 * one swoop and then wait for the completions so that freezing can
2219 * take place in parallel.
2220 */
2221 list_for_each_entry(q, &all_q_list, all_q_node)
2222 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002223 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002224 blk_mq_freeze_queue_wait(q);
2225
Jens Axboe320ae512013-10-24 09:20:05 +01002226 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002227 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002228
2229 list_for_each_entry(q, &all_q_list, all_q_node)
2230 blk_mq_unfreeze_queue(q);
2231
Jens Axboe320ae512013-10-24 09:20:05 +01002232 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002233}
2234
2235static int blk_mq_queue_reinit_dead(unsigned int cpu)
2236{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002237 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002238 blk_mq_queue_reinit_work();
2239 return 0;
2240}
2241
2242/*
2243 * Before hotadded cpu starts handling requests, new mappings must be
2244 * established. Otherwise, these requests in hw queue might never be
2245 * dispatched.
2246 *
2247 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2248 * for CPU0, and ctx1 for CPU1).
2249 *
2250 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2251 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2252 *
2253 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2254 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2255 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2256 * is ignored.
2257 */
2258static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2259{
2260 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2261 cpumask_set_cpu(cpu, &cpuhp_online_new);
2262 blk_mq_queue_reinit_work();
2263 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002264}
2265
Jens Axboea5164402014-09-10 09:02:03 -06002266static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2267{
2268 int i;
2269
2270 for (i = 0; i < set->nr_hw_queues; i++) {
2271 set->tags[i] = blk_mq_init_rq_map(set, i);
2272 if (!set->tags[i])
2273 goto out_unwind;
2274 }
2275
2276 return 0;
2277
2278out_unwind:
2279 while (--i >= 0)
2280 blk_mq_free_rq_map(set, set->tags[i], i);
2281
Jens Axboea5164402014-09-10 09:02:03 -06002282 return -ENOMEM;
2283}
2284
2285/*
2286 * Allocate the request maps associated with this tag_set. Note that this
2287 * may reduce the depth asked for, if memory is tight. set->queue_depth
2288 * will be updated to reflect the allocated depth.
2289 */
2290static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2291{
2292 unsigned int depth;
2293 int err;
2294
2295 depth = set->queue_depth;
2296 do {
2297 err = __blk_mq_alloc_rq_maps(set);
2298 if (!err)
2299 break;
2300
2301 set->queue_depth >>= 1;
2302 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2303 err = -ENOMEM;
2304 break;
2305 }
2306 } while (set->queue_depth);
2307
2308 if (!set->queue_depth || err) {
2309 pr_err("blk-mq: failed to allocate request map\n");
2310 return -ENOMEM;
2311 }
2312
2313 if (depth != set->queue_depth)
2314 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2315 depth, set->queue_depth);
2316
2317 return 0;
2318}
2319
Jens Axboea4391c62014-06-05 15:21:56 -06002320/*
2321 * Alloc a tag set to be associated with one or more request queues.
2322 * May fail with EINVAL for various error conditions. May adjust the
2323 * requested depth down, if if it too large. In that case, the set
2324 * value will be stored in set->queue_depth.
2325 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002326int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2327{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002328 int ret;
2329
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002330 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2331
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002332 if (!set->nr_hw_queues)
2333 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002334 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002335 return -EINVAL;
2336 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2337 return -EINVAL;
2338
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002339 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002340 return -EINVAL;
2341
Jens Axboea4391c62014-06-05 15:21:56 -06002342 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2343 pr_info("blk-mq: reduced tag depth to %u\n",
2344 BLK_MQ_MAX_DEPTH);
2345 set->queue_depth = BLK_MQ_MAX_DEPTH;
2346 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002347
Shaohua Li6637fad2014-11-30 16:00:58 -08002348 /*
2349 * If a crashdump is active, then we are potentially in a very
2350 * memory constrained environment. Limit us to 1 queue and
2351 * 64 tags to prevent using too much memory.
2352 */
2353 if (is_kdump_kernel()) {
2354 set->nr_hw_queues = 1;
2355 set->queue_depth = min(64U, set->queue_depth);
2356 }
Keith Busch868f2f02015-12-17 17:08:14 -07002357 /*
2358 * There is no use for more h/w queues than cpus.
2359 */
2360 if (set->nr_hw_queues > nr_cpu_ids)
2361 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002362
Keith Busch868f2f02015-12-17 17:08:14 -07002363 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002364 GFP_KERNEL, set->numa_node);
2365 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002366 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002367
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002368 ret = -ENOMEM;
2369 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2370 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002371 if (!set->mq_map)
2372 goto out_free_tags;
2373
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002374 if (set->ops->map_queues)
2375 ret = set->ops->map_queues(set);
2376 else
2377 ret = blk_mq_map_queues(set);
2378 if (ret)
2379 goto out_free_mq_map;
2380
2381 ret = blk_mq_alloc_rq_maps(set);
2382 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002383 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002384
Jens Axboe0d2602c2014-05-13 15:10:52 -06002385 mutex_init(&set->tag_list_lock);
2386 INIT_LIST_HEAD(&set->tag_list);
2387
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002388 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002389
2390out_free_mq_map:
2391 kfree(set->mq_map);
2392 set->mq_map = NULL;
2393out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002394 kfree(set->tags);
2395 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002396 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002397}
2398EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2399
2400void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2401{
2402 int i;
2403
Keith Busch868f2f02015-12-17 17:08:14 -07002404 for (i = 0; i < nr_cpu_ids; i++) {
Junichi Nomuraf42d79a2015-10-14 05:02:15 +00002405 if (set->tags[i])
Jens Axboe484b4062014-05-21 14:01:15 -06002406 blk_mq_free_rq_map(set, set->tags[i], i);
2407 }
2408
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002409 kfree(set->mq_map);
2410 set->mq_map = NULL;
2411
Ming Lei981bd182014-04-24 00:07:34 +08002412 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002413 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002414}
2415EXPORT_SYMBOL(blk_mq_free_tag_set);
2416
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002417int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2418{
2419 struct blk_mq_tag_set *set = q->tag_set;
2420 struct blk_mq_hw_ctx *hctx;
2421 int i, ret;
2422
2423 if (!set || nr > set->queue_depth)
2424 return -EINVAL;
2425
2426 ret = 0;
2427 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002428 if (!hctx->tags)
2429 continue;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002430 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2431 if (ret)
2432 break;
2433 }
2434
2435 if (!ret)
2436 q->nr_requests = nr;
2437
2438 return ret;
2439}
2440
Keith Busch868f2f02015-12-17 17:08:14 -07002441void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2442{
2443 struct request_queue *q;
2444
2445 if (nr_hw_queues > nr_cpu_ids)
2446 nr_hw_queues = nr_cpu_ids;
2447 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2448 return;
2449
2450 list_for_each_entry(q, &set->tag_list, tag_set_list)
2451 blk_mq_freeze_queue(q);
2452
2453 set->nr_hw_queues = nr_hw_queues;
2454 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2455 blk_mq_realloc_hw_ctxs(set, q);
2456
2457 if (q->nr_hw_queues > 1)
2458 blk_queue_make_request(q, blk_mq_make_request);
2459 else
2460 blk_queue_make_request(q, blk_sq_make_request);
2461
2462 blk_mq_queue_reinit(q, cpu_online_mask);
2463 }
2464
2465 list_for_each_entry(q, &set->tag_list, tag_set_list)
2466 blk_mq_unfreeze_queue(q);
2467}
2468EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2469
Jens Axboe64f1c212016-11-14 13:03:03 -07002470static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2471 struct blk_mq_hw_ctx *hctx,
2472 struct request *rq)
2473{
2474 struct blk_rq_stat stat[2];
2475 unsigned long ret = 0;
2476
2477 /*
2478 * If stats collection isn't on, don't sleep but turn it on for
2479 * future users
2480 */
2481 if (!blk_stat_enable(q))
2482 return 0;
2483
2484 /*
2485 * We don't have to do this once per IO, should optimize this
2486 * to just use the current window of stats until it changes
2487 */
2488 memset(&stat, 0, sizeof(stat));
2489 blk_hctx_stat_get(hctx, stat);
2490
2491 /*
2492 * As an optimistic guess, use half of the mean service time
2493 * for this type of request. We can (and should) make this smarter.
2494 * For instance, if the completion latencies are tight, we can
2495 * get closer than just half the mean. This is especially
2496 * important on devices where the completion latencies are longer
2497 * than ~10 usec.
2498 */
2499 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2500 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2501 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2502 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2503
2504 return ret;
2505}
2506
Jens Axboe06426ad2016-11-14 13:01:59 -07002507static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002508 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002509 struct request *rq)
2510{
2511 struct hrtimer_sleeper hs;
2512 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002513 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002514 ktime_t kt;
2515
Jens Axboe64f1c212016-11-14 13:03:03 -07002516 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2517 return false;
2518
2519 /*
2520 * poll_nsec can be:
2521 *
2522 * -1: don't ever hybrid sleep
2523 * 0: use half of prev avg
2524 * >0: use this specific value
2525 */
2526 if (q->poll_nsec == -1)
2527 return false;
2528 else if (q->poll_nsec > 0)
2529 nsecs = q->poll_nsec;
2530 else
2531 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2532
2533 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002534 return false;
2535
2536 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2537
2538 /*
2539 * This will be replaced with the stats tracking code, using
2540 * 'avg_completion_time / 2' as the pre-sleep target.
2541 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002542 kt = ktime_set(0, nsecs);
Jens Axboe06426ad2016-11-14 13:01:59 -07002543
2544 mode = HRTIMER_MODE_REL;
2545 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2546 hrtimer_set_expires(&hs.timer, kt);
2547
2548 hrtimer_init_sleeper(&hs, current);
2549 do {
2550 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2551 break;
2552 set_current_state(TASK_UNINTERRUPTIBLE);
2553 hrtimer_start_expires(&hs.timer, mode);
2554 if (hs.task)
2555 io_schedule();
2556 hrtimer_cancel(&hs.timer);
2557 mode = HRTIMER_MODE_ABS;
2558 } while (hs.task && !signal_pending(current));
2559
2560 __set_current_state(TASK_RUNNING);
2561 destroy_hrtimer_on_stack(&hs.timer);
2562 return true;
2563}
2564
Jens Axboebbd7bb72016-11-04 09:34:34 -06002565static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2566{
2567 struct request_queue *q = hctx->queue;
2568 long state;
2569
Jens Axboe06426ad2016-11-14 13:01:59 -07002570 /*
2571 * If we sleep, have the caller restart the poll loop to reset
2572 * the state. Like for the other success return cases, the
2573 * caller is responsible for checking if the IO completed. If
2574 * the IO isn't complete, we'll get called again and will go
2575 * straight to the busy poll loop.
2576 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002577 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002578 return true;
2579
Jens Axboebbd7bb72016-11-04 09:34:34 -06002580 hctx->poll_considered++;
2581
2582 state = current->state;
2583 while (!need_resched()) {
2584 int ret;
2585
2586 hctx->poll_invoked++;
2587
2588 ret = q->mq_ops->poll(hctx, rq->tag);
2589 if (ret > 0) {
2590 hctx->poll_success++;
2591 set_current_state(TASK_RUNNING);
2592 return true;
2593 }
2594
2595 if (signal_pending_state(state, current))
2596 set_current_state(TASK_RUNNING);
2597
2598 if (current->state == TASK_RUNNING)
2599 return true;
2600 if (ret < 0)
2601 break;
2602 cpu_relax();
2603 }
2604
2605 return false;
2606}
2607
2608bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2609{
2610 struct blk_mq_hw_ctx *hctx;
2611 struct blk_plug *plug;
2612 struct request *rq;
2613
2614 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2615 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2616 return false;
2617
2618 plug = current->plug;
2619 if (plug)
2620 blk_flush_plug_list(plug, false);
2621
2622 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
2623 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2624
2625 return __blk_mq_poll(hctx, rq);
2626}
2627EXPORT_SYMBOL_GPL(blk_mq_poll);
2628
Jens Axboe676141e2014-03-20 13:29:18 -06002629void blk_mq_disable_hotplug(void)
2630{
2631 mutex_lock(&all_q_mutex);
2632}
2633
2634void blk_mq_enable_hotplug(void)
2635{
2636 mutex_unlock(&all_q_mutex);
2637}
2638
Jens Axboe320ae512013-10-24 09:20:05 +01002639static int __init blk_mq_init(void)
2640{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002641 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2642 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002643
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002644 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2645 blk_mq_queue_reinit_prepare,
2646 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002647 return 0;
2648}
2649subsys_initcall(blk_mq_init);