]>
Commit | Line | Data |
---|---|---|
75bb4625 JA |
1 | /* |
2 | * Block multiqueue core code | |
3 | * | |
4 | * Copyright (C) 2013-2014 Jens Axboe | |
5 | * Copyright (C) 2013-2014 Christoph Hellwig | |
6 | */ | |
320ae51f JA |
7 | #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> | |
f75782e4 | 12 | #include <linux/kmemleak.h> |
320ae51f JA |
13 | #include <linux/mm.h> |
14 | #include <linux/init.h> | |
15 | #include <linux/slab.h> | |
16 | #include <linux/workqueue.h> | |
17 | #include <linux/smp.h> | |
18 | #include <linux/llist.h> | |
19 | #include <linux/list_sort.h> | |
20 | #include <linux/cpu.h> | |
21 | #include <linux/cache.h> | |
22 | #include <linux/sched/sysctl.h> | |
23 | #include <linux/delay.h> | |
aedcd72f | 24 | #include <linux/crash_dump.h> |
88c7b2b7 | 25 | #include <linux/prefetch.h> |
320ae51f JA |
26 | |
27 | #include <trace/events/block.h> | |
28 | ||
29 | #include <linux/blk-mq.h> | |
30 | #include "blk.h" | |
31 | #include "blk-mq.h" | |
32 | #include "blk-mq-tag.h" | |
33 | ||
34 | static DEFINE_MUTEX(all_q_mutex); | |
35 | static LIST_HEAD(all_q_list); | |
36 | ||
320ae51f JA |
37 | /* |
38 | * Check if any of the ctx's have pending work in this hardware queue | |
39 | */ | |
40 | static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx) | |
41 | { | |
88459642 | 42 | return sbitmap_any_bit_set(&hctx->ctx_map); |
1429d7c9 JA |
43 | } |
44 | ||
320ae51f JA |
45 | /* |
46 | * Mark this ctx as having pending work in this hardware queue | |
47 | */ | |
48 | static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx, | |
49 | struct blk_mq_ctx *ctx) | |
50 | { | |
88459642 OS |
51 | if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw)) |
52 | sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw); | |
1429d7c9 JA |
53 | } |
54 | ||
55 | static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx, | |
56 | struct blk_mq_ctx *ctx) | |
57 | { | |
88459642 | 58 | sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw); |
320ae51f JA |
59 | } |
60 | ||
b4c6a028 | 61 | void blk_mq_freeze_queue_start(struct request_queue *q) |
43a5e4e2 | 62 | { |
4ecd4fef | 63 | int freeze_depth; |
cddd5d17 | 64 | |
4ecd4fef CH |
65 | freeze_depth = atomic_inc_return(&q->mq_freeze_depth); |
66 | if (freeze_depth == 1) { | |
3ef28e83 | 67 | percpu_ref_kill(&q->q_usage_counter); |
b94ec296 | 68 | blk_mq_run_hw_queues(q, false); |
cddd5d17 | 69 | } |
f3af020b | 70 | } |
b4c6a028 | 71 | EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start); |
f3af020b TH |
72 | |
73 | static void blk_mq_freeze_queue_wait(struct request_queue *q) | |
74 | { | |
3ef28e83 | 75 | wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter)); |
43a5e4e2 ML |
76 | } |
77 | ||
f3af020b TH |
78 | /* |
79 | * Guarantee no request is in use, so we can change any data structure of | |
80 | * the queue afterward. | |
81 | */ | |
3ef28e83 | 82 | void blk_freeze_queue(struct request_queue *q) |
f3af020b | 83 | { |
3ef28e83 DW |
84 | /* |
85 | * In the !blk_mq case we are only calling this to kill the | |
86 | * q_usage_counter, otherwise this increases the freeze depth | |
87 | * and waits for it to return to zero. For this reason there is | |
88 | * no blk_unfreeze_queue(), and blk_freeze_queue() is not | |
89 | * exported to drivers as the only user for unfreeze is blk_mq. | |
90 | */ | |
f3af020b TH |
91 | blk_mq_freeze_queue_start(q); |
92 | blk_mq_freeze_queue_wait(q); | |
93 | } | |
3ef28e83 DW |
94 | |
95 | void blk_mq_freeze_queue(struct request_queue *q) | |
96 | { | |
97 | /* | |
98 | * ...just an alias to keep freeze and unfreeze actions balanced | |
99 | * in the blk_mq_* namespace | |
100 | */ | |
101 | blk_freeze_queue(q); | |
102 | } | |
c761d96b | 103 | EXPORT_SYMBOL_GPL(blk_mq_freeze_queue); |
f3af020b | 104 | |
b4c6a028 | 105 | void blk_mq_unfreeze_queue(struct request_queue *q) |
320ae51f | 106 | { |
4ecd4fef | 107 | int freeze_depth; |
320ae51f | 108 | |
4ecd4fef CH |
109 | freeze_depth = atomic_dec_return(&q->mq_freeze_depth); |
110 | WARN_ON_ONCE(freeze_depth < 0); | |
111 | if (!freeze_depth) { | |
3ef28e83 | 112 | percpu_ref_reinit(&q->q_usage_counter); |
320ae51f | 113 | wake_up_all(&q->mq_freeze_wq); |
add703fd | 114 | } |
320ae51f | 115 | } |
b4c6a028 | 116 | EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue); |
320ae51f | 117 | |
6a83e74d BVA |
118 | /** |
119 | * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished | |
120 | * @q: request queue. | |
121 | * | |
122 | * Note: this function does not prevent that the struct request end_io() | |
123 | * callback function is invoked. Additionally, it is not prevented that | |
124 | * new queue_rq() calls occur unless the queue has been stopped first. | |
125 | */ | |
126 | void blk_mq_quiesce_queue(struct request_queue *q) | |
127 | { | |
128 | struct blk_mq_hw_ctx *hctx; | |
129 | unsigned int i; | |
130 | bool rcu = false; | |
131 | ||
132 | blk_mq_stop_hw_queues(q); | |
133 | ||
134 | queue_for_each_hw_ctx(q, hctx, i) { | |
135 | if (hctx->flags & BLK_MQ_F_BLOCKING) | |
136 | synchronize_srcu(&hctx->queue_rq_srcu); | |
137 | else | |
138 | rcu = true; | |
139 | } | |
140 | if (rcu) | |
141 | synchronize_rcu(); | |
142 | } | |
143 | EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue); | |
144 | ||
aed3ea94 JA |
145 | void blk_mq_wake_waiters(struct request_queue *q) |
146 | { | |
147 | struct blk_mq_hw_ctx *hctx; | |
148 | unsigned int i; | |
149 | ||
150 | queue_for_each_hw_ctx(q, hctx, i) | |
151 | if (blk_mq_hw_queue_mapped(hctx)) | |
152 | blk_mq_tag_wakeup_all(hctx->tags, true); | |
3fd5940c KB |
153 | |
154 | /* | |
155 | * If we are called because the queue has now been marked as | |
156 | * dying, we need to ensure that processes currently waiting on | |
157 | * the queue are notified as well. | |
158 | */ | |
159 | wake_up_all(&q->mq_freeze_wq); | |
aed3ea94 JA |
160 | } |
161 | ||
320ae51f JA |
162 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx) |
163 | { | |
164 | return blk_mq_has_free_tags(hctx->tags); | |
165 | } | |
166 | EXPORT_SYMBOL(blk_mq_can_queue); | |
167 | ||
94eddfbe | 168 | static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx, |
ef295ecf | 169 | struct request *rq, unsigned int op) |
320ae51f | 170 | { |
af76e555 CH |
171 | INIT_LIST_HEAD(&rq->queuelist); |
172 | /* csd/requeue_work/fifo_time is initialized before use */ | |
173 | rq->q = q; | |
320ae51f | 174 | rq->mq_ctx = ctx; |
ef295ecf | 175 | rq->cmd_flags = op; |
e8064021 CH |
176 | if (blk_queue_io_stat(q)) |
177 | rq->rq_flags |= RQF_IO_STAT; | |
af76e555 CH |
178 | /* do not touch atomic flags, it needs atomic ops against the timer */ |
179 | rq->cpu = -1; | |
af76e555 CH |
180 | INIT_HLIST_NODE(&rq->hash); |
181 | RB_CLEAR_NODE(&rq->rb_node); | |
af76e555 CH |
182 | rq->rq_disk = NULL; |
183 | rq->part = NULL; | |
3ee32372 | 184 | rq->start_time = jiffies; |
af76e555 CH |
185 | #ifdef CONFIG_BLK_CGROUP |
186 | rq->rl = NULL; | |
0fec08b4 | 187 | set_start_time_ns(rq); |
af76e555 CH |
188 | rq->io_start_time_ns = 0; |
189 | #endif | |
190 | rq->nr_phys_segments = 0; | |
191 | #if defined(CONFIG_BLK_DEV_INTEGRITY) | |
192 | rq->nr_integrity_segments = 0; | |
193 | #endif | |
af76e555 CH |
194 | rq->special = NULL; |
195 | /* tag was already set */ | |
196 | rq->errors = 0; | |
af76e555 | 197 | |
6f4a1626 TB |
198 | rq->cmd = rq->__cmd; |
199 | ||
af76e555 CH |
200 | rq->extra_len = 0; |
201 | rq->sense_len = 0; | |
202 | rq->resid_len = 0; | |
203 | rq->sense = NULL; | |
204 | ||
af76e555 | 205 | INIT_LIST_HEAD(&rq->timeout_list); |
f6be4fb4 JA |
206 | rq->timeout = 0; |
207 | ||
af76e555 CH |
208 | rq->end_io = NULL; |
209 | rq->end_io_data = NULL; | |
210 | rq->next_rq = NULL; | |
211 | ||
ef295ecf | 212 | ctx->rq_dispatched[op_is_sync(op)]++; |
320ae51f JA |
213 | } |
214 | ||
5dee8577 | 215 | static struct request * |
ef295ecf | 216 | __blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op) |
5dee8577 CH |
217 | { |
218 | struct request *rq; | |
219 | unsigned int tag; | |
220 | ||
cb96a42c | 221 | tag = blk_mq_get_tag(data); |
5dee8577 | 222 | if (tag != BLK_MQ_TAG_FAIL) { |
cb96a42c | 223 | rq = data->hctx->tags->rqs[tag]; |
5dee8577 | 224 | |
cb96a42c | 225 | if (blk_mq_tag_busy(data->hctx)) { |
e8064021 | 226 | rq->rq_flags = RQF_MQ_INFLIGHT; |
cb96a42c | 227 | atomic_inc(&data->hctx->nr_active); |
5dee8577 CH |
228 | } |
229 | ||
230 | rq->tag = tag; | |
ef295ecf | 231 | blk_mq_rq_ctx_init(data->q, data->ctx, rq, op); |
5dee8577 CH |
232 | return rq; |
233 | } | |
234 | ||
235 | return NULL; | |
236 | } | |
237 | ||
6f3b0e8b CH |
238 | struct request *blk_mq_alloc_request(struct request_queue *q, int rw, |
239 | unsigned int flags) | |
320ae51f | 240 | { |
d852564f CH |
241 | struct blk_mq_ctx *ctx; |
242 | struct blk_mq_hw_ctx *hctx; | |
320ae51f | 243 | struct request *rq; |
cb96a42c | 244 | struct blk_mq_alloc_data alloc_data; |
a492f075 | 245 | int ret; |
320ae51f | 246 | |
6f3b0e8b | 247 | ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT); |
a492f075 JL |
248 | if (ret) |
249 | return ERR_PTR(ret); | |
320ae51f | 250 | |
d852564f | 251 | ctx = blk_mq_get_ctx(q); |
7d7e0f90 | 252 | hctx = blk_mq_map_queue(q, ctx->cpu); |
6f3b0e8b | 253 | blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx); |
ef295ecf | 254 | rq = __blk_mq_alloc_request(&alloc_data, rw); |
d852564f | 255 | blk_mq_put_ctx(ctx); |
841bac2c | 256 | |
c76541a9 | 257 | if (!rq) { |
3ef28e83 | 258 | blk_queue_exit(q); |
a492f075 | 259 | return ERR_PTR(-EWOULDBLOCK); |
c76541a9 | 260 | } |
0c4de0f3 CH |
261 | |
262 | rq->__data_len = 0; | |
263 | rq->__sector = (sector_t) -1; | |
264 | rq->bio = rq->biotail = NULL; | |
320ae51f JA |
265 | return rq; |
266 | } | |
4bb659b1 | 267 | EXPORT_SYMBOL(blk_mq_alloc_request); |
320ae51f | 268 | |
1f5bd336 ML |
269 | struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw, |
270 | unsigned int flags, unsigned int hctx_idx) | |
271 | { | |
272 | struct blk_mq_hw_ctx *hctx; | |
273 | struct blk_mq_ctx *ctx; | |
274 | struct request *rq; | |
275 | struct blk_mq_alloc_data alloc_data; | |
276 | int ret; | |
277 | ||
278 | /* | |
279 | * If the tag allocator sleeps we could get an allocation for a | |
280 | * different hardware context. No need to complicate the low level | |
281 | * allocator for this for the rare use case of a command tied to | |
282 | * a specific queue. | |
283 | */ | |
284 | if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT))) | |
285 | return ERR_PTR(-EINVAL); | |
286 | ||
287 | if (hctx_idx >= q->nr_hw_queues) | |
288 | return ERR_PTR(-EIO); | |
289 | ||
290 | ret = blk_queue_enter(q, true); | |
291 | if (ret) | |
292 | return ERR_PTR(ret); | |
293 | ||
c8712c6a CH |
294 | /* |
295 | * Check if the hardware context is actually mapped to anything. | |
296 | * If not tell the caller that it should skip this queue. | |
297 | */ | |
1f5bd336 | 298 | hctx = q->queue_hw_ctx[hctx_idx]; |
c8712c6a CH |
299 | if (!blk_mq_hw_queue_mapped(hctx)) { |
300 | ret = -EXDEV; | |
301 | goto out_queue_exit; | |
302 | } | |
1f5bd336 ML |
303 | ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask)); |
304 | ||
305 | blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx); | |
ef295ecf | 306 | rq = __blk_mq_alloc_request(&alloc_data, rw); |
1f5bd336 | 307 | if (!rq) { |
c8712c6a CH |
308 | ret = -EWOULDBLOCK; |
309 | goto out_queue_exit; | |
1f5bd336 ML |
310 | } |
311 | ||
312 | return rq; | |
c8712c6a CH |
313 | |
314 | out_queue_exit: | |
315 | blk_queue_exit(q); | |
316 | return ERR_PTR(ret); | |
1f5bd336 ML |
317 | } |
318 | EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx); | |
319 | ||
320ae51f JA |
320 | static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx, |
321 | struct blk_mq_ctx *ctx, struct request *rq) | |
322 | { | |
323 | const int tag = rq->tag; | |
324 | struct request_queue *q = rq->q; | |
325 | ||
e8064021 | 326 | if (rq->rq_flags & RQF_MQ_INFLIGHT) |
0d2602ca | 327 | atomic_dec(&hctx->nr_active); |
e8064021 | 328 | rq->rq_flags = 0; |
0d2602ca | 329 | |
af76e555 | 330 | clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags); |
40aabb67 | 331 | blk_mq_put_tag(hctx, ctx, tag); |
3ef28e83 | 332 | blk_queue_exit(q); |
320ae51f JA |
333 | } |
334 | ||
7c7f2f2b | 335 | void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq) |
320ae51f JA |
336 | { |
337 | struct blk_mq_ctx *ctx = rq->mq_ctx; | |
320ae51f JA |
338 | |
339 | ctx->rq_completed[rq_is_sync(rq)]++; | |
320ae51f | 340 | __blk_mq_free_request(hctx, ctx, rq); |
7c7f2f2b JA |
341 | |
342 | } | |
343 | EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request); | |
344 | ||
345 | void blk_mq_free_request(struct request *rq) | |
346 | { | |
7d7e0f90 | 347 | blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq); |
320ae51f | 348 | } |
1a3b595a | 349 | EXPORT_SYMBOL_GPL(blk_mq_free_request); |
320ae51f | 350 | |
c8a446ad | 351 | inline void __blk_mq_end_request(struct request *rq, int error) |
320ae51f | 352 | { |
0d11e6ac ML |
353 | blk_account_io_done(rq); |
354 | ||
91b63639 | 355 | if (rq->end_io) { |
320ae51f | 356 | rq->end_io(rq, error); |
91b63639 CH |
357 | } else { |
358 | if (unlikely(blk_bidi_rq(rq))) | |
359 | blk_mq_free_request(rq->next_rq); | |
320ae51f | 360 | blk_mq_free_request(rq); |
91b63639 | 361 | } |
320ae51f | 362 | } |
c8a446ad | 363 | EXPORT_SYMBOL(__blk_mq_end_request); |
63151a44 | 364 | |
c8a446ad | 365 | void blk_mq_end_request(struct request *rq, int error) |
63151a44 CH |
366 | { |
367 | if (blk_update_request(rq, error, blk_rq_bytes(rq))) | |
368 | BUG(); | |
c8a446ad | 369 | __blk_mq_end_request(rq, error); |
63151a44 | 370 | } |
c8a446ad | 371 | EXPORT_SYMBOL(blk_mq_end_request); |
320ae51f | 372 | |
30a91cb4 | 373 | static void __blk_mq_complete_request_remote(void *data) |
320ae51f | 374 | { |
3d6efbf6 | 375 | struct request *rq = data; |
320ae51f | 376 | |
30a91cb4 | 377 | rq->q->softirq_done_fn(rq); |
320ae51f | 378 | } |
320ae51f | 379 | |
ed851860 | 380 | static void blk_mq_ipi_complete_request(struct request *rq) |
320ae51f JA |
381 | { |
382 | struct blk_mq_ctx *ctx = rq->mq_ctx; | |
38535201 | 383 | bool shared = false; |
320ae51f JA |
384 | int cpu; |
385 | ||
38535201 | 386 | if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) { |
30a91cb4 CH |
387 | rq->q->softirq_done_fn(rq); |
388 | return; | |
389 | } | |
320ae51f JA |
390 | |
391 | cpu = get_cpu(); | |
38535201 CH |
392 | if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags)) |
393 | shared = cpus_share_cache(cpu, ctx->cpu); | |
394 | ||
395 | if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) { | |
30a91cb4 | 396 | rq->csd.func = __blk_mq_complete_request_remote; |
3d6efbf6 CH |
397 | rq->csd.info = rq; |
398 | rq->csd.flags = 0; | |
c46fff2a | 399 | smp_call_function_single_async(ctx->cpu, &rq->csd); |
3d6efbf6 | 400 | } else { |
30a91cb4 | 401 | rq->q->softirq_done_fn(rq); |
3d6efbf6 | 402 | } |
320ae51f JA |
403 | put_cpu(); |
404 | } | |
30a91cb4 | 405 | |
1fa8cc52 | 406 | static void __blk_mq_complete_request(struct request *rq) |
ed851860 JA |
407 | { |
408 | struct request_queue *q = rq->q; | |
409 | ||
410 | if (!q->softirq_done_fn) | |
c8a446ad | 411 | blk_mq_end_request(rq, rq->errors); |
ed851860 JA |
412 | else |
413 | blk_mq_ipi_complete_request(rq); | |
414 | } | |
415 | ||
30a91cb4 CH |
416 | /** |
417 | * blk_mq_complete_request - end I/O on a request | |
418 | * @rq: the request being processed | |
419 | * | |
420 | * Description: | |
421 | * Ends all I/O on a request. It does not handle partial completions. | |
422 | * The actual completion happens out-of-order, through a IPI handler. | |
423 | **/ | |
f4829a9b | 424 | void blk_mq_complete_request(struct request *rq, int error) |
30a91cb4 | 425 | { |
95f09684 JA |
426 | struct request_queue *q = rq->q; |
427 | ||
428 | if (unlikely(blk_should_fake_timeout(q))) | |
30a91cb4 | 429 | return; |
f4829a9b CH |
430 | if (!blk_mark_rq_complete(rq)) { |
431 | rq->errors = error; | |
ed851860 | 432 | __blk_mq_complete_request(rq); |
f4829a9b | 433 | } |
30a91cb4 CH |
434 | } |
435 | EXPORT_SYMBOL(blk_mq_complete_request); | |
320ae51f | 436 | |
973c0191 KB |
437 | int blk_mq_request_started(struct request *rq) |
438 | { | |
439 | return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags); | |
440 | } | |
441 | EXPORT_SYMBOL_GPL(blk_mq_request_started); | |
442 | ||
e2490073 | 443 | void blk_mq_start_request(struct request *rq) |
320ae51f JA |
444 | { |
445 | struct request_queue *q = rq->q; | |
446 | ||
447 | trace_block_rq_issue(q, rq); | |
448 | ||
742ee69b | 449 | rq->resid_len = blk_rq_bytes(rq); |
91b63639 CH |
450 | if (unlikely(blk_bidi_rq(rq))) |
451 | rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq); | |
742ee69b | 452 | |
2b8393b4 | 453 | blk_add_timer(rq); |
87ee7b11 | 454 | |
538b7534 JA |
455 | /* |
456 | * Ensure that ->deadline is visible before set the started | |
457 | * flag and clear the completed flag. | |
458 | */ | |
459 | smp_mb__before_atomic(); | |
460 | ||
87ee7b11 JA |
461 | /* |
462 | * Mark us as started and clear complete. Complete might have been | |
463 | * set if requeue raced with timeout, which then marked it as | |
464 | * complete. So be sure to clear complete again when we start | |
465 | * the request, otherwise we'll ignore the completion event. | |
466 | */ | |
4b570521 JA |
467 | if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) |
468 | set_bit(REQ_ATOM_STARTED, &rq->atomic_flags); | |
469 | if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags)) | |
470 | clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags); | |
49f5baa5 CH |
471 | |
472 | if (q->dma_drain_size && blk_rq_bytes(rq)) { | |
473 | /* | |
474 | * Make sure space for the drain appears. We know we can do | |
475 | * this because max_hw_segments has been adjusted to be one | |
476 | * fewer than the device can handle. | |
477 | */ | |
478 | rq->nr_phys_segments++; | |
479 | } | |
320ae51f | 480 | } |
e2490073 | 481 | EXPORT_SYMBOL(blk_mq_start_request); |
320ae51f | 482 | |
ed0791b2 | 483 | static void __blk_mq_requeue_request(struct request *rq) |
320ae51f JA |
484 | { |
485 | struct request_queue *q = rq->q; | |
486 | ||
487 | trace_block_rq_requeue(q, rq); | |
49f5baa5 | 488 | |
e2490073 CH |
489 | if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) { |
490 | if (q->dma_drain_size && blk_rq_bytes(rq)) | |
491 | rq->nr_phys_segments--; | |
492 | } | |
320ae51f JA |
493 | } |
494 | ||
2b053aca | 495 | void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list) |
ed0791b2 | 496 | { |
ed0791b2 | 497 | __blk_mq_requeue_request(rq); |
ed0791b2 | 498 | |
ed0791b2 | 499 | BUG_ON(blk_queued_rq(rq)); |
2b053aca | 500 | blk_mq_add_to_requeue_list(rq, true, kick_requeue_list); |
ed0791b2 CH |
501 | } |
502 | EXPORT_SYMBOL(blk_mq_requeue_request); | |
503 | ||
6fca6a61 CH |
504 | static void blk_mq_requeue_work(struct work_struct *work) |
505 | { | |
506 | struct request_queue *q = | |
2849450a | 507 | container_of(work, struct request_queue, requeue_work.work); |
6fca6a61 CH |
508 | LIST_HEAD(rq_list); |
509 | struct request *rq, *next; | |
510 | unsigned long flags; | |
511 | ||
512 | spin_lock_irqsave(&q->requeue_lock, flags); | |
513 | list_splice_init(&q->requeue_list, &rq_list); | |
514 | spin_unlock_irqrestore(&q->requeue_lock, flags); | |
515 | ||
516 | list_for_each_entry_safe(rq, next, &rq_list, queuelist) { | |
e8064021 | 517 | if (!(rq->rq_flags & RQF_SOFTBARRIER)) |
6fca6a61 CH |
518 | continue; |
519 | ||
e8064021 | 520 | rq->rq_flags &= ~RQF_SOFTBARRIER; |
6fca6a61 CH |
521 | list_del_init(&rq->queuelist); |
522 | blk_mq_insert_request(rq, true, false, false); | |
523 | } | |
524 | ||
525 | while (!list_empty(&rq_list)) { | |
526 | rq = list_entry(rq_list.next, struct request, queuelist); | |
527 | list_del_init(&rq->queuelist); | |
528 | blk_mq_insert_request(rq, false, false, false); | |
529 | } | |
530 | ||
52d7f1b5 | 531 | blk_mq_run_hw_queues(q, false); |
6fca6a61 CH |
532 | } |
533 | ||
2b053aca BVA |
534 | void blk_mq_add_to_requeue_list(struct request *rq, bool at_head, |
535 | bool kick_requeue_list) | |
6fca6a61 CH |
536 | { |
537 | struct request_queue *q = rq->q; | |
538 | unsigned long flags; | |
539 | ||
540 | /* | |
541 | * We abuse this flag that is otherwise used by the I/O scheduler to | |
542 | * request head insertation from the workqueue. | |
543 | */ | |
e8064021 | 544 | BUG_ON(rq->rq_flags & RQF_SOFTBARRIER); |
6fca6a61 CH |
545 | |
546 | spin_lock_irqsave(&q->requeue_lock, flags); | |
547 | if (at_head) { | |
e8064021 | 548 | rq->rq_flags |= RQF_SOFTBARRIER; |
6fca6a61 CH |
549 | list_add(&rq->queuelist, &q->requeue_list); |
550 | } else { | |
551 | list_add_tail(&rq->queuelist, &q->requeue_list); | |
552 | } | |
553 | spin_unlock_irqrestore(&q->requeue_lock, flags); | |
2b053aca BVA |
554 | |
555 | if (kick_requeue_list) | |
556 | blk_mq_kick_requeue_list(q); | |
6fca6a61 CH |
557 | } |
558 | EXPORT_SYMBOL(blk_mq_add_to_requeue_list); | |
559 | ||
560 | void blk_mq_kick_requeue_list(struct request_queue *q) | |
561 | { | |
2849450a | 562 | kblockd_schedule_delayed_work(&q->requeue_work, 0); |
6fca6a61 CH |
563 | } |
564 | EXPORT_SYMBOL(blk_mq_kick_requeue_list); | |
565 | ||
2849450a MS |
566 | void blk_mq_delay_kick_requeue_list(struct request_queue *q, |
567 | unsigned long msecs) | |
568 | { | |
569 | kblockd_schedule_delayed_work(&q->requeue_work, | |
570 | msecs_to_jiffies(msecs)); | |
571 | } | |
572 | EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); | |
573 | ||
1885b24d JA |
574 | void blk_mq_abort_requeue_list(struct request_queue *q) |
575 | { | |
576 | unsigned long flags; | |
577 | LIST_HEAD(rq_list); | |
578 | ||
579 | spin_lock_irqsave(&q->requeue_lock, flags); | |
580 | list_splice_init(&q->requeue_list, &rq_list); | |
581 | spin_unlock_irqrestore(&q->requeue_lock, flags); | |
582 | ||
583 | while (!list_empty(&rq_list)) { | |
584 | struct request *rq; | |
585 | ||
586 | rq = list_first_entry(&rq_list, struct request, queuelist); | |
587 | list_del_init(&rq->queuelist); | |
588 | rq->errors = -EIO; | |
589 | blk_mq_end_request(rq, rq->errors); | |
590 | } | |
591 | } | |
592 | EXPORT_SYMBOL(blk_mq_abort_requeue_list); | |
593 | ||
0e62f51f JA |
594 | struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) |
595 | { | |
88c7b2b7 JA |
596 | if (tag < tags->nr_tags) { |
597 | prefetch(tags->rqs[tag]); | |
4ee86bab | 598 | return tags->rqs[tag]; |
88c7b2b7 | 599 | } |
4ee86bab HR |
600 | |
601 | return NULL; | |
24d2f903 CH |
602 | } |
603 | EXPORT_SYMBOL(blk_mq_tag_to_rq); | |
604 | ||
320ae51f | 605 | struct blk_mq_timeout_data { |
46f92d42 CH |
606 | unsigned long next; |
607 | unsigned int next_set; | |
320ae51f JA |
608 | }; |
609 | ||
90415837 | 610 | void blk_mq_rq_timed_out(struct request *req, bool reserved) |
320ae51f | 611 | { |
46f92d42 CH |
612 | struct blk_mq_ops *ops = req->q->mq_ops; |
613 | enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER; | |
87ee7b11 JA |
614 | |
615 | /* | |
616 | * We know that complete is set at this point. If STARTED isn't set | |
617 | * anymore, then the request isn't active and the "timeout" should | |
618 | * just be ignored. This can happen due to the bitflag ordering. | |
619 | * Timeout first checks if STARTED is set, and if it is, assumes | |
620 | * the request is active. But if we race with completion, then | |
621 | * we both flags will get cleared. So check here again, and ignore | |
622 | * a timeout event with a request that isn't active. | |
623 | */ | |
46f92d42 CH |
624 | if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags)) |
625 | return; | |
87ee7b11 | 626 | |
46f92d42 | 627 | if (ops->timeout) |
0152fb6b | 628 | ret = ops->timeout(req, reserved); |
46f92d42 CH |
629 | |
630 | switch (ret) { | |
631 | case BLK_EH_HANDLED: | |
632 | __blk_mq_complete_request(req); | |
633 | break; | |
634 | case BLK_EH_RESET_TIMER: | |
635 | blk_add_timer(req); | |
636 | blk_clear_rq_complete(req); | |
637 | break; | |
638 | case BLK_EH_NOT_HANDLED: | |
639 | break; | |
640 | default: | |
641 | printk(KERN_ERR "block: bad eh return: %d\n", ret); | |
642 | break; | |
643 | } | |
87ee7b11 | 644 | } |
5b3f25fc | 645 | |
81481eb4 CH |
646 | static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx, |
647 | struct request *rq, void *priv, bool reserved) | |
648 | { | |
649 | struct blk_mq_timeout_data *data = priv; | |
87ee7b11 | 650 | |
eb130dbf KB |
651 | if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) { |
652 | /* | |
653 | * If a request wasn't started before the queue was | |
654 | * marked dying, kill it here or it'll go unnoticed. | |
655 | */ | |
a59e0f57 KB |
656 | if (unlikely(blk_queue_dying(rq->q))) { |
657 | rq->errors = -EIO; | |
658 | blk_mq_end_request(rq, rq->errors); | |
659 | } | |
46f92d42 | 660 | return; |
eb130dbf | 661 | } |
87ee7b11 | 662 | |
46f92d42 CH |
663 | if (time_after_eq(jiffies, rq->deadline)) { |
664 | if (!blk_mark_rq_complete(rq)) | |
0152fb6b | 665 | blk_mq_rq_timed_out(rq, reserved); |
46f92d42 CH |
666 | } else if (!data->next_set || time_after(data->next, rq->deadline)) { |
667 | data->next = rq->deadline; | |
668 | data->next_set = 1; | |
669 | } | |
87ee7b11 JA |
670 | } |
671 | ||
287922eb | 672 | static void blk_mq_timeout_work(struct work_struct *work) |
320ae51f | 673 | { |
287922eb CH |
674 | struct request_queue *q = |
675 | container_of(work, struct request_queue, timeout_work); | |
81481eb4 CH |
676 | struct blk_mq_timeout_data data = { |
677 | .next = 0, | |
678 | .next_set = 0, | |
679 | }; | |
81481eb4 | 680 | int i; |
320ae51f | 681 | |
71f79fb3 GKB |
682 | /* A deadlock might occur if a request is stuck requiring a |
683 | * timeout at the same time a queue freeze is waiting | |
684 | * completion, since the timeout code would not be able to | |
685 | * acquire the queue reference here. | |
686 | * | |
687 | * That's why we don't use blk_queue_enter here; instead, we use | |
688 | * percpu_ref_tryget directly, because we need to be able to | |
689 | * obtain a reference even in the short window between the queue | |
690 | * starting to freeze, by dropping the first reference in | |
691 | * blk_mq_freeze_queue_start, and the moment the last request is | |
692 | * consumed, marked by the instant q_usage_counter reaches | |
693 | * zero. | |
694 | */ | |
695 | if (!percpu_ref_tryget(&q->q_usage_counter)) | |
287922eb CH |
696 | return; |
697 | ||
0bf6cd5b | 698 | blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data); |
320ae51f | 699 | |
81481eb4 CH |
700 | if (data.next_set) { |
701 | data.next = blk_rq_timeout(round_jiffies_up(data.next)); | |
702 | mod_timer(&q->timeout, data.next); | |
0d2602ca | 703 | } else { |
0bf6cd5b CH |
704 | struct blk_mq_hw_ctx *hctx; |
705 | ||
f054b56c ML |
706 | queue_for_each_hw_ctx(q, hctx, i) { |
707 | /* the hctx may be unmapped, so check it here */ | |
708 | if (blk_mq_hw_queue_mapped(hctx)) | |
709 | blk_mq_tag_idle(hctx); | |
710 | } | |
0d2602ca | 711 | } |
287922eb | 712 | blk_queue_exit(q); |
320ae51f JA |
713 | } |
714 | ||
715 | /* | |
716 | * Reverse check our software queue for entries that we could potentially | |
717 | * merge with. Currently includes a hand-wavy stop count of 8, to not spend | |
718 | * too much time checking for merges. | |
719 | */ | |
720 | static bool blk_mq_attempt_merge(struct request_queue *q, | |
721 | struct blk_mq_ctx *ctx, struct bio *bio) | |
722 | { | |
723 | struct request *rq; | |
724 | int checked = 8; | |
725 | ||
726 | list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) { | |
727 | int el_ret; | |
728 | ||
729 | if (!checked--) | |
730 | break; | |
731 | ||
732 | if (!blk_rq_merge_ok(rq, bio)) | |
733 | continue; | |
734 | ||
735 | el_ret = blk_try_merge(rq, bio); | |
736 | if (el_ret == ELEVATOR_BACK_MERGE) { | |
737 | if (bio_attempt_back_merge(q, rq, bio)) { | |
738 | ctx->rq_merged++; | |
739 | return true; | |
740 | } | |
741 | break; | |
742 | } else if (el_ret == ELEVATOR_FRONT_MERGE) { | |
743 | if (bio_attempt_front_merge(q, rq, bio)) { | |
744 | ctx->rq_merged++; | |
745 | return true; | |
746 | } | |
747 | break; | |
748 | } | |
749 | } | |
750 | ||
751 | return false; | |
752 | } | |
753 | ||
88459642 OS |
754 | struct flush_busy_ctx_data { |
755 | struct blk_mq_hw_ctx *hctx; | |
756 | struct list_head *list; | |
757 | }; | |
758 | ||
759 | static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data) | |
760 | { | |
761 | struct flush_busy_ctx_data *flush_data = data; | |
762 | struct blk_mq_hw_ctx *hctx = flush_data->hctx; | |
763 | struct blk_mq_ctx *ctx = hctx->ctxs[bitnr]; | |
764 | ||
765 | sbitmap_clear_bit(sb, bitnr); | |
766 | spin_lock(&ctx->lock); | |
767 | list_splice_tail_init(&ctx->rq_list, flush_data->list); | |
768 | spin_unlock(&ctx->lock); | |
769 | return true; | |
770 | } | |
771 | ||
1429d7c9 JA |
772 | /* |
773 | * Process software queues that have been marked busy, splicing them | |
774 | * to the for-dispatch | |
775 | */ | |
776 | static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list) | |
777 | { | |
88459642 OS |
778 | struct flush_busy_ctx_data data = { |
779 | .hctx = hctx, | |
780 | .list = list, | |
781 | }; | |
1429d7c9 | 782 | |
88459642 | 783 | sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data); |
1429d7c9 | 784 | } |
1429d7c9 | 785 | |
703fd1c0 JA |
786 | static inline unsigned int queued_to_index(unsigned int queued) |
787 | { | |
788 | if (!queued) | |
789 | return 0; | |
1429d7c9 | 790 | |
703fd1c0 | 791 | return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1); |
1429d7c9 JA |
792 | } |
793 | ||
320ae51f JA |
794 | /* |
795 | * Run this hardware queue, pulling any software queues mapped to it in. | |
796 | * Note that this function currently has various problems around ordering | |
797 | * of IO. In particular, we'd like FIFO behaviour on handling existing | |
798 | * items on the hctx->dispatch list. Ignore that for now. | |
799 | */ | |
6a83e74d | 800 | static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx) |
320ae51f JA |
801 | { |
802 | struct request_queue *q = hctx->queue; | |
320ae51f JA |
803 | struct request *rq; |
804 | LIST_HEAD(rq_list); | |
74c45052 JA |
805 | LIST_HEAD(driver_list); |
806 | struct list_head *dptr; | |
1429d7c9 | 807 | int queued; |
320ae51f | 808 | |
5d1b25c1 | 809 | if (unlikely(blk_mq_hctx_stopped(hctx))) |
320ae51f JA |
810 | return; |
811 | ||
812 | hctx->run++; | |
813 | ||
814 | /* | |
815 | * Touch any software queue that has pending entries. | |
816 | */ | |
1429d7c9 | 817 | flush_busy_ctxs(hctx, &rq_list); |
320ae51f JA |
818 | |
819 | /* | |
820 | * If we have previous entries on our dispatch list, grab them | |
821 | * and stuff them at the front for more fair dispatch. | |
822 | */ | |
823 | if (!list_empty_careful(&hctx->dispatch)) { | |
824 | spin_lock(&hctx->lock); | |
825 | if (!list_empty(&hctx->dispatch)) | |
826 | list_splice_init(&hctx->dispatch, &rq_list); | |
827 | spin_unlock(&hctx->lock); | |
828 | } | |
829 | ||
74c45052 JA |
830 | /* |
831 | * Start off with dptr being NULL, so we start the first request | |
832 | * immediately, even if we have more pending. | |
833 | */ | |
834 | dptr = NULL; | |
835 | ||
320ae51f JA |
836 | /* |
837 | * Now process all the entries, sending them to the driver. | |
838 | */ | |
1429d7c9 | 839 | queued = 0; |
320ae51f | 840 | while (!list_empty(&rq_list)) { |
74c45052 | 841 | struct blk_mq_queue_data bd; |
320ae51f JA |
842 | int ret; |
843 | ||
844 | rq = list_first_entry(&rq_list, struct request, queuelist); | |
845 | list_del_init(&rq->queuelist); | |
320ae51f | 846 | |
74c45052 JA |
847 | bd.rq = rq; |
848 | bd.list = dptr; | |
849 | bd.last = list_empty(&rq_list); | |
850 | ||
851 | ret = q->mq_ops->queue_rq(hctx, &bd); | |
320ae51f JA |
852 | switch (ret) { |
853 | case BLK_MQ_RQ_QUEUE_OK: | |
854 | queued++; | |
52b9c330 | 855 | break; |
320ae51f | 856 | case BLK_MQ_RQ_QUEUE_BUSY: |
320ae51f | 857 | list_add(&rq->queuelist, &rq_list); |
ed0791b2 | 858 | __blk_mq_requeue_request(rq); |
320ae51f JA |
859 | break; |
860 | default: | |
861 | pr_err("blk-mq: bad return on queue: %d\n", ret); | |
320ae51f | 862 | case BLK_MQ_RQ_QUEUE_ERROR: |
1e93b8c2 | 863 | rq->errors = -EIO; |
c8a446ad | 864 | blk_mq_end_request(rq, rq->errors); |
320ae51f JA |
865 | break; |
866 | } | |
867 | ||
868 | if (ret == BLK_MQ_RQ_QUEUE_BUSY) | |
869 | break; | |
74c45052 JA |
870 | |
871 | /* | |
872 | * We've done the first request. If we have more than 1 | |
873 | * left in the list, set dptr to defer issue. | |
874 | */ | |
875 | if (!dptr && rq_list.next != rq_list.prev) | |
876 | dptr = &driver_list; | |
320ae51f JA |
877 | } |
878 | ||
703fd1c0 | 879 | hctx->dispatched[queued_to_index(queued)]++; |
320ae51f JA |
880 | |
881 | /* | |
882 | * Any items that need requeuing? Stuff them into hctx->dispatch, | |
883 | * that is where we will continue on next queue run. | |
884 | */ | |
885 | if (!list_empty(&rq_list)) { | |
886 | spin_lock(&hctx->lock); | |
887 | list_splice(&rq_list, &hctx->dispatch); | |
888 | spin_unlock(&hctx->lock); | |
9ba52e58 SL |
889 | /* |
890 | * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but | |
891 | * it's possible the queue is stopped and restarted again | |
892 | * before this. Queue restart will dispatch requests. And since | |
893 | * requests in rq_list aren't added into hctx->dispatch yet, | |
894 | * the requests in rq_list might get lost. | |
895 | * | |
896 | * blk_mq_run_hw_queue() already checks the STOPPED bit | |
897 | **/ | |
898 | blk_mq_run_hw_queue(hctx, true); | |
320ae51f JA |
899 | } |
900 | } | |
901 | ||
6a83e74d BVA |
902 | static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx) |
903 | { | |
904 | int srcu_idx; | |
905 | ||
906 | WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) && | |
907 | cpu_online(hctx->next_cpu)); | |
908 | ||
909 | if (!(hctx->flags & BLK_MQ_F_BLOCKING)) { | |
910 | rcu_read_lock(); | |
911 | blk_mq_process_rq_list(hctx); | |
912 | rcu_read_unlock(); | |
913 | } else { | |
914 | srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu); | |
915 | blk_mq_process_rq_list(hctx); | |
916 | srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx); | |
917 | } | |
918 | } | |
919 | ||
506e931f JA |
920 | /* |
921 | * It'd be great if the workqueue API had a way to pass | |
922 | * in a mask and had some smarts for more clever placement. | |
923 | * For now we just round-robin here, switching for every | |
924 | * BLK_MQ_CPU_WORK_BATCH queued items. | |
925 | */ | |
926 | static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx) | |
927 | { | |
b657d7e6 CH |
928 | if (hctx->queue->nr_hw_queues == 1) |
929 | return WORK_CPU_UNBOUND; | |
506e931f JA |
930 | |
931 | if (--hctx->next_cpu_batch <= 0) { | |
b657d7e6 | 932 | int cpu = hctx->next_cpu, next_cpu; |
506e931f JA |
933 | |
934 | next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask); | |
935 | if (next_cpu >= nr_cpu_ids) | |
936 | next_cpu = cpumask_first(hctx->cpumask); | |
937 | ||
938 | hctx->next_cpu = next_cpu; | |
939 | hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH; | |
b657d7e6 CH |
940 | |
941 | return cpu; | |
506e931f JA |
942 | } |
943 | ||
b657d7e6 | 944 | return hctx->next_cpu; |
506e931f JA |
945 | } |
946 | ||
320ae51f JA |
947 | void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async) |
948 | { | |
5d1b25c1 BVA |
949 | if (unlikely(blk_mq_hctx_stopped(hctx) || |
950 | !blk_mq_hw_queue_mapped(hctx))) | |
320ae51f JA |
951 | return; |
952 | ||
1b792f2f | 953 | if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) { |
2a90d4aa PB |
954 | int cpu = get_cpu(); |
955 | if (cpumask_test_cpu(cpu, hctx->cpumask)) { | |
398205b8 | 956 | __blk_mq_run_hw_queue(hctx); |
2a90d4aa | 957 | put_cpu(); |
398205b8 PB |
958 | return; |
959 | } | |
e4043dcf | 960 | |
2a90d4aa | 961 | put_cpu(); |
e4043dcf | 962 | } |
398205b8 | 963 | |
27489a3c | 964 | kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work); |
320ae51f JA |
965 | } |
966 | ||
b94ec296 | 967 | void blk_mq_run_hw_queues(struct request_queue *q, bool async) |
320ae51f JA |
968 | { |
969 | struct blk_mq_hw_ctx *hctx; | |
970 | int i; | |
971 | ||
972 | queue_for_each_hw_ctx(q, hctx, i) { | |
973 | if ((!blk_mq_hctx_has_pending(hctx) && | |
974 | list_empty_careful(&hctx->dispatch)) || | |
5d1b25c1 | 975 | blk_mq_hctx_stopped(hctx)) |
320ae51f JA |
976 | continue; |
977 | ||
b94ec296 | 978 | blk_mq_run_hw_queue(hctx, async); |
320ae51f JA |
979 | } |
980 | } | |
b94ec296 | 981 | EXPORT_SYMBOL(blk_mq_run_hw_queues); |
320ae51f | 982 | |
fd001443 BVA |
983 | /** |
984 | * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped | |
985 | * @q: request queue. | |
986 | * | |
987 | * The caller is responsible for serializing this function against | |
988 | * blk_mq_{start,stop}_hw_queue(). | |
989 | */ | |
990 | bool blk_mq_queue_stopped(struct request_queue *q) | |
991 | { | |
992 | struct blk_mq_hw_ctx *hctx; | |
993 | int i; | |
994 | ||
995 | queue_for_each_hw_ctx(q, hctx, i) | |
996 | if (blk_mq_hctx_stopped(hctx)) | |
997 | return true; | |
998 | ||
999 | return false; | |
1000 | } | |
1001 | EXPORT_SYMBOL(blk_mq_queue_stopped); | |
1002 | ||
320ae51f JA |
1003 | void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx) |
1004 | { | |
27489a3c | 1005 | cancel_work(&hctx->run_work); |
70f4db63 | 1006 | cancel_delayed_work(&hctx->delay_work); |
320ae51f JA |
1007 | set_bit(BLK_MQ_S_STOPPED, &hctx->state); |
1008 | } | |
1009 | EXPORT_SYMBOL(blk_mq_stop_hw_queue); | |
1010 | ||
280d45f6 CH |
1011 | void blk_mq_stop_hw_queues(struct request_queue *q) |
1012 | { | |
1013 | struct blk_mq_hw_ctx *hctx; | |
1014 | int i; | |
1015 | ||
1016 | queue_for_each_hw_ctx(q, hctx, i) | |
1017 | blk_mq_stop_hw_queue(hctx); | |
1018 | } | |
1019 | EXPORT_SYMBOL(blk_mq_stop_hw_queues); | |
1020 | ||
320ae51f JA |
1021 | void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx) |
1022 | { | |
1023 | clear_bit(BLK_MQ_S_STOPPED, &hctx->state); | |
e4043dcf | 1024 | |
0ffbce80 | 1025 | blk_mq_run_hw_queue(hctx, false); |
320ae51f JA |
1026 | } |
1027 | EXPORT_SYMBOL(blk_mq_start_hw_queue); | |
1028 | ||
2f268556 CH |
1029 | void blk_mq_start_hw_queues(struct request_queue *q) |
1030 | { | |
1031 | struct blk_mq_hw_ctx *hctx; | |
1032 | int i; | |
1033 | ||
1034 | queue_for_each_hw_ctx(q, hctx, i) | |
1035 | blk_mq_start_hw_queue(hctx); | |
1036 | } | |
1037 | EXPORT_SYMBOL(blk_mq_start_hw_queues); | |
1038 | ||
1b4a3258 | 1039 | void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async) |
320ae51f JA |
1040 | { |
1041 | struct blk_mq_hw_ctx *hctx; | |
1042 | int i; | |
1043 | ||
1044 | queue_for_each_hw_ctx(q, hctx, i) { | |
5d1b25c1 | 1045 | if (!blk_mq_hctx_stopped(hctx)) |
320ae51f JA |
1046 | continue; |
1047 | ||
1048 | clear_bit(BLK_MQ_S_STOPPED, &hctx->state); | |
1b4a3258 | 1049 | blk_mq_run_hw_queue(hctx, async); |
320ae51f JA |
1050 | } |
1051 | } | |
1052 | EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues); | |
1053 | ||
70f4db63 | 1054 | static void blk_mq_run_work_fn(struct work_struct *work) |
320ae51f JA |
1055 | { |
1056 | struct blk_mq_hw_ctx *hctx; | |
1057 | ||
27489a3c | 1058 | hctx = container_of(work, struct blk_mq_hw_ctx, run_work); |
e4043dcf | 1059 | |
320ae51f JA |
1060 | __blk_mq_run_hw_queue(hctx); |
1061 | } | |
1062 | ||
70f4db63 CH |
1063 | static void blk_mq_delay_work_fn(struct work_struct *work) |
1064 | { | |
1065 | struct blk_mq_hw_ctx *hctx; | |
1066 | ||
1067 | hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work); | |
1068 | ||
1069 | if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state)) | |
1070 | __blk_mq_run_hw_queue(hctx); | |
1071 | } | |
1072 | ||
1073 | void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs) | |
1074 | { | |
19c66e59 ML |
1075 | if (unlikely(!blk_mq_hw_queue_mapped(hctx))) |
1076 | return; | |
70f4db63 | 1077 | |
b657d7e6 CH |
1078 | kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx), |
1079 | &hctx->delay_work, msecs_to_jiffies(msecs)); | |
70f4db63 CH |
1080 | } |
1081 | EXPORT_SYMBOL(blk_mq_delay_queue); | |
1082 | ||
cfd0c552 | 1083 | static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx, |
cfd0c552 ML |
1084 | struct request *rq, |
1085 | bool at_head) | |
320ae51f | 1086 | { |
e57690fe JA |
1087 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
1088 | ||
01b983c9 JA |
1089 | trace_block_rq_insert(hctx->queue, rq); |
1090 | ||
72a0a36e CH |
1091 | if (at_head) |
1092 | list_add(&rq->queuelist, &ctx->rq_list); | |
1093 | else | |
1094 | list_add_tail(&rq->queuelist, &ctx->rq_list); | |
cfd0c552 | 1095 | } |
4bb659b1 | 1096 | |
cfd0c552 ML |
1097 | static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, |
1098 | struct request *rq, bool at_head) | |
1099 | { | |
1100 | struct blk_mq_ctx *ctx = rq->mq_ctx; | |
1101 | ||
e57690fe | 1102 | __blk_mq_insert_req_list(hctx, rq, at_head); |
320ae51f | 1103 | blk_mq_hctx_mark_pending(hctx, ctx); |
320ae51f JA |
1104 | } |
1105 | ||
eeabc850 | 1106 | void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue, |
e57690fe | 1107 | bool async) |
320ae51f | 1108 | { |
e57690fe | 1109 | struct blk_mq_ctx *ctx = rq->mq_ctx; |
eeabc850 | 1110 | struct request_queue *q = rq->q; |
7d7e0f90 | 1111 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
320ae51f | 1112 | |
a57a178a CH |
1113 | spin_lock(&ctx->lock); |
1114 | __blk_mq_insert_request(hctx, rq, at_head); | |
1115 | spin_unlock(&ctx->lock); | |
320ae51f | 1116 | |
320ae51f JA |
1117 | if (run_queue) |
1118 | blk_mq_run_hw_queue(hctx, async); | |
1119 | } | |
1120 | ||
1121 | static void blk_mq_insert_requests(struct request_queue *q, | |
1122 | struct blk_mq_ctx *ctx, | |
1123 | struct list_head *list, | |
1124 | int depth, | |
1125 | bool from_schedule) | |
1126 | ||
1127 | { | |
7d7e0f90 | 1128 | struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu); |
320ae51f JA |
1129 | |
1130 | trace_block_unplug(q, depth, !from_schedule); | |
1131 | ||
320ae51f JA |
1132 | /* |
1133 | * preemption doesn't flush plug list, so it's possible ctx->cpu is | |
1134 | * offline now | |
1135 | */ | |
1136 | spin_lock(&ctx->lock); | |
1137 | while (!list_empty(list)) { | |
1138 | struct request *rq; | |
1139 | ||
1140 | rq = list_first_entry(list, struct request, queuelist); | |
e57690fe | 1141 | BUG_ON(rq->mq_ctx != ctx); |
320ae51f | 1142 | list_del_init(&rq->queuelist); |
e57690fe | 1143 | __blk_mq_insert_req_list(hctx, rq, false); |
320ae51f | 1144 | } |
cfd0c552 | 1145 | blk_mq_hctx_mark_pending(hctx, ctx); |
320ae51f JA |
1146 | spin_unlock(&ctx->lock); |
1147 | ||
320ae51f JA |
1148 | blk_mq_run_hw_queue(hctx, from_schedule); |
1149 | } | |
1150 | ||
1151 | static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b) | |
1152 | { | |
1153 | struct request *rqa = container_of(a, struct request, queuelist); | |
1154 | struct request *rqb = container_of(b, struct request, queuelist); | |
1155 | ||
1156 | return !(rqa->mq_ctx < rqb->mq_ctx || | |
1157 | (rqa->mq_ctx == rqb->mq_ctx && | |
1158 | blk_rq_pos(rqa) < blk_rq_pos(rqb))); | |
1159 | } | |
1160 | ||
1161 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule) | |
1162 | { | |
1163 | struct blk_mq_ctx *this_ctx; | |
1164 | struct request_queue *this_q; | |
1165 | struct request *rq; | |
1166 | LIST_HEAD(list); | |
1167 | LIST_HEAD(ctx_list); | |
1168 | unsigned int depth; | |
1169 | ||
1170 | list_splice_init(&plug->mq_list, &list); | |
1171 | ||
1172 | list_sort(NULL, &list, plug_ctx_cmp); | |
1173 | ||
1174 | this_q = NULL; | |
1175 | this_ctx = NULL; | |
1176 | depth = 0; | |
1177 | ||
1178 | while (!list_empty(&list)) { | |
1179 | rq = list_entry_rq(list.next); | |
1180 | list_del_init(&rq->queuelist); | |
1181 | BUG_ON(!rq->q); | |
1182 | if (rq->mq_ctx != this_ctx) { | |
1183 | if (this_ctx) { | |
1184 | blk_mq_insert_requests(this_q, this_ctx, | |
1185 | &ctx_list, depth, | |
1186 | from_schedule); | |
1187 | } | |
1188 | ||
1189 | this_ctx = rq->mq_ctx; | |
1190 | this_q = rq->q; | |
1191 | depth = 0; | |
1192 | } | |
1193 | ||
1194 | depth++; | |
1195 | list_add_tail(&rq->queuelist, &ctx_list); | |
1196 | } | |
1197 | ||
1198 | /* | |
1199 | * If 'this_ctx' is set, we know we have entries to complete | |
1200 | * on 'ctx_list'. Do those. | |
1201 | */ | |
1202 | if (this_ctx) { | |
1203 | blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth, | |
1204 | from_schedule); | |
1205 | } | |
1206 | } | |
1207 | ||
1208 | static void blk_mq_bio_to_request(struct request *rq, struct bio *bio) | |
1209 | { | |
1210 | init_request_from_bio(rq, bio); | |
4b570521 | 1211 | |
a21f2a3e | 1212 | blk_account_io_start(rq, 1); |
320ae51f JA |
1213 | } |
1214 | ||
274a5843 JA |
1215 | static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx) |
1216 | { | |
1217 | return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) && | |
1218 | !blk_queue_nomerges(hctx->queue); | |
1219 | } | |
1220 | ||
07068d5b JA |
1221 | static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx, |
1222 | struct blk_mq_ctx *ctx, | |
1223 | struct request *rq, struct bio *bio) | |
320ae51f | 1224 | { |
e18378a6 | 1225 | if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) { |
07068d5b JA |
1226 | blk_mq_bio_to_request(rq, bio); |
1227 | spin_lock(&ctx->lock); | |
1228 | insert_rq: | |
1229 | __blk_mq_insert_request(hctx, rq, false); | |
1230 | spin_unlock(&ctx->lock); | |
1231 | return false; | |
1232 | } else { | |
274a5843 JA |
1233 | struct request_queue *q = hctx->queue; |
1234 | ||
07068d5b JA |
1235 | spin_lock(&ctx->lock); |
1236 | if (!blk_mq_attempt_merge(q, ctx, bio)) { | |
1237 | blk_mq_bio_to_request(rq, bio); | |
1238 | goto insert_rq; | |
1239 | } | |
320ae51f | 1240 | |
07068d5b JA |
1241 | spin_unlock(&ctx->lock); |
1242 | __blk_mq_free_request(hctx, ctx, rq); | |
1243 | return true; | |
14ec77f3 | 1244 | } |
07068d5b | 1245 | } |
14ec77f3 | 1246 | |
07068d5b JA |
1247 | static struct request *blk_mq_map_request(struct request_queue *q, |
1248 | struct bio *bio, | |
2552e3f8 | 1249 | struct blk_mq_alloc_data *data) |
07068d5b JA |
1250 | { |
1251 | struct blk_mq_hw_ctx *hctx; | |
1252 | struct blk_mq_ctx *ctx; | |
1253 | struct request *rq; | |
320ae51f | 1254 | |
3ef28e83 | 1255 | blk_queue_enter_live(q); |
320ae51f | 1256 | ctx = blk_mq_get_ctx(q); |
7d7e0f90 | 1257 | hctx = blk_mq_map_queue(q, ctx->cpu); |
320ae51f | 1258 | |
ef295ecf | 1259 | trace_block_getrq(q, bio, bio->bi_opf); |
2552e3f8 | 1260 | blk_mq_set_alloc_data(data, q, 0, ctx, hctx); |
ef295ecf | 1261 | rq = __blk_mq_alloc_request(data, bio->bi_opf); |
320ae51f | 1262 | |
7dd2fb68 | 1263 | data->hctx->queued++; |
07068d5b JA |
1264 | return rq; |
1265 | } | |
1266 | ||
2253efc8 BVA |
1267 | static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx, |
1268 | struct request *rq, blk_qc_t *cookie) | |
f984df1f SL |
1269 | { |
1270 | int ret; | |
1271 | struct request_queue *q = rq->q; | |
f984df1f SL |
1272 | struct blk_mq_queue_data bd = { |
1273 | .rq = rq, | |
1274 | .list = NULL, | |
1275 | .last = 1 | |
1276 | }; | |
7b371636 | 1277 | blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num); |
f984df1f | 1278 | |
2253efc8 BVA |
1279 | if (blk_mq_hctx_stopped(hctx)) |
1280 | goto insert; | |
1281 | ||
f984df1f SL |
1282 | /* |
1283 | * For OK queue, we are done. For error, kill it. Any other | |
1284 | * error (busy), just add it to our list as we previously | |
1285 | * would have done | |
1286 | */ | |
1287 | ret = q->mq_ops->queue_rq(hctx, &bd); | |
7b371636 JA |
1288 | if (ret == BLK_MQ_RQ_QUEUE_OK) { |
1289 | *cookie = new_cookie; | |
2253efc8 | 1290 | return; |
7b371636 | 1291 | } |
f984df1f | 1292 | |
7b371636 JA |
1293 | __blk_mq_requeue_request(rq); |
1294 | ||
1295 | if (ret == BLK_MQ_RQ_QUEUE_ERROR) { | |
1296 | *cookie = BLK_QC_T_NONE; | |
1297 | rq->errors = -EIO; | |
1298 | blk_mq_end_request(rq, rq->errors); | |
2253efc8 | 1299 | return; |
f984df1f | 1300 | } |
7b371636 | 1301 | |
2253efc8 BVA |
1302 | insert: |
1303 | blk_mq_insert_request(rq, false, true, true); | |
f984df1f SL |
1304 | } |
1305 | ||
07068d5b JA |
1306 | /* |
1307 | * Multiple hardware queue variant. This will not use per-process plugs, | |
1308 | * but will attempt to bypass the hctx queueing if we can go straight to | |
1309 | * hardware for SYNC IO. | |
1310 | */ | |
dece1635 | 1311 | static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio) |
07068d5b | 1312 | { |
ef295ecf | 1313 | const int is_sync = op_is_sync(bio->bi_opf); |
1eff9d32 | 1314 | const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA); |
2552e3f8 | 1315 | struct blk_mq_alloc_data data; |
07068d5b | 1316 | struct request *rq; |
6a83e74d | 1317 | unsigned int request_count = 0, srcu_idx; |
f984df1f | 1318 | struct blk_plug *plug; |
5b3f341f | 1319 | struct request *same_queue_rq = NULL; |
7b371636 | 1320 | blk_qc_t cookie; |
07068d5b JA |
1321 | |
1322 | blk_queue_bounce(q, &bio); | |
1323 | ||
1324 | if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) { | |
4246a0b6 | 1325 | bio_io_error(bio); |
dece1635 | 1326 | return BLK_QC_T_NONE; |
07068d5b JA |
1327 | } |
1328 | ||
54efd50b KO |
1329 | blk_queue_split(q, &bio, q->bio_split); |
1330 | ||
87c279e6 OS |
1331 | if (!is_flush_fua && !blk_queue_nomerges(q) && |
1332 | blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq)) | |
1333 | return BLK_QC_T_NONE; | |
f984df1f | 1334 | |
07068d5b JA |
1335 | rq = blk_mq_map_request(q, bio, &data); |
1336 | if (unlikely(!rq)) | |
dece1635 | 1337 | return BLK_QC_T_NONE; |
07068d5b | 1338 | |
7b371636 | 1339 | cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num); |
07068d5b JA |
1340 | |
1341 | if (unlikely(is_flush_fua)) { | |
1342 | blk_mq_bio_to_request(rq, bio); | |
1343 | blk_insert_flush(rq); | |
1344 | goto run_queue; | |
1345 | } | |
1346 | ||
f984df1f | 1347 | plug = current->plug; |
e167dfb5 JA |
1348 | /* |
1349 | * If the driver supports defer issued based on 'last', then | |
1350 | * queue it up like normal since we can potentially save some | |
1351 | * CPU this way. | |
1352 | */ | |
f984df1f SL |
1353 | if (((plug && !blk_queue_nomerges(q)) || is_sync) && |
1354 | !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) { | |
1355 | struct request *old_rq = NULL; | |
07068d5b JA |
1356 | |
1357 | blk_mq_bio_to_request(rq, bio); | |
07068d5b JA |
1358 | |
1359 | /* | |
6a83e74d | 1360 | * We do limited plugging. If the bio can be merged, do that. |
f984df1f SL |
1361 | * Otherwise the existing request in the plug list will be |
1362 | * issued. So the plug list will have one request at most | |
07068d5b | 1363 | */ |
f984df1f | 1364 | if (plug) { |
5b3f341f SL |
1365 | /* |
1366 | * The plug list might get flushed before this. If that | |
b094f89c JA |
1367 | * happens, same_queue_rq is invalid and plug list is |
1368 | * empty | |
1369 | */ | |
5b3f341f SL |
1370 | if (same_queue_rq && !list_empty(&plug->mq_list)) { |
1371 | old_rq = same_queue_rq; | |
f984df1f | 1372 | list_del_init(&old_rq->queuelist); |
07068d5b | 1373 | } |
f984df1f SL |
1374 | list_add_tail(&rq->queuelist, &plug->mq_list); |
1375 | } else /* is_sync */ | |
1376 | old_rq = rq; | |
1377 | blk_mq_put_ctx(data.ctx); | |
1378 | if (!old_rq) | |
7b371636 | 1379 | goto done; |
6a83e74d BVA |
1380 | |
1381 | if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) { | |
1382 | rcu_read_lock(); | |
1383 | blk_mq_try_issue_directly(data.hctx, old_rq, &cookie); | |
1384 | rcu_read_unlock(); | |
1385 | } else { | |
1386 | srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu); | |
1387 | blk_mq_try_issue_directly(data.hctx, old_rq, &cookie); | |
1388 | srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx); | |
1389 | } | |
7b371636 | 1390 | goto done; |
07068d5b JA |
1391 | } |
1392 | ||
1393 | if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) { | |
1394 | /* | |
1395 | * For a SYNC request, send it to the hardware immediately. For | |
1396 | * an ASYNC request, just ensure that we run it later on. The | |
1397 | * latter allows for merging opportunities and more efficient | |
1398 | * dispatching. | |
1399 | */ | |
1400 | run_queue: | |
1401 | blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua); | |
1402 | } | |
07068d5b | 1403 | blk_mq_put_ctx(data.ctx); |
7b371636 JA |
1404 | done: |
1405 | return cookie; | |
07068d5b JA |
1406 | } |
1407 | ||
1408 | /* | |
1409 | * Single hardware queue variant. This will attempt to use any per-process | |
1410 | * plug for merging and IO deferral. | |
1411 | */ | |
dece1635 | 1412 | static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio) |
07068d5b | 1413 | { |
ef295ecf | 1414 | const int is_sync = op_is_sync(bio->bi_opf); |
1eff9d32 | 1415 | const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA); |
e6c4438b JM |
1416 | struct blk_plug *plug; |
1417 | unsigned int request_count = 0; | |
2552e3f8 | 1418 | struct blk_mq_alloc_data data; |
07068d5b | 1419 | struct request *rq; |
7b371636 | 1420 | blk_qc_t cookie; |
07068d5b | 1421 | |
07068d5b JA |
1422 | blk_queue_bounce(q, &bio); |
1423 | ||
1424 | if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) { | |
4246a0b6 | 1425 | bio_io_error(bio); |
dece1635 | 1426 | return BLK_QC_T_NONE; |
07068d5b JA |
1427 | } |
1428 | ||
54efd50b KO |
1429 | blk_queue_split(q, &bio, q->bio_split); |
1430 | ||
87c279e6 OS |
1431 | if (!is_flush_fua && !blk_queue_nomerges(q)) { |
1432 | if (blk_attempt_plug_merge(q, bio, &request_count, NULL)) | |
1433 | return BLK_QC_T_NONE; | |
1434 | } else | |
1435 | request_count = blk_plug_queued_count(q); | |
07068d5b JA |
1436 | |
1437 | rq = blk_mq_map_request(q, bio, &data); | |
ff87bcec | 1438 | if (unlikely(!rq)) |
dece1635 | 1439 | return BLK_QC_T_NONE; |
320ae51f | 1440 | |
7b371636 | 1441 | cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num); |
320ae51f JA |
1442 | |
1443 | if (unlikely(is_flush_fua)) { | |
1444 | blk_mq_bio_to_request(rq, bio); | |
320ae51f JA |
1445 | blk_insert_flush(rq); |
1446 | goto run_queue; | |
1447 | } | |
1448 | ||
1449 | /* | |
1450 | * A task plug currently exists. Since this is completely lockless, | |
1451 | * utilize that to temporarily store requests until the task is | |
1452 | * either done or scheduled away. | |
1453 | */ | |
e6c4438b JM |
1454 | plug = current->plug; |
1455 | if (plug) { | |
600271d9 SL |
1456 | struct request *last = NULL; |
1457 | ||
e6c4438b | 1458 | blk_mq_bio_to_request(rq, bio); |
676d0607 | 1459 | if (!request_count) |
e6c4438b | 1460 | trace_block_plug(q); |
600271d9 SL |
1461 | else |
1462 | last = list_entry_rq(plug->mq_list.prev); | |
b094f89c JA |
1463 | |
1464 | blk_mq_put_ctx(data.ctx); | |
1465 | ||
600271d9 SL |
1466 | if (request_count >= BLK_MAX_REQUEST_COUNT || (last && |
1467 | blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) { | |
e6c4438b JM |
1468 | blk_flush_plug_list(plug, false); |
1469 | trace_block_plug(q); | |
320ae51f | 1470 | } |
b094f89c | 1471 | |
e6c4438b | 1472 | list_add_tail(&rq->queuelist, &plug->mq_list); |
7b371636 | 1473 | return cookie; |
320ae51f JA |
1474 | } |
1475 | ||
07068d5b JA |
1476 | if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) { |
1477 | /* | |
1478 | * For a SYNC request, send it to the hardware immediately. For | |
1479 | * an ASYNC request, just ensure that we run it later on. The | |
1480 | * latter allows for merging opportunities and more efficient | |
1481 | * dispatching. | |
1482 | */ | |
1483 | run_queue: | |
1484 | blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua); | |
320ae51f JA |
1485 | } |
1486 | ||
07068d5b | 1487 | blk_mq_put_ctx(data.ctx); |
7b371636 | 1488 | return cookie; |
320ae51f JA |
1489 | } |
1490 | ||
24d2f903 CH |
1491 | static void blk_mq_free_rq_map(struct blk_mq_tag_set *set, |
1492 | struct blk_mq_tags *tags, unsigned int hctx_idx) | |
95363efd | 1493 | { |
e9b267d9 | 1494 | struct page *page; |
320ae51f | 1495 | |
24d2f903 | 1496 | if (tags->rqs && set->ops->exit_request) { |
e9b267d9 | 1497 | int i; |
320ae51f | 1498 | |
24d2f903 CH |
1499 | for (i = 0; i < tags->nr_tags; i++) { |
1500 | if (!tags->rqs[i]) | |
e9b267d9 | 1501 | continue; |
24d2f903 CH |
1502 | set->ops->exit_request(set->driver_data, tags->rqs[i], |
1503 | hctx_idx, i); | |
a5164405 | 1504 | tags->rqs[i] = NULL; |
e9b267d9 | 1505 | } |
320ae51f | 1506 | } |
320ae51f | 1507 | |
24d2f903 CH |
1508 | while (!list_empty(&tags->page_list)) { |
1509 | page = list_first_entry(&tags->page_list, struct page, lru); | |
6753471c | 1510 | list_del_init(&page->lru); |
f75782e4 CM |
1511 | /* |
1512 | * Remove kmemleak object previously allocated in | |
1513 | * blk_mq_init_rq_map(). | |
1514 | */ | |
1515 | kmemleak_free(page_address(page)); | |
320ae51f JA |
1516 | __free_pages(page, page->private); |
1517 | } | |
1518 | ||
24d2f903 | 1519 | kfree(tags->rqs); |
320ae51f | 1520 | |
24d2f903 | 1521 | blk_mq_free_tags(tags); |
320ae51f JA |
1522 | } |
1523 | ||
1524 | static size_t order_to_size(unsigned int order) | |
1525 | { | |
4ca08500 | 1526 | return (size_t)PAGE_SIZE << order; |
320ae51f JA |
1527 | } |
1528 | ||
24d2f903 CH |
1529 | static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set, |
1530 | unsigned int hctx_idx) | |
320ae51f | 1531 | { |
24d2f903 | 1532 | struct blk_mq_tags *tags; |
320ae51f JA |
1533 | unsigned int i, j, entries_per_page, max_order = 4; |
1534 | size_t rq_size, left; | |
1535 | ||
24d2f903 | 1536 | tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags, |
24391c0d SL |
1537 | set->numa_node, |
1538 | BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags)); | |
24d2f903 CH |
1539 | if (!tags) |
1540 | return NULL; | |
320ae51f | 1541 | |
24d2f903 CH |
1542 | INIT_LIST_HEAD(&tags->page_list); |
1543 | ||
a5164405 JA |
1544 | tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *), |
1545 | GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY, | |
1546 | set->numa_node); | |
24d2f903 CH |
1547 | if (!tags->rqs) { |
1548 | blk_mq_free_tags(tags); | |
1549 | return NULL; | |
1550 | } | |
320ae51f JA |
1551 | |
1552 | /* | |
1553 | * rq_size is the size of the request plus driver payload, rounded | |
1554 | * to the cacheline size | |
1555 | */ | |
24d2f903 | 1556 | rq_size = round_up(sizeof(struct request) + set->cmd_size, |
320ae51f | 1557 | cache_line_size()); |
24d2f903 | 1558 | left = rq_size * set->queue_depth; |
320ae51f | 1559 | |
24d2f903 | 1560 | for (i = 0; i < set->queue_depth; ) { |
320ae51f JA |
1561 | int this_order = max_order; |
1562 | struct page *page; | |
1563 | int to_do; | |
1564 | void *p; | |
1565 | ||
b3a834b1 | 1566 | while (this_order && left < order_to_size(this_order - 1)) |
320ae51f JA |
1567 | this_order--; |
1568 | ||
1569 | do { | |
a5164405 | 1570 | page = alloc_pages_node(set->numa_node, |
ac211175 | 1571 | GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO, |
a5164405 | 1572 | this_order); |
320ae51f JA |
1573 | if (page) |
1574 | break; | |
1575 | if (!this_order--) | |
1576 | break; | |
1577 | if (order_to_size(this_order) < rq_size) | |
1578 | break; | |
1579 | } while (1); | |
1580 | ||
1581 | if (!page) | |
24d2f903 | 1582 | goto fail; |
320ae51f JA |
1583 | |
1584 | page->private = this_order; | |
24d2f903 | 1585 | list_add_tail(&page->lru, &tags->page_list); |
320ae51f JA |
1586 | |
1587 | p = page_address(page); | |
f75782e4 CM |
1588 | /* |
1589 | * Allow kmemleak to scan these pages as they contain pointers | |
1590 | * to additional allocations like via ops->init_request(). | |
1591 | */ | |
1592 | kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL); | |
320ae51f | 1593 | entries_per_page = order_to_size(this_order) / rq_size; |
24d2f903 | 1594 | to_do = min(entries_per_page, set->queue_depth - i); |
320ae51f JA |
1595 | left -= to_do * rq_size; |
1596 | for (j = 0; j < to_do; j++) { | |
24d2f903 CH |
1597 | tags->rqs[i] = p; |
1598 | if (set->ops->init_request) { | |
1599 | if (set->ops->init_request(set->driver_data, | |
1600 | tags->rqs[i], hctx_idx, i, | |
a5164405 JA |
1601 | set->numa_node)) { |
1602 | tags->rqs[i] = NULL; | |
24d2f903 | 1603 | goto fail; |
a5164405 | 1604 | } |
e9b267d9 CH |
1605 | } |
1606 | ||
320ae51f JA |
1607 | p += rq_size; |
1608 | i++; | |
1609 | } | |
1610 | } | |
24d2f903 | 1611 | return tags; |
320ae51f | 1612 | |
24d2f903 | 1613 | fail: |
24d2f903 CH |
1614 | blk_mq_free_rq_map(set, tags, hctx_idx); |
1615 | return NULL; | |
320ae51f JA |
1616 | } |
1617 | ||
e57690fe JA |
1618 | /* |
1619 | * 'cpu' is going away. splice any existing rq_list entries from this | |
1620 | * software queue to the hw queue dispatch list, and ensure that it | |
1621 | * gets run. | |
1622 | */ | |
9467f859 | 1623 | static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node) |
484b4061 | 1624 | { |
9467f859 | 1625 | struct blk_mq_hw_ctx *hctx; |
484b4061 JA |
1626 | struct blk_mq_ctx *ctx; |
1627 | LIST_HEAD(tmp); | |
1628 | ||
9467f859 | 1629 | hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead); |
e57690fe | 1630 | ctx = __blk_mq_get_ctx(hctx->queue, cpu); |
484b4061 JA |
1631 | |
1632 | spin_lock(&ctx->lock); | |
1633 | if (!list_empty(&ctx->rq_list)) { | |
1634 | list_splice_init(&ctx->rq_list, &tmp); | |
1635 | blk_mq_hctx_clear_pending(hctx, ctx); | |
1636 | } | |
1637 | spin_unlock(&ctx->lock); | |
1638 | ||
1639 | if (list_empty(&tmp)) | |
9467f859 | 1640 | return 0; |
484b4061 | 1641 | |
e57690fe JA |
1642 | spin_lock(&hctx->lock); |
1643 | list_splice_tail_init(&tmp, &hctx->dispatch); | |
1644 | spin_unlock(&hctx->lock); | |
484b4061 JA |
1645 | |
1646 | blk_mq_run_hw_queue(hctx, true); | |
9467f859 | 1647 | return 0; |
484b4061 JA |
1648 | } |
1649 | ||
9467f859 | 1650 | static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx) |
484b4061 | 1651 | { |
9467f859 TG |
1652 | cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD, |
1653 | &hctx->cpuhp_dead); | |
484b4061 JA |
1654 | } |
1655 | ||
c3b4afca | 1656 | /* hctx->ctxs will be freed in queue's release handler */ |
08e98fc6 ML |
1657 | static void blk_mq_exit_hctx(struct request_queue *q, |
1658 | struct blk_mq_tag_set *set, | |
1659 | struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) | |
1660 | { | |
f70ced09 ML |
1661 | unsigned flush_start_tag = set->queue_depth; |
1662 | ||
08e98fc6 ML |
1663 | blk_mq_tag_idle(hctx); |
1664 | ||
f70ced09 ML |
1665 | if (set->ops->exit_request) |
1666 | set->ops->exit_request(set->driver_data, | |
1667 | hctx->fq->flush_rq, hctx_idx, | |
1668 | flush_start_tag + hctx_idx); | |
1669 | ||
08e98fc6 ML |
1670 | if (set->ops->exit_hctx) |
1671 | set->ops->exit_hctx(hctx, hctx_idx); | |
1672 | ||
6a83e74d BVA |
1673 | if (hctx->flags & BLK_MQ_F_BLOCKING) |
1674 | cleanup_srcu_struct(&hctx->queue_rq_srcu); | |
1675 | ||
9467f859 | 1676 | blk_mq_remove_cpuhp(hctx); |
f70ced09 | 1677 | blk_free_flush_queue(hctx->fq); |
88459642 | 1678 | sbitmap_free(&hctx->ctx_map); |
08e98fc6 ML |
1679 | } |
1680 | ||
624dbe47 ML |
1681 | static void blk_mq_exit_hw_queues(struct request_queue *q, |
1682 | struct blk_mq_tag_set *set, int nr_queue) | |
1683 | { | |
1684 | struct blk_mq_hw_ctx *hctx; | |
1685 | unsigned int i; | |
1686 | ||
1687 | queue_for_each_hw_ctx(q, hctx, i) { | |
1688 | if (i == nr_queue) | |
1689 | break; | |
08e98fc6 | 1690 | blk_mq_exit_hctx(q, set, hctx, i); |
624dbe47 | 1691 | } |
624dbe47 ML |
1692 | } |
1693 | ||
1694 | static void blk_mq_free_hw_queues(struct request_queue *q, | |
1695 | struct blk_mq_tag_set *set) | |
1696 | { | |
1697 | struct blk_mq_hw_ctx *hctx; | |
1698 | unsigned int i; | |
1699 | ||
e09aae7e | 1700 | queue_for_each_hw_ctx(q, hctx, i) |
624dbe47 | 1701 | free_cpumask_var(hctx->cpumask); |
624dbe47 ML |
1702 | } |
1703 | ||
08e98fc6 ML |
1704 | static int blk_mq_init_hctx(struct request_queue *q, |
1705 | struct blk_mq_tag_set *set, | |
1706 | struct blk_mq_hw_ctx *hctx, unsigned hctx_idx) | |
320ae51f | 1707 | { |
08e98fc6 | 1708 | int node; |
f70ced09 | 1709 | unsigned flush_start_tag = set->queue_depth; |
08e98fc6 ML |
1710 | |
1711 | node = hctx->numa_node; | |
1712 | if (node == NUMA_NO_NODE) | |
1713 | node = hctx->numa_node = set->numa_node; | |
1714 | ||
27489a3c | 1715 | INIT_WORK(&hctx->run_work, blk_mq_run_work_fn); |
08e98fc6 ML |
1716 | INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn); |
1717 | spin_lock_init(&hctx->lock); | |
1718 | INIT_LIST_HEAD(&hctx->dispatch); | |
1719 | hctx->queue = q; | |
1720 | hctx->queue_num = hctx_idx; | |
2404e607 | 1721 | hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED; |
08e98fc6 | 1722 | |
9467f859 | 1723 | cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead); |
08e98fc6 ML |
1724 | |
1725 | hctx->tags = set->tags[hctx_idx]; | |
320ae51f JA |
1726 | |
1727 | /* | |
08e98fc6 ML |
1728 | * Allocate space for all possible cpus to avoid allocation at |
1729 | * runtime | |
320ae51f | 1730 | */ |
08e98fc6 ML |
1731 | hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *), |
1732 | GFP_KERNEL, node); | |
1733 | if (!hctx->ctxs) | |
1734 | goto unregister_cpu_notifier; | |
320ae51f | 1735 | |
88459642 OS |
1736 | if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL, |
1737 | node)) | |
08e98fc6 | 1738 | goto free_ctxs; |
320ae51f | 1739 | |
08e98fc6 | 1740 | hctx->nr_ctx = 0; |
320ae51f | 1741 | |
08e98fc6 ML |
1742 | if (set->ops->init_hctx && |
1743 | set->ops->init_hctx(hctx, set->driver_data, hctx_idx)) | |
1744 | goto free_bitmap; | |
320ae51f | 1745 | |
f70ced09 ML |
1746 | hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size); |
1747 | if (!hctx->fq) | |
1748 | goto exit_hctx; | |
320ae51f | 1749 | |
f70ced09 ML |
1750 | if (set->ops->init_request && |
1751 | set->ops->init_request(set->driver_data, | |
1752 | hctx->fq->flush_rq, hctx_idx, | |
1753 | flush_start_tag + hctx_idx, node)) | |
1754 | goto free_fq; | |
320ae51f | 1755 | |
6a83e74d BVA |
1756 | if (hctx->flags & BLK_MQ_F_BLOCKING) |
1757 | init_srcu_struct(&hctx->queue_rq_srcu); | |
1758 | ||
08e98fc6 | 1759 | return 0; |
320ae51f | 1760 | |
f70ced09 ML |
1761 | free_fq: |
1762 | kfree(hctx->fq); | |
1763 | exit_hctx: | |
1764 | if (set->ops->exit_hctx) | |
1765 | set->ops->exit_hctx(hctx, hctx_idx); | |
08e98fc6 | 1766 | free_bitmap: |
88459642 | 1767 | sbitmap_free(&hctx->ctx_map); |
08e98fc6 ML |
1768 | free_ctxs: |
1769 | kfree(hctx->ctxs); | |
1770 | unregister_cpu_notifier: | |
9467f859 | 1771 | blk_mq_remove_cpuhp(hctx); |
08e98fc6 ML |
1772 | return -1; |
1773 | } | |
320ae51f | 1774 | |
320ae51f JA |
1775 | static void blk_mq_init_cpu_queues(struct request_queue *q, |
1776 | unsigned int nr_hw_queues) | |
1777 | { | |
1778 | unsigned int i; | |
1779 | ||
1780 | for_each_possible_cpu(i) { | |
1781 | struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i); | |
1782 | struct blk_mq_hw_ctx *hctx; | |
1783 | ||
1784 | memset(__ctx, 0, sizeof(*__ctx)); | |
1785 | __ctx->cpu = i; | |
1786 | spin_lock_init(&__ctx->lock); | |
1787 | INIT_LIST_HEAD(&__ctx->rq_list); | |
1788 | __ctx->queue = q; | |
1789 | ||
1790 | /* If the cpu isn't online, the cpu is mapped to first hctx */ | |
320ae51f JA |
1791 | if (!cpu_online(i)) |
1792 | continue; | |
1793 | ||
7d7e0f90 | 1794 | hctx = blk_mq_map_queue(q, i); |
e4043dcf | 1795 | |
320ae51f JA |
1796 | /* |
1797 | * Set local node, IFF we have more than one hw queue. If | |
1798 | * not, we remain on the home node of the device | |
1799 | */ | |
1800 | if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE) | |
bffed457 | 1801 | hctx->numa_node = local_memory_node(cpu_to_node(i)); |
320ae51f JA |
1802 | } |
1803 | } | |
1804 | ||
5778322e AM |
1805 | static void blk_mq_map_swqueue(struct request_queue *q, |
1806 | const struct cpumask *online_mask) | |
320ae51f JA |
1807 | { |
1808 | unsigned int i; | |
1809 | struct blk_mq_hw_ctx *hctx; | |
1810 | struct blk_mq_ctx *ctx; | |
2a34c087 | 1811 | struct blk_mq_tag_set *set = q->tag_set; |
320ae51f | 1812 | |
60de074b AM |
1813 | /* |
1814 | * Avoid others reading imcomplete hctx->cpumask through sysfs | |
1815 | */ | |
1816 | mutex_lock(&q->sysfs_lock); | |
1817 | ||
320ae51f | 1818 | queue_for_each_hw_ctx(q, hctx, i) { |
e4043dcf | 1819 | cpumask_clear(hctx->cpumask); |
320ae51f JA |
1820 | hctx->nr_ctx = 0; |
1821 | } | |
1822 | ||
1823 | /* | |
1824 | * Map software to hardware queues | |
1825 | */ | |
897bb0c7 | 1826 | for_each_possible_cpu(i) { |
320ae51f | 1827 | /* If the cpu isn't online, the cpu is mapped to first hctx */ |
5778322e | 1828 | if (!cpumask_test_cpu(i, online_mask)) |
e4043dcf JA |
1829 | continue; |
1830 | ||
897bb0c7 | 1831 | ctx = per_cpu_ptr(q->queue_ctx, i); |
7d7e0f90 | 1832 | hctx = blk_mq_map_queue(q, i); |
868f2f0b | 1833 | |
e4043dcf | 1834 | cpumask_set_cpu(i, hctx->cpumask); |
320ae51f JA |
1835 | ctx->index_hw = hctx->nr_ctx; |
1836 | hctx->ctxs[hctx->nr_ctx++] = ctx; | |
1837 | } | |
506e931f | 1838 | |
60de074b AM |
1839 | mutex_unlock(&q->sysfs_lock); |
1840 | ||
506e931f | 1841 | queue_for_each_hw_ctx(q, hctx, i) { |
484b4061 | 1842 | /* |
a68aafa5 JA |
1843 | * If no software queues are mapped to this hardware queue, |
1844 | * disable it and free the request entries. | |
484b4061 JA |
1845 | */ |
1846 | if (!hctx->nr_ctx) { | |
484b4061 JA |
1847 | if (set->tags[i]) { |
1848 | blk_mq_free_rq_map(set, set->tags[i], i); | |
1849 | set->tags[i] = NULL; | |
484b4061 | 1850 | } |
2a34c087 | 1851 | hctx->tags = NULL; |
484b4061 JA |
1852 | continue; |
1853 | } | |
1854 | ||
2a34c087 ML |
1855 | /* unmapped hw queue can be remapped after CPU topo changed */ |
1856 | if (!set->tags[i]) | |
1857 | set->tags[i] = blk_mq_init_rq_map(set, i); | |
1858 | hctx->tags = set->tags[i]; | |
1859 | WARN_ON(!hctx->tags); | |
1860 | ||
889fa31f CY |
1861 | /* |
1862 | * Set the map size to the number of mapped software queues. | |
1863 | * This is more accurate and more efficient than looping | |
1864 | * over all possibly mapped software queues. | |
1865 | */ | |
88459642 | 1866 | sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx); |
889fa31f | 1867 | |
484b4061 JA |
1868 | /* |
1869 | * Initialize batch roundrobin counts | |
1870 | */ | |
506e931f JA |
1871 | hctx->next_cpu = cpumask_first(hctx->cpumask); |
1872 | hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH; | |
1873 | } | |
320ae51f JA |
1874 | } |
1875 | ||
2404e607 | 1876 | static void queue_set_hctx_shared(struct request_queue *q, bool shared) |
0d2602ca JA |
1877 | { |
1878 | struct blk_mq_hw_ctx *hctx; | |
0d2602ca JA |
1879 | int i; |
1880 | ||
2404e607 JM |
1881 | queue_for_each_hw_ctx(q, hctx, i) { |
1882 | if (shared) | |
1883 | hctx->flags |= BLK_MQ_F_TAG_SHARED; | |
1884 | else | |
1885 | hctx->flags &= ~BLK_MQ_F_TAG_SHARED; | |
1886 | } | |
1887 | } | |
1888 | ||
1889 | static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared) | |
1890 | { | |
1891 | struct request_queue *q; | |
0d2602ca JA |
1892 | |
1893 | list_for_each_entry(q, &set->tag_list, tag_set_list) { | |
1894 | blk_mq_freeze_queue(q); | |
2404e607 | 1895 | queue_set_hctx_shared(q, shared); |
0d2602ca JA |
1896 | blk_mq_unfreeze_queue(q); |
1897 | } | |
1898 | } | |
1899 | ||
1900 | static void blk_mq_del_queue_tag_set(struct request_queue *q) | |
1901 | { | |
1902 | struct blk_mq_tag_set *set = q->tag_set; | |
1903 | ||
0d2602ca JA |
1904 | mutex_lock(&set->tag_list_lock); |
1905 | list_del_init(&q->tag_set_list); | |
2404e607 JM |
1906 | if (list_is_singular(&set->tag_list)) { |
1907 | /* just transitioned to unshared */ | |
1908 | set->flags &= ~BLK_MQ_F_TAG_SHARED; | |
1909 | /* update existing queue */ | |
1910 | blk_mq_update_tag_set_depth(set, false); | |
1911 | } | |
0d2602ca | 1912 | mutex_unlock(&set->tag_list_lock); |
0d2602ca JA |
1913 | } |
1914 | ||
1915 | static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set, | |
1916 | struct request_queue *q) | |
1917 | { | |
1918 | q->tag_set = set; | |
1919 | ||
1920 | mutex_lock(&set->tag_list_lock); | |
2404e607 JM |
1921 | |
1922 | /* Check to see if we're transitioning to shared (from 1 to 2 queues). */ | |
1923 | if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) { | |
1924 | set->flags |= BLK_MQ_F_TAG_SHARED; | |
1925 | /* update existing queue */ | |
1926 | blk_mq_update_tag_set_depth(set, true); | |
1927 | } | |
1928 | if (set->flags & BLK_MQ_F_TAG_SHARED) | |
1929 | queue_set_hctx_shared(q, true); | |
0d2602ca | 1930 | list_add_tail(&q->tag_set_list, &set->tag_list); |
2404e607 | 1931 | |
0d2602ca JA |
1932 | mutex_unlock(&set->tag_list_lock); |
1933 | } | |
1934 | ||
e09aae7e ML |
1935 | /* |
1936 | * It is the actual release handler for mq, but we do it from | |
1937 | * request queue's release handler for avoiding use-after-free | |
1938 | * and headache because q->mq_kobj shouldn't have been introduced, | |
1939 | * but we can't group ctx/kctx kobj without it. | |
1940 | */ | |
1941 | void blk_mq_release(struct request_queue *q) | |
1942 | { | |
1943 | struct blk_mq_hw_ctx *hctx; | |
1944 | unsigned int i; | |
1945 | ||
1946 | /* hctx kobj stays in hctx */ | |
c3b4afca ML |
1947 | queue_for_each_hw_ctx(q, hctx, i) { |
1948 | if (!hctx) | |
1949 | continue; | |
1950 | kfree(hctx->ctxs); | |
e09aae7e | 1951 | kfree(hctx); |
c3b4afca | 1952 | } |
e09aae7e | 1953 | |
a723bab3 AM |
1954 | q->mq_map = NULL; |
1955 | ||
e09aae7e ML |
1956 | kfree(q->queue_hw_ctx); |
1957 | ||
1958 | /* ctx kobj stays in queue_ctx */ | |
1959 | free_percpu(q->queue_ctx); | |
1960 | } | |
1961 | ||
24d2f903 | 1962 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set) |
b62c21b7 MS |
1963 | { |
1964 | struct request_queue *uninit_q, *q; | |
1965 | ||
1966 | uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node); | |
1967 | if (!uninit_q) | |
1968 | return ERR_PTR(-ENOMEM); | |
1969 | ||
1970 | q = blk_mq_init_allocated_queue(set, uninit_q); | |
1971 | if (IS_ERR(q)) | |
1972 | blk_cleanup_queue(uninit_q); | |
1973 | ||
1974 | return q; | |
1975 | } | |
1976 | EXPORT_SYMBOL(blk_mq_init_queue); | |
1977 | ||
868f2f0b KB |
1978 | static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set, |
1979 | struct request_queue *q) | |
320ae51f | 1980 | { |
868f2f0b KB |
1981 | int i, j; |
1982 | struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx; | |
f14bbe77 | 1983 | |
868f2f0b | 1984 | blk_mq_sysfs_unregister(q); |
24d2f903 | 1985 | for (i = 0; i < set->nr_hw_queues; i++) { |
868f2f0b | 1986 | int node; |
f14bbe77 | 1987 | |
868f2f0b KB |
1988 | if (hctxs[i]) |
1989 | continue; | |
1990 | ||
1991 | node = blk_mq_hw_queue_to_node(q->mq_map, i); | |
cdef54dd CH |
1992 | hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx), |
1993 | GFP_KERNEL, node); | |
320ae51f | 1994 | if (!hctxs[i]) |
868f2f0b | 1995 | break; |
320ae51f | 1996 | |
a86073e4 | 1997 | if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL, |
868f2f0b KB |
1998 | node)) { |
1999 | kfree(hctxs[i]); | |
2000 | hctxs[i] = NULL; | |
2001 | break; | |
2002 | } | |
e4043dcf | 2003 | |
0d2602ca | 2004 | atomic_set(&hctxs[i]->nr_active, 0); |
f14bbe77 | 2005 | hctxs[i]->numa_node = node; |
320ae51f | 2006 | hctxs[i]->queue_num = i; |
868f2f0b KB |
2007 | |
2008 | if (blk_mq_init_hctx(q, set, hctxs[i], i)) { | |
2009 | free_cpumask_var(hctxs[i]->cpumask); | |
2010 | kfree(hctxs[i]); | |
2011 | hctxs[i] = NULL; | |
2012 | break; | |
2013 | } | |
2014 | blk_mq_hctx_kobj_init(hctxs[i]); | |
320ae51f | 2015 | } |
868f2f0b KB |
2016 | for (j = i; j < q->nr_hw_queues; j++) { |
2017 | struct blk_mq_hw_ctx *hctx = hctxs[j]; | |
2018 | ||
2019 | if (hctx) { | |
2020 | if (hctx->tags) { | |
2021 | blk_mq_free_rq_map(set, hctx->tags, j); | |
2022 | set->tags[j] = NULL; | |
2023 | } | |
2024 | blk_mq_exit_hctx(q, set, hctx, j); | |
2025 | free_cpumask_var(hctx->cpumask); | |
2026 | kobject_put(&hctx->kobj); | |
2027 | kfree(hctx->ctxs); | |
2028 | kfree(hctx); | |
2029 | hctxs[j] = NULL; | |
2030 | ||
2031 | } | |
2032 | } | |
2033 | q->nr_hw_queues = i; | |
2034 | blk_mq_sysfs_register(q); | |
2035 | } | |
2036 | ||
2037 | struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set, | |
2038 | struct request_queue *q) | |
2039 | { | |
66841672 ML |
2040 | /* mark the queue as mq asap */ |
2041 | q->mq_ops = set->ops; | |
2042 | ||
868f2f0b KB |
2043 | q->queue_ctx = alloc_percpu(struct blk_mq_ctx); |
2044 | if (!q->queue_ctx) | |
c7de5726 | 2045 | goto err_exit; |
868f2f0b KB |
2046 | |
2047 | q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)), | |
2048 | GFP_KERNEL, set->numa_node); | |
2049 | if (!q->queue_hw_ctx) | |
2050 | goto err_percpu; | |
2051 | ||
bdd17e75 | 2052 | q->mq_map = set->mq_map; |
868f2f0b KB |
2053 | |
2054 | blk_mq_realloc_hw_ctxs(set, q); | |
2055 | if (!q->nr_hw_queues) | |
2056 | goto err_hctxs; | |
320ae51f | 2057 | |
287922eb | 2058 | INIT_WORK(&q->timeout_work, blk_mq_timeout_work); |
e56f698b | 2059 | blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ); |
320ae51f JA |
2060 | |
2061 | q->nr_queues = nr_cpu_ids; | |
320ae51f | 2062 | |
94eddfbe | 2063 | q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT; |
320ae51f | 2064 | |
05f1dd53 JA |
2065 | if (!(set->flags & BLK_MQ_F_SG_MERGE)) |
2066 | q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE; | |
2067 | ||
1be036e9 CH |
2068 | q->sg_reserved_size = INT_MAX; |
2069 | ||
2849450a | 2070 | INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work); |
6fca6a61 CH |
2071 | INIT_LIST_HEAD(&q->requeue_list); |
2072 | spin_lock_init(&q->requeue_lock); | |
2073 | ||
07068d5b JA |
2074 | if (q->nr_hw_queues > 1) |
2075 | blk_queue_make_request(q, blk_mq_make_request); | |
2076 | else | |
2077 | blk_queue_make_request(q, blk_sq_make_request); | |
2078 | ||
eba71768 JA |
2079 | /* |
2080 | * Do this after blk_queue_make_request() overrides it... | |
2081 | */ | |
2082 | q->nr_requests = set->queue_depth; | |
2083 | ||
24d2f903 CH |
2084 | if (set->ops->complete) |
2085 | blk_queue_softirq_done(q, set->ops->complete); | |
30a91cb4 | 2086 | |
24d2f903 | 2087 | blk_mq_init_cpu_queues(q, set->nr_hw_queues); |
320ae51f | 2088 | |
5778322e | 2089 | get_online_cpus(); |
320ae51f | 2090 | mutex_lock(&all_q_mutex); |
320ae51f | 2091 | |
4593fdbe | 2092 | list_add_tail(&q->all_q_node, &all_q_list); |
0d2602ca | 2093 | blk_mq_add_queue_tag_set(set, q); |
5778322e | 2094 | blk_mq_map_swqueue(q, cpu_online_mask); |
484b4061 | 2095 | |
4593fdbe | 2096 | mutex_unlock(&all_q_mutex); |
5778322e | 2097 | put_online_cpus(); |
4593fdbe | 2098 | |
320ae51f | 2099 | return q; |
18741986 | 2100 | |
320ae51f | 2101 | err_hctxs: |
868f2f0b | 2102 | kfree(q->queue_hw_ctx); |
320ae51f | 2103 | err_percpu: |
868f2f0b | 2104 | free_percpu(q->queue_ctx); |
c7de5726 ML |
2105 | err_exit: |
2106 | q->mq_ops = NULL; | |
320ae51f JA |
2107 | return ERR_PTR(-ENOMEM); |
2108 | } | |
b62c21b7 | 2109 | EXPORT_SYMBOL(blk_mq_init_allocated_queue); |
320ae51f JA |
2110 | |
2111 | void blk_mq_free_queue(struct request_queue *q) | |
2112 | { | |
624dbe47 | 2113 | struct blk_mq_tag_set *set = q->tag_set; |
320ae51f | 2114 | |
0e626368 AM |
2115 | mutex_lock(&all_q_mutex); |
2116 | list_del_init(&q->all_q_node); | |
2117 | mutex_unlock(&all_q_mutex); | |
2118 | ||
0d2602ca JA |
2119 | blk_mq_del_queue_tag_set(q); |
2120 | ||
624dbe47 ML |
2121 | blk_mq_exit_hw_queues(q, set, set->nr_hw_queues); |
2122 | blk_mq_free_hw_queues(q, set); | |
320ae51f | 2123 | } |
320ae51f JA |
2124 | |
2125 | /* Basically redo blk_mq_init_queue with queue frozen */ | |
5778322e AM |
2126 | static void blk_mq_queue_reinit(struct request_queue *q, |
2127 | const struct cpumask *online_mask) | |
320ae51f | 2128 | { |
4ecd4fef | 2129 | WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth)); |
320ae51f | 2130 | |
67aec14c JA |
2131 | blk_mq_sysfs_unregister(q); |
2132 | ||
320ae51f JA |
2133 | /* |
2134 | * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe | |
2135 | * we should change hctx numa_node according to new topology (this | |
2136 | * involves free and re-allocate memory, worthy doing?) | |
2137 | */ | |
2138 | ||
5778322e | 2139 | blk_mq_map_swqueue(q, online_mask); |
320ae51f | 2140 | |
67aec14c | 2141 | blk_mq_sysfs_register(q); |
320ae51f JA |
2142 | } |
2143 | ||
65d5291e SAS |
2144 | /* |
2145 | * New online cpumask which is going to be set in this hotplug event. | |
2146 | * Declare this cpumasks as global as cpu-hotplug operation is invoked | |
2147 | * one-by-one and dynamically allocating this could result in a failure. | |
2148 | */ | |
2149 | static struct cpumask cpuhp_online_new; | |
2150 | ||
2151 | static void blk_mq_queue_reinit_work(void) | |
320ae51f JA |
2152 | { |
2153 | struct request_queue *q; | |
320ae51f JA |
2154 | |
2155 | mutex_lock(&all_q_mutex); | |
f3af020b TH |
2156 | /* |
2157 | * We need to freeze and reinit all existing queues. Freezing | |
2158 | * involves synchronous wait for an RCU grace period and doing it | |
2159 | * one by one may take a long time. Start freezing all queues in | |
2160 | * one swoop and then wait for the completions so that freezing can | |
2161 | * take place in parallel. | |
2162 | */ | |
2163 | list_for_each_entry(q, &all_q_list, all_q_node) | |
2164 | blk_mq_freeze_queue_start(q); | |
f054b56c | 2165 | list_for_each_entry(q, &all_q_list, all_q_node) { |
f3af020b TH |
2166 | blk_mq_freeze_queue_wait(q); |
2167 | ||
f054b56c ML |
2168 | /* |
2169 | * timeout handler can't touch hw queue during the | |
2170 | * reinitialization | |
2171 | */ | |
2172 | del_timer_sync(&q->timeout); | |
2173 | } | |
2174 | ||
320ae51f | 2175 | list_for_each_entry(q, &all_q_list, all_q_node) |
65d5291e | 2176 | blk_mq_queue_reinit(q, &cpuhp_online_new); |
f3af020b TH |
2177 | |
2178 | list_for_each_entry(q, &all_q_list, all_q_node) | |
2179 | blk_mq_unfreeze_queue(q); | |
2180 | ||
320ae51f | 2181 | mutex_unlock(&all_q_mutex); |
65d5291e SAS |
2182 | } |
2183 | ||
2184 | static int blk_mq_queue_reinit_dead(unsigned int cpu) | |
2185 | { | |
97a32864 | 2186 | cpumask_copy(&cpuhp_online_new, cpu_online_mask); |
65d5291e SAS |
2187 | blk_mq_queue_reinit_work(); |
2188 | return 0; | |
2189 | } | |
2190 | ||
2191 | /* | |
2192 | * Before hotadded cpu starts handling requests, new mappings must be | |
2193 | * established. Otherwise, these requests in hw queue might never be | |
2194 | * dispatched. | |
2195 | * | |
2196 | * For example, there is a single hw queue (hctx) and two CPU queues (ctx0 | |
2197 | * for CPU0, and ctx1 for CPU1). | |
2198 | * | |
2199 | * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list | |
2200 | * and set bit0 in pending bitmap as ctx1->index_hw is still zero. | |
2201 | * | |
2202 | * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in | |
2203 | * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list. | |
2204 | * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list | |
2205 | * is ignored. | |
2206 | */ | |
2207 | static int blk_mq_queue_reinit_prepare(unsigned int cpu) | |
2208 | { | |
2209 | cpumask_copy(&cpuhp_online_new, cpu_online_mask); | |
2210 | cpumask_set_cpu(cpu, &cpuhp_online_new); | |
2211 | blk_mq_queue_reinit_work(); | |
2212 | return 0; | |
320ae51f JA |
2213 | } |
2214 | ||
a5164405 JA |
2215 | static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set) |
2216 | { | |
2217 | int i; | |
2218 | ||
2219 | for (i = 0; i < set->nr_hw_queues; i++) { | |
2220 | set->tags[i] = blk_mq_init_rq_map(set, i); | |
2221 | if (!set->tags[i]) | |
2222 | goto out_unwind; | |
2223 | } | |
2224 | ||
2225 | return 0; | |
2226 | ||
2227 | out_unwind: | |
2228 | while (--i >= 0) | |
2229 | blk_mq_free_rq_map(set, set->tags[i], i); | |
2230 | ||
a5164405 JA |
2231 | return -ENOMEM; |
2232 | } | |
2233 | ||
2234 | /* | |
2235 | * Allocate the request maps associated with this tag_set. Note that this | |
2236 | * may reduce the depth asked for, if memory is tight. set->queue_depth | |
2237 | * will be updated to reflect the allocated depth. | |
2238 | */ | |
2239 | static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set) | |
2240 | { | |
2241 | unsigned int depth; | |
2242 | int err; | |
2243 | ||
2244 | depth = set->queue_depth; | |
2245 | do { | |
2246 | err = __blk_mq_alloc_rq_maps(set); | |
2247 | if (!err) | |
2248 | break; | |
2249 | ||
2250 | set->queue_depth >>= 1; | |
2251 | if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) { | |
2252 | err = -ENOMEM; | |
2253 | break; | |
2254 | } | |
2255 | } while (set->queue_depth); | |
2256 | ||
2257 | if (!set->queue_depth || err) { | |
2258 | pr_err("blk-mq: failed to allocate request map\n"); | |
2259 | return -ENOMEM; | |
2260 | } | |
2261 | ||
2262 | if (depth != set->queue_depth) | |
2263 | pr_info("blk-mq: reduced tag depth (%u -> %u)\n", | |
2264 | depth, set->queue_depth); | |
2265 | ||
2266 | return 0; | |
2267 | } | |
2268 | ||
a4391c64 JA |
2269 | /* |
2270 | * Alloc a tag set to be associated with one or more request queues. | |
2271 | * May fail with EINVAL for various error conditions. May adjust the | |
2272 | * requested depth down, if if it too large. In that case, the set | |
2273 | * value will be stored in set->queue_depth. | |
2274 | */ | |
24d2f903 CH |
2275 | int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set) |
2276 | { | |
da695ba2 CH |
2277 | int ret; |
2278 | ||
205fb5f5 BVA |
2279 | BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS); |
2280 | ||
24d2f903 CH |
2281 | if (!set->nr_hw_queues) |
2282 | return -EINVAL; | |
a4391c64 | 2283 | if (!set->queue_depth) |
24d2f903 CH |
2284 | return -EINVAL; |
2285 | if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) | |
2286 | return -EINVAL; | |
2287 | ||
7d7e0f90 | 2288 | if (!set->ops->queue_rq) |
24d2f903 CH |
2289 | return -EINVAL; |
2290 | ||
a4391c64 JA |
2291 | if (set->queue_depth > BLK_MQ_MAX_DEPTH) { |
2292 | pr_info("blk-mq: reduced tag depth to %u\n", | |
2293 | BLK_MQ_MAX_DEPTH); | |
2294 | set->queue_depth = BLK_MQ_MAX_DEPTH; | |
2295 | } | |
24d2f903 | 2296 | |
6637fadf SL |
2297 | /* |
2298 | * If a crashdump is active, then we are potentially in a very | |
2299 | * memory constrained environment. Limit us to 1 queue and | |
2300 | * 64 tags to prevent using too much memory. | |
2301 | */ | |
2302 | if (is_kdump_kernel()) { | |
2303 | set->nr_hw_queues = 1; | |
2304 | set->queue_depth = min(64U, set->queue_depth); | |
2305 | } | |
868f2f0b KB |
2306 | /* |
2307 | * There is no use for more h/w queues than cpus. | |
2308 | */ | |
2309 | if (set->nr_hw_queues > nr_cpu_ids) | |
2310 | set->nr_hw_queues = nr_cpu_ids; | |
6637fadf | 2311 | |
868f2f0b | 2312 | set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *), |
24d2f903 CH |
2313 | GFP_KERNEL, set->numa_node); |
2314 | if (!set->tags) | |
a5164405 | 2315 | return -ENOMEM; |
24d2f903 | 2316 | |
da695ba2 CH |
2317 | ret = -ENOMEM; |
2318 | set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids, | |
2319 | GFP_KERNEL, set->numa_node); | |
bdd17e75 CH |
2320 | if (!set->mq_map) |
2321 | goto out_free_tags; | |
2322 | ||
da695ba2 CH |
2323 | if (set->ops->map_queues) |
2324 | ret = set->ops->map_queues(set); | |
2325 | else | |
2326 | ret = blk_mq_map_queues(set); | |
2327 | if (ret) | |
2328 | goto out_free_mq_map; | |
2329 | ||
2330 | ret = blk_mq_alloc_rq_maps(set); | |
2331 | if (ret) | |
bdd17e75 | 2332 | goto out_free_mq_map; |
24d2f903 | 2333 | |
0d2602ca JA |
2334 | mutex_init(&set->tag_list_lock); |
2335 | INIT_LIST_HEAD(&set->tag_list); | |
2336 | ||
24d2f903 | 2337 | return 0; |
bdd17e75 CH |
2338 | |
2339 | out_free_mq_map: | |
2340 | kfree(set->mq_map); | |
2341 | set->mq_map = NULL; | |
2342 | out_free_tags: | |
5676e7b6 RE |
2343 | kfree(set->tags); |
2344 | set->tags = NULL; | |
da695ba2 | 2345 | return ret; |
24d2f903 CH |
2346 | } |
2347 | EXPORT_SYMBOL(blk_mq_alloc_tag_set); | |
2348 | ||
2349 | void blk_mq_free_tag_set(struct blk_mq_tag_set *set) | |
2350 | { | |
2351 | int i; | |
2352 | ||
868f2f0b | 2353 | for (i = 0; i < nr_cpu_ids; i++) { |
f42d79ab | 2354 | if (set->tags[i]) |
484b4061 JA |
2355 | blk_mq_free_rq_map(set, set->tags[i], i); |
2356 | } | |
2357 | ||
bdd17e75 CH |
2358 | kfree(set->mq_map); |
2359 | set->mq_map = NULL; | |
2360 | ||
981bd189 | 2361 | kfree(set->tags); |
5676e7b6 | 2362 | set->tags = NULL; |
24d2f903 CH |
2363 | } |
2364 | EXPORT_SYMBOL(blk_mq_free_tag_set); | |
2365 | ||
e3a2b3f9 JA |
2366 | int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr) |
2367 | { | |
2368 | struct blk_mq_tag_set *set = q->tag_set; | |
2369 | struct blk_mq_hw_ctx *hctx; | |
2370 | int i, ret; | |
2371 | ||
2372 | if (!set || nr > set->queue_depth) | |
2373 | return -EINVAL; | |
2374 | ||
2375 | ret = 0; | |
2376 | queue_for_each_hw_ctx(q, hctx, i) { | |
e9137d4b KB |
2377 | if (!hctx->tags) |
2378 | continue; | |
e3a2b3f9 JA |
2379 | ret = blk_mq_tag_update_depth(hctx->tags, nr); |
2380 | if (ret) | |
2381 | break; | |
2382 | } | |
2383 | ||
2384 | if (!ret) | |
2385 | q->nr_requests = nr; | |
2386 | ||
2387 | return ret; | |
2388 | } | |
2389 | ||
868f2f0b KB |
2390 | void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues) |
2391 | { | |
2392 | struct request_queue *q; | |
2393 | ||
2394 | if (nr_hw_queues > nr_cpu_ids) | |
2395 | nr_hw_queues = nr_cpu_ids; | |
2396 | if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues) | |
2397 | return; | |
2398 | ||
2399 | list_for_each_entry(q, &set->tag_list, tag_set_list) | |
2400 | blk_mq_freeze_queue(q); | |
2401 | ||
2402 | set->nr_hw_queues = nr_hw_queues; | |
2403 | list_for_each_entry(q, &set->tag_list, tag_set_list) { | |
2404 | blk_mq_realloc_hw_ctxs(set, q); | |
2405 | ||
2406 | if (q->nr_hw_queues > 1) | |
2407 | blk_queue_make_request(q, blk_mq_make_request); | |
2408 | else | |
2409 | blk_queue_make_request(q, blk_sq_make_request); | |
2410 | ||
2411 | blk_mq_queue_reinit(q, cpu_online_mask); | |
2412 | } | |
2413 | ||
2414 | list_for_each_entry(q, &set->tag_list, tag_set_list) | |
2415 | blk_mq_unfreeze_queue(q); | |
2416 | } | |
2417 | EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues); | |
2418 | ||
676141e4 JA |
2419 | void blk_mq_disable_hotplug(void) |
2420 | { | |
2421 | mutex_lock(&all_q_mutex); | |
2422 | } | |
2423 | ||
2424 | void blk_mq_enable_hotplug(void) | |
2425 | { | |
2426 | mutex_unlock(&all_q_mutex); | |
2427 | } | |
2428 | ||
320ae51f JA |
2429 | static int __init blk_mq_init(void) |
2430 | { | |
9467f859 TG |
2431 | cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL, |
2432 | blk_mq_hctx_notify_dead); | |
320ae51f | 2433 | |
65d5291e SAS |
2434 | cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare", |
2435 | blk_mq_queue_reinit_prepare, | |
2436 | blk_mq_queue_reinit_dead); | |
320ae51f JA |
2437 | return 0; |
2438 | } | |
2439 | subsys_initcall(blk_mq_init); |