blob: a7d4a988516f173e8f942a183e815bc1e33ea602 [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
Keith Buschb4c6a022014-12-19 17:54:14 -0700110void 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}
Keith Buschb4c6a022014-12-19 17:54:14 -0700123EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500124
125static void blk_mq_freeze_queue_wait(struct request_queue *q)
126{
Tejun Heoadd703f2014-07-01 10:34:38 -0600127 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800128}
129
Tejun Heof3af0202014-11-04 13:52:27 -0500130/*
131 * Guarantee no request is in use, so we can change any data structure of
132 * the queue afterward.
133 */
134void blk_mq_freeze_queue(struct request_queue *q)
135{
136 blk_mq_freeze_queue_start(q);
137 blk_mq_freeze_queue_wait(q);
138}
Jens Axboec761d962015-01-02 15:05:12 -0700139EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500140
Keith Buschb4c6a022014-12-19 17:54:14 -0700141void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100142{
Tejun Heocddd5d12014-08-16 08:02:24 -0400143 bool wake;
Jens Axboe320ae512013-10-24 09:20:05 +0100144
145 spin_lock_irq(q->queue_lock);
Tejun Heo780db202014-07-01 10:31:13 -0600146 wake = !--q->mq_freeze_depth;
147 WARN_ON_ONCE(q->mq_freeze_depth < 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100148 spin_unlock_irq(q->queue_lock);
Tejun Heoadd703f2014-07-01 10:34:38 -0600149 if (wake) {
150 percpu_ref_reinit(&q->mq_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100151 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600152 }
Jens Axboe320ae512013-10-24 09:20:05 +0100153}
Keith Buschb4c6a022014-12-19 17:54:14 -0700154EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100155
Jens Axboeaed3ea92014-12-22 14:04:42 -0700156void blk_mq_wake_waiters(struct request_queue *q)
157{
158 struct blk_mq_hw_ctx *hctx;
159 unsigned int i;
160
161 queue_for_each_hw_ctx(q, hctx, i)
162 if (blk_mq_hw_queue_mapped(hctx))
163 blk_mq_tag_wakeup_all(hctx->tags, true);
164}
165
Jens Axboe320ae512013-10-24 09:20:05 +0100166bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
167{
168 return blk_mq_has_free_tags(hctx->tags);
169}
170EXPORT_SYMBOL(blk_mq_can_queue);
171
Jens Axboe94eddfb2013-11-19 09:25:07 -0700172static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
173 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100174{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700175 if (blk_queue_io_stat(q))
176 rw_flags |= REQ_IO_STAT;
177
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200178 INIT_LIST_HEAD(&rq->queuelist);
179 /* csd/requeue_work/fifo_time is initialized before use */
180 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100181 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600182 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200183 /* do not touch atomic flags, it needs atomic ops against the timer */
184 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200185 INIT_HLIST_NODE(&rq->hash);
186 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200187 rq->rq_disk = NULL;
188 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600189 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190#ifdef CONFIG_BLK_CGROUP
191 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700192 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200193 rq->io_start_time_ns = 0;
194#endif
195 rq->nr_phys_segments = 0;
196#if defined(CONFIG_BLK_DEV_INTEGRITY)
197 rq->nr_integrity_segments = 0;
198#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200199 rq->special = NULL;
200 /* tag was already set */
201 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200202
Tony Battersby6f4a16262014-08-22 15:53:39 -0400203 rq->cmd = rq->__cmd;
204
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200205 rq->extra_len = 0;
206 rq->sense_len = 0;
207 rq->resid_len = 0;
208 rq->sense = NULL;
209
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200210 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600211 rq->timeout = 0;
212
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200213 rq->end_io = NULL;
214 rq->end_io_data = NULL;
215 rq->next_rq = NULL;
216
Jens Axboe320ae512013-10-24 09:20:05 +0100217 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
218}
219
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200220static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800221__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200222{
223 struct request *rq;
224 unsigned int tag;
225
Ming Leicb96a422014-06-01 00:43:37 +0800226 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200227 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800228 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200229
Ming Leicb96a422014-06-01 00:43:37 +0800230 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200231 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800232 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200233 }
234
235 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800236 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200237 return rq;
238 }
239
240 return NULL;
241}
242
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200243struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
244 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100245{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200246 struct blk_mq_ctx *ctx;
247 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100248 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800249 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600250 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100251
Joe Lawrencea492f072014-08-28 08:15:21 -0600252 ret = blk_mq_queue_enter(q);
253 if (ret)
254 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100255
Christoph Hellwigd8525642014-05-27 20:59:50 +0200256 ctx = blk_mq_get_ctx(q);
257 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800258 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
259 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200260
Ming Leicb96a422014-06-01 00:43:37 +0800261 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200262 if (!rq && (gfp & __GFP_WAIT)) {
263 __blk_mq_run_hw_queue(hctx);
264 blk_mq_put_ctx(ctx);
265
266 ctx = blk_mq_get_ctx(q);
267 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800268 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
269 hctx);
270 rq = __blk_mq_alloc_request(&alloc_data, rw);
271 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200272 }
273 blk_mq_put_ctx(ctx);
Keith Buschc76541a2014-12-19 17:54:13 -0700274 if (!rq) {
275 blk_mq_queue_exit(q);
Joe Lawrencea492f072014-08-28 08:15:21 -0600276 return ERR_PTR(-EWOULDBLOCK);
Keith Buschc76541a2014-12-19 17:54:13 -0700277 }
Jens Axboe320ae512013-10-24 09:20:05 +0100278 return rq;
279}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600280EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100281
Jens Axboe320ae512013-10-24 09:20:05 +0100282static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
283 struct blk_mq_ctx *ctx, struct request *rq)
284{
285 const int tag = rq->tag;
286 struct request_queue *q = rq->q;
287
Jens Axboe0d2602c2014-05-13 15:10:52 -0600288 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
289 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200290 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600291
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200292 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600293 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100294 blk_mq_queue_exit(q);
295}
296
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700297void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100298{
299 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700300
301 ctx->rq_completed[rq_is_sync(rq)]++;
302 __blk_mq_free_request(hctx, ctx, rq);
303
304}
305EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
306
307void blk_mq_free_request(struct request *rq)
308{
Jens Axboe320ae512013-10-24 09:20:05 +0100309 struct blk_mq_hw_ctx *hctx;
310 struct request_queue *q = rq->q;
311
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700312 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
313 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100314}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700315EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100316
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700317inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100318{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700319 blk_account_io_done(rq);
320
Christoph Hellwig91b63632014-04-16 09:44:53 +0200321 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100322 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200323 } else {
324 if (unlikely(blk_bidi_rq(rq)))
325 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100326 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200327 }
Jens Axboe320ae512013-10-24 09:20:05 +0100328}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700329EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200330
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700331void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200332{
333 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
334 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700335 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200336}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700337EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100338
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800339static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100340{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800341 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100342
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800343 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100344}
345
Jens Axboeed851862014-05-30 21:20:50 -0600346static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100347{
348 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700349 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100350 int cpu;
351
Christoph Hellwig38535202014-04-25 02:32:53 -0700352 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800353 rq->q->softirq_done_fn(rq);
354 return;
355 }
Jens Axboe320ae512013-10-24 09:20:05 +0100356
357 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700358 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
359 shared = cpus_share_cache(cpu, ctx->cpu);
360
361 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800362 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800363 rq->csd.info = rq;
364 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100365 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800366 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800367 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800368 }
Jens Axboe320ae512013-10-24 09:20:05 +0100369 put_cpu();
370}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800371
Jens Axboeed851862014-05-30 21:20:50 -0600372void __blk_mq_complete_request(struct request *rq)
373{
374 struct request_queue *q = rq->q;
375
376 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700377 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600378 else
379 blk_mq_ipi_complete_request(rq);
380}
381
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800382/**
383 * blk_mq_complete_request - end I/O on a request
384 * @rq: the request being processed
385 *
386 * Description:
387 * Ends all I/O on a request. It does not handle partial completions.
388 * The actual completion happens out-of-order, through a IPI handler.
389 **/
390void blk_mq_complete_request(struct request *rq)
391{
Jens Axboe95f09682014-05-27 17:46:48 -0600392 struct request_queue *q = rq->q;
393
394 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800395 return;
Jens Axboeed851862014-05-30 21:20:50 -0600396 if (!blk_mark_rq_complete(rq))
397 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398}
399EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100400
Christoph Hellwige2490072014-09-13 16:40:09 -0700401void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100402{
403 struct request_queue *q = rq->q;
404
405 trace_block_rq_issue(q, rq);
406
Christoph Hellwig742ee692014-04-14 10:30:06 +0200407 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200408 if (unlikely(blk_bidi_rq(rq)))
409 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200410
Ming Lei2b8393b2014-06-10 00:16:41 +0800411 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600412
413 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600414 * Ensure that ->deadline is visible before set the started
415 * flag and clear the completed flag.
416 */
417 smp_mb__before_atomic();
418
419 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600420 * Mark us as started and clear complete. Complete might have been
421 * set if requeue raced with timeout, which then marked it as
422 * complete. So be sure to clear complete again when we start
423 * the request, otherwise we'll ignore the completion event.
424 */
Jens Axboe4b570522014-05-29 11:00:11 -0600425 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
426 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
427 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
428 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800429
430 if (q->dma_drain_size && blk_rq_bytes(rq)) {
431 /*
432 * Make sure space for the drain appears. We know we can do
433 * this because max_hw_segments has been adjusted to be one
434 * fewer than the device can handle.
435 */
436 rq->nr_phys_segments++;
437 }
Jens Axboe320ae512013-10-24 09:20:05 +0100438}
Christoph Hellwige2490072014-09-13 16:40:09 -0700439EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100440
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200441static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100442{
443 struct request_queue *q = rq->q;
444
445 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800446
Christoph Hellwige2490072014-09-13 16:40:09 -0700447 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
448 if (q->dma_drain_size && blk_rq_bytes(rq))
449 rq->nr_phys_segments--;
450 }
Jens Axboe320ae512013-10-24 09:20:05 +0100451}
452
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200453void blk_mq_requeue_request(struct request *rq)
454{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200455 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200456
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200457 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600458 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200459}
460EXPORT_SYMBOL(blk_mq_requeue_request);
461
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600462static void blk_mq_requeue_work(struct work_struct *work)
463{
464 struct request_queue *q =
465 container_of(work, struct request_queue, requeue_work);
466 LIST_HEAD(rq_list);
467 struct request *rq, *next;
468 unsigned long flags;
469
470 spin_lock_irqsave(&q->requeue_lock, flags);
471 list_splice_init(&q->requeue_list, &rq_list);
472 spin_unlock_irqrestore(&q->requeue_lock, flags);
473
474 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
475 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
476 continue;
477
478 rq->cmd_flags &= ~REQ_SOFTBARRIER;
479 list_del_init(&rq->queuelist);
480 blk_mq_insert_request(rq, true, false, false);
481 }
482
483 while (!list_empty(&rq_list)) {
484 rq = list_entry(rq_list.next, struct request, queuelist);
485 list_del_init(&rq->queuelist);
486 blk_mq_insert_request(rq, false, false, false);
487 }
488
Jens Axboe8b957412014-09-19 13:10:29 -0600489 /*
490 * Use the start variant of queue running here, so that running
491 * the requeue work will kick stopped queues.
492 */
493 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600494}
495
496void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
497{
498 struct request_queue *q = rq->q;
499 unsigned long flags;
500
501 /*
502 * We abuse this flag that is otherwise used by the I/O scheduler to
503 * request head insertation from the workqueue.
504 */
505 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
506
507 spin_lock_irqsave(&q->requeue_lock, flags);
508 if (at_head) {
509 rq->cmd_flags |= REQ_SOFTBARRIER;
510 list_add(&rq->queuelist, &q->requeue_list);
511 } else {
512 list_add_tail(&rq->queuelist, &q->requeue_list);
513 }
514 spin_unlock_irqrestore(&q->requeue_lock, flags);
515}
516EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
517
518void blk_mq_kick_requeue_list(struct request_queue *q)
519{
520 kblockd_schedule_work(&q->requeue_work);
521}
522EXPORT_SYMBOL(blk_mq_kick_requeue_list);
523
Ming Lei7c94e1c2014-09-25 23:23:43 +0800524static inline bool is_flush_request(struct request *rq,
525 struct blk_flush_queue *fq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600526{
Jens Axboe0e62f512014-06-04 10:23:49 -0600527 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
Ming Lei7c94e1c2014-09-25 23:23:43 +0800528 fq->flush_rq->tag == tag);
Jens Axboe0e62f512014-06-04 10:23:49 -0600529}
Shaohua Li22302372014-05-30 08:06:42 -0600530
Jens Axboe0e62f512014-06-04 10:23:49 -0600531struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
532{
533 struct request *rq = tags->rqs[tag];
Ming Leie97c2932014-09-25 23:23:46 +0800534 /* mq_ctx of flush rq is always cloned from the corresponding req */
535 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
Shaohua Li22302372014-05-30 08:06:42 -0600536
Ming Lei7c94e1c2014-09-25 23:23:43 +0800537 if (!is_flush_request(rq, fq, tag))
Jens Axboe0e62f512014-06-04 10:23:49 -0600538 return rq;
539
Ming Lei7c94e1c2014-09-25 23:23:43 +0800540 return fq->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600541}
542EXPORT_SYMBOL(blk_mq_tag_to_rq);
543
Jens Axboe320ae512013-10-24 09:20:05 +0100544struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700545 unsigned long next;
546 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100547};
548
Christoph Hellwig90415832014-09-22 10:21:48 -0600549void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100550{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700551 struct blk_mq_ops *ops = req->q->mq_ops;
552 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600553
554 /*
555 * We know that complete is set at this point. If STARTED isn't set
556 * anymore, then the request isn't active and the "timeout" should
557 * just be ignored. This can happen due to the bitflag ordering.
558 * Timeout first checks if STARTED is set, and if it is, assumes
559 * the request is active. But if we race with completion, then
560 * we both flags will get cleared. So check here again, and ignore
561 * a timeout event with a request that isn't active.
562 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700563 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
564 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600565
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700566 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700567 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600568
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700569 switch (ret) {
570 case BLK_EH_HANDLED:
571 __blk_mq_complete_request(req);
572 break;
573 case BLK_EH_RESET_TIMER:
574 blk_add_timer(req);
575 blk_clear_rq_complete(req);
576 break;
577 case BLK_EH_NOT_HANDLED:
578 break;
579 default:
580 printk(KERN_ERR "block: bad eh return: %d\n", ret);
581 break;
582 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600583}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700584
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700585static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
586 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100587{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700588 struct blk_mq_timeout_data *data = priv;
589
Jens Axboe320ae512013-10-24 09:20:05 +0100590 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700591 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100592
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700593 if (time_after_eq(jiffies, rq->deadline)) {
594 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700595 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700596 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
597 data->next = rq->deadline;
598 data->next_set = 1;
599 }
Jens Axboe320ae512013-10-24 09:20:05 +0100600}
601
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700602static void blk_mq_rq_timer(unsigned long priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100603{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700604 struct request_queue *q = (struct request_queue *)priv;
605 struct blk_mq_timeout_data data = {
606 .next = 0,
607 .next_set = 0,
608 };
Jens Axboe320ae512013-10-24 09:20:05 +0100609 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700610 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100611
Jens Axboe484b4062014-05-21 14:01:15 -0600612 queue_for_each_hw_ctx(q, hctx, i) {
613 /*
614 * If not software queues are currently mapped to this
615 * hardware queue, there's nothing to check
616 */
Ming Lei19c66e52014-12-03 19:38:04 +0800617 if (!blk_mq_hw_queue_mapped(hctx))
Jens Axboe484b4062014-05-21 14:01:15 -0600618 continue;
619
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700620 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600621 }
Jens Axboe320ae512013-10-24 09:20:05 +0100622
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700623 if (data.next_set) {
624 data.next = blk_rq_timeout(round_jiffies_up(data.next));
625 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600626 } else {
627 queue_for_each_hw_ctx(q, hctx, i)
628 blk_mq_tag_idle(hctx);
629 }
Jens Axboe320ae512013-10-24 09:20:05 +0100630}
631
632/*
633 * Reverse check our software queue for entries that we could potentially
634 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
635 * too much time checking for merges.
636 */
637static bool blk_mq_attempt_merge(struct request_queue *q,
638 struct blk_mq_ctx *ctx, struct bio *bio)
639{
640 struct request *rq;
641 int checked = 8;
642
643 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
644 int el_ret;
645
646 if (!checked--)
647 break;
648
649 if (!blk_rq_merge_ok(rq, bio))
650 continue;
651
652 el_ret = blk_try_merge(rq, bio);
653 if (el_ret == ELEVATOR_BACK_MERGE) {
654 if (bio_attempt_back_merge(q, rq, bio)) {
655 ctx->rq_merged++;
656 return true;
657 }
658 break;
659 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
660 if (bio_attempt_front_merge(q, rq, bio)) {
661 ctx->rq_merged++;
662 return true;
663 }
664 break;
665 }
666 }
667
668 return false;
669}
670
Jens Axboe320ae512013-10-24 09:20:05 +0100671/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600672 * Process software queues that have been marked busy, splicing them
673 * to the for-dispatch
674 */
675static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
676{
677 struct blk_mq_ctx *ctx;
678 int i;
679
680 for (i = 0; i < hctx->ctx_map.map_size; i++) {
681 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
682 unsigned int off, bit;
683
684 if (!bm->word)
685 continue;
686
687 bit = 0;
688 off = i * hctx->ctx_map.bits_per_word;
689 do {
690 bit = find_next_bit(&bm->word, bm->depth, bit);
691 if (bit >= bm->depth)
692 break;
693
694 ctx = hctx->ctxs[bit + off];
695 clear_bit(bit, &bm->word);
696 spin_lock(&ctx->lock);
697 list_splice_tail_init(&ctx->rq_list, list);
698 spin_unlock(&ctx->lock);
699
700 bit++;
701 } while (1);
702 }
703}
704
705/*
Jens Axboe320ae512013-10-24 09:20:05 +0100706 * Run this hardware queue, pulling any software queues mapped to it in.
707 * Note that this function currently has various problems around ordering
708 * of IO. In particular, we'd like FIFO behaviour on handling existing
709 * items on the hctx->dispatch list. Ignore that for now.
710 */
711static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
712{
713 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100714 struct request *rq;
715 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600716 LIST_HEAD(driver_list);
717 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600718 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100719
Jens Axboefd1270d2014-04-16 09:23:48 -0600720 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600721
Jens Axboe5d12f902014-03-19 15:25:02 -0600722 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100723 return;
724
725 hctx->run++;
726
727 /*
728 * Touch any software queue that has pending entries.
729 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600730 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100731
732 /*
733 * If we have previous entries on our dispatch list, grab them
734 * and stuff them at the front for more fair dispatch.
735 */
736 if (!list_empty_careful(&hctx->dispatch)) {
737 spin_lock(&hctx->lock);
738 if (!list_empty(&hctx->dispatch))
739 list_splice_init(&hctx->dispatch, &rq_list);
740 spin_unlock(&hctx->lock);
741 }
742
743 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600744 * Start off with dptr being NULL, so we start the first request
745 * immediately, even if we have more pending.
746 */
747 dptr = NULL;
748
749 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100750 * Now process all the entries, sending them to the driver.
751 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600752 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100753 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600754 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100755 int ret;
756
757 rq = list_first_entry(&rq_list, struct request, queuelist);
758 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100759
Jens Axboe74c45052014-10-29 11:14:52 -0600760 bd.rq = rq;
761 bd.list = dptr;
762 bd.last = list_empty(&rq_list);
763
764 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100765 switch (ret) {
766 case BLK_MQ_RQ_QUEUE_OK:
767 queued++;
768 continue;
769 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100770 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200771 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100772 break;
773 default:
774 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100775 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800776 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700777 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100778 break;
779 }
780
781 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
782 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600783
784 /*
785 * We've done the first request. If we have more than 1
786 * left in the list, set dptr to defer issue.
787 */
788 if (!dptr && rq_list.next != rq_list.prev)
789 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100790 }
791
792 if (!queued)
793 hctx->dispatched[0]++;
794 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
795 hctx->dispatched[ilog2(queued) + 1]++;
796
797 /*
798 * Any items that need requeuing? Stuff them into hctx->dispatch,
799 * that is where we will continue on next queue run.
800 */
801 if (!list_empty(&rq_list)) {
802 spin_lock(&hctx->lock);
803 list_splice(&rq_list, &hctx->dispatch);
804 spin_unlock(&hctx->lock);
805 }
806}
807
Jens Axboe506e9312014-05-07 10:26:44 -0600808/*
809 * It'd be great if the workqueue API had a way to pass
810 * in a mask and had some smarts for more clever placement.
811 * For now we just round-robin here, switching for every
812 * BLK_MQ_CPU_WORK_BATCH queued items.
813 */
814static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
815{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100816 if (hctx->queue->nr_hw_queues == 1)
817 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600818
819 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100820 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600821
822 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
823 if (next_cpu >= nr_cpu_ids)
824 next_cpu = cpumask_first(hctx->cpumask);
825
826 hctx->next_cpu = next_cpu;
827 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100828
829 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600830 }
831
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100832 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600833}
834
Jens Axboe320ae512013-10-24 09:20:05 +0100835void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
836{
Ming Lei19c66e52014-12-03 19:38:04 +0800837 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
838 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100839 return;
840
Paolo Bonzini398205b2014-11-07 23:03:59 +0100841 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100842 int cpu = get_cpu();
843 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100844 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100845 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100846 return;
847 }
Jens Axboee4043dc2014-04-09 10:18:23 -0600848
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100849 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -0600850 }
Paolo Bonzini398205b2014-11-07 23:03:59 +0100851
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100852 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
853 &hctx->run_work, 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100854}
855
856void blk_mq_run_queues(struct request_queue *q, bool async)
857{
858 struct blk_mq_hw_ctx *hctx;
859 int i;
860
861 queue_for_each_hw_ctx(q, hctx, i) {
862 if ((!blk_mq_hctx_has_pending(hctx) &&
863 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600864 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100865 continue;
866
867 blk_mq_run_hw_queue(hctx, async);
868 }
869}
870EXPORT_SYMBOL(blk_mq_run_queues);
871
872void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
873{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600874 cancel_delayed_work(&hctx->run_work);
875 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100876 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
877}
878EXPORT_SYMBOL(blk_mq_stop_hw_queue);
879
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100880void blk_mq_stop_hw_queues(struct request_queue *q)
881{
882 struct blk_mq_hw_ctx *hctx;
883 int i;
884
885 queue_for_each_hw_ctx(q, hctx, i)
886 blk_mq_stop_hw_queue(hctx);
887}
888EXPORT_SYMBOL(blk_mq_stop_hw_queues);
889
Jens Axboe320ae512013-10-24 09:20:05 +0100890void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
891{
892 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600893
Jens Axboe0ffbce82014-06-25 08:22:34 -0600894 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100895}
896EXPORT_SYMBOL(blk_mq_start_hw_queue);
897
Christoph Hellwig2f268552014-04-16 09:44:56 +0200898void blk_mq_start_hw_queues(struct request_queue *q)
899{
900 struct blk_mq_hw_ctx *hctx;
901 int i;
902
903 queue_for_each_hw_ctx(q, hctx, i)
904 blk_mq_start_hw_queue(hctx);
905}
906EXPORT_SYMBOL(blk_mq_start_hw_queues);
907
908
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200909void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100910{
911 struct blk_mq_hw_ctx *hctx;
912 int i;
913
914 queue_for_each_hw_ctx(q, hctx, i) {
915 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
916 continue;
917
918 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200919 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100920 }
921}
922EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
923
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600924static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100925{
926 struct blk_mq_hw_ctx *hctx;
927
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600928 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600929
Jens Axboe320ae512013-10-24 09:20:05 +0100930 __blk_mq_run_hw_queue(hctx);
931}
932
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600933static void blk_mq_delay_work_fn(struct work_struct *work)
934{
935 struct blk_mq_hw_ctx *hctx;
936
937 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
938
939 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
940 __blk_mq_run_hw_queue(hctx);
941}
942
943void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
944{
Ming Lei19c66e52014-12-03 19:38:04 +0800945 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
946 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600947
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100948 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
949 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600950}
951EXPORT_SYMBOL(blk_mq_delay_queue);
952
Jens Axboe320ae512013-10-24 09:20:05 +0100953static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800954 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100955{
956 struct blk_mq_ctx *ctx = rq->mq_ctx;
957
Jens Axboe01b983c2013-11-19 18:59:10 -0700958 trace_block_rq_insert(hctx->queue, rq);
959
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800960 if (at_head)
961 list_add(&rq->queuelist, &ctx->rq_list);
962 else
963 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600964
Jens Axboe320ae512013-10-24 09:20:05 +0100965 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100966}
967
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600968void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
969 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100970{
971 struct request_queue *q = rq->q;
972 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600973 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100974
975 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600976 if (!cpu_online(ctx->cpu))
977 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100978
Jens Axboe320ae512013-10-24 09:20:05 +0100979 hctx = q->mq_ops->map_queue(q, ctx->cpu);
980
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700981 spin_lock(&ctx->lock);
982 __blk_mq_insert_request(hctx, rq, at_head);
983 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100984
Jens Axboe320ae512013-10-24 09:20:05 +0100985 if (run_queue)
986 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600987
988 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100989}
990
991static void blk_mq_insert_requests(struct request_queue *q,
992 struct blk_mq_ctx *ctx,
993 struct list_head *list,
994 int depth,
995 bool from_schedule)
996
997{
998 struct blk_mq_hw_ctx *hctx;
999 struct blk_mq_ctx *current_ctx;
1000
1001 trace_block_unplug(q, depth, !from_schedule);
1002
1003 current_ctx = blk_mq_get_ctx(q);
1004
1005 if (!cpu_online(ctx->cpu))
1006 ctx = current_ctx;
1007 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1008
1009 /*
1010 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1011 * offline now
1012 */
1013 spin_lock(&ctx->lock);
1014 while (!list_empty(list)) {
1015 struct request *rq;
1016
1017 rq = list_first_entry(list, struct request, queuelist);
1018 list_del_init(&rq->queuelist);
1019 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001020 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001021 }
1022 spin_unlock(&ctx->lock);
1023
Jens Axboe320ae512013-10-24 09:20:05 +01001024 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001025 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001026}
1027
1028static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1029{
1030 struct request *rqa = container_of(a, struct request, queuelist);
1031 struct request *rqb = container_of(b, struct request, queuelist);
1032
1033 return !(rqa->mq_ctx < rqb->mq_ctx ||
1034 (rqa->mq_ctx == rqb->mq_ctx &&
1035 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1036}
1037
1038void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1039{
1040 struct blk_mq_ctx *this_ctx;
1041 struct request_queue *this_q;
1042 struct request *rq;
1043 LIST_HEAD(list);
1044 LIST_HEAD(ctx_list);
1045 unsigned int depth;
1046
1047 list_splice_init(&plug->mq_list, &list);
1048
1049 list_sort(NULL, &list, plug_ctx_cmp);
1050
1051 this_q = NULL;
1052 this_ctx = NULL;
1053 depth = 0;
1054
1055 while (!list_empty(&list)) {
1056 rq = list_entry_rq(list.next);
1057 list_del_init(&rq->queuelist);
1058 BUG_ON(!rq->q);
1059 if (rq->mq_ctx != this_ctx) {
1060 if (this_ctx) {
1061 blk_mq_insert_requests(this_q, this_ctx,
1062 &ctx_list, depth,
1063 from_schedule);
1064 }
1065
1066 this_ctx = rq->mq_ctx;
1067 this_q = rq->q;
1068 depth = 0;
1069 }
1070
1071 depth++;
1072 list_add_tail(&rq->queuelist, &ctx_list);
1073 }
1074
1075 /*
1076 * If 'this_ctx' is set, we know we have entries to complete
1077 * on 'ctx_list'. Do those.
1078 */
1079 if (this_ctx) {
1080 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1081 from_schedule);
1082 }
1083}
1084
1085static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1086{
1087 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001088
Jens Axboe3ee32372014-06-09 09:36:53 -06001089 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001090 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001091}
1092
Jens Axboe274a5842014-08-15 12:44:08 -06001093static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1094{
1095 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1096 !blk_queue_nomerges(hctx->queue);
1097}
1098
Jens Axboe07068d52014-05-22 10:40:51 -06001099static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1100 struct blk_mq_ctx *ctx,
1101 struct request *rq, struct bio *bio)
1102{
Jens Axboe274a5842014-08-15 12:44:08 -06001103 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001104 blk_mq_bio_to_request(rq, bio);
1105 spin_lock(&ctx->lock);
1106insert_rq:
1107 __blk_mq_insert_request(hctx, rq, false);
1108 spin_unlock(&ctx->lock);
1109 return false;
1110 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001111 struct request_queue *q = hctx->queue;
1112
Jens Axboe07068d52014-05-22 10:40:51 -06001113 spin_lock(&ctx->lock);
1114 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1115 blk_mq_bio_to_request(rq, bio);
1116 goto insert_rq;
1117 }
1118
1119 spin_unlock(&ctx->lock);
1120 __blk_mq_free_request(hctx, ctx, rq);
1121 return true;
1122 }
1123}
1124
1125struct blk_map_ctx {
1126 struct blk_mq_hw_ctx *hctx;
1127 struct blk_mq_ctx *ctx;
1128};
1129
1130static struct request *blk_mq_map_request(struct request_queue *q,
1131 struct bio *bio,
1132 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001133{
1134 struct blk_mq_hw_ctx *hctx;
1135 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001136 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001137 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001138 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001139
Jens Axboe07068d52014-05-22 10:40:51 -06001140 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001141 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001142 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001143 }
1144
1145 ctx = blk_mq_get_ctx(q);
1146 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1147
Jens Axboe07068d52014-05-22 10:40:51 -06001148 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001149 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001150
Jens Axboe320ae512013-10-24 09:20:05 +01001151 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001152 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1153 hctx);
1154 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001155 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001156 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001157 blk_mq_put_ctx(ctx);
1158 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001159
1160 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001161 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001162 blk_mq_set_alloc_data(&alloc_data, q,
1163 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1164 rq = __blk_mq_alloc_request(&alloc_data, rw);
1165 ctx = alloc_data.ctx;
1166 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001167 }
1168
1169 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001170 data->hctx = hctx;
1171 data->ctx = ctx;
1172 return rq;
1173}
1174
1175/*
1176 * Multiple hardware queue variant. This will not use per-process plugs,
1177 * but will attempt to bypass the hctx queueing if we can go straight to
1178 * hardware for SYNC IO.
1179 */
1180static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1181{
1182 const int is_sync = rw_is_sync(bio->bi_rw);
1183 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1184 struct blk_map_ctx data;
1185 struct request *rq;
1186
1187 blk_queue_bounce(q, &bio);
1188
1189 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1190 bio_endio(bio, -EIO);
1191 return;
1192 }
1193
1194 rq = blk_mq_map_request(q, bio, &data);
1195 if (unlikely(!rq))
1196 return;
1197
1198 if (unlikely(is_flush_fua)) {
1199 blk_mq_bio_to_request(rq, bio);
1200 blk_insert_flush(rq);
1201 goto run_queue;
1202 }
1203
Jens Axboee167dfb2014-10-29 11:18:26 -06001204 /*
1205 * If the driver supports defer issued based on 'last', then
1206 * queue it up like normal since we can potentially save some
1207 * CPU this way.
1208 */
1209 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001210 struct blk_mq_queue_data bd = {
1211 .rq = rq,
1212 .list = NULL,
1213 .last = 1
1214 };
Jens Axboe07068d52014-05-22 10:40:51 -06001215 int ret;
1216
1217 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001218
1219 /*
1220 * For OK queue, we are done. For error, kill it. Any other
1221 * error (busy), just add it to our list as we previously
1222 * would have done
1223 */
Jens Axboe74c45052014-10-29 11:14:52 -06001224 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001225 if (ret == BLK_MQ_RQ_QUEUE_OK)
1226 goto done;
1227 else {
1228 __blk_mq_requeue_request(rq);
1229
1230 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1231 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001232 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001233 goto done;
1234 }
1235 }
1236 }
1237
1238 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1239 /*
1240 * For a SYNC request, send it to the hardware immediately. For
1241 * an ASYNC request, just ensure that we run it later on. The
1242 * latter allows for merging opportunities and more efficient
1243 * dispatching.
1244 */
1245run_queue:
1246 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1247 }
1248done:
1249 blk_mq_put_ctx(data.ctx);
1250}
1251
1252/*
1253 * Single hardware queue variant. This will attempt to use any per-process
1254 * plug for merging and IO deferral.
1255 */
1256static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1257{
1258 const int is_sync = rw_is_sync(bio->bi_rw);
1259 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1260 unsigned int use_plug, request_count = 0;
1261 struct blk_map_ctx data;
1262 struct request *rq;
1263
1264 /*
1265 * If we have multiple hardware queues, just go directly to
1266 * one of those for sync IO.
1267 */
1268 use_plug = !is_flush_fua && !is_sync;
1269
1270 blk_queue_bounce(q, &bio);
1271
1272 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1273 bio_endio(bio, -EIO);
1274 return;
1275 }
1276
1277 if (use_plug && !blk_queue_nomerges(q) &&
1278 blk_attempt_plug_merge(q, bio, &request_count))
1279 return;
1280
1281 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001282 if (unlikely(!rq))
1283 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001284
1285 if (unlikely(is_flush_fua)) {
1286 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001287 blk_insert_flush(rq);
1288 goto run_queue;
1289 }
1290
1291 /*
1292 * A task plug currently exists. Since this is completely lockless,
1293 * utilize that to temporarily store requests until the task is
1294 * either done or scheduled away.
1295 */
1296 if (use_plug) {
1297 struct blk_plug *plug = current->plug;
1298
1299 if (plug) {
1300 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001301 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001302 trace_block_plug(q);
1303 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1304 blk_flush_plug_list(plug, false);
1305 trace_block_plug(q);
1306 }
1307 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001308 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001309 return;
1310 }
1311 }
1312
Jens Axboe07068d52014-05-22 10:40:51 -06001313 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1314 /*
1315 * For a SYNC request, send it to the hardware immediately. For
1316 * an ASYNC request, just ensure that we run it later on. The
1317 * latter allows for merging opportunities and more efficient
1318 * dispatching.
1319 */
1320run_queue:
1321 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001322 }
1323
Jens Axboe07068d52014-05-22 10:40:51 -06001324 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001325}
1326
1327/*
1328 * Default mapping to a software queue, since we use one per CPU.
1329 */
1330struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1331{
1332 return q->queue_hw_ctx[q->mq_map[cpu]];
1333}
1334EXPORT_SYMBOL(blk_mq_map_queue);
1335
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001336static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1337 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001338{
1339 struct page *page;
1340
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001341 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001342 int i;
1343
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344 for (i = 0; i < tags->nr_tags; i++) {
1345 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001346 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001347 set->ops->exit_request(set->driver_data, tags->rqs[i],
1348 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001349 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001350 }
1351 }
1352
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001353 while (!list_empty(&tags->page_list)) {
1354 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001355 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001356 __free_pages(page, page->private);
1357 }
1358
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001359 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001360
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001362}
1363
1364static size_t order_to_size(unsigned int order)
1365{
Ming Lei4ca08502014-04-19 18:00:18 +08001366 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001367}
1368
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001369static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1370 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001371{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001372 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001373 unsigned int i, j, entries_per_page, max_order = 4;
1374 size_t rq_size, left;
1375
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001376 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1377 set->numa_node);
1378 if (!tags)
1379 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001380
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001381 INIT_LIST_HEAD(&tags->page_list);
1382
Jens Axboea5164402014-09-10 09:02:03 -06001383 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1384 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1385 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001386 if (!tags->rqs) {
1387 blk_mq_free_tags(tags);
1388 return NULL;
1389 }
Jens Axboe320ae512013-10-24 09:20:05 +01001390
1391 /*
1392 * rq_size is the size of the request plus driver payload, rounded
1393 * to the cacheline size
1394 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001395 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001396 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001397 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001398
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001399 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001400 int this_order = max_order;
1401 struct page *page;
1402 int to_do;
1403 void *p;
1404
1405 while (left < order_to_size(this_order - 1) && this_order)
1406 this_order--;
1407
1408 do {
Jens Axboea5164402014-09-10 09:02:03 -06001409 page = alloc_pages_node(set->numa_node,
1410 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1411 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001412 if (page)
1413 break;
1414 if (!this_order--)
1415 break;
1416 if (order_to_size(this_order) < rq_size)
1417 break;
1418 } while (1);
1419
1420 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001421 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001422
1423 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001424 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001425
1426 p = page_address(page);
1427 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001428 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001429 left -= to_do * rq_size;
1430 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001431 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001432 tags->rqs[i]->atomic_flags = 0;
1433 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001434 if (set->ops->init_request) {
1435 if (set->ops->init_request(set->driver_data,
1436 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001437 set->numa_node)) {
1438 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001439 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001440 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001441 }
1442
Jens Axboe320ae512013-10-24 09:20:05 +01001443 p += rq_size;
1444 i++;
1445 }
1446 }
1447
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001448 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001449
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001450fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001451 blk_mq_free_rq_map(set, tags, hctx_idx);
1452 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001453}
1454
Jens Axboe1429d7c2014-05-19 09:23:55 -06001455static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1456{
1457 kfree(bitmap->map);
1458}
1459
1460static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1461{
1462 unsigned int bpw = 8, total, num_maps, i;
1463
1464 bitmap->bits_per_word = bpw;
1465
1466 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1467 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1468 GFP_KERNEL, node);
1469 if (!bitmap->map)
1470 return -ENOMEM;
1471
1472 bitmap->map_size = num_maps;
1473
1474 total = nr_cpu_ids;
1475 for (i = 0; i < num_maps; i++) {
1476 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1477 total -= bitmap->map[i].depth;
1478 }
1479
1480 return 0;
1481}
1482
Jens Axboe484b4062014-05-21 14:01:15 -06001483static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1484{
1485 struct request_queue *q = hctx->queue;
1486 struct blk_mq_ctx *ctx;
1487 LIST_HEAD(tmp);
1488
1489 /*
1490 * Move ctx entries to new CPU, if this one is going away.
1491 */
1492 ctx = __blk_mq_get_ctx(q, cpu);
1493
1494 spin_lock(&ctx->lock);
1495 if (!list_empty(&ctx->rq_list)) {
1496 list_splice_init(&ctx->rq_list, &tmp);
1497 blk_mq_hctx_clear_pending(hctx, ctx);
1498 }
1499 spin_unlock(&ctx->lock);
1500
1501 if (list_empty(&tmp))
1502 return NOTIFY_OK;
1503
1504 ctx = blk_mq_get_ctx(q);
1505 spin_lock(&ctx->lock);
1506
1507 while (!list_empty(&tmp)) {
1508 struct request *rq;
1509
1510 rq = list_first_entry(&tmp, struct request, queuelist);
1511 rq->mq_ctx = ctx;
1512 list_move_tail(&rq->queuelist, &ctx->rq_list);
1513 }
1514
1515 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1516 blk_mq_hctx_mark_pending(hctx, ctx);
1517
1518 spin_unlock(&ctx->lock);
1519
1520 blk_mq_run_hw_queue(hctx, true);
1521 blk_mq_put_ctx(ctx);
1522 return NOTIFY_OK;
1523}
1524
1525static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1526{
1527 struct request_queue *q = hctx->queue;
1528 struct blk_mq_tag_set *set = q->tag_set;
1529
1530 if (set->tags[hctx->queue_num])
1531 return NOTIFY_OK;
1532
1533 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1534 if (!set->tags[hctx->queue_num])
1535 return NOTIFY_STOP;
1536
1537 hctx->tags = set->tags[hctx->queue_num];
1538 return NOTIFY_OK;
1539}
1540
1541static int blk_mq_hctx_notify(void *data, unsigned long action,
1542 unsigned int cpu)
1543{
1544 struct blk_mq_hw_ctx *hctx = data;
1545
1546 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1547 return blk_mq_hctx_cpu_offline(hctx, cpu);
1548 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1549 return blk_mq_hctx_cpu_online(hctx, cpu);
1550
1551 return NOTIFY_OK;
1552}
1553
Ming Lei08e98fc2014-09-25 23:23:38 +08001554static void blk_mq_exit_hctx(struct request_queue *q,
1555 struct blk_mq_tag_set *set,
1556 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1557{
Ming Leif70ced02014-09-25 23:23:47 +08001558 unsigned flush_start_tag = set->queue_depth;
1559
Ming Lei08e98fc2014-09-25 23:23:38 +08001560 blk_mq_tag_idle(hctx);
1561
Ming Leif70ced02014-09-25 23:23:47 +08001562 if (set->ops->exit_request)
1563 set->ops->exit_request(set->driver_data,
1564 hctx->fq->flush_rq, hctx_idx,
1565 flush_start_tag + hctx_idx);
1566
Ming Lei08e98fc2014-09-25 23:23:38 +08001567 if (set->ops->exit_hctx)
1568 set->ops->exit_hctx(hctx, hctx_idx);
1569
1570 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001571 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001572 kfree(hctx->ctxs);
1573 blk_mq_free_bitmap(&hctx->ctx_map);
1574}
1575
Ming Lei624dbe42014-05-27 23:35:13 +08001576static void blk_mq_exit_hw_queues(struct request_queue *q,
1577 struct blk_mq_tag_set *set, int nr_queue)
1578{
1579 struct blk_mq_hw_ctx *hctx;
1580 unsigned int i;
1581
1582 queue_for_each_hw_ctx(q, hctx, i) {
1583 if (i == nr_queue)
1584 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001585 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001586 }
Ming Lei624dbe42014-05-27 23:35:13 +08001587}
1588
1589static void blk_mq_free_hw_queues(struct request_queue *q,
1590 struct blk_mq_tag_set *set)
1591{
1592 struct blk_mq_hw_ctx *hctx;
1593 unsigned int i;
1594
1595 queue_for_each_hw_ctx(q, hctx, i) {
1596 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001597 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001598 }
1599}
1600
Ming Lei08e98fc2014-09-25 23:23:38 +08001601static int blk_mq_init_hctx(struct request_queue *q,
1602 struct blk_mq_tag_set *set,
1603 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1604{
1605 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001606 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001607
1608 node = hctx->numa_node;
1609 if (node == NUMA_NO_NODE)
1610 node = hctx->numa_node = set->numa_node;
1611
1612 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1613 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1614 spin_lock_init(&hctx->lock);
1615 INIT_LIST_HEAD(&hctx->dispatch);
1616 hctx->queue = q;
1617 hctx->queue_num = hctx_idx;
1618 hctx->flags = set->flags;
1619 hctx->cmd_size = set->cmd_size;
1620
1621 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1622 blk_mq_hctx_notify, hctx);
1623 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1624
1625 hctx->tags = set->tags[hctx_idx];
1626
1627 /*
1628 * Allocate space for all possible cpus to avoid allocation at
1629 * runtime
1630 */
1631 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1632 GFP_KERNEL, node);
1633 if (!hctx->ctxs)
1634 goto unregister_cpu_notifier;
1635
1636 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1637 goto free_ctxs;
1638
1639 hctx->nr_ctx = 0;
1640
1641 if (set->ops->init_hctx &&
1642 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1643 goto free_bitmap;
1644
Ming Leif70ced02014-09-25 23:23:47 +08001645 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1646 if (!hctx->fq)
1647 goto exit_hctx;
1648
1649 if (set->ops->init_request &&
1650 set->ops->init_request(set->driver_data,
1651 hctx->fq->flush_rq, hctx_idx,
1652 flush_start_tag + hctx_idx, node))
1653 goto free_fq;
1654
Ming Lei08e98fc2014-09-25 23:23:38 +08001655 return 0;
1656
Ming Leif70ced02014-09-25 23:23:47 +08001657 free_fq:
1658 kfree(hctx->fq);
1659 exit_hctx:
1660 if (set->ops->exit_hctx)
1661 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001662 free_bitmap:
1663 blk_mq_free_bitmap(&hctx->ctx_map);
1664 free_ctxs:
1665 kfree(hctx->ctxs);
1666 unregister_cpu_notifier:
1667 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1668
1669 return -1;
1670}
1671
Jens Axboe320ae512013-10-24 09:20:05 +01001672static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001673 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001674{
1675 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001676 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001677
1678 /*
1679 * Initialize hardware queues
1680 */
1681 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001682 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001683 break;
1684 }
1685
1686 if (i == q->nr_hw_queues)
1687 return 0;
1688
1689 /*
1690 * Init failed
1691 */
Ming Lei624dbe42014-05-27 23:35:13 +08001692 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001693
1694 return 1;
1695}
1696
1697static void blk_mq_init_cpu_queues(struct request_queue *q,
1698 unsigned int nr_hw_queues)
1699{
1700 unsigned int i;
1701
1702 for_each_possible_cpu(i) {
1703 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1704 struct blk_mq_hw_ctx *hctx;
1705
1706 memset(__ctx, 0, sizeof(*__ctx));
1707 __ctx->cpu = i;
1708 spin_lock_init(&__ctx->lock);
1709 INIT_LIST_HEAD(&__ctx->rq_list);
1710 __ctx->queue = q;
1711
1712 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001713 if (!cpu_online(i))
1714 continue;
1715
Jens Axboee4043dc2014-04-09 10:18:23 -06001716 hctx = q->mq_ops->map_queue(q, i);
1717 cpumask_set_cpu(i, hctx->cpumask);
1718 hctx->nr_ctx++;
1719
Jens Axboe320ae512013-10-24 09:20:05 +01001720 /*
1721 * Set local node, IFF we have more than one hw queue. If
1722 * not, we remain on the home node of the device
1723 */
1724 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1725 hctx->numa_node = cpu_to_node(i);
1726 }
1727}
1728
1729static void blk_mq_map_swqueue(struct request_queue *q)
1730{
1731 unsigned int i;
1732 struct blk_mq_hw_ctx *hctx;
1733 struct blk_mq_ctx *ctx;
1734
1735 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001736 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001737 hctx->nr_ctx = 0;
1738 }
1739
1740 /*
1741 * Map software to hardware queues
1742 */
1743 queue_for_each_ctx(q, ctx, i) {
1744 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001745 if (!cpu_online(i))
1746 continue;
1747
Jens Axboe320ae512013-10-24 09:20:05 +01001748 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001749 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001750 ctx->index_hw = hctx->nr_ctx;
1751 hctx->ctxs[hctx->nr_ctx++] = ctx;
1752 }
Jens Axboe506e9312014-05-07 10:26:44 -06001753
1754 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001755 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001756 * If no software queues are mapped to this hardware queue,
1757 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001758 */
1759 if (!hctx->nr_ctx) {
1760 struct blk_mq_tag_set *set = q->tag_set;
1761
1762 if (set->tags[i]) {
1763 blk_mq_free_rq_map(set, set->tags[i], i);
1764 set->tags[i] = NULL;
1765 hctx->tags = NULL;
1766 }
1767 continue;
1768 }
1769
1770 /*
1771 * Initialize batch roundrobin counts
1772 */
Jens Axboe506e9312014-05-07 10:26:44 -06001773 hctx->next_cpu = cpumask_first(hctx->cpumask);
1774 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1775 }
Jens Axboe320ae512013-10-24 09:20:05 +01001776}
1777
Jens Axboe0d2602c2014-05-13 15:10:52 -06001778static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1779{
1780 struct blk_mq_hw_ctx *hctx;
1781 struct request_queue *q;
1782 bool shared;
1783 int i;
1784
1785 if (set->tag_list.next == set->tag_list.prev)
1786 shared = false;
1787 else
1788 shared = true;
1789
1790 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1791 blk_mq_freeze_queue(q);
1792
1793 queue_for_each_hw_ctx(q, hctx, i) {
1794 if (shared)
1795 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1796 else
1797 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1798 }
1799 blk_mq_unfreeze_queue(q);
1800 }
1801}
1802
1803static void blk_mq_del_queue_tag_set(struct request_queue *q)
1804{
1805 struct blk_mq_tag_set *set = q->tag_set;
1806
Jens Axboe0d2602c2014-05-13 15:10:52 -06001807 mutex_lock(&set->tag_list_lock);
1808 list_del_init(&q->tag_set_list);
1809 blk_mq_update_tag_set_depth(set);
1810 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001811}
1812
1813static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1814 struct request_queue *q)
1815{
1816 q->tag_set = set;
1817
1818 mutex_lock(&set->tag_list_lock);
1819 list_add_tail(&q->tag_set_list, &set->tag_list);
1820 blk_mq_update_tag_set_depth(set);
1821 mutex_unlock(&set->tag_list_lock);
1822}
1823
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001824struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001825{
1826 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001827 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001828 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001829 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001830 int i;
1831
Jens Axboe320ae512013-10-24 09:20:05 +01001832 ctx = alloc_percpu(struct blk_mq_ctx);
1833 if (!ctx)
1834 return ERR_PTR(-ENOMEM);
1835
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001836 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1837 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001838
1839 if (!hctxs)
1840 goto err_percpu;
1841
Jens Axboef14bbe72014-05-27 12:06:53 -06001842 map = blk_mq_make_queue_map(set);
1843 if (!map)
1844 goto err_map;
1845
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001846 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001847 int node = blk_mq_hw_queue_to_node(map, i);
1848
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001849 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1850 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001851 if (!hctxs[i])
1852 goto err_hctxs;
1853
Jens Axboea86073e2014-10-13 15:41:54 -06001854 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1855 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001856 goto err_hctxs;
1857
Jens Axboe0d2602c2014-05-13 15:10:52 -06001858 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001859 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001860 hctxs[i]->queue_num = i;
1861 }
1862
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001863 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001864 if (!q)
1865 goto err_hctxs;
1866
Tejun Heo17497ac2014-09-24 13:31:50 -04001867 /*
1868 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1869 * See blk_register_queue() for details.
1870 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001871 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001872 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001873 goto err_map;
1874
Jens Axboe320ae512013-10-24 09:20:05 +01001875 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1876 blk_queue_rq_timeout(q, 30000);
1877
1878 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001879 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001880 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001881
1882 q->queue_ctx = ctx;
1883 q->queue_hw_ctx = hctxs;
1884
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001885 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001886 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001887
Jens Axboe05f1dd52014-05-29 09:53:32 -06001888 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1889 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1890
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001891 q->sg_reserved_size = INT_MAX;
1892
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001893 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1894 INIT_LIST_HEAD(&q->requeue_list);
1895 spin_lock_init(&q->requeue_lock);
1896
Jens Axboe07068d52014-05-22 10:40:51 -06001897 if (q->nr_hw_queues > 1)
1898 blk_queue_make_request(q, blk_mq_make_request);
1899 else
1900 blk_queue_make_request(q, blk_sq_make_request);
1901
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001902 if (set->timeout)
1903 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001904
Jens Axboeeba71762014-05-20 15:17:27 -06001905 /*
1906 * Do this after blk_queue_make_request() overrides it...
1907 */
1908 q->nr_requests = set->queue_depth;
1909
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001910 if (set->ops->complete)
1911 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001912
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001913 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001914
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001915 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001916 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001917
Jens Axboe320ae512013-10-24 09:20:05 +01001918 mutex_lock(&all_q_mutex);
1919 list_add_tail(&q->all_q_node, &all_q_list);
1920 mutex_unlock(&all_q_mutex);
1921
Jens Axboe0d2602c2014-05-13 15:10:52 -06001922 blk_mq_add_queue_tag_set(set, q);
1923
Jens Axboe484b4062014-05-21 14:01:15 -06001924 blk_mq_map_swqueue(q);
1925
Jens Axboe320ae512013-10-24 09:20:05 +01001926 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001927
Jens Axboe320ae512013-10-24 09:20:05 +01001928err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001929 blk_cleanup_queue(q);
1930err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001931 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001932 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001933 if (!hctxs[i])
1934 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001935 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001936 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001937 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001938err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001939 kfree(hctxs);
1940err_percpu:
1941 free_percpu(ctx);
1942 return ERR_PTR(-ENOMEM);
1943}
1944EXPORT_SYMBOL(blk_mq_init_queue);
1945
1946void blk_mq_free_queue(struct request_queue *q)
1947{
Ming Lei624dbe42014-05-27 23:35:13 +08001948 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001949
Jens Axboe0d2602c2014-05-13 15:10:52 -06001950 blk_mq_del_queue_tag_set(q);
1951
Ming Lei624dbe42014-05-27 23:35:13 +08001952 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1953 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001954
Tejun Heoadd703f2014-07-01 10:34:38 -06001955 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001956
Jens Axboe320ae512013-10-24 09:20:05 +01001957 free_percpu(q->queue_ctx);
1958 kfree(q->queue_hw_ctx);
1959 kfree(q->mq_map);
1960
1961 q->queue_ctx = NULL;
1962 q->queue_hw_ctx = NULL;
1963 q->mq_map = NULL;
1964
1965 mutex_lock(&all_q_mutex);
1966 list_del_init(&q->all_q_node);
1967 mutex_unlock(&all_q_mutex);
1968}
Jens Axboe320ae512013-10-24 09:20:05 +01001969
1970/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001971static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001972{
Tejun Heof3af0202014-11-04 13:52:27 -05001973 WARN_ON_ONCE(!q->mq_freeze_depth);
Jens Axboe320ae512013-10-24 09:20:05 +01001974
Jens Axboe67aec142014-05-30 08:25:36 -06001975 blk_mq_sysfs_unregister(q);
1976
Jens Axboe320ae512013-10-24 09:20:05 +01001977 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1978
1979 /*
1980 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1981 * we should change hctx numa_node according to new topology (this
1982 * involves free and re-allocate memory, worthy doing?)
1983 */
1984
1985 blk_mq_map_swqueue(q);
1986
Jens Axboe67aec142014-05-30 08:25:36 -06001987 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001988}
1989
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001990static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1991 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001992{
1993 struct request_queue *q;
1994
1995 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001996 * Before new mappings are established, hotadded cpu might already
1997 * start handling requests. This doesn't break anything as we map
1998 * offline CPUs to first hardware queue. We will re-init the queue
1999 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01002000 */
2001 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
2002 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
2003 return NOTIFY_OK;
2004
2005 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002006
2007 /*
2008 * We need to freeze and reinit all existing queues. Freezing
2009 * involves synchronous wait for an RCU grace period and doing it
2010 * one by one may take a long time. Start freezing all queues in
2011 * one swoop and then wait for the completions so that freezing can
2012 * take place in parallel.
2013 */
2014 list_for_each_entry(q, &all_q_list, all_q_node)
2015 blk_mq_freeze_queue_start(q);
2016 list_for_each_entry(q, &all_q_list, all_q_node)
2017 blk_mq_freeze_queue_wait(q);
2018
Jens Axboe320ae512013-10-24 09:20:05 +01002019 list_for_each_entry(q, &all_q_list, all_q_node)
2020 blk_mq_queue_reinit(q);
Tejun Heof3af0202014-11-04 13:52:27 -05002021
2022 list_for_each_entry(q, &all_q_list, all_q_node)
2023 blk_mq_unfreeze_queue(q);
2024
Jens Axboe320ae512013-10-24 09:20:05 +01002025 mutex_unlock(&all_q_mutex);
2026 return NOTIFY_OK;
2027}
2028
Jens Axboea5164402014-09-10 09:02:03 -06002029static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2030{
2031 int i;
2032
2033 for (i = 0; i < set->nr_hw_queues; i++) {
2034 set->tags[i] = blk_mq_init_rq_map(set, i);
2035 if (!set->tags[i])
2036 goto out_unwind;
2037 }
2038
2039 return 0;
2040
2041out_unwind:
2042 while (--i >= 0)
2043 blk_mq_free_rq_map(set, set->tags[i], i);
2044
Jens Axboea5164402014-09-10 09:02:03 -06002045 return -ENOMEM;
2046}
2047
2048/*
2049 * Allocate the request maps associated with this tag_set. Note that this
2050 * may reduce the depth asked for, if memory is tight. set->queue_depth
2051 * will be updated to reflect the allocated depth.
2052 */
2053static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2054{
2055 unsigned int depth;
2056 int err;
2057
2058 depth = set->queue_depth;
2059 do {
2060 err = __blk_mq_alloc_rq_maps(set);
2061 if (!err)
2062 break;
2063
2064 set->queue_depth >>= 1;
2065 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2066 err = -ENOMEM;
2067 break;
2068 }
2069 } while (set->queue_depth);
2070
2071 if (!set->queue_depth || err) {
2072 pr_err("blk-mq: failed to allocate request map\n");
2073 return -ENOMEM;
2074 }
2075
2076 if (depth != set->queue_depth)
2077 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2078 depth, set->queue_depth);
2079
2080 return 0;
2081}
2082
Jens Axboea4391c62014-06-05 15:21:56 -06002083/*
2084 * Alloc a tag set to be associated with one or more request queues.
2085 * May fail with EINVAL for various error conditions. May adjust the
2086 * requested depth down, if if it too large. In that case, the set
2087 * value will be stored in set->queue_depth.
2088 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002089int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2090{
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002091 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2092
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002093 if (!set->nr_hw_queues)
2094 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002095 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002096 return -EINVAL;
2097 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2098 return -EINVAL;
2099
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002100 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002101 return -EINVAL;
2102
Jens Axboea4391c62014-06-05 15:21:56 -06002103 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2104 pr_info("blk-mq: reduced tag depth to %u\n",
2105 BLK_MQ_MAX_DEPTH);
2106 set->queue_depth = BLK_MQ_MAX_DEPTH;
2107 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002108
Shaohua Li6637fad2014-11-30 16:00:58 -08002109 /*
2110 * If a crashdump is active, then we are potentially in a very
2111 * memory constrained environment. Limit us to 1 queue and
2112 * 64 tags to prevent using too much memory.
2113 */
2114 if (is_kdump_kernel()) {
2115 set->nr_hw_queues = 1;
2116 set->queue_depth = min(64U, set->queue_depth);
2117 }
2118
Ming Lei48479002014-04-19 18:00:17 +08002119 set->tags = kmalloc_node(set->nr_hw_queues *
2120 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002121 GFP_KERNEL, set->numa_node);
2122 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002123 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002124
Jens Axboea5164402014-09-10 09:02:03 -06002125 if (blk_mq_alloc_rq_maps(set))
2126 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002127
Jens Axboe0d2602c2014-05-13 15:10:52 -06002128 mutex_init(&set->tag_list_lock);
2129 INIT_LIST_HEAD(&set->tag_list);
2130
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002131 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002132enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002133 kfree(set->tags);
2134 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002135 return -ENOMEM;
2136}
2137EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2138
2139void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2140{
2141 int i;
2142
Jens Axboe484b4062014-05-21 14:01:15 -06002143 for (i = 0; i < set->nr_hw_queues; i++) {
2144 if (set->tags[i])
2145 blk_mq_free_rq_map(set, set->tags[i], i);
2146 }
2147
Ming Lei981bd182014-04-24 00:07:34 +08002148 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002149 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002150}
2151EXPORT_SYMBOL(blk_mq_free_tag_set);
2152
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002153int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2154{
2155 struct blk_mq_tag_set *set = q->tag_set;
2156 struct blk_mq_hw_ctx *hctx;
2157 int i, ret;
2158
2159 if (!set || nr > set->queue_depth)
2160 return -EINVAL;
2161
2162 ret = 0;
2163 queue_for_each_hw_ctx(q, hctx, i) {
2164 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2165 if (ret)
2166 break;
2167 }
2168
2169 if (!ret)
2170 q->nr_requests = nr;
2171
2172 return ret;
2173}
2174
Jens Axboe676141e2014-03-20 13:29:18 -06002175void blk_mq_disable_hotplug(void)
2176{
2177 mutex_lock(&all_q_mutex);
2178}
2179
2180void blk_mq_enable_hotplug(void)
2181{
2182 mutex_unlock(&all_q_mutex);
2183}
2184
Jens Axboe320ae512013-10-24 09:20:05 +01002185static int __init blk_mq_init(void)
2186{
Jens Axboe320ae512013-10-24 09:20:05 +01002187 blk_mq_cpu_init();
2188
Tejun Heoadd703f2014-07-01 10:34:38 -06002189 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002190
2191 return 0;
2192}
2193subsys_initcall(blk_mq_init);