blob: 04ef7ecb3c7fadf37a6801fc1a9b4976e4f50d8d [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/backing-dev.h>
4#include <linux/bio.h>
5#include <linux/blkdev.h>
6#include <linux/mm.h>
7#include <linux/init.h>
8#include <linux/slab.h>
9#include <linux/workqueue.h>
10#include <linux/smp.h>
11#include <linux/llist.h>
12#include <linux/list_sort.h>
13#include <linux/cpu.h>
14#include <linux/cache.h>
15#include <linux/sched/sysctl.h>
16#include <linux/delay.h>
17
18#include <trace/events/block.h>
19
20#include <linux/blk-mq.h>
21#include "blk.h"
22#include "blk-mq.h"
23#include "blk-mq-tag.h"
24
25static DEFINE_MUTEX(all_q_mutex);
26static LIST_HEAD(all_q_list);
27
28static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
29
Jens Axboe320ae512013-10-24 09:20:05 +010030static struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q,
31 unsigned int cpu)
32{
33 return per_cpu_ptr(q->queue_ctx, cpu);
34}
35
36/*
37 * This assumes per-cpu software queueing queues. They could be per-node
38 * as well, for instance. For now this is hardcoded as-is. Note that we don't
39 * care about preemption, since we know the ctx's are persistent. This does
40 * mean that we can't rely on ctx always matching the currently running CPU.
41 */
42static struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q)
43{
44 return __blk_mq_get_ctx(q, get_cpu());
45}
46
47static void blk_mq_put_ctx(struct blk_mq_ctx *ctx)
48{
49 put_cpu();
50}
51
52/*
53 * Check if any of the ctx's have pending work in this hardware queue
54 */
55static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
56{
57 unsigned int i;
58
Jens Axboe1429d7c2014-05-19 09:23:55 -060059 for (i = 0; i < hctx->ctx_map.map_size; i++)
60 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010061 return true;
62
63 return false;
64}
65
Jens Axboe1429d7c2014-05-19 09:23:55 -060066static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
67 struct blk_mq_ctx *ctx)
68{
69 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
70}
71
72#define CTX_TO_BIT(hctx, ctx) \
73 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
74
Jens Axboe320ae512013-10-24 09:20:05 +010075/*
76 * Mark this ctx as having pending work in this hardware queue
77 */
78static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
79 struct blk_mq_ctx *ctx)
80{
Jens Axboe1429d7c2014-05-19 09:23:55 -060081 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
82
83 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
84 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
85}
86
87static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
88 struct blk_mq_ctx *ctx)
89{
90 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
91
92 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010093}
94
Jens Axboe320ae512013-10-24 09:20:05 +010095static int blk_mq_queue_enter(struct request_queue *q)
96{
97 int ret;
98
99 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
100 smp_wmb();
101 /* we have problems to freeze the queue if it's initializing */
102 if (!blk_queue_bypass(q) || !blk_queue_init_done(q))
103 return 0;
104
105 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
106
107 spin_lock_irq(q->queue_lock);
108 ret = wait_event_interruptible_lock_irq(q->mq_freeze_wq,
Ming Lei43a5e4e2013-12-26 21:31:35 +0800109 !blk_queue_bypass(q) || blk_queue_dying(q),
110 *q->queue_lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100111 /* inc usage with lock hold to avoid freeze_queue runs here */
Ming Lei43a5e4e2013-12-26 21:31:35 +0800112 if (!ret && !blk_queue_dying(q))
Jens Axboe320ae512013-10-24 09:20:05 +0100113 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800114 else if (blk_queue_dying(q))
115 ret = -ENODEV;
Jens Axboe320ae512013-10-24 09:20:05 +0100116 spin_unlock_irq(q->queue_lock);
117
118 return ret;
119}
120
121static void blk_mq_queue_exit(struct request_queue *q)
122{
123 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
124}
125
Ming Lei43a5e4e2013-12-26 21:31:35 +0800126static void __blk_mq_drain_queue(struct request_queue *q)
127{
128 while (true) {
129 s64 count;
130
131 spin_lock_irq(q->queue_lock);
132 count = percpu_counter_sum(&q->mq_usage_counter);
133 spin_unlock_irq(q->queue_lock);
134
135 if (count == 0)
136 break;
137 blk_mq_run_queues(q, false);
138 msleep(10);
139 }
140}
141
Jens Axboe320ae512013-10-24 09:20:05 +0100142/*
143 * Guarantee no request is in use, so we can change any data structure of
144 * the queue afterward.
145 */
146static void blk_mq_freeze_queue(struct request_queue *q)
147{
148 bool drain;
149
150 spin_lock_irq(q->queue_lock);
151 drain = !q->bypass_depth++;
152 queue_flag_set(QUEUE_FLAG_BYPASS, q);
153 spin_unlock_irq(q->queue_lock);
154
Ming Lei43a5e4e2013-12-26 21:31:35 +0800155 if (drain)
156 __blk_mq_drain_queue(q);
157}
Jens Axboe320ae512013-10-24 09:20:05 +0100158
Ming Lei43a5e4e2013-12-26 21:31:35 +0800159void blk_mq_drain_queue(struct request_queue *q)
160{
161 __blk_mq_drain_queue(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100162}
163
164static void blk_mq_unfreeze_queue(struct request_queue *q)
165{
166 bool wake = false;
167
168 spin_lock_irq(q->queue_lock);
169 if (!--q->bypass_depth) {
170 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
171 wake = true;
172 }
173 WARN_ON_ONCE(q->bypass_depth < 0);
174 spin_unlock_irq(q->queue_lock);
175 if (wake)
176 wake_up_all(&q->mq_freeze_wq);
177}
178
179bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
180{
181 return blk_mq_has_free_tags(hctx->tags);
182}
183EXPORT_SYMBOL(blk_mq_can_queue);
184
Jens Axboe94eddfb2013-11-19 09:25:07 -0700185static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
186 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100187{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700188 if (blk_queue_io_stat(q))
189 rw_flags |= REQ_IO_STAT;
190
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200191 INIT_LIST_HEAD(&rq->queuelist);
192 /* csd/requeue_work/fifo_time is initialized before use */
193 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100194 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600195 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200196 rq->cmd_type = 0;
197 /* do not touch atomic flags, it needs atomic ops against the timer */
198 rq->cpu = -1;
199 rq->__data_len = 0;
200 rq->__sector = (sector_t) -1;
201 rq->bio = NULL;
202 rq->biotail = NULL;
203 INIT_HLIST_NODE(&rq->hash);
204 RB_CLEAR_NODE(&rq->rb_node);
205 memset(&rq->flush, 0, max(sizeof(rq->flush), sizeof(rq->elv)));
206 rq->rq_disk = NULL;
207 rq->part = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700208 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200209#ifdef CONFIG_BLK_CGROUP
210 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700211 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200212 rq->io_start_time_ns = 0;
213#endif
214 rq->nr_phys_segments = 0;
215#if defined(CONFIG_BLK_DEV_INTEGRITY)
216 rq->nr_integrity_segments = 0;
217#endif
218 rq->ioprio = 0;
219 rq->special = NULL;
220 /* tag was already set */
221 rq->errors = 0;
222 memset(rq->__cmd, 0, sizeof(rq->__cmd));
223 rq->cmd = rq->__cmd;
224 rq->cmd_len = BLK_MAX_CDB;
225
226 rq->extra_len = 0;
227 rq->sense_len = 0;
228 rq->resid_len = 0;
229 rq->sense = NULL;
230
231 rq->deadline = 0;
232 INIT_LIST_HEAD(&rq->timeout_list);
233 rq->timeout = 0;
234 rq->retries = 0;
235 rq->end_io = NULL;
236 rq->end_io_data = NULL;
237 rq->next_rq = NULL;
238
Jens Axboe320ae512013-10-24 09:20:05 +0100239 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
240}
241
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200242static struct request *
243__blk_mq_alloc_request(struct request_queue *q, struct blk_mq_hw_ctx *hctx,
244 struct blk_mq_ctx *ctx, int rw, gfp_t gfp, bool reserved)
245{
246 struct request *rq;
247 unsigned int tag;
248
249 tag = blk_mq_get_tag(hctx, &ctx->last_tag, gfp, reserved);
250 if (tag != BLK_MQ_TAG_FAIL) {
251 rq = hctx->tags->rqs[tag];
252
253 rq->cmd_flags = 0;
254 if (blk_mq_tag_busy(hctx)) {
255 rq->cmd_flags = REQ_MQ_INFLIGHT;
256 atomic_inc(&hctx->nr_active);
257 }
258
259 rq->tag = tag;
260 blk_mq_rq_ctx_init(q, ctx, rq, rw);
261 return rq;
262 }
263
264 return NULL;
265}
266
267
Jens Axboe320ae512013-10-24 09:20:05 +0100268static struct request *blk_mq_alloc_request_pinned(struct request_queue *q,
269 int rw, gfp_t gfp,
270 bool reserved)
271{
272 struct request *rq;
273
274 do {
275 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
276 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q, ctx->cpu);
277
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200278 rq = __blk_mq_alloc_request(q, hctx, ctx, rw, gfp & ~__GFP_WAIT,
Jens Axboe4bb659b2014-05-09 09:36:49 -0600279 reserved);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200280 if (rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100281 break;
Jens Axboe320ae512013-10-24 09:20:05 +0100282
Jens Axboee4043dc2014-04-09 10:18:23 -0600283 if (gfp & __GFP_WAIT) {
284 __blk_mq_run_hw_queue(hctx);
285 blk_mq_put_ctx(ctx);
286 } else {
287 blk_mq_put_ctx(ctx);
Jeff Moyer959a35f2013-12-03 14:23:00 -0700288 break;
Jens Axboee4043dc2014-04-09 10:18:23 -0600289 }
Jeff Moyer959a35f2013-12-03 14:23:00 -0700290
Jens Axboe0d2602c2014-05-13 15:10:52 -0600291 blk_mq_wait_for_tags(hctx, reserved);
Jens Axboe320ae512013-10-24 09:20:05 +0100292 } while (1);
293
294 return rq;
295}
296
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200297struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
298 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100299{
300 struct request *rq;
301
302 if (blk_mq_queue_enter(q))
303 return NULL;
304
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200305 rq = blk_mq_alloc_request_pinned(q, rw, gfp, reserved);
Jeff Moyer959a35f2013-12-03 14:23:00 -0700306 if (rq)
307 blk_mq_put_ctx(rq->mq_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100308 return rq;
309}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600310EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100311
Jens Axboe320ae512013-10-24 09:20:05 +0100312static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
313 struct blk_mq_ctx *ctx, struct request *rq)
314{
315 const int tag = rq->tag;
316 struct request_queue *q = rq->q;
317
Jens Axboe0d2602c2014-05-13 15:10:52 -0600318 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
319 atomic_dec(&hctx->nr_active);
320
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200321 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600322 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100323 blk_mq_queue_exit(q);
324}
325
326void blk_mq_free_request(struct request *rq)
327{
328 struct blk_mq_ctx *ctx = rq->mq_ctx;
329 struct blk_mq_hw_ctx *hctx;
330 struct request_queue *q = rq->q;
331
332 ctx->rq_completed[rq_is_sync(rq)]++;
333
334 hctx = q->mq_ops->map_queue(q, ctx->cpu);
335 __blk_mq_free_request(hctx, ctx, rq);
336}
337
Christoph Hellwig8727af42014-04-14 10:30:08 +0200338/*
339 * Clone all relevant state from a request that has been put on hold in
340 * the flush state machine into the preallocated flush request that hangs
341 * off the request queue.
342 *
343 * For a driver the flush request should be invisible, that's why we are
344 * impersonating the original request here.
345 */
346void blk_mq_clone_flush_request(struct request *flush_rq,
347 struct request *orig_rq)
348{
349 struct blk_mq_hw_ctx *hctx =
350 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
351
352 flush_rq->mq_ctx = orig_rq->mq_ctx;
353 flush_rq->tag = orig_rq->tag;
354 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
355 hctx->cmd_size);
356}
357
Christoph Hellwig63151a42014-04-16 09:44:52 +0200358inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100359{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700360 blk_account_io_done(rq);
361
Christoph Hellwig91b63632014-04-16 09:44:53 +0200362 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100363 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200364 } else {
365 if (unlikely(blk_bidi_rq(rq)))
366 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100367 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200368 }
Jens Axboe320ae512013-10-24 09:20:05 +0100369}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200370EXPORT_SYMBOL(__blk_mq_end_io);
371
372void blk_mq_end_io(struct request *rq, int error)
373{
374 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
375 BUG();
376 __blk_mq_end_io(rq, error);
377}
378EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100379
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800380static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100381{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800382 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100383
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800384 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100385}
386
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800387void __blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100388{
389 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700390 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100391 int cpu;
392
Christoph Hellwig38535202014-04-25 02:32:53 -0700393 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800394 rq->q->softirq_done_fn(rq);
395 return;
396 }
Jens Axboe320ae512013-10-24 09:20:05 +0100397
398 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700399 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
400 shared = cpus_share_cache(cpu, ctx->cpu);
401
402 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800403 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800404 rq->csd.info = rq;
405 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100406 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800407 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800408 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800409 }
Jens Axboe320ae512013-10-24 09:20:05 +0100410 put_cpu();
411}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800412
413/**
414 * blk_mq_complete_request - end I/O on a request
415 * @rq: the request being processed
416 *
417 * Description:
418 * Ends all I/O on a request. It does not handle partial completions.
419 * The actual completion happens out-of-order, through a IPI handler.
420 **/
421void blk_mq_complete_request(struct request *rq)
422{
Jens Axboe95f09682014-05-27 17:46:48 -0600423 struct request_queue *q = rq->q;
424
425 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800426 return;
Jens Axboe95f09682014-05-27 17:46:48 -0600427 if (!blk_mark_rq_complete(rq)) {
428 if (q->softirq_done_fn)
429 __blk_mq_complete_request(rq);
430 else
431 blk_mq_end_io(rq, rq->errors);
432 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800433}
434EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100435
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800436static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100437{
438 struct request_queue *q = rq->q;
439
440 trace_block_rq_issue(q, rq);
441
Christoph Hellwig742ee692014-04-14 10:30:06 +0200442 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200443 if (unlikely(blk_bidi_rq(rq)))
444 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200445
Jens Axboe320ae512013-10-24 09:20:05 +0100446 /*
447 * Just mark start time and set the started bit. Due to memory
448 * ordering, we know we'll see the correct deadline as long as
Jens Axboec22d9d82014-05-23 14:14:57 -0600449 * REQ_ATOMIC_STARTED is seen. Use the default queue timeout,
450 * unless one has been set in the request.
Jens Axboe320ae512013-10-24 09:20:05 +0100451 */
Jens Axboec22d9d82014-05-23 14:14:57 -0600452 if (!rq->timeout)
453 rq->deadline = jiffies + q->rq_timeout;
454 else
455 rq->deadline = jiffies + rq->timeout;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600456
457 /*
458 * Mark us as started and clear complete. Complete might have been
459 * set if requeue raced with timeout, which then marked it as
460 * complete. So be sure to clear complete again when we start
461 * the request, otherwise we'll ignore the completion event.
462 */
Jens Axboe320ae512013-10-24 09:20:05 +0100463 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600464 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800465
466 if (q->dma_drain_size && blk_rq_bytes(rq)) {
467 /*
468 * Make sure space for the drain appears. We know we can do
469 * this because max_hw_segments has been adjusted to be one
470 * fewer than the device can handle.
471 */
472 rq->nr_phys_segments++;
473 }
474
475 /*
476 * Flag the last request in the series so that drivers know when IO
477 * should be kicked off, if they don't do it on a per-request basis.
478 *
479 * Note: the flag isn't the only condition drivers should do kick off.
480 * If drive is busy, the last request might not have the bit set.
481 */
482 if (last)
483 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100484}
485
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200486static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100487{
488 struct request_queue *q = rq->q;
489
490 trace_block_rq_requeue(q, rq);
491 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800492
493 rq->cmd_flags &= ~REQ_END;
494
495 if (q->dma_drain_size && blk_rq_bytes(rq))
496 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100497}
498
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200499void blk_mq_requeue_request(struct request *rq)
500{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200501 __blk_mq_requeue_request(rq);
502 blk_clear_rq_complete(rq);
503
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200504 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600505 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200506}
507EXPORT_SYMBOL(blk_mq_requeue_request);
508
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600509static void blk_mq_requeue_work(struct work_struct *work)
510{
511 struct request_queue *q =
512 container_of(work, struct request_queue, requeue_work);
513 LIST_HEAD(rq_list);
514 struct request *rq, *next;
515 unsigned long flags;
516
517 spin_lock_irqsave(&q->requeue_lock, flags);
518 list_splice_init(&q->requeue_list, &rq_list);
519 spin_unlock_irqrestore(&q->requeue_lock, flags);
520
521 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
522 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
523 continue;
524
525 rq->cmd_flags &= ~REQ_SOFTBARRIER;
526 list_del_init(&rq->queuelist);
527 blk_mq_insert_request(rq, true, false, false);
528 }
529
530 while (!list_empty(&rq_list)) {
531 rq = list_entry(rq_list.next, struct request, queuelist);
532 list_del_init(&rq->queuelist);
533 blk_mq_insert_request(rq, false, false, false);
534 }
535
536 blk_mq_run_queues(q, false);
537}
538
539void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
540{
541 struct request_queue *q = rq->q;
542 unsigned long flags;
543
544 /*
545 * We abuse this flag that is otherwise used by the I/O scheduler to
546 * request head insertation from the workqueue.
547 */
548 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
549
550 spin_lock_irqsave(&q->requeue_lock, flags);
551 if (at_head) {
552 rq->cmd_flags |= REQ_SOFTBARRIER;
553 list_add(&rq->queuelist, &q->requeue_list);
554 } else {
555 list_add_tail(&rq->queuelist, &q->requeue_list);
556 }
557 spin_unlock_irqrestore(&q->requeue_lock, flags);
558}
559EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
560
561void blk_mq_kick_requeue_list(struct request_queue *q)
562{
563 kblockd_schedule_work(&q->requeue_work);
564}
565EXPORT_SYMBOL(blk_mq_kick_requeue_list);
566
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600567struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
568{
569 return tags->rqs[tag];
570}
571EXPORT_SYMBOL(blk_mq_tag_to_rq);
572
Jens Axboe320ae512013-10-24 09:20:05 +0100573struct blk_mq_timeout_data {
574 struct blk_mq_hw_ctx *hctx;
575 unsigned long *next;
576 unsigned int *next_set;
577};
578
579static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
580{
581 struct blk_mq_timeout_data *data = __data;
582 struct blk_mq_hw_ctx *hctx = data->hctx;
583 unsigned int tag;
584
585 /* It may not be in flight yet (this is where
586 * the REQ_ATOMIC_STARTED flag comes in). The requests are
587 * statically allocated, so we know it's always safe to access the
588 * memory associated with a bit offset into ->rqs[].
589 */
590 tag = 0;
591 do {
592 struct request *rq;
593
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600594 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
595 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100596 break;
597
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600598 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
599 if (rq->q != hctx->queue)
600 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100601 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
602 continue;
603
604 blk_rq_check_expired(rq, data->next, data->next_set);
605 } while (1);
606}
607
608static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
609 unsigned long *next,
610 unsigned int *next_set)
611{
612 struct blk_mq_timeout_data data = {
613 .hctx = hctx,
614 .next = next,
615 .next_set = next_set,
616 };
617
618 /*
619 * Ask the tagging code to iterate busy requests, so we can
620 * check them for timeout.
621 */
622 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
623}
624
Jens Axboe87ee7b12014-04-24 08:51:47 -0600625static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
626{
627 struct request_queue *q = rq->q;
628
629 /*
630 * We know that complete is set at this point. If STARTED isn't set
631 * anymore, then the request isn't active and the "timeout" should
632 * just be ignored. This can happen due to the bitflag ordering.
633 * Timeout first checks if STARTED is set, and if it is, assumes
634 * the request is active. But if we race with completion, then
635 * we both flags will get cleared. So check here again, and ignore
636 * a timeout event with a request that isn't active.
637 */
638 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
639 return BLK_EH_NOT_HANDLED;
640
641 if (!q->mq_ops->timeout)
642 return BLK_EH_RESET_TIMER;
643
644 return q->mq_ops->timeout(rq);
645}
646
Jens Axboe320ae512013-10-24 09:20:05 +0100647static void blk_mq_rq_timer(unsigned long data)
648{
649 struct request_queue *q = (struct request_queue *) data;
650 struct blk_mq_hw_ctx *hctx;
651 unsigned long next = 0;
652 int i, next_set = 0;
653
Jens Axboe484b4062014-05-21 14:01:15 -0600654 queue_for_each_hw_ctx(q, hctx, i) {
655 /*
656 * If not software queues are currently mapped to this
657 * hardware queue, there's nothing to check
658 */
659 if (!hctx->nr_ctx || !hctx->tags)
660 continue;
661
Jens Axboe320ae512013-10-24 09:20:05 +0100662 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600663 }
Jens Axboe320ae512013-10-24 09:20:05 +0100664
Jens Axboe0d2602c2014-05-13 15:10:52 -0600665 if (next_set) {
666 next = blk_rq_timeout(round_jiffies_up(next));
667 mod_timer(&q->timeout, next);
668 } else {
669 queue_for_each_hw_ctx(q, hctx, i)
670 blk_mq_tag_idle(hctx);
671 }
Jens Axboe320ae512013-10-24 09:20:05 +0100672}
673
674/*
675 * Reverse check our software queue for entries that we could potentially
676 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
677 * too much time checking for merges.
678 */
679static bool blk_mq_attempt_merge(struct request_queue *q,
680 struct blk_mq_ctx *ctx, struct bio *bio)
681{
682 struct request *rq;
683 int checked = 8;
684
685 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
686 int el_ret;
687
688 if (!checked--)
689 break;
690
691 if (!blk_rq_merge_ok(rq, bio))
692 continue;
693
694 el_ret = blk_try_merge(rq, bio);
695 if (el_ret == ELEVATOR_BACK_MERGE) {
696 if (bio_attempt_back_merge(q, rq, bio)) {
697 ctx->rq_merged++;
698 return true;
699 }
700 break;
701 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
702 if (bio_attempt_front_merge(q, rq, bio)) {
703 ctx->rq_merged++;
704 return true;
705 }
706 break;
707 }
708 }
709
710 return false;
711}
712
Jens Axboe320ae512013-10-24 09:20:05 +0100713/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600714 * Process software queues that have been marked busy, splicing them
715 * to the for-dispatch
716 */
717static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
718{
719 struct blk_mq_ctx *ctx;
720 int i;
721
722 for (i = 0; i < hctx->ctx_map.map_size; i++) {
723 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
724 unsigned int off, bit;
725
726 if (!bm->word)
727 continue;
728
729 bit = 0;
730 off = i * hctx->ctx_map.bits_per_word;
731 do {
732 bit = find_next_bit(&bm->word, bm->depth, bit);
733 if (bit >= bm->depth)
734 break;
735
736 ctx = hctx->ctxs[bit + off];
737 clear_bit(bit, &bm->word);
738 spin_lock(&ctx->lock);
739 list_splice_tail_init(&ctx->rq_list, list);
740 spin_unlock(&ctx->lock);
741
742 bit++;
743 } while (1);
744 }
745}
746
747/*
Jens Axboe320ae512013-10-24 09:20:05 +0100748 * Run this hardware queue, pulling any software queues mapped to it in.
749 * Note that this function currently has various problems around ordering
750 * of IO. In particular, we'd like FIFO behaviour on handling existing
751 * items on the hctx->dispatch list. Ignore that for now.
752 */
753static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
754{
755 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100756 struct request *rq;
757 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600758 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100759
Jens Axboefd1270d2014-04-16 09:23:48 -0600760 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600761
Jens Axboe5d12f902014-03-19 15:25:02 -0600762 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100763 return;
764
765 hctx->run++;
766
767 /*
768 * Touch any software queue that has pending entries.
769 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600770 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100771
772 /*
773 * If we have previous entries on our dispatch list, grab them
774 * and stuff them at the front for more fair dispatch.
775 */
776 if (!list_empty_careful(&hctx->dispatch)) {
777 spin_lock(&hctx->lock);
778 if (!list_empty(&hctx->dispatch))
779 list_splice_init(&hctx->dispatch, &rq_list);
780 spin_unlock(&hctx->lock);
781 }
782
783 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100784 * Now process all the entries, sending them to the driver.
785 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600786 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100787 while (!list_empty(&rq_list)) {
788 int ret;
789
790 rq = list_first_entry(&rq_list, struct request, queuelist);
791 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100792
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800793 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100794
795 ret = q->mq_ops->queue_rq(hctx, rq);
796 switch (ret) {
797 case BLK_MQ_RQ_QUEUE_OK:
798 queued++;
799 continue;
800 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100801 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200802 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100803 break;
804 default:
805 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100806 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800807 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100808 blk_mq_end_io(rq, rq->errors);
809 break;
810 }
811
812 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
813 break;
814 }
815
816 if (!queued)
817 hctx->dispatched[0]++;
818 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
819 hctx->dispatched[ilog2(queued) + 1]++;
820
821 /*
822 * Any items that need requeuing? Stuff them into hctx->dispatch,
823 * that is where we will continue on next queue run.
824 */
825 if (!list_empty(&rq_list)) {
826 spin_lock(&hctx->lock);
827 list_splice(&rq_list, &hctx->dispatch);
828 spin_unlock(&hctx->lock);
829 }
830}
831
Jens Axboe506e9312014-05-07 10:26:44 -0600832/*
833 * It'd be great if the workqueue API had a way to pass
834 * in a mask and had some smarts for more clever placement.
835 * For now we just round-robin here, switching for every
836 * BLK_MQ_CPU_WORK_BATCH queued items.
837 */
838static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
839{
840 int cpu = hctx->next_cpu;
841
842 if (--hctx->next_cpu_batch <= 0) {
843 int next_cpu;
844
845 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
846 if (next_cpu >= nr_cpu_ids)
847 next_cpu = cpumask_first(hctx->cpumask);
848
849 hctx->next_cpu = next_cpu;
850 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
851 }
852
853 return cpu;
854}
855
Jens Axboe320ae512013-10-24 09:20:05 +0100856void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
857{
Jens Axboe5d12f902014-03-19 15:25:02 -0600858 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100859 return;
860
Jens Axboee4043dc2014-04-09 10:18:23 -0600861 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100862 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600863 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600864 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600865 else {
866 unsigned int cpu;
867
Jens Axboe506e9312014-05-07 10:26:44 -0600868 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600869 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600870 }
Jens Axboe320ae512013-10-24 09:20:05 +0100871}
872
873void blk_mq_run_queues(struct request_queue *q, bool async)
874{
875 struct blk_mq_hw_ctx *hctx;
876 int i;
877
878 queue_for_each_hw_ctx(q, hctx, i) {
879 if ((!blk_mq_hctx_has_pending(hctx) &&
880 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600881 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100882 continue;
883
Jens Axboee4043dc2014-04-09 10:18:23 -0600884 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100885 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600886 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100887 }
888}
889EXPORT_SYMBOL(blk_mq_run_queues);
890
891void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
892{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600893 cancel_delayed_work(&hctx->run_work);
894 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100895 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
896}
897EXPORT_SYMBOL(blk_mq_stop_hw_queue);
898
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100899void blk_mq_stop_hw_queues(struct request_queue *q)
900{
901 struct blk_mq_hw_ctx *hctx;
902 int i;
903
904 queue_for_each_hw_ctx(q, hctx, i)
905 blk_mq_stop_hw_queue(hctx);
906}
907EXPORT_SYMBOL(blk_mq_stop_hw_queues);
908
Jens Axboe320ae512013-10-24 09:20:05 +0100909void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
910{
911 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600912
913 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100914 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600915 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100916}
917EXPORT_SYMBOL(blk_mq_start_hw_queue);
918
Christoph Hellwig2f268552014-04-16 09:44:56 +0200919void blk_mq_start_hw_queues(struct request_queue *q)
920{
921 struct blk_mq_hw_ctx *hctx;
922 int i;
923
924 queue_for_each_hw_ctx(q, hctx, i)
925 blk_mq_start_hw_queue(hctx);
926}
927EXPORT_SYMBOL(blk_mq_start_hw_queues);
928
929
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200930void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100931{
932 struct blk_mq_hw_ctx *hctx;
933 int i;
934
935 queue_for_each_hw_ctx(q, hctx, i) {
936 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
937 continue;
938
939 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600940 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200941 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600942 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100943 }
944}
945EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
946
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600947static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100948{
949 struct blk_mq_hw_ctx *hctx;
950
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600951 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600952
Jens Axboe320ae512013-10-24 09:20:05 +0100953 __blk_mq_run_hw_queue(hctx);
954}
955
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600956static void blk_mq_delay_work_fn(struct work_struct *work)
957{
958 struct blk_mq_hw_ctx *hctx;
959
960 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
961
962 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
963 __blk_mq_run_hw_queue(hctx);
964}
965
966void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
967{
968 unsigned long tmo = msecs_to_jiffies(msecs);
969
970 if (hctx->queue->nr_hw_queues == 1)
971 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
972 else {
973 unsigned int cpu;
974
Jens Axboe506e9312014-05-07 10:26:44 -0600975 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600976 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
977 }
978}
979EXPORT_SYMBOL(blk_mq_delay_queue);
980
Jens Axboe320ae512013-10-24 09:20:05 +0100981static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800982 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100983{
984 struct blk_mq_ctx *ctx = rq->mq_ctx;
985
Jens Axboe01b983c2013-11-19 18:59:10 -0700986 trace_block_rq_insert(hctx->queue, rq);
987
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800988 if (at_head)
989 list_add(&rq->queuelist, &ctx->rq_list);
990 else
991 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600992
Jens Axboe320ae512013-10-24 09:20:05 +0100993 blk_mq_hctx_mark_pending(hctx, ctx);
994
995 /*
996 * We do this early, to ensure we are on the right CPU.
997 */
Jens Axboe87ee7b12014-04-24 08:51:47 -0600998 blk_add_timer(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100999}
1000
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001001void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
1002 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001003{
1004 struct request_queue *q = rq->q;
1005 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001006 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001007
1008 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001009 if (!cpu_online(ctx->cpu))
1010 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001011
Jens Axboe320ae512013-10-24 09:20:05 +01001012 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1013
Christoph Hellwigeeabc852014-03-21 08:57:37 -06001014 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
1015 !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
1016 blk_insert_flush(rq);
1017 } else {
1018 spin_lock(&ctx->lock);
1019 __blk_mq_insert_request(hctx, rq, at_head);
1020 spin_unlock(&ctx->lock);
1021 }
Jens Axboe320ae512013-10-24 09:20:05 +01001022
Jens Axboe320ae512013-10-24 09:20:05 +01001023 if (run_queue)
1024 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -06001025
1026 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001027}
1028
1029static void blk_mq_insert_requests(struct request_queue *q,
1030 struct blk_mq_ctx *ctx,
1031 struct list_head *list,
1032 int depth,
1033 bool from_schedule)
1034
1035{
1036 struct blk_mq_hw_ctx *hctx;
1037 struct blk_mq_ctx *current_ctx;
1038
1039 trace_block_unplug(q, depth, !from_schedule);
1040
1041 current_ctx = blk_mq_get_ctx(q);
1042
1043 if (!cpu_online(ctx->cpu))
1044 ctx = current_ctx;
1045 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1046
1047 /*
1048 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1049 * offline now
1050 */
1051 spin_lock(&ctx->lock);
1052 while (!list_empty(list)) {
1053 struct request *rq;
1054
1055 rq = list_first_entry(list, struct request, queuelist);
1056 list_del_init(&rq->queuelist);
1057 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001058 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001059 }
1060 spin_unlock(&ctx->lock);
1061
Jens Axboe320ae512013-10-24 09:20:05 +01001062 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001063 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001064}
1065
1066static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1067{
1068 struct request *rqa = container_of(a, struct request, queuelist);
1069 struct request *rqb = container_of(b, struct request, queuelist);
1070
1071 return !(rqa->mq_ctx < rqb->mq_ctx ||
1072 (rqa->mq_ctx == rqb->mq_ctx &&
1073 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1074}
1075
1076void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1077{
1078 struct blk_mq_ctx *this_ctx;
1079 struct request_queue *this_q;
1080 struct request *rq;
1081 LIST_HEAD(list);
1082 LIST_HEAD(ctx_list);
1083 unsigned int depth;
1084
1085 list_splice_init(&plug->mq_list, &list);
1086
1087 list_sort(NULL, &list, plug_ctx_cmp);
1088
1089 this_q = NULL;
1090 this_ctx = NULL;
1091 depth = 0;
1092
1093 while (!list_empty(&list)) {
1094 rq = list_entry_rq(list.next);
1095 list_del_init(&rq->queuelist);
1096 BUG_ON(!rq->q);
1097 if (rq->mq_ctx != this_ctx) {
1098 if (this_ctx) {
1099 blk_mq_insert_requests(this_q, this_ctx,
1100 &ctx_list, depth,
1101 from_schedule);
1102 }
1103
1104 this_ctx = rq->mq_ctx;
1105 this_q = rq->q;
1106 depth = 0;
1107 }
1108
1109 depth++;
1110 list_add_tail(&rq->queuelist, &ctx_list);
1111 }
1112
1113 /*
1114 * If 'this_ctx' is set, we know we have entries to complete
1115 * on 'ctx_list'. Do those.
1116 */
1117 if (this_ctx) {
1118 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1119 from_schedule);
1120 }
1121}
1122
1123static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1124{
1125 init_request_from_bio(rq, bio);
1126 blk_account_io_start(rq, 1);
1127}
1128
Jens Axboe07068d52014-05-22 10:40:51 -06001129static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1130 struct blk_mq_ctx *ctx,
1131 struct request *rq, struct bio *bio)
1132{
1133 struct request_queue *q = hctx->queue;
1134
1135 if (!(hctx->flags & BLK_MQ_F_SHOULD_MERGE)) {
1136 blk_mq_bio_to_request(rq, bio);
1137 spin_lock(&ctx->lock);
1138insert_rq:
1139 __blk_mq_insert_request(hctx, rq, false);
1140 spin_unlock(&ctx->lock);
1141 return false;
1142 } else {
1143 spin_lock(&ctx->lock);
1144 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1145 blk_mq_bio_to_request(rq, bio);
1146 goto insert_rq;
1147 }
1148
1149 spin_unlock(&ctx->lock);
1150 __blk_mq_free_request(hctx, ctx, rq);
1151 return true;
1152 }
1153}
1154
1155struct blk_map_ctx {
1156 struct blk_mq_hw_ctx *hctx;
1157 struct blk_mq_ctx *ctx;
1158};
1159
1160static struct request *blk_mq_map_request(struct request_queue *q,
1161 struct bio *bio,
1162 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001163{
1164 struct blk_mq_hw_ctx *hctx;
1165 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001166 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001167 int rw = bio_data_dir(bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001168
Jens Axboe07068d52014-05-22 10:40:51 -06001169 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001170 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001171 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001172 }
1173
1174 ctx = blk_mq_get_ctx(q);
1175 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1176
Jens Axboe07068d52014-05-22 10:40:51 -06001177 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001178 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001179
Jens Axboe320ae512013-10-24 09:20:05 +01001180 trace_block_getrq(q, bio, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001181 rq = __blk_mq_alloc_request(q, hctx, ctx, rw, GFP_ATOMIC, false);
1182 if (unlikely(!rq)) {
Jens Axboe320ae512013-10-24 09:20:05 +01001183 blk_mq_put_ctx(ctx);
1184 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig18741982014-02-10 09:29:00 -07001185 rq = blk_mq_alloc_request_pinned(q, rw, __GFP_WAIT|GFP_ATOMIC,
1186 false);
Jens Axboe320ae512013-10-24 09:20:05 +01001187 ctx = rq->mq_ctx;
1188 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1189 }
1190
1191 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001192 data->hctx = hctx;
1193 data->ctx = ctx;
1194 return rq;
1195}
1196
1197/*
1198 * Multiple hardware queue variant. This will not use per-process plugs,
1199 * but will attempt to bypass the hctx queueing if we can go straight to
1200 * hardware for SYNC IO.
1201 */
1202static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1203{
1204 const int is_sync = rw_is_sync(bio->bi_rw);
1205 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1206 struct blk_map_ctx data;
1207 struct request *rq;
1208
1209 blk_queue_bounce(q, &bio);
1210
1211 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1212 bio_endio(bio, -EIO);
1213 return;
1214 }
1215
1216 rq = blk_mq_map_request(q, bio, &data);
1217 if (unlikely(!rq))
1218 return;
1219
1220 if (unlikely(is_flush_fua)) {
1221 blk_mq_bio_to_request(rq, bio);
1222 blk_insert_flush(rq);
1223 goto run_queue;
1224 }
1225
1226 if (is_sync) {
1227 int ret;
1228
1229 blk_mq_bio_to_request(rq, bio);
1230 blk_mq_start_request(rq, true);
1231
1232 /*
1233 * For OK queue, we are done. For error, kill it. Any other
1234 * error (busy), just add it to our list as we previously
1235 * would have done
1236 */
1237 ret = q->mq_ops->queue_rq(data.hctx, rq);
1238 if (ret == BLK_MQ_RQ_QUEUE_OK)
1239 goto done;
1240 else {
1241 __blk_mq_requeue_request(rq);
1242
1243 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1244 rq->errors = -EIO;
1245 blk_mq_end_io(rq, rq->errors);
1246 goto done;
1247 }
1248 }
1249 }
1250
1251 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1252 /*
1253 * For a SYNC request, send it to the hardware immediately. For
1254 * an ASYNC request, just ensure that we run it later on. The
1255 * latter allows for merging opportunities and more efficient
1256 * dispatching.
1257 */
1258run_queue:
1259 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1260 }
1261done:
1262 blk_mq_put_ctx(data.ctx);
1263}
1264
1265/*
1266 * Single hardware queue variant. This will attempt to use any per-process
1267 * plug for merging and IO deferral.
1268 */
1269static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1270{
1271 const int is_sync = rw_is_sync(bio->bi_rw);
1272 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1273 unsigned int use_plug, request_count = 0;
1274 struct blk_map_ctx data;
1275 struct request *rq;
1276
1277 /*
1278 * If we have multiple hardware queues, just go directly to
1279 * one of those for sync IO.
1280 */
1281 use_plug = !is_flush_fua && !is_sync;
1282
1283 blk_queue_bounce(q, &bio);
1284
1285 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1286 bio_endio(bio, -EIO);
1287 return;
1288 }
1289
1290 if (use_plug && !blk_queue_nomerges(q) &&
1291 blk_attempt_plug_merge(q, bio, &request_count))
1292 return;
1293
1294 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe320ae512013-10-24 09:20:05 +01001295
1296 if (unlikely(is_flush_fua)) {
1297 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001298 blk_insert_flush(rq);
1299 goto run_queue;
1300 }
1301
1302 /*
1303 * A task plug currently exists. Since this is completely lockless,
1304 * utilize that to temporarily store requests until the task is
1305 * either done or scheduled away.
1306 */
1307 if (use_plug) {
1308 struct blk_plug *plug = current->plug;
1309
1310 if (plug) {
1311 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001312 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001313 trace_block_plug(q);
1314 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1315 blk_flush_plug_list(plug, false);
1316 trace_block_plug(q);
1317 }
1318 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001319 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001320 return;
1321 }
1322 }
1323
Jens Axboe07068d52014-05-22 10:40:51 -06001324 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1325 /*
1326 * For a SYNC request, send it to the hardware immediately. For
1327 * an ASYNC request, just ensure that we run it later on. The
1328 * latter allows for merging opportunities and more efficient
1329 * dispatching.
1330 */
1331run_queue:
1332 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001333 }
1334
Jens Axboe07068d52014-05-22 10:40:51 -06001335 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001336}
1337
1338/*
1339 * Default mapping to a software queue, since we use one per CPU.
1340 */
1341struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1342{
1343 return q->queue_hw_ctx[q->mq_map[cpu]];
1344}
1345EXPORT_SYMBOL(blk_mq_map_queue);
1346
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001347struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *set,
Jens Axboef14bbe72014-05-27 12:06:53 -06001348 unsigned int hctx_index,
1349 int node)
Jens Axboe320ae512013-10-24 09:20:05 +01001350{
Jens Axboef14bbe72014-05-27 12:06:53 -06001351 return kzalloc_node(sizeof(struct blk_mq_hw_ctx), GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001352}
1353EXPORT_SYMBOL(blk_mq_alloc_single_hw_queue);
1354
1355void blk_mq_free_single_hw_queue(struct blk_mq_hw_ctx *hctx,
1356 unsigned int hctx_index)
1357{
1358 kfree(hctx);
1359}
1360EXPORT_SYMBOL(blk_mq_free_single_hw_queue);
1361
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001362static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1363 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001364{
1365 struct page *page;
1366
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001367 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001368 int i;
1369
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001370 for (i = 0; i < tags->nr_tags; i++) {
1371 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001372 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001373 set->ops->exit_request(set->driver_data, tags->rqs[i],
1374 hctx_idx, i);
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001375 }
1376 }
1377
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001378 while (!list_empty(&tags->page_list)) {
1379 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001380 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001381 __free_pages(page, page->private);
1382 }
1383
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001384 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001385
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001386 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001387}
1388
1389static size_t order_to_size(unsigned int order)
1390{
Ming Lei4ca08502014-04-19 18:00:18 +08001391 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001392}
1393
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001394static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1395 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001396{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001397 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001398 unsigned int i, j, entries_per_page, max_order = 4;
1399 size_t rq_size, left;
1400
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001401 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1402 set->numa_node);
1403 if (!tags)
1404 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001405
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 INIT_LIST_HEAD(&tags->page_list);
1407
1408 tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1409 GFP_KERNEL, set->numa_node);
1410 if (!tags->rqs) {
1411 blk_mq_free_tags(tags);
1412 return NULL;
1413 }
Jens Axboe320ae512013-10-24 09:20:05 +01001414
1415 /*
1416 * rq_size is the size of the request plus driver payload, rounded
1417 * to the cacheline size
1418 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001419 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001420 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001421 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001422
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001423 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001424 int this_order = max_order;
1425 struct page *page;
1426 int to_do;
1427 void *p;
1428
1429 while (left < order_to_size(this_order - 1) && this_order)
1430 this_order--;
1431
1432 do {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001433 page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1434 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001435 if (page)
1436 break;
1437 if (!this_order--)
1438 break;
1439 if (order_to_size(this_order) < rq_size)
1440 break;
1441 } while (1);
1442
1443 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001444 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001445
1446 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001447 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001448
1449 p = page_address(page);
1450 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001451 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001452 left -= to_do * rq_size;
1453 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001454 tags->rqs[i] = p;
1455 if (set->ops->init_request) {
1456 if (set->ops->init_request(set->driver_data,
1457 tags->rqs[i], hctx_idx, i,
1458 set->numa_node))
1459 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001460 }
1461
Jens Axboe320ae512013-10-24 09:20:05 +01001462 p += rq_size;
1463 i++;
1464 }
1465 }
1466
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001467 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001468
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001469fail:
1470 pr_warn("%s: failed to allocate requests\n", __func__);
1471 blk_mq_free_rq_map(set, tags, hctx_idx);
1472 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001473}
1474
Jens Axboe1429d7c2014-05-19 09:23:55 -06001475static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1476{
1477 kfree(bitmap->map);
1478}
1479
1480static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1481{
1482 unsigned int bpw = 8, total, num_maps, i;
1483
1484 bitmap->bits_per_word = bpw;
1485
1486 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1487 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1488 GFP_KERNEL, node);
1489 if (!bitmap->map)
1490 return -ENOMEM;
1491
1492 bitmap->map_size = num_maps;
1493
1494 total = nr_cpu_ids;
1495 for (i = 0; i < num_maps; i++) {
1496 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1497 total -= bitmap->map[i].depth;
1498 }
1499
1500 return 0;
1501}
1502
Jens Axboe484b4062014-05-21 14:01:15 -06001503static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1504{
1505 struct request_queue *q = hctx->queue;
1506 struct blk_mq_ctx *ctx;
1507 LIST_HEAD(tmp);
1508
1509 /*
1510 * Move ctx entries to new CPU, if this one is going away.
1511 */
1512 ctx = __blk_mq_get_ctx(q, cpu);
1513
1514 spin_lock(&ctx->lock);
1515 if (!list_empty(&ctx->rq_list)) {
1516 list_splice_init(&ctx->rq_list, &tmp);
1517 blk_mq_hctx_clear_pending(hctx, ctx);
1518 }
1519 spin_unlock(&ctx->lock);
1520
1521 if (list_empty(&tmp))
1522 return NOTIFY_OK;
1523
1524 ctx = blk_mq_get_ctx(q);
1525 spin_lock(&ctx->lock);
1526
1527 while (!list_empty(&tmp)) {
1528 struct request *rq;
1529
1530 rq = list_first_entry(&tmp, struct request, queuelist);
1531 rq->mq_ctx = ctx;
1532 list_move_tail(&rq->queuelist, &ctx->rq_list);
1533 }
1534
1535 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1536 blk_mq_hctx_mark_pending(hctx, ctx);
1537
1538 spin_unlock(&ctx->lock);
1539
1540 blk_mq_run_hw_queue(hctx, true);
1541 blk_mq_put_ctx(ctx);
1542 return NOTIFY_OK;
1543}
1544
1545static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1546{
1547 struct request_queue *q = hctx->queue;
1548 struct blk_mq_tag_set *set = q->tag_set;
1549
1550 if (set->tags[hctx->queue_num])
1551 return NOTIFY_OK;
1552
1553 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1554 if (!set->tags[hctx->queue_num])
1555 return NOTIFY_STOP;
1556
1557 hctx->tags = set->tags[hctx->queue_num];
1558 return NOTIFY_OK;
1559}
1560
1561static int blk_mq_hctx_notify(void *data, unsigned long action,
1562 unsigned int cpu)
1563{
1564 struct blk_mq_hw_ctx *hctx = data;
1565
1566 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1567 return blk_mq_hctx_cpu_offline(hctx, cpu);
1568 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1569 return blk_mq_hctx_cpu_online(hctx, cpu);
1570
1571 return NOTIFY_OK;
1572}
1573
Ming Lei624dbe42014-05-27 23:35:13 +08001574static void blk_mq_exit_hw_queues(struct request_queue *q,
1575 struct blk_mq_tag_set *set, int nr_queue)
1576{
1577 struct blk_mq_hw_ctx *hctx;
1578 unsigned int i;
1579
1580 queue_for_each_hw_ctx(q, hctx, i) {
1581 if (i == nr_queue)
1582 break;
1583
1584 if (set->ops->exit_hctx)
1585 set->ops->exit_hctx(hctx, i);
1586
1587 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1588 kfree(hctx->ctxs);
1589 blk_mq_free_bitmap(&hctx->ctx_map);
1590 }
1591
1592}
1593
1594static void blk_mq_free_hw_queues(struct request_queue *q,
1595 struct blk_mq_tag_set *set)
1596{
1597 struct blk_mq_hw_ctx *hctx;
1598 unsigned int i;
1599
1600 queue_for_each_hw_ctx(q, hctx, i) {
1601 free_cpumask_var(hctx->cpumask);
1602 set->ops->free_hctx(hctx, i);
1603 }
1604}
1605
Jens Axboe320ae512013-10-24 09:20:05 +01001606static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001607 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001608{
1609 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001610 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001611
1612 /*
1613 * Initialize hardware queues
1614 */
1615 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001616 int node;
1617
1618 node = hctx->numa_node;
1619 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001620 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001621
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001622 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1623 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001624 spin_lock_init(&hctx->lock);
1625 INIT_LIST_HEAD(&hctx->dispatch);
1626 hctx->queue = q;
1627 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001628 hctx->flags = set->flags;
1629 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001630
1631 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1632 blk_mq_hctx_notify, hctx);
1633 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1634
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001635 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001636
1637 /*
1638 * Allocate space for all possible cpus to avoid allocation in
1639 * runtime
1640 */
1641 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1642 GFP_KERNEL, node);
1643 if (!hctx->ctxs)
1644 break;
1645
Jens Axboe1429d7c2014-05-19 09:23:55 -06001646 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001647 break;
1648
Jens Axboe320ae512013-10-24 09:20:05 +01001649 hctx->nr_ctx = 0;
1650
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001651 if (set->ops->init_hctx &&
1652 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001653 break;
1654 }
1655
1656 if (i == q->nr_hw_queues)
1657 return 0;
1658
1659 /*
1660 * Init failed
1661 */
Ming Lei624dbe42014-05-27 23:35:13 +08001662 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001663
1664 return 1;
1665}
1666
1667static void blk_mq_init_cpu_queues(struct request_queue *q,
1668 unsigned int nr_hw_queues)
1669{
1670 unsigned int i;
1671
1672 for_each_possible_cpu(i) {
1673 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1674 struct blk_mq_hw_ctx *hctx;
1675
1676 memset(__ctx, 0, sizeof(*__ctx));
1677 __ctx->cpu = i;
1678 spin_lock_init(&__ctx->lock);
1679 INIT_LIST_HEAD(&__ctx->rq_list);
1680 __ctx->queue = q;
1681
1682 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001683 if (!cpu_online(i))
1684 continue;
1685
Jens Axboee4043dc2014-04-09 10:18:23 -06001686 hctx = q->mq_ops->map_queue(q, i);
1687 cpumask_set_cpu(i, hctx->cpumask);
1688 hctx->nr_ctx++;
1689
Jens Axboe320ae512013-10-24 09:20:05 +01001690 /*
1691 * Set local node, IFF we have more than one hw queue. If
1692 * not, we remain on the home node of the device
1693 */
1694 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1695 hctx->numa_node = cpu_to_node(i);
1696 }
1697}
1698
1699static void blk_mq_map_swqueue(struct request_queue *q)
1700{
1701 unsigned int i;
1702 struct blk_mq_hw_ctx *hctx;
1703 struct blk_mq_ctx *ctx;
1704
1705 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001706 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001707 hctx->nr_ctx = 0;
1708 }
1709
1710 /*
1711 * Map software to hardware queues
1712 */
1713 queue_for_each_ctx(q, ctx, i) {
1714 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001715 if (!cpu_online(i))
1716 continue;
1717
Jens Axboe320ae512013-10-24 09:20:05 +01001718 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001719 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001720 ctx->index_hw = hctx->nr_ctx;
1721 hctx->ctxs[hctx->nr_ctx++] = ctx;
1722 }
Jens Axboe506e9312014-05-07 10:26:44 -06001723
1724 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001725 /*
1726 * If not software queues are mapped to this hardware queue,
1727 * disable it and free the request entries
1728 */
1729 if (!hctx->nr_ctx) {
1730 struct blk_mq_tag_set *set = q->tag_set;
1731
1732 if (set->tags[i]) {
1733 blk_mq_free_rq_map(set, set->tags[i], i);
1734 set->tags[i] = NULL;
1735 hctx->tags = NULL;
1736 }
1737 continue;
1738 }
1739
1740 /*
1741 * Initialize batch roundrobin counts
1742 */
Jens Axboe506e9312014-05-07 10:26:44 -06001743 hctx->next_cpu = cpumask_first(hctx->cpumask);
1744 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1745 }
Jens Axboe320ae512013-10-24 09:20:05 +01001746}
1747
Jens Axboe0d2602c2014-05-13 15:10:52 -06001748static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1749{
1750 struct blk_mq_hw_ctx *hctx;
1751 struct request_queue *q;
1752 bool shared;
1753 int i;
1754
1755 if (set->tag_list.next == set->tag_list.prev)
1756 shared = false;
1757 else
1758 shared = true;
1759
1760 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1761 blk_mq_freeze_queue(q);
1762
1763 queue_for_each_hw_ctx(q, hctx, i) {
1764 if (shared)
1765 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1766 else
1767 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1768 }
1769 blk_mq_unfreeze_queue(q);
1770 }
1771}
1772
1773static void blk_mq_del_queue_tag_set(struct request_queue *q)
1774{
1775 struct blk_mq_tag_set *set = q->tag_set;
1776
1777 blk_mq_freeze_queue(q);
1778
1779 mutex_lock(&set->tag_list_lock);
1780 list_del_init(&q->tag_set_list);
1781 blk_mq_update_tag_set_depth(set);
1782 mutex_unlock(&set->tag_list_lock);
1783
1784 blk_mq_unfreeze_queue(q);
1785}
1786
1787static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1788 struct request_queue *q)
1789{
1790 q->tag_set = set;
1791
1792 mutex_lock(&set->tag_list_lock);
1793 list_add_tail(&q->tag_set_list, &set->tag_list);
1794 blk_mq_update_tag_set_depth(set);
1795 mutex_unlock(&set->tag_list_lock);
1796}
1797
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001798struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001799{
1800 struct blk_mq_hw_ctx **hctxs;
1801 struct blk_mq_ctx *ctx;
1802 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001803 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001804 int i;
1805
Jens Axboe320ae512013-10-24 09:20:05 +01001806 ctx = alloc_percpu(struct blk_mq_ctx);
1807 if (!ctx)
1808 return ERR_PTR(-ENOMEM);
1809
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001810 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1811 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001812
1813 if (!hctxs)
1814 goto err_percpu;
1815
Jens Axboef14bbe72014-05-27 12:06:53 -06001816 map = blk_mq_make_queue_map(set);
1817 if (!map)
1818 goto err_map;
1819
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001820 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001821 int node = blk_mq_hw_queue_to_node(map, i);
1822
1823 hctxs[i] = set->ops->alloc_hctx(set, i, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001824 if (!hctxs[i])
1825 goto err_hctxs;
1826
Jens Axboee4043dc2014-04-09 10:18:23 -06001827 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1828 goto err_hctxs;
1829
Jens Axboe0d2602c2014-05-13 15:10:52 -06001830 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001831 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001832 hctxs[i]->queue_num = i;
1833 }
1834
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001835 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001836 if (!q)
1837 goto err_hctxs;
1838
Ming Lei3d2936f2014-05-27 23:35:14 +08001839 if (percpu_counter_init(&q->mq_usage_counter, 0))
1840 goto err_map;
1841
Jens Axboe320ae512013-10-24 09:20:05 +01001842 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1843 blk_queue_rq_timeout(q, 30000);
1844
1845 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001846 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001847 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001848
1849 q->queue_ctx = ctx;
1850 q->queue_hw_ctx = hctxs;
1851
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001852 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001853 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001854
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001855 q->sg_reserved_size = INT_MAX;
1856
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001857 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1858 INIT_LIST_HEAD(&q->requeue_list);
1859 spin_lock_init(&q->requeue_lock);
1860
Jens Axboe07068d52014-05-22 10:40:51 -06001861 if (q->nr_hw_queues > 1)
1862 blk_queue_make_request(q, blk_mq_make_request);
1863 else
1864 blk_queue_make_request(q, blk_sq_make_request);
1865
Jens Axboe87ee7b12014-04-24 08:51:47 -06001866 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001867 if (set->timeout)
1868 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001869
Jens Axboeeba71762014-05-20 15:17:27 -06001870 /*
1871 * Do this after blk_queue_make_request() overrides it...
1872 */
1873 q->nr_requests = set->queue_depth;
1874
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001875 if (set->ops->complete)
1876 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001877
Jens Axboe320ae512013-10-24 09:20:05 +01001878 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001879 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001880
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001881 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1882 set->cmd_size, cache_line_size()),
1883 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001884 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001885 goto err_hw;
1886
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001887 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001888 goto err_flush_rq;
1889
Jens Axboe320ae512013-10-24 09:20:05 +01001890 mutex_lock(&all_q_mutex);
1891 list_add_tail(&q->all_q_node, &all_q_list);
1892 mutex_unlock(&all_q_mutex);
1893
Jens Axboe0d2602c2014-05-13 15:10:52 -06001894 blk_mq_add_queue_tag_set(set, q);
1895
Jens Axboe484b4062014-05-21 14:01:15 -06001896 blk_mq_map_swqueue(q);
1897
Jens Axboe320ae512013-10-24 09:20:05 +01001898 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001899
1900err_flush_rq:
1901 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001902err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001903 blk_cleanup_queue(q);
1904err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001905 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001906 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001907 if (!hctxs[i])
1908 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001909 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001910 set->ops->free_hctx(hctxs[i], i);
Jens Axboe320ae512013-10-24 09:20:05 +01001911 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001912err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001913 kfree(hctxs);
1914err_percpu:
1915 free_percpu(ctx);
1916 return ERR_PTR(-ENOMEM);
1917}
1918EXPORT_SYMBOL(blk_mq_init_queue);
1919
1920void blk_mq_free_queue(struct request_queue *q)
1921{
Ming Lei624dbe42014-05-27 23:35:13 +08001922 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001923
Jens Axboe0d2602c2014-05-13 15:10:52 -06001924 blk_mq_del_queue_tag_set(q);
1925
Ming Lei624dbe42014-05-27 23:35:13 +08001926 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1927 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001928
Ming Lei3d2936f2014-05-27 23:35:14 +08001929 percpu_counter_destroy(&q->mq_usage_counter);
1930
Jens Axboe320ae512013-10-24 09:20:05 +01001931 free_percpu(q->queue_ctx);
1932 kfree(q->queue_hw_ctx);
1933 kfree(q->mq_map);
1934
1935 q->queue_ctx = NULL;
1936 q->queue_hw_ctx = NULL;
1937 q->mq_map = NULL;
1938
1939 mutex_lock(&all_q_mutex);
1940 list_del_init(&q->all_q_node);
1941 mutex_unlock(&all_q_mutex);
1942}
Jens Axboe320ae512013-10-24 09:20:05 +01001943
1944/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001945static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001946{
1947 blk_mq_freeze_queue(q);
1948
1949 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1950
1951 /*
1952 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1953 * we should change hctx numa_node according to new topology (this
1954 * involves free and re-allocate memory, worthy doing?)
1955 */
1956
1957 blk_mq_map_swqueue(q);
1958
1959 blk_mq_unfreeze_queue(q);
1960}
1961
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001962static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1963 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001964{
1965 struct request_queue *q;
1966
1967 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001968 * Before new mappings are established, hotadded cpu might already
1969 * start handling requests. This doesn't break anything as we map
1970 * offline CPUs to first hardware queue. We will re-init the queue
1971 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001972 */
1973 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1974 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1975 return NOTIFY_OK;
1976
1977 mutex_lock(&all_q_mutex);
1978 list_for_each_entry(q, &all_q_list, all_q_node)
1979 blk_mq_queue_reinit(q);
1980 mutex_unlock(&all_q_mutex);
1981 return NOTIFY_OK;
1982}
1983
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001984int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1985{
1986 int i;
1987
1988 if (!set->nr_hw_queues)
1989 return -EINVAL;
1990 if (!set->queue_depth || set->queue_depth > BLK_MQ_MAX_DEPTH)
1991 return -EINVAL;
1992 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1993 return -EINVAL;
1994
1995 if (!set->nr_hw_queues ||
1996 !set->ops->queue_rq || !set->ops->map_queue ||
1997 !set->ops->alloc_hctx || !set->ops->free_hctx)
1998 return -EINVAL;
1999
2000
Ming Lei48479002014-04-19 18:00:17 +08002001 set->tags = kmalloc_node(set->nr_hw_queues *
2002 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002003 GFP_KERNEL, set->numa_node);
2004 if (!set->tags)
2005 goto out;
2006
2007 for (i = 0; i < set->nr_hw_queues; i++) {
2008 set->tags[i] = blk_mq_init_rq_map(set, i);
2009 if (!set->tags[i])
2010 goto out_unwind;
2011 }
2012
Jens Axboe0d2602c2014-05-13 15:10:52 -06002013 mutex_init(&set->tag_list_lock);
2014 INIT_LIST_HEAD(&set->tag_list);
2015
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002016 return 0;
2017
2018out_unwind:
2019 while (--i >= 0)
2020 blk_mq_free_rq_map(set, set->tags[i], i);
2021out:
2022 return -ENOMEM;
2023}
2024EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2025
2026void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2027{
2028 int i;
2029
Jens Axboe484b4062014-05-21 14:01:15 -06002030 for (i = 0; i < set->nr_hw_queues; i++) {
2031 if (set->tags[i])
2032 blk_mq_free_rq_map(set, set->tags[i], i);
2033 }
2034
Ming Lei981bd182014-04-24 00:07:34 +08002035 kfree(set->tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002036}
2037EXPORT_SYMBOL(blk_mq_free_tag_set);
2038
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002039int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2040{
2041 struct blk_mq_tag_set *set = q->tag_set;
2042 struct blk_mq_hw_ctx *hctx;
2043 int i, ret;
2044
2045 if (!set || nr > set->queue_depth)
2046 return -EINVAL;
2047
2048 ret = 0;
2049 queue_for_each_hw_ctx(q, hctx, i) {
2050 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2051 if (ret)
2052 break;
2053 }
2054
2055 if (!ret)
2056 q->nr_requests = nr;
2057
2058 return ret;
2059}
2060
Jens Axboe676141e2014-03-20 13:29:18 -06002061void blk_mq_disable_hotplug(void)
2062{
2063 mutex_lock(&all_q_mutex);
2064}
2065
2066void blk_mq_enable_hotplug(void)
2067{
2068 mutex_unlock(&all_q_mutex);
2069}
2070
Jens Axboe320ae512013-10-24 09:20:05 +01002071static int __init blk_mq_init(void)
2072{
Jens Axboe320ae512013-10-24 09:20:05 +01002073 blk_mq_cpu_init();
2074
2075 /* Must be called after percpu_counter_hotcpu_callback() */
2076 hotcpu_notifier(blk_mq_queue_reinit_notify, -10);
2077
2078 return 0;
2079}
2080subsys_initcall(blk_mq_init);