blob: da1ab5641227b670faac42a84fde7e223668a4d8 [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>
12#include <linux/mm.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/workqueue.h>
16#include <linux/smp.h>
17#include <linux/llist.h>
18#include <linux/list_sort.h>
19#include <linux/cpu.h>
20#include <linux/cache.h>
21#include <linux/sched/sysctl.h>
22#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060023#include <linux/crash_dump.h>
Jens Axboe320ae512013-10-24 09:20:05 +010024
25#include <trace/events/block.h>
26
27#include <linux/blk-mq.h>
28#include "blk.h"
29#include "blk-mq.h"
30#include "blk-mq-tag.h"
31
32static DEFINE_MUTEX(all_q_mutex);
33static LIST_HEAD(all_q_list);
34
35static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
36
Jens Axboe320ae512013-10-24 09:20:05 +010037/*
38 * Check if any of the ctx's have pending work in this hardware queue
39 */
40static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
41{
42 unsigned int i;
43
Jens Axboe1429d7c2014-05-19 09:23:55 -060044 for (i = 0; i < hctx->ctx_map.map_size; i++)
45 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010046 return true;
47
48 return false;
49}
50
Jens Axboe1429d7c2014-05-19 09:23:55 -060051static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
52 struct blk_mq_ctx *ctx)
53{
54 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
55}
56
57#define CTX_TO_BIT(hctx, ctx) \
58 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
59
Jens Axboe320ae512013-10-24 09:20:05 +010060/*
61 * Mark this ctx as having pending work in this hardware queue
62 */
63static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
64 struct blk_mq_ctx *ctx)
65{
Jens Axboe1429d7c2014-05-19 09:23:55 -060066 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
67
68 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
69 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
70}
71
72static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
73 struct blk_mq_ctx *ctx)
74{
75 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
76
77 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010078}
79
Jens Axboe320ae512013-10-24 09:20:05 +010080static int blk_mq_queue_enter(struct request_queue *q)
81{
Tejun Heoadd703f2014-07-01 10:34:38 -060082 while (true) {
83 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +010084
Tejun Heoadd703f2014-07-01 10:34:38 -060085 if (percpu_ref_tryget_live(&q->mq_usage_counter))
86 return 0;
Keith Busch3b632cf2014-06-06 10:22:07 -060087
Tejun Heoadd703f2014-07-01 10:34:38 -060088 ret = wait_event_interruptible(q->mq_freeze_wq,
89 !q->mq_freeze_depth || blk_queue_dying(q));
90 if (blk_queue_dying(q))
91 return -ENODEV;
92 if (ret)
93 return ret;
94 }
Jens Axboe320ae512013-10-24 09:20:05 +010095}
96
97static void blk_mq_queue_exit(struct request_queue *q)
98{
Tejun Heoadd703f2014-07-01 10:34:38 -060099 percpu_ref_put(&q->mq_usage_counter);
100}
101
102static void blk_mq_usage_counter_release(struct percpu_ref *ref)
103{
104 struct request_queue *q =
105 container_of(ref, struct request_queue, mq_usage_counter);
106
107 wake_up_all(&q->mq_freeze_wq);
Jens Axboe320ae512013-10-24 09:20:05 +0100108}
109
Tejun Heof3af0202014-11-04 13:52:27 -0500110static void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800111{
Tejun Heocddd5d12014-08-16 08:02:24 -0400112 bool freeze;
113
Tejun Heo72d6f022014-07-01 10:33:02 -0600114 spin_lock_irq(q->queue_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400115 freeze = !q->mq_freeze_depth++;
Tejun Heo72d6f022014-07-01 10:33:02 -0600116 spin_unlock_irq(q->queue_lock);
117
Tejun Heocddd5d12014-08-16 08:02:24 -0400118 if (freeze) {
Tejun Heo9eca8042014-09-24 13:07:33 -0400119 percpu_ref_kill(&q->mq_usage_counter);
Tejun Heocddd5d12014-08-16 08:02:24 -0400120 blk_mq_run_queues(q, false);
121 }
Tejun Heof3af0202014-11-04 13:52:27 -0500122}
123
124static void blk_mq_freeze_queue_wait(struct request_queue *q)
125{
Tejun Heoadd703f2014-07-01 10:34:38 -0600126 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800127}
128
Tejun Heof3af0202014-11-04 13:52:27 -0500129/*
130 * Guarantee no request is in use, so we can change any data structure of
131 * the queue afterward.
132 */
133void blk_mq_freeze_queue(struct request_queue *q)
134{
135 blk_mq_freeze_queue_start(q);
136 blk_mq_freeze_queue_wait(q);
137}
138
Jens Axboe320ae512013-10-24 09:20:05 +0100139static void blk_mq_unfreeze_queue(struct request_queue *q)
140{
Tejun Heocddd5d12014-08-16 08:02:24 -0400141 bool wake;
Jens Axboe320ae512013-10-24 09:20:05 +0100142
143 spin_lock_irq(q->queue_lock);
Tejun Heo780db202014-07-01 10:31:13 -0600144 wake = !--q->mq_freeze_depth;
145 WARN_ON_ONCE(q->mq_freeze_depth < 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100146 spin_unlock_irq(q->queue_lock);
Tejun Heoadd703f2014-07-01 10:34:38 -0600147 if (wake) {
148 percpu_ref_reinit(&q->mq_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100149 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600150 }
Jens Axboe320ae512013-10-24 09:20:05 +0100151}
152
153bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
154{
155 return blk_mq_has_free_tags(hctx->tags);
156}
157EXPORT_SYMBOL(blk_mq_can_queue);
158
Jens Axboe94eddfb2013-11-19 09:25:07 -0700159static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
160 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100161{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700162 if (blk_queue_io_stat(q))
163 rw_flags |= REQ_IO_STAT;
164
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200165 INIT_LIST_HEAD(&rq->queuelist);
166 /* csd/requeue_work/fifo_time is initialized before use */
167 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100168 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600169 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200170 /* do not touch atomic flags, it needs atomic ops against the timer */
171 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200172 INIT_HLIST_NODE(&rq->hash);
173 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200174 rq->rq_disk = NULL;
175 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600176 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200177#ifdef CONFIG_BLK_CGROUP
178 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700179 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 rq->io_start_time_ns = 0;
181#endif
182 rq->nr_phys_segments = 0;
183#if defined(CONFIG_BLK_DEV_INTEGRITY)
184 rq->nr_integrity_segments = 0;
185#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200186 rq->special = NULL;
187 /* tag was already set */
188 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200189
Tony Battersby6f4a16262014-08-22 15:53:39 -0400190 rq->cmd = rq->__cmd;
191
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200192 rq->extra_len = 0;
193 rq->sense_len = 0;
194 rq->resid_len = 0;
195 rq->sense = NULL;
196
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200197 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600198 rq->timeout = 0;
199
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200200 rq->end_io = NULL;
201 rq->end_io_data = NULL;
202 rq->next_rq = NULL;
203
Jens Axboe320ae512013-10-24 09:20:05 +0100204 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
205}
206
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200207static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800208__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200209{
210 struct request *rq;
211 unsigned int tag;
212
Ming Leicb96a422014-06-01 00:43:37 +0800213 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200214 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800215 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200216
Ming Leicb96a422014-06-01 00:43:37 +0800217 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200218 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800219 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200220 }
221
222 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800223 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224 return rq;
225 }
226
227 return NULL;
228}
229
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200230struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
231 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100232{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200233 struct blk_mq_ctx *ctx;
234 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100235 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800236 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600237 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100238
Joe Lawrencea492f072014-08-28 08:15:21 -0600239 ret = blk_mq_queue_enter(q);
240 if (ret)
241 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100242
Christoph Hellwigd8525642014-05-27 20:59:50 +0200243 ctx = blk_mq_get_ctx(q);
244 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800245 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
246 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200247
Ming Leicb96a422014-06-01 00:43:37 +0800248 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200249 if (!rq && (gfp & __GFP_WAIT)) {
250 __blk_mq_run_hw_queue(hctx);
251 blk_mq_put_ctx(ctx);
252
253 ctx = blk_mq_get_ctx(q);
254 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800255 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
256 hctx);
257 rq = __blk_mq_alloc_request(&alloc_data, rw);
258 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200259 }
260 blk_mq_put_ctx(ctx);
Joe Lawrencea492f072014-08-28 08:15:21 -0600261 if (!rq)
262 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100263 return rq;
264}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600265EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100266
Jens Axboe320ae512013-10-24 09:20:05 +0100267static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
268 struct blk_mq_ctx *ctx, struct request *rq)
269{
270 const int tag = rq->tag;
271 struct request_queue *q = rq->q;
272
Jens Axboe0d2602c2014-05-13 15:10:52 -0600273 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
274 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200275 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600276
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200277 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600278 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100279 blk_mq_queue_exit(q);
280}
281
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700282void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100283{
284 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700285
286 ctx->rq_completed[rq_is_sync(rq)]++;
287 __blk_mq_free_request(hctx, ctx, rq);
288
289}
290EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
291
292void blk_mq_free_request(struct request *rq)
293{
Jens Axboe320ae512013-10-24 09:20:05 +0100294 struct blk_mq_hw_ctx *hctx;
295 struct request_queue *q = rq->q;
296
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700297 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
298 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100299}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700300EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100301
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700302inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100303{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700304 blk_account_io_done(rq);
305
Christoph Hellwig91b63632014-04-16 09:44:53 +0200306 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100307 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200308 } else {
309 if (unlikely(blk_bidi_rq(rq)))
310 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100311 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200312 }
Jens Axboe320ae512013-10-24 09:20:05 +0100313}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700314EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200315
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700316void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200317{
318 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
319 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700320 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200321}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700322EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100323
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800324static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100325{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800326 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100327
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800328 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100329}
330
Jens Axboeed851862014-05-30 21:20:50 -0600331static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100332{
333 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700334 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100335 int cpu;
336
Christoph Hellwig38535202014-04-25 02:32:53 -0700337 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800338 rq->q->softirq_done_fn(rq);
339 return;
340 }
Jens Axboe320ae512013-10-24 09:20:05 +0100341
342 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700343 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
344 shared = cpus_share_cache(cpu, ctx->cpu);
345
346 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800347 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800348 rq->csd.info = rq;
349 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100350 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800351 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800352 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800353 }
Jens Axboe320ae512013-10-24 09:20:05 +0100354 put_cpu();
355}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800356
Jens Axboeed851862014-05-30 21:20:50 -0600357void __blk_mq_complete_request(struct request *rq)
358{
359 struct request_queue *q = rq->q;
360
361 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700362 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600363 else
364 blk_mq_ipi_complete_request(rq);
365}
366
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800367/**
368 * blk_mq_complete_request - end I/O on a request
369 * @rq: the request being processed
370 *
371 * Description:
372 * Ends all I/O on a request. It does not handle partial completions.
373 * The actual completion happens out-of-order, through a IPI handler.
374 **/
375void blk_mq_complete_request(struct request *rq)
376{
Jens Axboe95f09682014-05-27 17:46:48 -0600377 struct request_queue *q = rq->q;
378
379 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800380 return;
Jens Axboeed851862014-05-30 21:20:50 -0600381 if (!blk_mark_rq_complete(rq))
382 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800383}
384EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100385
Christoph Hellwige2490072014-09-13 16:40:09 -0700386void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100387{
388 struct request_queue *q = rq->q;
389
390 trace_block_rq_issue(q, rq);
391
Christoph Hellwig742ee692014-04-14 10:30:06 +0200392 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200393 if (unlikely(blk_bidi_rq(rq)))
394 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200395
Ming Lei2b8393b2014-06-10 00:16:41 +0800396 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600397
398 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600399 * Ensure that ->deadline is visible before set the started
400 * flag and clear the completed flag.
401 */
402 smp_mb__before_atomic();
403
404 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600405 * Mark us as started and clear complete. Complete might have been
406 * set if requeue raced with timeout, which then marked it as
407 * complete. So be sure to clear complete again when we start
408 * the request, otherwise we'll ignore the completion event.
409 */
Jens Axboe4b570522014-05-29 11:00:11 -0600410 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
411 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
412 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
413 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800414
415 if (q->dma_drain_size && blk_rq_bytes(rq)) {
416 /*
417 * Make sure space for the drain appears. We know we can do
418 * this because max_hw_segments has been adjusted to be one
419 * fewer than the device can handle.
420 */
421 rq->nr_phys_segments++;
422 }
Jens Axboe320ae512013-10-24 09:20:05 +0100423}
Christoph Hellwige2490072014-09-13 16:40:09 -0700424EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100425
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200426static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100427{
428 struct request_queue *q = rq->q;
429
430 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800431
Christoph Hellwige2490072014-09-13 16:40:09 -0700432 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
433 if (q->dma_drain_size && blk_rq_bytes(rq))
434 rq->nr_phys_segments--;
435 }
Jens Axboe320ae512013-10-24 09:20:05 +0100436}
437
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200438void blk_mq_requeue_request(struct request *rq)
439{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200440 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200441
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200442 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600443 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200444}
445EXPORT_SYMBOL(blk_mq_requeue_request);
446
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600447static void blk_mq_requeue_work(struct work_struct *work)
448{
449 struct request_queue *q =
450 container_of(work, struct request_queue, requeue_work);
451 LIST_HEAD(rq_list);
452 struct request *rq, *next;
453 unsigned long flags;
454
455 spin_lock_irqsave(&q->requeue_lock, flags);
456 list_splice_init(&q->requeue_list, &rq_list);
457 spin_unlock_irqrestore(&q->requeue_lock, flags);
458
459 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
460 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
461 continue;
462
463 rq->cmd_flags &= ~REQ_SOFTBARRIER;
464 list_del_init(&rq->queuelist);
465 blk_mq_insert_request(rq, true, false, false);
466 }
467
468 while (!list_empty(&rq_list)) {
469 rq = list_entry(rq_list.next, struct request, queuelist);
470 list_del_init(&rq->queuelist);
471 blk_mq_insert_request(rq, false, false, false);
472 }
473
Jens Axboe8b957412014-09-19 13:10:29 -0600474 /*
475 * Use the start variant of queue running here, so that running
476 * the requeue work will kick stopped queues.
477 */
478 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600479}
480
481void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
482{
483 struct request_queue *q = rq->q;
484 unsigned long flags;
485
486 /*
487 * We abuse this flag that is otherwise used by the I/O scheduler to
488 * request head insertation from the workqueue.
489 */
490 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
491
492 spin_lock_irqsave(&q->requeue_lock, flags);
493 if (at_head) {
494 rq->cmd_flags |= REQ_SOFTBARRIER;
495 list_add(&rq->queuelist, &q->requeue_list);
496 } else {
497 list_add_tail(&rq->queuelist, &q->requeue_list);
498 }
499 spin_unlock_irqrestore(&q->requeue_lock, flags);
500}
501EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
502
503void blk_mq_kick_requeue_list(struct request_queue *q)
504{
505 kblockd_schedule_work(&q->requeue_work);
506}
507EXPORT_SYMBOL(blk_mq_kick_requeue_list);
508
Ming Lei7c94e1c2014-09-25 23:23:43 +0800509static inline bool is_flush_request(struct request *rq,
510 struct blk_flush_queue *fq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600511{
Jens Axboe0e62f512014-06-04 10:23:49 -0600512 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
Ming Lei7c94e1c2014-09-25 23:23:43 +0800513 fq->flush_rq->tag == tag);
Jens Axboe0e62f512014-06-04 10:23:49 -0600514}
Shaohua Li22302372014-05-30 08:06:42 -0600515
Jens Axboe0e62f512014-06-04 10:23:49 -0600516struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
517{
518 struct request *rq = tags->rqs[tag];
Ming Leie97c2932014-09-25 23:23:46 +0800519 /* mq_ctx of flush rq is always cloned from the corresponding req */
520 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
Shaohua Li22302372014-05-30 08:06:42 -0600521
Ming Lei7c94e1c2014-09-25 23:23:43 +0800522 if (!is_flush_request(rq, fq, tag))
Jens Axboe0e62f512014-06-04 10:23:49 -0600523 return rq;
524
Ming Lei7c94e1c2014-09-25 23:23:43 +0800525 return fq->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600526}
527EXPORT_SYMBOL(blk_mq_tag_to_rq);
528
Jens Axboe320ae512013-10-24 09:20:05 +0100529struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700530 unsigned long next;
531 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100532};
533
Christoph Hellwig90415832014-09-22 10:21:48 -0600534void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100535{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700536 struct blk_mq_ops *ops = req->q->mq_ops;
537 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600538
539 /*
540 * We know that complete is set at this point. If STARTED isn't set
541 * anymore, then the request isn't active and the "timeout" should
542 * just be ignored. This can happen due to the bitflag ordering.
543 * Timeout first checks if STARTED is set, and if it is, assumes
544 * the request is active. But if we race with completion, then
545 * we both flags will get cleared. So check here again, and ignore
546 * a timeout event with a request that isn't active.
547 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700548 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
549 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600550
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700551 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700552 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600553
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700554 switch (ret) {
555 case BLK_EH_HANDLED:
556 __blk_mq_complete_request(req);
557 break;
558 case BLK_EH_RESET_TIMER:
559 blk_add_timer(req);
560 blk_clear_rq_complete(req);
561 break;
562 case BLK_EH_NOT_HANDLED:
563 break;
564 default:
565 printk(KERN_ERR "block: bad eh return: %d\n", ret);
566 break;
567 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600568}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700569
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700570static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
571 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100572{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700573 struct blk_mq_timeout_data *data = priv;
574
Jens Axboe320ae512013-10-24 09:20:05 +0100575 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700576 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100577
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700578 if (time_after_eq(jiffies, rq->deadline)) {
579 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700580 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700581 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
582 data->next = rq->deadline;
583 data->next_set = 1;
584 }
Jens Axboe320ae512013-10-24 09:20:05 +0100585}
586
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700587static void blk_mq_rq_timer(unsigned long priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100588{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700589 struct request_queue *q = (struct request_queue *)priv;
590 struct blk_mq_timeout_data data = {
591 .next = 0,
592 .next_set = 0,
593 };
Jens Axboe320ae512013-10-24 09:20:05 +0100594 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700595 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100596
Jens Axboe484b4062014-05-21 14:01:15 -0600597 queue_for_each_hw_ctx(q, hctx, i) {
598 /*
599 * If not software queues are currently mapped to this
600 * hardware queue, there's nothing to check
601 */
Ming Lei19c66e52014-12-03 19:38:04 +0800602 if (!blk_mq_hw_queue_mapped(hctx))
Jens Axboe484b4062014-05-21 14:01:15 -0600603 continue;
604
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700605 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600606 }
Jens Axboe320ae512013-10-24 09:20:05 +0100607
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700608 if (data.next_set) {
609 data.next = blk_rq_timeout(round_jiffies_up(data.next));
610 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600611 } else {
612 queue_for_each_hw_ctx(q, hctx, i)
613 blk_mq_tag_idle(hctx);
614 }
Jens Axboe320ae512013-10-24 09:20:05 +0100615}
616
617/*
618 * Reverse check our software queue for entries that we could potentially
619 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
620 * too much time checking for merges.
621 */
622static bool blk_mq_attempt_merge(struct request_queue *q,
623 struct blk_mq_ctx *ctx, struct bio *bio)
624{
625 struct request *rq;
626 int checked = 8;
627
628 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
629 int el_ret;
630
631 if (!checked--)
632 break;
633
634 if (!blk_rq_merge_ok(rq, bio))
635 continue;
636
637 el_ret = blk_try_merge(rq, bio);
638 if (el_ret == ELEVATOR_BACK_MERGE) {
639 if (bio_attempt_back_merge(q, rq, bio)) {
640 ctx->rq_merged++;
641 return true;
642 }
643 break;
644 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
645 if (bio_attempt_front_merge(q, rq, bio)) {
646 ctx->rq_merged++;
647 return true;
648 }
649 break;
650 }
651 }
652
653 return false;
654}
655
Jens Axboe320ae512013-10-24 09:20:05 +0100656/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600657 * Process software queues that have been marked busy, splicing them
658 * to the for-dispatch
659 */
660static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
661{
662 struct blk_mq_ctx *ctx;
663 int i;
664
665 for (i = 0; i < hctx->ctx_map.map_size; i++) {
666 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
667 unsigned int off, bit;
668
669 if (!bm->word)
670 continue;
671
672 bit = 0;
673 off = i * hctx->ctx_map.bits_per_word;
674 do {
675 bit = find_next_bit(&bm->word, bm->depth, bit);
676 if (bit >= bm->depth)
677 break;
678
679 ctx = hctx->ctxs[bit + off];
680 clear_bit(bit, &bm->word);
681 spin_lock(&ctx->lock);
682 list_splice_tail_init(&ctx->rq_list, list);
683 spin_unlock(&ctx->lock);
684
685 bit++;
686 } while (1);
687 }
688}
689
690/*
Jens Axboe320ae512013-10-24 09:20:05 +0100691 * Run this hardware queue, pulling any software queues mapped to it in.
692 * Note that this function currently has various problems around ordering
693 * of IO. In particular, we'd like FIFO behaviour on handling existing
694 * items on the hctx->dispatch list. Ignore that for now.
695 */
696static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
697{
698 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100699 struct request *rq;
700 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600701 LIST_HEAD(driver_list);
702 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600703 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100704
Jens Axboefd1270d2014-04-16 09:23:48 -0600705 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600706
Jens Axboe5d12f902014-03-19 15:25:02 -0600707 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100708 return;
709
710 hctx->run++;
711
712 /*
713 * Touch any software queue that has pending entries.
714 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600715 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100716
717 /*
718 * If we have previous entries on our dispatch list, grab them
719 * and stuff them at the front for more fair dispatch.
720 */
721 if (!list_empty_careful(&hctx->dispatch)) {
722 spin_lock(&hctx->lock);
723 if (!list_empty(&hctx->dispatch))
724 list_splice_init(&hctx->dispatch, &rq_list);
725 spin_unlock(&hctx->lock);
726 }
727
728 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600729 * Start off with dptr being NULL, so we start the first request
730 * immediately, even if we have more pending.
731 */
732 dptr = NULL;
733
734 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100735 * Now process all the entries, sending them to the driver.
736 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600737 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100738 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600739 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100740 int ret;
741
742 rq = list_first_entry(&rq_list, struct request, queuelist);
743 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100744
Jens Axboe74c45052014-10-29 11:14:52 -0600745 bd.rq = rq;
746 bd.list = dptr;
747 bd.last = list_empty(&rq_list);
748
749 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100750 switch (ret) {
751 case BLK_MQ_RQ_QUEUE_OK:
752 queued++;
753 continue;
754 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100755 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200756 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100757 break;
758 default:
759 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100760 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800761 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700762 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100763 break;
764 }
765
766 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
767 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600768
769 /*
770 * We've done the first request. If we have more than 1
771 * left in the list, set dptr to defer issue.
772 */
773 if (!dptr && rq_list.next != rq_list.prev)
774 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100775 }
776
777 if (!queued)
778 hctx->dispatched[0]++;
779 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
780 hctx->dispatched[ilog2(queued) + 1]++;
781
782 /*
783 * Any items that need requeuing? Stuff them into hctx->dispatch,
784 * that is where we will continue on next queue run.
785 */
786 if (!list_empty(&rq_list)) {
787 spin_lock(&hctx->lock);
788 list_splice(&rq_list, &hctx->dispatch);
789 spin_unlock(&hctx->lock);
790 }
791}
792
Jens Axboe506e9312014-05-07 10:26:44 -0600793/*
794 * It'd be great if the workqueue API had a way to pass
795 * in a mask and had some smarts for more clever placement.
796 * For now we just round-robin here, switching for every
797 * BLK_MQ_CPU_WORK_BATCH queued items.
798 */
799static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
800{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100801 if (hctx->queue->nr_hw_queues == 1)
802 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600803
804 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100805 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600806
807 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
808 if (next_cpu >= nr_cpu_ids)
809 next_cpu = cpumask_first(hctx->cpumask);
810
811 hctx->next_cpu = next_cpu;
812 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100813
814 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600815 }
816
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100817 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600818}
819
Jens Axboe320ae512013-10-24 09:20:05 +0100820void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
821{
Ming Lei19c66e52014-12-03 19:38:04 +0800822 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
823 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100824 return;
825
Paolo Bonzini398205b2014-11-07 23:03:59 +0100826 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100827 int cpu = get_cpu();
828 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100829 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100830 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100831 return;
832 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600833
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100834 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600835 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100836
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100837 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
838 &hctx->run_work, 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100839}
840
841void blk_mq_run_queues(struct request_queue *q, bool async)
842{
843 struct blk_mq_hw_ctx *hctx;
844 int i;
845
846 queue_for_each_hw_ctx(q, hctx, i) {
847 if ((!blk_mq_hctx_has_pending(hctx) &&
848 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600849 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100850 continue;
851
852 blk_mq_run_hw_queue(hctx, async);
853 }
854}
855EXPORT_SYMBOL(blk_mq_run_queues);
856
857void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
858{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600859 cancel_delayed_work(&hctx->run_work);
860 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100861 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
862}
863EXPORT_SYMBOL(blk_mq_stop_hw_queue);
864
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100865void blk_mq_stop_hw_queues(struct request_queue *q)
866{
867 struct blk_mq_hw_ctx *hctx;
868 int i;
869
870 queue_for_each_hw_ctx(q, hctx, i)
871 blk_mq_stop_hw_queue(hctx);
872}
873EXPORT_SYMBOL(blk_mq_stop_hw_queues);
874
Jens Axboe320ae512013-10-24 09:20:05 +0100875void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
876{
877 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600878
Jens Axboe0ffbce82014-06-25 08:22:34 -0600879 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100880}
881EXPORT_SYMBOL(blk_mq_start_hw_queue);
882
Christoph Hellwig2f268552014-04-16 09:44:56 +0200883void blk_mq_start_hw_queues(struct request_queue *q)
884{
885 struct blk_mq_hw_ctx *hctx;
886 int i;
887
888 queue_for_each_hw_ctx(q, hctx, i)
889 blk_mq_start_hw_queue(hctx);
890}
891EXPORT_SYMBOL(blk_mq_start_hw_queues);
892
893
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200894void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100895{
896 struct blk_mq_hw_ctx *hctx;
897 int i;
898
899 queue_for_each_hw_ctx(q, hctx, i) {
900 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
901 continue;
902
903 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200904 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100905 }
906}
907EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
908
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600909static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100910{
911 struct blk_mq_hw_ctx *hctx;
912
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600913 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600914
Jens Axboe320ae512013-10-24 09:20:05 +0100915 __blk_mq_run_hw_queue(hctx);
916}
917
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600918static void blk_mq_delay_work_fn(struct work_struct *work)
919{
920 struct blk_mq_hw_ctx *hctx;
921
922 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
923
924 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
925 __blk_mq_run_hw_queue(hctx);
926}
927
928void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
929{
Ming Lei19c66e52014-12-03 19:38:04 +0800930 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
931 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600932
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100933 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
934 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600935}
936EXPORT_SYMBOL(blk_mq_delay_queue);
937
Jens Axboe320ae512013-10-24 09:20:05 +0100938static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800939 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100940{
941 struct blk_mq_ctx *ctx = rq->mq_ctx;
942
Jens Axboe01b983c2013-11-19 18:59:10 -0700943 trace_block_rq_insert(hctx->queue, rq);
944
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800945 if (at_head)
946 list_add(&rq->queuelist, &ctx->rq_list);
947 else
948 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600949
Jens Axboe320ae512013-10-24 09:20:05 +0100950 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100951}
952
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600953void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
954 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100955{
956 struct request_queue *q = rq->q;
957 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600958 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100959
960 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600961 if (!cpu_online(ctx->cpu))
962 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100963
Jens Axboe320ae512013-10-24 09:20:05 +0100964 hctx = q->mq_ops->map_queue(q, ctx->cpu);
965
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700966 spin_lock(&ctx->lock);
967 __blk_mq_insert_request(hctx, rq, at_head);
968 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100969
Jens Axboe320ae512013-10-24 09:20:05 +0100970 if (run_queue)
971 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600972
973 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100974}
975
976static void blk_mq_insert_requests(struct request_queue *q,
977 struct blk_mq_ctx *ctx,
978 struct list_head *list,
979 int depth,
980 bool from_schedule)
981
982{
983 struct blk_mq_hw_ctx *hctx;
984 struct blk_mq_ctx *current_ctx;
985
986 trace_block_unplug(q, depth, !from_schedule);
987
988 current_ctx = blk_mq_get_ctx(q);
989
990 if (!cpu_online(ctx->cpu))
991 ctx = current_ctx;
992 hctx = q->mq_ops->map_queue(q, ctx->cpu);
993
994 /*
995 * preemption doesn't flush plug list, so it's possible ctx->cpu is
996 * offline now
997 */
998 spin_lock(&ctx->lock);
999 while (!list_empty(list)) {
1000 struct request *rq;
1001
1002 rq = list_first_entry(list, struct request, queuelist);
1003 list_del_init(&rq->queuelist);
1004 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001005 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001006 }
1007 spin_unlock(&ctx->lock);
1008
Jens Axboe320ae512013-10-24 09:20:05 +01001009 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001010 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001011}
1012
1013static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1014{
1015 struct request *rqa = container_of(a, struct request, queuelist);
1016 struct request *rqb = container_of(b, struct request, queuelist);
1017
1018 return !(rqa->mq_ctx < rqb->mq_ctx ||
1019 (rqa->mq_ctx == rqb->mq_ctx &&
1020 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1021}
1022
1023void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1024{
1025 struct blk_mq_ctx *this_ctx;
1026 struct request_queue *this_q;
1027 struct request *rq;
1028 LIST_HEAD(list);
1029 LIST_HEAD(ctx_list);
1030 unsigned int depth;
1031
1032 list_splice_init(&plug->mq_list, &list);
1033
1034 list_sort(NULL, &list, plug_ctx_cmp);
1035
1036 this_q = NULL;
1037 this_ctx = NULL;
1038 depth = 0;
1039
1040 while (!list_empty(&list)) {
1041 rq = list_entry_rq(list.next);
1042 list_del_init(&rq->queuelist);
1043 BUG_ON(!rq->q);
1044 if (rq->mq_ctx != this_ctx) {
1045 if (this_ctx) {
1046 blk_mq_insert_requests(this_q, this_ctx,
1047 &ctx_list, depth,
1048 from_schedule);
1049 }
1050
1051 this_ctx = rq->mq_ctx;
1052 this_q = rq->q;
1053 depth = 0;
1054 }
1055
1056 depth++;
1057 list_add_tail(&rq->queuelist, &ctx_list);
1058 }
1059
1060 /*
1061 * If 'this_ctx' is set, we know we have entries to complete
1062 * on 'ctx_list'. Do those.
1063 */
1064 if (this_ctx) {
1065 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1066 from_schedule);
1067 }
1068}
1069
1070static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1071{
1072 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001073
Jens Axboe3ee32372014-06-09 09:36:53 -06001074 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001075 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001076}
1077
Jens Axboe274a5842014-08-15 12:44:08 -06001078static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1079{
1080 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1081 !blk_queue_nomerges(hctx->queue);
1082}
1083
Jens Axboe07068d52014-05-22 10:40:51 -06001084static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1085 struct blk_mq_ctx *ctx,
1086 struct request *rq, struct bio *bio)
1087{
Jens Axboe274a5842014-08-15 12:44:08 -06001088 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001089 blk_mq_bio_to_request(rq, bio);
1090 spin_lock(&ctx->lock);
1091insert_rq:
1092 __blk_mq_insert_request(hctx, rq, false);
1093 spin_unlock(&ctx->lock);
1094 return false;
1095 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001096 struct request_queue *q = hctx->queue;
1097
Jens Axboe07068d52014-05-22 10:40:51 -06001098 spin_lock(&ctx->lock);
1099 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1100 blk_mq_bio_to_request(rq, bio);
1101 goto insert_rq;
1102 }
1103
1104 spin_unlock(&ctx->lock);
1105 __blk_mq_free_request(hctx, ctx, rq);
1106 return true;
1107 }
1108}
1109
1110struct blk_map_ctx {
1111 struct blk_mq_hw_ctx *hctx;
1112 struct blk_mq_ctx *ctx;
1113};
1114
1115static struct request *blk_mq_map_request(struct request_queue *q,
1116 struct bio *bio,
1117 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001118{
1119 struct blk_mq_hw_ctx *hctx;
1120 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001121 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001122 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001123 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001124
Jens Axboe07068d52014-05-22 10:40:51 -06001125 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001126 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001127 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001128 }
1129
1130 ctx = blk_mq_get_ctx(q);
1131 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1132
Jens Axboe07068d52014-05-22 10:40:51 -06001133 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001134 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001135
Jens Axboe320ae512013-10-24 09:20:05 +01001136 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001137 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1138 hctx);
1139 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001140 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001141 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001142 blk_mq_put_ctx(ctx);
1143 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001144
1145 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001146 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001147 blk_mq_set_alloc_data(&alloc_data, q,
1148 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1149 rq = __blk_mq_alloc_request(&alloc_data, rw);
1150 ctx = alloc_data.ctx;
1151 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001152 }
1153
1154 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001155 data->hctx = hctx;
1156 data->ctx = ctx;
1157 return rq;
1158}
1159
1160/*
1161 * Multiple hardware queue variant. This will not use per-process plugs,
1162 * but will attempt to bypass the hctx queueing if we can go straight to
1163 * hardware for SYNC IO.
1164 */
1165static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1166{
1167 const int is_sync = rw_is_sync(bio->bi_rw);
1168 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1169 struct blk_map_ctx data;
1170 struct request *rq;
1171
1172 blk_queue_bounce(q, &bio);
1173
1174 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1175 bio_endio(bio, -EIO);
1176 return;
1177 }
1178
1179 rq = blk_mq_map_request(q, bio, &data);
1180 if (unlikely(!rq))
1181 return;
1182
1183 if (unlikely(is_flush_fua)) {
1184 blk_mq_bio_to_request(rq, bio);
1185 blk_insert_flush(rq);
1186 goto run_queue;
1187 }
1188
Jens Axboee167dfb2014-10-29 11:18:26 -06001189 /*
1190 * If the driver supports defer issued based on 'last', then
1191 * queue it up like normal since we can potentially save some
1192 * CPU this way.
1193 */
1194 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001195 struct blk_mq_queue_data bd = {
1196 .rq = rq,
1197 .list = NULL,
1198 .last = 1
1199 };
Jens Axboe07068d52014-05-22 10:40:51 -06001200 int ret;
1201
1202 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001203
1204 /*
1205 * For OK queue, we are done. For error, kill it. Any other
1206 * error (busy), just add it to our list as we previously
1207 * would have done
1208 */
Jens Axboe74c45052014-10-29 11:14:52 -06001209 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001210 if (ret == BLK_MQ_RQ_QUEUE_OK)
1211 goto done;
1212 else {
1213 __blk_mq_requeue_request(rq);
1214
1215 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1216 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001217 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001218 goto done;
1219 }
1220 }
1221 }
1222
1223 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1224 /*
1225 * For a SYNC request, send it to the hardware immediately. For
1226 * an ASYNC request, just ensure that we run it later on. The
1227 * latter allows for merging opportunities and more efficient
1228 * dispatching.
1229 */
1230run_queue:
1231 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1232 }
1233done:
1234 blk_mq_put_ctx(data.ctx);
1235}
1236
1237/*
1238 * Single hardware queue variant. This will attempt to use any per-process
1239 * plug for merging and IO deferral.
1240 */
1241static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1242{
1243 const int is_sync = rw_is_sync(bio->bi_rw);
1244 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1245 unsigned int use_plug, request_count = 0;
1246 struct blk_map_ctx data;
1247 struct request *rq;
1248
1249 /*
1250 * If we have multiple hardware queues, just go directly to
1251 * one of those for sync IO.
1252 */
1253 use_plug = !is_flush_fua && !is_sync;
1254
1255 blk_queue_bounce(q, &bio);
1256
1257 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1258 bio_endio(bio, -EIO);
1259 return;
1260 }
1261
1262 if (use_plug && !blk_queue_nomerges(q) &&
1263 blk_attempt_plug_merge(q, bio, &request_count))
1264 return;
1265
1266 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001267 if (unlikely(!rq))
1268 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001269
1270 if (unlikely(is_flush_fua)) {
1271 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001272 blk_insert_flush(rq);
1273 goto run_queue;
1274 }
1275
1276 /*
1277 * A task plug currently exists. Since this is completely lockless,
1278 * utilize that to temporarily store requests until the task is
1279 * either done or scheduled away.
1280 */
1281 if (use_plug) {
1282 struct blk_plug *plug = current->plug;
1283
1284 if (plug) {
1285 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001286 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001287 trace_block_plug(q);
1288 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1289 blk_flush_plug_list(plug, false);
1290 trace_block_plug(q);
1291 }
1292 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001293 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001294 return;
1295 }
1296 }
1297
Jens Axboe07068d52014-05-22 10:40:51 -06001298 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1299 /*
1300 * For a SYNC request, send it to the hardware immediately. For
1301 * an ASYNC request, just ensure that we run it later on. The
1302 * latter allows for merging opportunities and more efficient
1303 * dispatching.
1304 */
1305run_queue:
1306 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001307 }
1308
Jens Axboe07068d52014-05-22 10:40:51 -06001309 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001310}
1311
1312/*
1313 * Default mapping to a software queue, since we use one per CPU.
1314 */
1315struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1316{
1317 return q->queue_hw_ctx[q->mq_map[cpu]];
1318}
1319EXPORT_SYMBOL(blk_mq_map_queue);
1320
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001321static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1322 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001323{
1324 struct page *page;
1325
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001326 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001327 int i;
1328
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001329 for (i = 0; i < tags->nr_tags; i++) {
1330 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001331 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001332 set->ops->exit_request(set->driver_data, tags->rqs[i],
1333 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001334 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001335 }
1336 }
1337
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001338 while (!list_empty(&tags->page_list)) {
1339 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001340 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001341 __free_pages(page, page->private);
1342 }
1343
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001345
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001346 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001347}
1348
1349static size_t order_to_size(unsigned int order)
1350{
Ming Lei4ca08502014-04-19 18:00:18 +08001351 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001352}
1353
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001354static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1355 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001356{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001357 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001358 unsigned int i, j, entries_per_page, max_order = 4;
1359 size_t rq_size, left;
1360
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1362 set->numa_node);
1363 if (!tags)
1364 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001365
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001366 INIT_LIST_HEAD(&tags->page_list);
1367
Jens Axboea5164402014-09-10 09:02:03 -06001368 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1369 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1370 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001371 if (!tags->rqs) {
1372 blk_mq_free_tags(tags);
1373 return NULL;
1374 }
Jens Axboe320ae512013-10-24 09:20:05 +01001375
1376 /*
1377 * rq_size is the size of the request plus driver payload, rounded
1378 * to the cacheline size
1379 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001380 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001381 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001382 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001383
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001384 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001385 int this_order = max_order;
1386 struct page *page;
1387 int to_do;
1388 void *p;
1389
1390 while (left < order_to_size(this_order - 1) && this_order)
1391 this_order--;
1392
1393 do {
Jens Axboea5164402014-09-10 09:02:03 -06001394 page = alloc_pages_node(set->numa_node,
1395 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1396 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001397 if (page)
1398 break;
1399 if (!this_order--)
1400 break;
1401 if (order_to_size(this_order) < rq_size)
1402 break;
1403 } while (1);
1404
1405 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001407
1408 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001409 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001410
1411 p = page_address(page);
1412 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001413 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001414 left -= to_do * rq_size;
1415 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001416 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001417 tags->rqs[i]->atomic_flags = 0;
1418 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001419 if (set->ops->init_request) {
1420 if (set->ops->init_request(set->driver_data,
1421 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001422 set->numa_node)) {
1423 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001424 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001425 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001426 }
1427
Jens Axboe320ae512013-10-24 09:20:05 +01001428 p += rq_size;
1429 i++;
1430 }
1431 }
1432
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001433 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001434
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001435fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001436 blk_mq_free_rq_map(set, tags, hctx_idx);
1437 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001438}
1439
Jens Axboe1429d7c2014-05-19 09:23:55 -06001440static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1441{
1442 kfree(bitmap->map);
1443}
1444
1445static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1446{
1447 unsigned int bpw = 8, total, num_maps, i;
1448
1449 bitmap->bits_per_word = bpw;
1450
1451 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1452 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1453 GFP_KERNEL, node);
1454 if (!bitmap->map)
1455 return -ENOMEM;
1456
1457 bitmap->map_size = num_maps;
1458
1459 total = nr_cpu_ids;
1460 for (i = 0; i < num_maps; i++) {
1461 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1462 total -= bitmap->map[i].depth;
1463 }
1464
1465 return 0;
1466}
1467
Jens Axboe484b4062014-05-21 14:01:15 -06001468static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1469{
1470 struct request_queue *q = hctx->queue;
1471 struct blk_mq_ctx *ctx;
1472 LIST_HEAD(tmp);
1473
1474 /*
1475 * Move ctx entries to new CPU, if this one is going away.
1476 */
1477 ctx = __blk_mq_get_ctx(q, cpu);
1478
1479 spin_lock(&ctx->lock);
1480 if (!list_empty(&ctx->rq_list)) {
1481 list_splice_init(&ctx->rq_list, &tmp);
1482 blk_mq_hctx_clear_pending(hctx, ctx);
1483 }
1484 spin_unlock(&ctx->lock);
1485
1486 if (list_empty(&tmp))
1487 return NOTIFY_OK;
1488
1489 ctx = blk_mq_get_ctx(q);
1490 spin_lock(&ctx->lock);
1491
1492 while (!list_empty(&tmp)) {
1493 struct request *rq;
1494
1495 rq = list_first_entry(&tmp, struct request, queuelist);
1496 rq->mq_ctx = ctx;
1497 list_move_tail(&rq->queuelist, &ctx->rq_list);
1498 }
1499
1500 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1501 blk_mq_hctx_mark_pending(hctx, ctx);
1502
1503 spin_unlock(&ctx->lock);
1504
1505 blk_mq_run_hw_queue(hctx, true);
1506 blk_mq_put_ctx(ctx);
1507 return NOTIFY_OK;
1508}
1509
1510static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1511{
1512 struct request_queue *q = hctx->queue;
1513 struct blk_mq_tag_set *set = q->tag_set;
1514
1515 if (set->tags[hctx->queue_num])
1516 return NOTIFY_OK;
1517
1518 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1519 if (!set->tags[hctx->queue_num])
1520 return NOTIFY_STOP;
1521
1522 hctx->tags = set->tags[hctx->queue_num];
1523 return NOTIFY_OK;
1524}
1525
1526static int blk_mq_hctx_notify(void *data, unsigned long action,
1527 unsigned int cpu)
1528{
1529 struct blk_mq_hw_ctx *hctx = data;
1530
1531 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1532 return blk_mq_hctx_cpu_offline(hctx, cpu);
1533 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1534 return blk_mq_hctx_cpu_online(hctx, cpu);
1535
1536 return NOTIFY_OK;
1537}
1538
Ming Lei08e98fc2014-09-25 23:23:38 +08001539static void blk_mq_exit_hctx(struct request_queue *q,
1540 struct blk_mq_tag_set *set,
1541 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1542{
Ming Leif70ced02014-09-25 23:23:47 +08001543 unsigned flush_start_tag = set->queue_depth;
1544
Ming Lei08e98fc2014-09-25 23:23:38 +08001545 blk_mq_tag_idle(hctx);
1546
Ming Leif70ced02014-09-25 23:23:47 +08001547 if (set->ops->exit_request)
1548 set->ops->exit_request(set->driver_data,
1549 hctx->fq->flush_rq, hctx_idx,
1550 flush_start_tag + hctx_idx);
1551
Ming Lei08e98fc2014-09-25 23:23:38 +08001552 if (set->ops->exit_hctx)
1553 set->ops->exit_hctx(hctx, hctx_idx);
1554
1555 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001556 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001557 kfree(hctx->ctxs);
1558 blk_mq_free_bitmap(&hctx->ctx_map);
1559}
1560
Ming Lei624dbe42014-05-27 23:35:13 +08001561static void blk_mq_exit_hw_queues(struct request_queue *q,
1562 struct blk_mq_tag_set *set, int nr_queue)
1563{
1564 struct blk_mq_hw_ctx *hctx;
1565 unsigned int i;
1566
1567 queue_for_each_hw_ctx(q, hctx, i) {
1568 if (i == nr_queue)
1569 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001570 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001571 }
Ming Lei624dbe42014-05-27 23:35:13 +08001572}
1573
1574static void blk_mq_free_hw_queues(struct request_queue *q,
1575 struct blk_mq_tag_set *set)
1576{
1577 struct blk_mq_hw_ctx *hctx;
1578 unsigned int i;
1579
1580 queue_for_each_hw_ctx(q, hctx, i) {
1581 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001582 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001583 }
1584}
1585
Ming Lei08e98fc2014-09-25 23:23:38 +08001586static int blk_mq_init_hctx(struct request_queue *q,
1587 struct blk_mq_tag_set *set,
1588 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1589{
1590 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001591 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001592
1593 node = hctx->numa_node;
1594 if (node == NUMA_NO_NODE)
1595 node = hctx->numa_node = set->numa_node;
1596
1597 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1598 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1599 spin_lock_init(&hctx->lock);
1600 INIT_LIST_HEAD(&hctx->dispatch);
1601 hctx->queue = q;
1602 hctx->queue_num = hctx_idx;
1603 hctx->flags = set->flags;
1604 hctx->cmd_size = set->cmd_size;
1605
1606 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1607 blk_mq_hctx_notify, hctx);
1608 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1609
1610 hctx->tags = set->tags[hctx_idx];
1611
1612 /*
1613 * Allocate space for all possible cpus to avoid allocation at
1614 * runtime
1615 */
1616 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1617 GFP_KERNEL, node);
1618 if (!hctx->ctxs)
1619 goto unregister_cpu_notifier;
1620
1621 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1622 goto free_ctxs;
1623
1624 hctx->nr_ctx = 0;
1625
1626 if (set->ops->init_hctx &&
1627 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1628 goto free_bitmap;
1629
Ming Leif70ced02014-09-25 23:23:47 +08001630 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1631 if (!hctx->fq)
1632 goto exit_hctx;
1633
1634 if (set->ops->init_request &&
1635 set->ops->init_request(set->driver_data,
1636 hctx->fq->flush_rq, hctx_idx,
1637 flush_start_tag + hctx_idx, node))
1638 goto free_fq;
1639
Ming Lei08e98fc2014-09-25 23:23:38 +08001640 return 0;
1641
Ming Leif70ced02014-09-25 23:23:47 +08001642 free_fq:
1643 kfree(hctx->fq);
1644 exit_hctx:
1645 if (set->ops->exit_hctx)
1646 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001647 free_bitmap:
1648 blk_mq_free_bitmap(&hctx->ctx_map);
1649 free_ctxs:
1650 kfree(hctx->ctxs);
1651 unregister_cpu_notifier:
1652 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1653
1654 return -1;
1655}
1656
Jens Axboe320ae512013-10-24 09:20:05 +01001657static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001658 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001659{
1660 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001661 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001662
1663 /*
1664 * Initialize hardware queues
1665 */
1666 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001667 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001668 break;
1669 }
1670
1671 if (i == q->nr_hw_queues)
1672 return 0;
1673
1674 /*
1675 * Init failed
1676 */
Ming Lei624dbe42014-05-27 23:35:13 +08001677 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001678
1679 return 1;
1680}
1681
1682static void blk_mq_init_cpu_queues(struct request_queue *q,
1683 unsigned int nr_hw_queues)
1684{
1685 unsigned int i;
1686
1687 for_each_possible_cpu(i) {
1688 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1689 struct blk_mq_hw_ctx *hctx;
1690
1691 memset(__ctx, 0, sizeof(*__ctx));
1692 __ctx->cpu = i;
1693 spin_lock_init(&__ctx->lock);
1694 INIT_LIST_HEAD(&__ctx->rq_list);
1695 __ctx->queue = q;
1696
1697 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001698 if (!cpu_online(i))
1699 continue;
1700
Jens Axboee4043dc2014-04-09 10:18:23 -06001701 hctx = q->mq_ops->map_queue(q, i);
1702 cpumask_set_cpu(i, hctx->cpumask);
1703 hctx->nr_ctx++;
1704
Jens Axboe320ae512013-10-24 09:20:05 +01001705 /*
1706 * Set local node, IFF we have more than one hw queue. If
1707 * not, we remain on the home node of the device
1708 */
1709 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1710 hctx->numa_node = cpu_to_node(i);
1711 }
1712}
1713
1714static void blk_mq_map_swqueue(struct request_queue *q)
1715{
1716 unsigned int i;
1717 struct blk_mq_hw_ctx *hctx;
1718 struct blk_mq_ctx *ctx;
1719
1720 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001721 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001722 hctx->nr_ctx = 0;
1723 }
1724
1725 /*
1726 * Map software to hardware queues
1727 */
1728 queue_for_each_ctx(q, ctx, i) {
1729 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001730 if (!cpu_online(i))
1731 continue;
1732
Jens Axboe320ae512013-10-24 09:20:05 +01001733 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001734 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001735 ctx->index_hw = hctx->nr_ctx;
1736 hctx->ctxs[hctx->nr_ctx++] = ctx;
1737 }
Jens Axboe506e9312014-05-07 10:26:44 -06001738
1739 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001740 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001741 * If no software queues are mapped to this hardware queue,
1742 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001743 */
1744 if (!hctx->nr_ctx) {
1745 struct blk_mq_tag_set *set = q->tag_set;
1746
1747 if (set->tags[i]) {
1748 blk_mq_free_rq_map(set, set->tags[i], i);
1749 set->tags[i] = NULL;
1750 hctx->tags = NULL;
1751 }
1752 continue;
1753 }
1754
1755 /*
1756 * Initialize batch roundrobin counts
1757 */
Jens Axboe506e9312014-05-07 10:26:44 -06001758 hctx->next_cpu = cpumask_first(hctx->cpumask);
1759 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1760 }
Jens Axboe320ae512013-10-24 09:20:05 +01001761}
1762
Jens Axboe0d2602c2014-05-13 15:10:52 -06001763static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1764{
1765 struct blk_mq_hw_ctx *hctx;
1766 struct request_queue *q;
1767 bool shared;
1768 int i;
1769
1770 if (set->tag_list.next == set->tag_list.prev)
1771 shared = false;
1772 else
1773 shared = true;
1774
1775 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1776 blk_mq_freeze_queue(q);
1777
1778 queue_for_each_hw_ctx(q, hctx, i) {
1779 if (shared)
1780 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1781 else
1782 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1783 }
1784 blk_mq_unfreeze_queue(q);
1785 }
1786}
1787
1788static void blk_mq_del_queue_tag_set(struct request_queue *q)
1789{
1790 struct blk_mq_tag_set *set = q->tag_set;
1791
Jens Axboe0d2602c2014-05-13 15:10:52 -06001792 mutex_lock(&set->tag_list_lock);
1793 list_del_init(&q->tag_set_list);
1794 blk_mq_update_tag_set_depth(set);
1795 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001796}
1797
1798static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1799 struct request_queue *q)
1800{
1801 q->tag_set = set;
1802
1803 mutex_lock(&set->tag_list_lock);
1804 list_add_tail(&q->tag_set_list, &set->tag_list);
1805 blk_mq_update_tag_set_depth(set);
1806 mutex_unlock(&set->tag_list_lock);
1807}
1808
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001809struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001810{
1811 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001812 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001813 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001814 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001815 int i;
1816
Jens Axboe320ae512013-10-24 09:20:05 +01001817 ctx = alloc_percpu(struct blk_mq_ctx);
1818 if (!ctx)
1819 return ERR_PTR(-ENOMEM);
1820
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001821 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1822 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001823
1824 if (!hctxs)
1825 goto err_percpu;
1826
Jens Axboef14bbe72014-05-27 12:06:53 -06001827 map = blk_mq_make_queue_map(set);
1828 if (!map)
1829 goto err_map;
1830
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001831 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001832 int node = blk_mq_hw_queue_to_node(map, i);
1833
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001834 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1835 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001836 if (!hctxs[i])
1837 goto err_hctxs;
1838
Jens Axboea86073e2014-10-13 15:41:54 -06001839 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1840 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001841 goto err_hctxs;
1842
Jens Axboe0d2602c2014-05-13 15:10:52 -06001843 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001844 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001845 hctxs[i]->queue_num = i;
1846 }
1847
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001848 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001849 if (!q)
1850 goto err_hctxs;
1851
Tejun Heo17497ac2014-09-24 13:31:50 -04001852 /*
1853 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1854 * See blk_register_queue() for details.
1855 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001856 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001857 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001858 goto err_map;
1859
Jens Axboe320ae512013-10-24 09:20:05 +01001860 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1861 blk_queue_rq_timeout(q, 30000);
1862
1863 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001864 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001865 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001866
1867 q->queue_ctx = ctx;
1868 q->queue_hw_ctx = hctxs;
1869
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001870 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001871 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001872
Jens Axboe05f1dd52014-05-29 09:53:32 -06001873 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1874 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1875
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001876 q->sg_reserved_size = INT_MAX;
1877
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001878 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1879 INIT_LIST_HEAD(&q->requeue_list);
1880 spin_lock_init(&q->requeue_lock);
1881
Jens Axboe07068d52014-05-22 10:40:51 -06001882 if (q->nr_hw_queues > 1)
1883 blk_queue_make_request(q, blk_mq_make_request);
1884 else
1885 blk_queue_make_request(q, blk_sq_make_request);
1886
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001887 if (set->timeout)
1888 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001889
Jens Axboeeba71762014-05-20 15:17:27 -06001890 /*
1891 * Do this after blk_queue_make_request() overrides it...
1892 */
1893 q->nr_requests = set->queue_depth;
1894
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001895 if (set->ops->complete)
1896 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001897
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001898 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001899
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001900 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001901 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001902
Jens Axboe320ae512013-10-24 09:20:05 +01001903 mutex_lock(&all_q_mutex);
1904 list_add_tail(&q->all_q_node, &all_q_list);
1905 mutex_unlock(&all_q_mutex);
1906
Jens Axboe0d2602c2014-05-13 15:10:52 -06001907 blk_mq_add_queue_tag_set(set, q);
1908
Jens Axboe484b4062014-05-21 14:01:15 -06001909 blk_mq_map_swqueue(q);
1910
Jens Axboe320ae512013-10-24 09:20:05 +01001911 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001912
Jens Axboe320ae512013-10-24 09:20:05 +01001913err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001914 blk_cleanup_queue(q);
1915err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001916 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001917 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001918 if (!hctxs[i])
1919 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001920 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001921 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001922 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001923err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001924 kfree(hctxs);
1925err_percpu:
1926 free_percpu(ctx);
1927 return ERR_PTR(-ENOMEM);
1928}
1929EXPORT_SYMBOL(blk_mq_init_queue);
1930
1931void blk_mq_free_queue(struct request_queue *q)
1932{
Ming Lei624dbe42014-05-27 23:35:13 +08001933 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001934
Jens Axboe0d2602c2014-05-13 15:10:52 -06001935 blk_mq_del_queue_tag_set(q);
1936
Ming Lei624dbe42014-05-27 23:35:13 +08001937 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1938 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001939
Tejun Heoadd703f2014-07-01 10:34:38 -06001940 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001941
Jens Axboe320ae512013-10-24 09:20:05 +01001942 free_percpu(q->queue_ctx);
1943 kfree(q->queue_hw_ctx);
1944 kfree(q->mq_map);
1945
1946 q->queue_ctx = NULL;
1947 q->queue_hw_ctx = NULL;
1948 q->mq_map = NULL;
1949
1950 mutex_lock(&all_q_mutex);
1951 list_del_init(&q->all_q_node);
1952 mutex_unlock(&all_q_mutex);
1953}
Jens Axboe320ae512013-10-24 09:20:05 +01001954
1955/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001956static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001957{
Tejun Heof3af0202014-11-04 13:52:27 -05001958 WARN_ON_ONCE(!q->mq_freeze_depth);
Jens Axboe320ae512013-10-24 09:20:05 +01001959
Jens Axboe67aec142014-05-30 08:25:36 -06001960 blk_mq_sysfs_unregister(q);
1961
Jens Axboe320ae512013-10-24 09:20:05 +01001962 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1963
1964 /*
1965 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1966 * we should change hctx numa_node according to new topology (this
1967 * involves free and re-allocate memory, worthy doing?)
1968 */
1969
1970 blk_mq_map_swqueue(q);
1971
Jens Axboe67aec142014-05-30 08:25:36 -06001972 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001973}
1974
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001975static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1976 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001977{
1978 struct request_queue *q;
1979
1980 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001981 * Before new mappings are established, hotadded cpu might already
1982 * start handling requests. This doesn't break anything as we map
1983 * offline CPUs to first hardware queue. We will re-init the queue
1984 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001985 */
1986 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1987 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1988 return NOTIFY_OK;
1989
1990 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05001991
1992 /*
1993 * We need to freeze and reinit all existing queues. Freezing
1994 * involves synchronous wait for an RCU grace period and doing it
1995 * one by one may take a long time. Start freezing all queues in
1996 * one swoop and then wait for the completions so that freezing can
1997 * take place in parallel.
1998 */
1999 list_for_each_entry(q, &all_q_list, all_q_node)
2000 blk_mq_freeze_queue_start(q);
2001 list_for_each_entry(q, &all_q_list, all_q_node)
2002 blk_mq_freeze_queue_wait(q);
2003
Jens Axboe320ae512013-10-24 09:20:05 +01002004 list_for_each_entry(q, &all_q_list, all_q_node)
2005 blk_mq_queue_reinit(q);
Tejun Heof3af0202014-11-04 13:52:27 -05002006
2007 list_for_each_entry(q, &all_q_list, all_q_node)
2008 blk_mq_unfreeze_queue(q);
2009
Jens Axboe320ae512013-10-24 09:20:05 +01002010 mutex_unlock(&all_q_mutex);
2011 return NOTIFY_OK;
2012}
2013
Jens Axboea5164402014-09-10 09:02:03 -06002014static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2015{
2016 int i;
2017
2018 for (i = 0; i < set->nr_hw_queues; i++) {
2019 set->tags[i] = blk_mq_init_rq_map(set, i);
2020 if (!set->tags[i])
2021 goto out_unwind;
2022 }
2023
2024 return 0;
2025
2026out_unwind:
2027 while (--i >= 0)
2028 blk_mq_free_rq_map(set, set->tags[i], i);
2029
Jens Axboea5164402014-09-10 09:02:03 -06002030 return -ENOMEM;
2031}
2032
2033/*
2034 * Allocate the request maps associated with this tag_set. Note that this
2035 * may reduce the depth asked for, if memory is tight. set->queue_depth
2036 * will be updated to reflect the allocated depth.
2037 */
2038static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2039{
2040 unsigned int depth;
2041 int err;
2042
2043 depth = set->queue_depth;
2044 do {
2045 err = __blk_mq_alloc_rq_maps(set);
2046 if (!err)
2047 break;
2048
2049 set->queue_depth >>= 1;
2050 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2051 err = -ENOMEM;
2052 break;
2053 }
2054 } while (set->queue_depth);
2055
2056 if (!set->queue_depth || err) {
2057 pr_err("blk-mq: failed to allocate request map\n");
2058 return -ENOMEM;
2059 }
2060
2061 if (depth != set->queue_depth)
2062 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2063 depth, set->queue_depth);
2064
2065 return 0;
2066}
2067
Jens Axboea4391c62014-06-05 15:21:56 -06002068/*
2069 * Alloc a tag set to be associated with one or more request queues.
2070 * May fail with EINVAL for various error conditions. May adjust the
2071 * requested depth down, if if it too large. In that case, the set
2072 * value will be stored in set->queue_depth.
2073 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002074int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2075{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002076 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2077
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002078 if (!set->nr_hw_queues)
2079 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002080 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002081 return -EINVAL;
2082 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2083 return -EINVAL;
2084
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002085 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002086 return -EINVAL;
2087
Jens Axboea4391c62014-06-05 15:21:56 -06002088 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2089 pr_info("blk-mq: reduced tag depth to %u\n",
2090 BLK_MQ_MAX_DEPTH);
2091 set->queue_depth = BLK_MQ_MAX_DEPTH;
2092 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002093
Shaohua Li6637fad2014-11-30 16:00:58 -08002094 /*
2095 * If a crashdump is active, then we are potentially in a very
2096 * memory constrained environment. Limit us to 1 queue and
2097 * 64 tags to prevent using too much memory.
2098 */
2099 if (is_kdump_kernel()) {
2100 set->nr_hw_queues = 1;
2101 set->queue_depth = min(64U, set->queue_depth);
2102 }
2103
Ming Lei48479002014-04-19 18:00:17 +08002104 set->tags = kmalloc_node(set->nr_hw_queues *
2105 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002106 GFP_KERNEL, set->numa_node);
2107 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002108 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002109
Jens Axboea5164402014-09-10 09:02:03 -06002110 if (blk_mq_alloc_rq_maps(set))
2111 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002112
Jens Axboe0d2602c2014-05-13 15:10:52 -06002113 mutex_init(&set->tag_list_lock);
2114 INIT_LIST_HEAD(&set->tag_list);
2115
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002116 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002117enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002118 kfree(set->tags);
2119 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002120 return -ENOMEM;
2121}
2122EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2123
2124void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2125{
2126 int i;
2127
Jens Axboe484b4062014-05-21 14:01:15 -06002128 for (i = 0; i < set->nr_hw_queues; i++) {
2129 if (set->tags[i])
2130 blk_mq_free_rq_map(set, set->tags[i], i);
2131 }
2132
Ming Lei981bd182014-04-24 00:07:34 +08002133 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002134 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002135}
2136EXPORT_SYMBOL(blk_mq_free_tag_set);
2137
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002138int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2139{
2140 struct blk_mq_tag_set *set = q->tag_set;
2141 struct blk_mq_hw_ctx *hctx;
2142 int i, ret;
2143
2144 if (!set || nr > set->queue_depth)
2145 return -EINVAL;
2146
2147 ret = 0;
2148 queue_for_each_hw_ctx(q, hctx, i) {
2149 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2150 if (ret)
2151 break;
2152 }
2153
2154 if (!ret)
2155 q->nr_requests = nr;
2156
2157 return ret;
2158}
2159
Jens Axboe676141e2014-03-20 13:29:18 -06002160void blk_mq_disable_hotplug(void)
2161{
2162 mutex_lock(&all_q_mutex);
2163}
2164
2165void blk_mq_enable_hotplug(void)
2166{
2167 mutex_unlock(&all_q_mutex);
2168}
2169
Jens Axboe320ae512013-10-24 09:20:05 +01002170static int __init blk_mq_init(void)
2171{
Jens Axboe320ae512013-10-24 09:20:05 +01002172 blk_mq_cpu_init();
2173
Tejun Heoadd703f2014-07-01 10:34:38 -06002174 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002175
2176 return 0;
2177}
2178subsys_initcall(blk_mq_init);