]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - block/blk-core.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[mirror_ubuntu-artful-kernel.git] / block / blk-core.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
6728cb0e
JA
6 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
1da177e4
LT
8 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
1da177e4
LT
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
320ae51f 19#include <linux/blk-mq.h>
1da177e4
LT
20#include <linux/highmem.h>
21#include <linux/mm.h>
22#include <linux/kernel_stat.h>
23#include <linux/string.h>
24#include <linux/init.h>
1da177e4
LT
25#include <linux/completion.h>
26#include <linux/slab.h>
27#include <linux/swap.h>
28#include <linux/writeback.h>
faccbd4b 29#include <linux/task_io_accounting_ops.h>
c17bb495 30#include <linux/fault-inject.h>
73c10101 31#include <linux/list_sort.h>
e3c78ca5 32#include <linux/delay.h>
aaf7c680 33#include <linux/ratelimit.h>
6c954667 34#include <linux/pm_runtime.h>
eea8f41c 35#include <linux/blk-cgroup.h>
18fbda91 36#include <linux/debugfs.h>
55782138
LZ
37
38#define CREATE_TRACE_POINTS
39#include <trace/events/block.h>
1da177e4 40
8324aa91 41#include "blk.h"
43a5e4e2 42#include "blk-mq.h"
bd166ef1 43#include "blk-mq-sched.h"
87760e5e 44#include "blk-wbt.h"
8324aa91 45
18fbda91
OS
46#ifdef CONFIG_DEBUG_FS
47struct dentry *blk_debugfs_root;
48#endif
49
d07335e5 50EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
b0da3f0d 51EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
0a82a8d1 52EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
3291fa57 53EXPORT_TRACEPOINT_SYMBOL_GPL(block_split);
cbae8d45 54EXPORT_TRACEPOINT_SYMBOL_GPL(block_unplug);
0bfc2455 55
a73f730d
TH
56DEFINE_IDA(blk_queue_ida);
57
1da177e4
LT
58/*
59 * For the allocated request tables
60 */
d674d414 61struct kmem_cache *request_cachep;
1da177e4
LT
62
63/*
64 * For queue allocation
65 */
6728cb0e 66struct kmem_cache *blk_requestq_cachep;
1da177e4 67
1da177e4
LT
68/*
69 * Controlling structure to kblockd
70 */
ff856bad 71static struct workqueue_struct *kblockd_workqueue;
1da177e4 72
d40f75a0
TH
73static void blk_clear_congested(struct request_list *rl, int sync)
74{
d40f75a0
TH
75#ifdef CONFIG_CGROUP_WRITEBACK
76 clear_wb_congested(rl->blkg->wb_congested, sync);
77#else
482cf79c
TH
78 /*
79 * If !CGROUP_WRITEBACK, all blkg's map to bdi->wb and we shouldn't
80 * flip its congestion state for events on other blkcgs.
81 */
82 if (rl == &rl->q->root_rl)
dc3b17cc 83 clear_wb_congested(rl->q->backing_dev_info->wb.congested, sync);
d40f75a0
TH
84#endif
85}
86
87static void blk_set_congested(struct request_list *rl, int sync)
88{
d40f75a0
TH
89#ifdef CONFIG_CGROUP_WRITEBACK
90 set_wb_congested(rl->blkg->wb_congested, sync);
91#else
482cf79c
TH
92 /* see blk_clear_congested() */
93 if (rl == &rl->q->root_rl)
dc3b17cc 94 set_wb_congested(rl->q->backing_dev_info->wb.congested, sync);
d40f75a0
TH
95#endif
96}
97
8324aa91 98void blk_queue_congestion_threshold(struct request_queue *q)
1da177e4
LT
99{
100 int nr;
101
102 nr = q->nr_requests - (q->nr_requests / 8) + 1;
103 if (nr > q->nr_requests)
104 nr = q->nr_requests;
105 q->nr_congestion_on = nr;
106
107 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
108 if (nr < 1)
109 nr = 1;
110 q->nr_congestion_off = nr;
111}
112
2a4aa30c 113void blk_rq_init(struct request_queue *q, struct request *rq)
1da177e4 114{
1afb20f3
FT
115 memset(rq, 0, sizeof(*rq));
116
1da177e4 117 INIT_LIST_HEAD(&rq->queuelist);
242f9dcb 118 INIT_LIST_HEAD(&rq->timeout_list);
c7c22e4d 119 rq->cpu = -1;
63a71386 120 rq->q = q;
a2dec7b3 121 rq->__sector = (sector_t) -1;
2e662b65
JA
122 INIT_HLIST_NODE(&rq->hash);
123 RB_CLEAR_NODE(&rq->rb_node);
63a71386 124 rq->tag = -1;
bd166ef1 125 rq->internal_tag = -1;
b243ddcb 126 rq->start_time = jiffies;
9195291e 127 set_start_time_ns(rq);
09e099d4 128 rq->part = NULL;
1da177e4 129}
2a4aa30c 130EXPORT_SYMBOL(blk_rq_init);
1da177e4 131
5bb23a68
N
132static void req_bio_endio(struct request *rq, struct bio *bio,
133 unsigned int nbytes, int error)
1da177e4 134{
78d8e58a 135 if (error)
4246a0b6 136 bio->bi_error = error;
797e7dbb 137
e8064021 138 if (unlikely(rq->rq_flags & RQF_QUIET))
b7c44ed9 139 bio_set_flag(bio, BIO_QUIET);
08bafc03 140
f79ea416 141 bio_advance(bio, nbytes);
7ba1ba12 142
143a87f4 143 /* don't actually finish bio if it's part of flush sequence */
e8064021 144 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
4246a0b6 145 bio_endio(bio);
1da177e4 146}
1da177e4 147
1da177e4
LT
148void blk_dump_rq_flags(struct request *rq, char *msg)
149{
aebf526b
CH
150 printk(KERN_INFO "%s: dev %s: flags=%llx\n", msg,
151 rq->rq_disk ? rq->rq_disk->disk_name : "?",
5953316d 152 (unsigned long long) rq->cmd_flags);
1da177e4 153
83096ebf
TH
154 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
155 (unsigned long long)blk_rq_pos(rq),
156 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
b4f42e28
JA
157 printk(KERN_INFO " bio %p, biotail %p, len %u\n",
158 rq->bio, rq->biotail, blk_rq_bytes(rq));
1da177e4 159}
1da177e4
LT
160EXPORT_SYMBOL(blk_dump_rq_flags);
161
3cca6dc1 162static void blk_delay_work(struct work_struct *work)
1da177e4 163{
3cca6dc1 164 struct request_queue *q;
1da177e4 165
3cca6dc1
JA
166 q = container_of(work, struct request_queue, delay_work.work);
167 spin_lock_irq(q->queue_lock);
24ecfbe2 168 __blk_run_queue(q);
3cca6dc1 169 spin_unlock_irq(q->queue_lock);
1da177e4 170}
1da177e4
LT
171
172/**
3cca6dc1
JA
173 * blk_delay_queue - restart queueing after defined interval
174 * @q: The &struct request_queue in question
175 * @msecs: Delay in msecs
1da177e4
LT
176 *
177 * Description:
3cca6dc1
JA
178 * Sometimes queueing needs to be postponed for a little while, to allow
179 * resources to come back. This function will make sure that queueing is
70460571 180 * restarted around the specified time. Queue lock must be held.
3cca6dc1
JA
181 */
182void blk_delay_queue(struct request_queue *q, unsigned long msecs)
2ad8b1ef 183{
70460571
BVA
184 if (likely(!blk_queue_dead(q)))
185 queue_delayed_work(kblockd_workqueue, &q->delay_work,
186 msecs_to_jiffies(msecs));
2ad8b1ef 187}
3cca6dc1 188EXPORT_SYMBOL(blk_delay_queue);
2ad8b1ef 189
21491412
JA
190/**
191 * blk_start_queue_async - asynchronously restart a previously stopped queue
192 * @q: The &struct request_queue in question
193 *
194 * Description:
195 * blk_start_queue_async() will clear the stop flag on the queue, and
196 * ensure that the request_fn for the queue is run from an async
197 * context.
198 **/
199void blk_start_queue_async(struct request_queue *q)
200{
201 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
202 blk_run_queue_async(q);
203}
204EXPORT_SYMBOL(blk_start_queue_async);
205
1da177e4
LT
206/**
207 * blk_start_queue - restart a previously stopped queue
165125e1 208 * @q: The &struct request_queue in question
1da177e4
LT
209 *
210 * Description:
211 * blk_start_queue() will clear the stop flag on the queue, and call
212 * the request_fn for the queue if it was in a stopped state when
213 * entered. Also see blk_stop_queue(). Queue lock must be held.
214 **/
165125e1 215void blk_start_queue(struct request_queue *q)
1da177e4 216{
a038e253
PBG
217 WARN_ON(!irqs_disabled());
218
75ad23bc 219 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
24ecfbe2 220 __blk_run_queue(q);
1da177e4 221}
1da177e4
LT
222EXPORT_SYMBOL(blk_start_queue);
223
224/**
225 * blk_stop_queue - stop a queue
165125e1 226 * @q: The &struct request_queue in question
1da177e4
LT
227 *
228 * Description:
229 * The Linux block layer assumes that a block driver will consume all
230 * entries on the request queue when the request_fn strategy is called.
231 * Often this will not happen, because of hardware limitations (queue
232 * depth settings). If a device driver gets a 'queue full' response,
233 * or if it simply chooses not to queue more I/O at one point, it can
234 * call this function to prevent the request_fn from being called until
235 * the driver has signalled it's ready to go again. This happens by calling
236 * blk_start_queue() to restart queue operations. Queue lock must be held.
237 **/
165125e1 238void blk_stop_queue(struct request_queue *q)
1da177e4 239{
136b5721 240 cancel_delayed_work(&q->delay_work);
75ad23bc 241 queue_flag_set(QUEUE_FLAG_STOPPED, q);
1da177e4
LT
242}
243EXPORT_SYMBOL(blk_stop_queue);
244
245/**
246 * blk_sync_queue - cancel any pending callbacks on a queue
247 * @q: the queue
248 *
249 * Description:
250 * The block layer may perform asynchronous callback activity
251 * on a queue, such as calling the unplug function after a timeout.
252 * A block device may call blk_sync_queue to ensure that any
253 * such activity is cancelled, thus allowing it to release resources
59c51591 254 * that the callbacks might use. The caller must already have made sure
1da177e4
LT
255 * that its ->make_request_fn will not re-add plugging prior to calling
256 * this function.
257 *
da527770 258 * This function does not cancel any asynchronous activity arising
da3dae54 259 * out of elevator or throttling code. That would require elevator_exit()
5efd6113 260 * and blkcg_exit_queue() to be called with queue lock initialized.
da527770 261 *
1da177e4
LT
262 */
263void blk_sync_queue(struct request_queue *q)
264{
70ed28b9 265 del_timer_sync(&q->timeout);
f04c1fe7
ML
266
267 if (q->mq_ops) {
268 struct blk_mq_hw_ctx *hctx;
269 int i;
270
70f4db63 271 queue_for_each_hw_ctx(q, hctx, i) {
27489a3c 272 cancel_work_sync(&hctx->run_work);
70f4db63
CH
273 cancel_delayed_work_sync(&hctx->delay_work);
274 }
f04c1fe7
ML
275 } else {
276 cancel_delayed_work_sync(&q->delay_work);
277 }
1da177e4
LT
278}
279EXPORT_SYMBOL(blk_sync_queue);
280
c246e80d
BVA
281/**
282 * __blk_run_queue_uncond - run a queue whether or not it has been stopped
283 * @q: The queue to run
284 *
285 * Description:
286 * Invoke request handling on a queue if there are any pending requests.
287 * May be used to restart request handling after a request has completed.
288 * This variant runs the queue whether or not the queue has been
289 * stopped. Must be called with the queue lock held and interrupts
290 * disabled. See also @blk_run_queue.
291 */
292inline void __blk_run_queue_uncond(struct request_queue *q)
293{
294 if (unlikely(blk_queue_dead(q)))
295 return;
296
24faf6f6
BVA
297 /*
298 * Some request_fn implementations, e.g. scsi_request_fn(), unlock
299 * the queue lock internally. As a result multiple threads may be
300 * running such a request function concurrently. Keep track of the
301 * number of active request_fn invocations such that blk_drain_queue()
302 * can wait until all these request_fn calls have finished.
303 */
304 q->request_fn_active++;
c246e80d 305 q->request_fn(q);
24faf6f6 306 q->request_fn_active--;
c246e80d 307}
a7928c15 308EXPORT_SYMBOL_GPL(__blk_run_queue_uncond);
c246e80d 309
1da177e4 310/**
80a4b58e 311 * __blk_run_queue - run a single device queue
1da177e4 312 * @q: The queue to run
80a4b58e
JA
313 *
314 * Description:
315 * See @blk_run_queue. This variant must be called with the queue lock
24ecfbe2 316 * held and interrupts disabled.
1da177e4 317 */
24ecfbe2 318void __blk_run_queue(struct request_queue *q)
1da177e4 319{
a538cd03
TH
320 if (unlikely(blk_queue_stopped(q)))
321 return;
322
c246e80d 323 __blk_run_queue_uncond(q);
75ad23bc
NP
324}
325EXPORT_SYMBOL(__blk_run_queue);
dac07ec1 326
24ecfbe2
CH
327/**
328 * blk_run_queue_async - run a single device queue in workqueue context
329 * @q: The queue to run
330 *
331 * Description:
332 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
70460571 333 * of us. The caller must hold the queue lock.
24ecfbe2
CH
334 */
335void blk_run_queue_async(struct request_queue *q)
336{
70460571 337 if (likely(!blk_queue_stopped(q) && !blk_queue_dead(q)))
e7c2f967 338 mod_delayed_work(kblockd_workqueue, &q->delay_work, 0);
24ecfbe2 339}
c21e6beb 340EXPORT_SYMBOL(blk_run_queue_async);
24ecfbe2 341
75ad23bc
NP
342/**
343 * blk_run_queue - run a single device queue
344 * @q: The queue to run
80a4b58e
JA
345 *
346 * Description:
347 * Invoke request handling on this queue, if it has pending work to do.
a7f55792 348 * May be used to restart queueing when a request has completed.
75ad23bc
NP
349 */
350void blk_run_queue(struct request_queue *q)
351{
352 unsigned long flags;
353
354 spin_lock_irqsave(q->queue_lock, flags);
24ecfbe2 355 __blk_run_queue(q);
1da177e4
LT
356 spin_unlock_irqrestore(q->queue_lock, flags);
357}
358EXPORT_SYMBOL(blk_run_queue);
359
165125e1 360void blk_put_queue(struct request_queue *q)
483f4afc
AV
361{
362 kobject_put(&q->kobj);
363}
d86e0e83 364EXPORT_SYMBOL(blk_put_queue);
483f4afc 365
e3c78ca5 366/**
807592a4 367 * __blk_drain_queue - drain requests from request_queue
e3c78ca5 368 * @q: queue to drain
c9a929dd 369 * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
e3c78ca5 370 *
c9a929dd
TH
371 * Drain requests from @q. If @drain_all is set, all requests are drained.
372 * If not, only ELVPRIV requests are drained. The caller is responsible
373 * for ensuring that no new requests which need to be drained are queued.
e3c78ca5 374 */
807592a4
BVA
375static void __blk_drain_queue(struct request_queue *q, bool drain_all)
376 __releases(q->queue_lock)
377 __acquires(q->queue_lock)
e3c78ca5 378{
458f27a9
AH
379 int i;
380
807592a4
BVA
381 lockdep_assert_held(q->queue_lock);
382
e3c78ca5 383 while (true) {
481a7d64 384 bool drain = false;
e3c78ca5 385
b855b04a
TH
386 /*
387 * The caller might be trying to drain @q before its
388 * elevator is initialized.
389 */
390 if (q->elevator)
391 elv_drain_elevator(q);
392
5efd6113 393 blkcg_drain_queue(q);
e3c78ca5 394
4eabc941
TH
395 /*
396 * This function might be called on a queue which failed
b855b04a
TH
397 * driver init after queue creation or is not yet fully
398 * active yet. Some drivers (e.g. fd and loop) get unhappy
399 * in such cases. Kick queue iff dispatch queue has
400 * something on it and @q has request_fn set.
4eabc941 401 */
b855b04a 402 if (!list_empty(&q->queue_head) && q->request_fn)
4eabc941 403 __blk_run_queue(q);
c9a929dd 404
8a5ecdd4 405 drain |= q->nr_rqs_elvpriv;
24faf6f6 406 drain |= q->request_fn_active;
481a7d64
TH
407
408 /*
409 * Unfortunately, requests are queued at and tracked from
410 * multiple places and there's no single counter which can
411 * be drained. Check all the queues and counters.
412 */
413 if (drain_all) {
e97c293c 414 struct blk_flush_queue *fq = blk_get_flush_queue(q, NULL);
481a7d64
TH
415 drain |= !list_empty(&q->queue_head);
416 for (i = 0; i < 2; i++) {
8a5ecdd4 417 drain |= q->nr_rqs[i];
481a7d64 418 drain |= q->in_flight[i];
7c94e1c1
ML
419 if (fq)
420 drain |= !list_empty(&fq->flush_queue[i]);
481a7d64
TH
421 }
422 }
e3c78ca5 423
481a7d64 424 if (!drain)
e3c78ca5 425 break;
807592a4
BVA
426
427 spin_unlock_irq(q->queue_lock);
428
e3c78ca5 429 msleep(10);
807592a4
BVA
430
431 spin_lock_irq(q->queue_lock);
e3c78ca5 432 }
458f27a9
AH
433
434 /*
435 * With queue marked dead, any woken up waiter will fail the
436 * allocation path, so the wakeup chaining is lost and we're
437 * left with hung waiters. We need to wake up those waiters.
438 */
439 if (q->request_fn) {
a051661c
TH
440 struct request_list *rl;
441
a051661c
TH
442 blk_queue_for_each_rl(rl, q)
443 for (i = 0; i < ARRAY_SIZE(rl->wait); i++)
444 wake_up_all(&rl->wait[i]);
458f27a9 445 }
e3c78ca5
TH
446}
447
d732580b
TH
448/**
449 * blk_queue_bypass_start - enter queue bypass mode
450 * @q: queue of interest
451 *
452 * In bypass mode, only the dispatch FIFO queue of @q is used. This
453 * function makes @q enter bypass mode and drains all requests which were
6ecf23af 454 * throttled or issued before. On return, it's guaranteed that no request
80fd9979
TH
455 * is being throttled or has ELVPRIV set and blk_queue_bypass() %true
456 * inside queue or RCU read lock.
d732580b
TH
457 */
458void blk_queue_bypass_start(struct request_queue *q)
459{
460 spin_lock_irq(q->queue_lock);
776687bc 461 q->bypass_depth++;
d732580b
TH
462 queue_flag_set(QUEUE_FLAG_BYPASS, q);
463 spin_unlock_irq(q->queue_lock);
464
776687bc
TH
465 /*
466 * Queues start drained. Skip actual draining till init is
467 * complete. This avoids lenghty delays during queue init which
468 * can happen many times during boot.
469 */
470 if (blk_queue_init_done(q)) {
807592a4
BVA
471 spin_lock_irq(q->queue_lock);
472 __blk_drain_queue(q, false);
473 spin_unlock_irq(q->queue_lock);
474
b82d4b19
TH
475 /* ensure blk_queue_bypass() is %true inside RCU read lock */
476 synchronize_rcu();
477 }
d732580b
TH
478}
479EXPORT_SYMBOL_GPL(blk_queue_bypass_start);
480
481/**
482 * blk_queue_bypass_end - leave queue bypass mode
483 * @q: queue of interest
484 *
485 * Leave bypass mode and restore the normal queueing behavior.
486 */
487void blk_queue_bypass_end(struct request_queue *q)
488{
489 spin_lock_irq(q->queue_lock);
490 if (!--q->bypass_depth)
491 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
492 WARN_ON_ONCE(q->bypass_depth < 0);
493 spin_unlock_irq(q->queue_lock);
494}
495EXPORT_SYMBOL_GPL(blk_queue_bypass_end);
496
aed3ea94
JA
497void blk_set_queue_dying(struct request_queue *q)
498{
1b856086
BVA
499 spin_lock_irq(q->queue_lock);
500 queue_flag_set(QUEUE_FLAG_DYING, q);
501 spin_unlock_irq(q->queue_lock);
aed3ea94
JA
502
503 if (q->mq_ops)
504 blk_mq_wake_waiters(q);
505 else {
506 struct request_list *rl;
507
bbfc3c5d 508 spin_lock_irq(q->queue_lock);
aed3ea94
JA
509 blk_queue_for_each_rl(rl, q) {
510 if (rl->rq_pool) {
511 wake_up(&rl->wait[BLK_RW_SYNC]);
512 wake_up(&rl->wait[BLK_RW_ASYNC]);
513 }
514 }
bbfc3c5d 515 spin_unlock_irq(q->queue_lock);
aed3ea94
JA
516 }
517}
518EXPORT_SYMBOL_GPL(blk_set_queue_dying);
519
c9a929dd
TH
520/**
521 * blk_cleanup_queue - shutdown a request queue
522 * @q: request queue to shutdown
523 *
c246e80d
BVA
524 * Mark @q DYING, drain all pending requests, mark @q DEAD, destroy and
525 * put it. All future requests will be failed immediately with -ENODEV.
c94a96ac 526 */
6728cb0e 527void blk_cleanup_queue(struct request_queue *q)
483f4afc 528{
c9a929dd 529 spinlock_t *lock = q->queue_lock;
e3335de9 530
3f3299d5 531 /* mark @q DYING, no new request or merges will be allowed afterwards */
483f4afc 532 mutex_lock(&q->sysfs_lock);
aed3ea94 533 blk_set_queue_dying(q);
c9a929dd 534 spin_lock_irq(lock);
6ecf23af 535
80fd9979 536 /*
3f3299d5 537 * A dying queue is permanently in bypass mode till released. Note
80fd9979
TH
538 * that, unlike blk_queue_bypass_start(), we aren't performing
539 * synchronize_rcu() after entering bypass mode to avoid the delay
540 * as some drivers create and destroy a lot of queues while
541 * probing. This is still safe because blk_release_queue() will be
542 * called only after the queue refcnt drops to zero and nothing,
543 * RCU or not, would be traversing the queue by then.
544 */
6ecf23af
TH
545 q->bypass_depth++;
546 queue_flag_set(QUEUE_FLAG_BYPASS, q);
547
c9a929dd
TH
548 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
549 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
3f3299d5 550 queue_flag_set(QUEUE_FLAG_DYING, q);
c9a929dd
TH
551 spin_unlock_irq(lock);
552 mutex_unlock(&q->sysfs_lock);
553
c246e80d
BVA
554 /*
555 * Drain all requests queued before DYING marking. Set DEAD flag to
556 * prevent that q->request_fn() gets invoked after draining finished.
557 */
3ef28e83
DW
558 blk_freeze_queue(q);
559 spin_lock_irq(lock);
560 if (!q->mq_ops)
43a5e4e2 561 __blk_drain_queue(q, true);
c246e80d 562 queue_flag_set(QUEUE_FLAG_DEAD, q);
807592a4 563 spin_unlock_irq(lock);
c9a929dd 564
5a48fc14
DW
565 /* for synchronous bio-based driver finish in-flight integrity i/o */
566 blk_flush_integrity();
567
c9a929dd 568 /* @q won't process any more request, flush async actions */
dc3b17cc 569 del_timer_sync(&q->backing_dev_info->laptop_mode_wb_timer);
c9a929dd
TH
570 blk_sync_queue(q);
571
45a9c9d9
BVA
572 if (q->mq_ops)
573 blk_mq_free_queue(q);
3ef28e83 574 percpu_ref_exit(&q->q_usage_counter);
45a9c9d9 575
5e5cfac0
AH
576 spin_lock_irq(lock);
577 if (q->queue_lock != &q->__queue_lock)
578 q->queue_lock = &q->__queue_lock;
579 spin_unlock_irq(lock);
580
dc3b17cc 581 bdi_unregister(q->backing_dev_info);
0dba1314 582 put_disk_devt(q->disk_devt);
6cd18e71 583
c9a929dd 584 /* @q is and will stay empty, shutdown and put */
483f4afc
AV
585 blk_put_queue(q);
586}
1da177e4
LT
587EXPORT_SYMBOL(blk_cleanup_queue);
588
271508db 589/* Allocate memory local to the request queue */
6d247d7f 590static void *alloc_request_simple(gfp_t gfp_mask, void *data)
271508db 591{
6d247d7f
CH
592 struct request_queue *q = data;
593
594 return kmem_cache_alloc_node(request_cachep, gfp_mask, q->node);
271508db
DR
595}
596
6d247d7f 597static void free_request_simple(void *element, void *data)
271508db
DR
598{
599 kmem_cache_free(request_cachep, element);
600}
601
6d247d7f
CH
602static void *alloc_request_size(gfp_t gfp_mask, void *data)
603{
604 struct request_queue *q = data;
605 struct request *rq;
606
607 rq = kmalloc_node(sizeof(struct request) + q->cmd_size, gfp_mask,
608 q->node);
609 if (rq && q->init_rq_fn && q->init_rq_fn(q, rq, gfp_mask) < 0) {
610 kfree(rq);
611 rq = NULL;
612 }
613 return rq;
614}
615
616static void free_request_size(void *element, void *data)
617{
618 struct request_queue *q = data;
619
620 if (q->exit_rq_fn)
621 q->exit_rq_fn(q, element);
622 kfree(element);
623}
624
5b788ce3
TH
625int blk_init_rl(struct request_list *rl, struct request_queue *q,
626 gfp_t gfp_mask)
1da177e4 627{
1abec4fd
MS
628 if (unlikely(rl->rq_pool))
629 return 0;
630
5b788ce3 631 rl->q = q;
1faa16d2
JA
632 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
633 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
1faa16d2
JA
634 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
635 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
1da177e4 636
6d247d7f
CH
637 if (q->cmd_size) {
638 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
639 alloc_request_size, free_request_size,
640 q, gfp_mask, q->node);
641 } else {
642 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
643 alloc_request_simple, free_request_simple,
644 q, gfp_mask, q->node);
645 }
1da177e4
LT
646 if (!rl->rq_pool)
647 return -ENOMEM;
648
649 return 0;
650}
651
5b788ce3
TH
652void blk_exit_rl(struct request_list *rl)
653{
654 if (rl->rq_pool)
655 mempool_destroy(rl->rq_pool);
656}
657
165125e1 658struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
1da177e4 659{
c304a51b 660 return blk_alloc_queue_node(gfp_mask, NUMA_NO_NODE);
1946089a
CL
661}
662EXPORT_SYMBOL(blk_alloc_queue);
1da177e4 663
6f3b0e8b 664int blk_queue_enter(struct request_queue *q, bool nowait)
3ef28e83
DW
665{
666 while (true) {
667 int ret;
668
669 if (percpu_ref_tryget_live(&q->q_usage_counter))
670 return 0;
671
6f3b0e8b 672 if (nowait)
3ef28e83
DW
673 return -EBUSY;
674
675 ret = wait_event_interruptible(q->mq_freeze_wq,
676 !atomic_read(&q->mq_freeze_depth) ||
677 blk_queue_dying(q));
678 if (blk_queue_dying(q))
679 return -ENODEV;
680 if (ret)
681 return ret;
682 }
683}
684
685void blk_queue_exit(struct request_queue *q)
686{
687 percpu_ref_put(&q->q_usage_counter);
688}
689
690static void blk_queue_usage_counter_release(struct percpu_ref *ref)
691{
692 struct request_queue *q =
693 container_of(ref, struct request_queue, q_usage_counter);
694
695 wake_up_all(&q->mq_freeze_wq);
696}
697
287922eb
CH
698static void blk_rq_timed_out_timer(unsigned long data)
699{
700 struct request_queue *q = (struct request_queue *)data;
701
702 kblockd_schedule_work(&q->timeout_work);
703}
704
165125e1 705struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
1946089a 706{
165125e1 707 struct request_queue *q;
1946089a 708
8324aa91 709 q = kmem_cache_alloc_node(blk_requestq_cachep,
94f6030c 710 gfp_mask | __GFP_ZERO, node_id);
1da177e4
LT
711 if (!q)
712 return NULL;
713
00380a40 714 q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask);
a73f730d 715 if (q->id < 0)
3d2936f4 716 goto fail_q;
a73f730d 717
54efd50b
KO
718 q->bio_split = bioset_create(BIO_POOL_SIZE, 0);
719 if (!q->bio_split)
720 goto fail_id;
721
d03f6cdc
JK
722 q->backing_dev_info = bdi_alloc_node(gfp_mask, node_id);
723 if (!q->backing_dev_info)
724 goto fail_split;
725
dc3b17cc 726 q->backing_dev_info->ra_pages =
09cbfeaf 727 (VM_MAX_READAHEAD * 1024) / PAGE_SIZE;
dc3b17cc
JK
728 q->backing_dev_info->capabilities = BDI_CAP_CGROUP_WRITEBACK;
729 q->backing_dev_info->name = "block";
5151412d 730 q->node = node_id;
0989a025 731
dc3b17cc 732 setup_timer(&q->backing_dev_info->laptop_mode_wb_timer,
31373d09 733 laptop_mode_timer_fn, (unsigned long) q);
242f9dcb 734 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
b855b04a 735 INIT_LIST_HEAD(&q->queue_head);
242f9dcb 736 INIT_LIST_HEAD(&q->timeout_list);
a612fddf 737 INIT_LIST_HEAD(&q->icq_list);
4eef3049 738#ifdef CONFIG_BLK_CGROUP
e8989fae 739 INIT_LIST_HEAD(&q->blkg_list);
4eef3049 740#endif
3cca6dc1 741 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
483f4afc 742
8324aa91 743 kobject_init(&q->kobj, &blk_queue_ktype);
1da177e4 744
483f4afc 745 mutex_init(&q->sysfs_lock);
e7e72bf6 746 spin_lock_init(&q->__queue_lock);
483f4afc 747
c94a96ac
VG
748 /*
749 * By default initialize queue_lock to internal lock and driver can
750 * override it later if need be.
751 */
752 q->queue_lock = &q->__queue_lock;
753
b82d4b19
TH
754 /*
755 * A queue starts its life with bypass turned on to avoid
756 * unnecessary bypass on/off overhead and nasty surprises during
749fefe6
TH
757 * init. The initial bypass will be finished when the queue is
758 * registered by blk_register_queue().
b82d4b19
TH
759 */
760 q->bypass_depth = 1;
761 __set_bit(QUEUE_FLAG_BYPASS, &q->queue_flags);
762
320ae51f
JA
763 init_waitqueue_head(&q->mq_freeze_wq);
764
3ef28e83
DW
765 /*
766 * Init percpu_ref in atomic mode so that it's faster to shutdown.
767 * See blk_register_queue() for details.
768 */
769 if (percpu_ref_init(&q->q_usage_counter,
770 blk_queue_usage_counter_release,
771 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
fff4996b 772 goto fail_bdi;
f51b802c 773
3ef28e83
DW
774 if (blkcg_init_queue(q))
775 goto fail_ref;
776
1da177e4 777 return q;
a73f730d 778
3ef28e83
DW
779fail_ref:
780 percpu_ref_exit(&q->q_usage_counter);
fff4996b 781fail_bdi:
d03f6cdc 782 bdi_put(q->backing_dev_info);
54efd50b
KO
783fail_split:
784 bioset_free(q->bio_split);
a73f730d
TH
785fail_id:
786 ida_simple_remove(&blk_queue_ida, q->id);
787fail_q:
788 kmem_cache_free(blk_requestq_cachep, q);
789 return NULL;
1da177e4 790}
1946089a 791EXPORT_SYMBOL(blk_alloc_queue_node);
1da177e4
LT
792
793/**
794 * blk_init_queue - prepare a request queue for use with a block device
795 * @rfn: The function to be called to process requests that have been
796 * placed on the queue.
797 * @lock: Request queue spin lock
798 *
799 * Description:
800 * If a block device wishes to use the standard request handling procedures,
801 * which sorts requests and coalesces adjacent requests, then it must
802 * call blk_init_queue(). The function @rfn will be called when there
803 * are requests on the queue that need to be processed. If the device
804 * supports plugging, then @rfn may not be called immediately when requests
805 * are available on the queue, but may be called at some time later instead.
806 * Plugged queues are generally unplugged when a buffer belonging to one
807 * of the requests on the queue is needed, or due to memory pressure.
808 *
809 * @rfn is not required, or even expected, to remove all requests off the
810 * queue, but only as many as it can handle at a time. If it does leave
811 * requests on the queue, it is responsible for arranging that the requests
812 * get dealt with eventually.
813 *
814 * The queue spin lock must be held while manipulating the requests on the
a038e253
PBG
815 * request queue; this lock will be taken also from interrupt context, so irq
816 * disabling is needed for it.
1da177e4 817 *
710027a4 818 * Function returns a pointer to the initialized request queue, or %NULL if
1da177e4
LT
819 * it didn't succeed.
820 *
821 * Note:
822 * blk_init_queue() must be paired with a blk_cleanup_queue() call
823 * when the block device is deactivated (such as at module unload).
824 **/
1946089a 825
165125e1 826struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
1da177e4 827{
c304a51b 828 return blk_init_queue_node(rfn, lock, NUMA_NO_NODE);
1946089a
CL
829}
830EXPORT_SYMBOL(blk_init_queue);
831
165125e1 832struct request_queue *
1946089a
CL
833blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
834{
5ea708d1 835 struct request_queue *q;
1da177e4 836
5ea708d1
CH
837 q = blk_alloc_queue_node(GFP_KERNEL, node_id);
838 if (!q)
c86d1b8a
MS
839 return NULL;
840
5ea708d1
CH
841 q->request_fn = rfn;
842 if (lock)
843 q->queue_lock = lock;
844 if (blk_init_allocated_queue(q) < 0) {
845 blk_cleanup_queue(q);
846 return NULL;
847 }
18741986 848
7982e90c 849 return q;
01effb0d
MS
850}
851EXPORT_SYMBOL(blk_init_queue_node);
852
dece1635 853static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio);
336b7e1f 854
1da177e4 855
5ea708d1
CH
856int blk_init_allocated_queue(struct request_queue *q)
857{
6d247d7f 858 q->fq = blk_alloc_flush_queue(q, NUMA_NO_NODE, q->cmd_size);
ba483388 859 if (!q->fq)
5ea708d1 860 return -ENOMEM;
7982e90c 861
6d247d7f
CH
862 if (q->init_rq_fn && q->init_rq_fn(q, q->fq->flush_rq, GFP_KERNEL))
863 goto out_free_flush_queue;
7982e90c 864
a051661c 865 if (blk_init_rl(&q->root_rl, q, GFP_KERNEL))
6d247d7f 866 goto out_exit_flush_rq;
1da177e4 867
287922eb 868 INIT_WORK(&q->timeout_work, blk_timeout_work);
60ea8226 869 q->queue_flags |= QUEUE_FLAG_DEFAULT;
c94a96ac 870
f3b144aa
JA
871 /*
872 * This also sets hw/phys segments, boundary and size
873 */
c20e8de2 874 blk_queue_make_request(q, blk_queue_bio);
1da177e4 875
44ec9542
AS
876 q->sg_reserved_size = INT_MAX;
877
eb1c160b
TS
878 /* Protect q->elevator from elevator_change */
879 mutex_lock(&q->sysfs_lock);
880
b82d4b19 881 /* init elevator */
eb1c160b
TS
882 if (elevator_init(q, NULL)) {
883 mutex_unlock(&q->sysfs_lock);
6d247d7f 884 goto out_exit_flush_rq;
eb1c160b
TS
885 }
886
887 mutex_unlock(&q->sysfs_lock);
5ea708d1 888 return 0;
eb1c160b 889
6d247d7f
CH
890out_exit_flush_rq:
891 if (q->exit_rq_fn)
892 q->exit_rq_fn(q, q->fq->flush_rq);
893out_free_flush_queue:
ba483388 894 blk_free_flush_queue(q->fq);
87760e5e 895 wbt_exit(q);
5ea708d1 896 return -ENOMEM;
1da177e4 897}
5151412d 898EXPORT_SYMBOL(blk_init_allocated_queue);
1da177e4 899
09ac46c4 900bool blk_get_queue(struct request_queue *q)
1da177e4 901{
3f3299d5 902 if (likely(!blk_queue_dying(q))) {
09ac46c4
TH
903 __blk_get_queue(q);
904 return true;
1da177e4
LT
905 }
906
09ac46c4 907 return false;
1da177e4 908}
d86e0e83 909EXPORT_SYMBOL(blk_get_queue);
1da177e4 910
5b788ce3 911static inline void blk_free_request(struct request_list *rl, struct request *rq)
1da177e4 912{
e8064021 913 if (rq->rq_flags & RQF_ELVPRIV) {
5b788ce3 914 elv_put_request(rl->q, rq);
f1f8cc94 915 if (rq->elv.icq)
11a3122f 916 put_io_context(rq->elv.icq->ioc);
f1f8cc94
TH
917 }
918
5b788ce3 919 mempool_free(rq, rl->rq_pool);
1da177e4
LT
920}
921
1da177e4
LT
922/*
923 * ioc_batching returns true if the ioc is a valid batching request and
924 * should be given priority access to a request.
925 */
165125e1 926static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
1da177e4
LT
927{
928 if (!ioc)
929 return 0;
930
931 /*
932 * Make sure the process is able to allocate at least 1 request
933 * even if the batch times out, otherwise we could theoretically
934 * lose wakeups.
935 */
936 return ioc->nr_batch_requests == q->nr_batching ||
937 (ioc->nr_batch_requests > 0
938 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
939}
940
941/*
942 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
943 * will cause the process to be a "batcher" on all queues in the system. This
944 * is the behaviour we want though - once it gets a wakeup it should be given
945 * a nice run.
946 */
165125e1 947static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
1da177e4
LT
948{
949 if (!ioc || ioc_batching(q, ioc))
950 return;
951
952 ioc->nr_batch_requests = q->nr_batching;
953 ioc->last_waited = jiffies;
954}
955
5b788ce3 956static void __freed_request(struct request_list *rl, int sync)
1da177e4 957{
5b788ce3 958 struct request_queue *q = rl->q;
1da177e4 959
d40f75a0
TH
960 if (rl->count[sync] < queue_congestion_off_threshold(q))
961 blk_clear_congested(rl, sync);
1da177e4 962
1faa16d2
JA
963 if (rl->count[sync] + 1 <= q->nr_requests) {
964 if (waitqueue_active(&rl->wait[sync]))
965 wake_up(&rl->wait[sync]);
1da177e4 966
5b788ce3 967 blk_clear_rl_full(rl, sync);
1da177e4
LT
968 }
969}
970
971/*
972 * A request has just been released. Account for it, update the full and
973 * congestion status, wake up any waiters. Called under q->queue_lock.
974 */
e8064021
CH
975static void freed_request(struct request_list *rl, bool sync,
976 req_flags_t rq_flags)
1da177e4 977{
5b788ce3 978 struct request_queue *q = rl->q;
1da177e4 979
8a5ecdd4 980 q->nr_rqs[sync]--;
1faa16d2 981 rl->count[sync]--;
e8064021 982 if (rq_flags & RQF_ELVPRIV)
8a5ecdd4 983 q->nr_rqs_elvpriv--;
1da177e4 984
5b788ce3 985 __freed_request(rl, sync);
1da177e4 986
1faa16d2 987 if (unlikely(rl->starved[sync ^ 1]))
5b788ce3 988 __freed_request(rl, sync ^ 1);
1da177e4
LT
989}
990
e3a2b3f9
JA
991int blk_update_nr_requests(struct request_queue *q, unsigned int nr)
992{
993 struct request_list *rl;
d40f75a0 994 int on_thresh, off_thresh;
e3a2b3f9
JA
995
996 spin_lock_irq(q->queue_lock);
997 q->nr_requests = nr;
998 blk_queue_congestion_threshold(q);
d40f75a0
TH
999 on_thresh = queue_congestion_on_threshold(q);
1000 off_thresh = queue_congestion_off_threshold(q);
e3a2b3f9 1001
d40f75a0
TH
1002 blk_queue_for_each_rl(rl, q) {
1003 if (rl->count[BLK_RW_SYNC] >= on_thresh)
1004 blk_set_congested(rl, BLK_RW_SYNC);
1005 else if (rl->count[BLK_RW_SYNC] < off_thresh)
1006 blk_clear_congested(rl, BLK_RW_SYNC);
e3a2b3f9 1007
d40f75a0
TH
1008 if (rl->count[BLK_RW_ASYNC] >= on_thresh)
1009 blk_set_congested(rl, BLK_RW_ASYNC);
1010 else if (rl->count[BLK_RW_ASYNC] < off_thresh)
1011 blk_clear_congested(rl, BLK_RW_ASYNC);
e3a2b3f9 1012
e3a2b3f9
JA
1013 if (rl->count[BLK_RW_SYNC] >= q->nr_requests) {
1014 blk_set_rl_full(rl, BLK_RW_SYNC);
1015 } else {
1016 blk_clear_rl_full(rl, BLK_RW_SYNC);
1017 wake_up(&rl->wait[BLK_RW_SYNC]);
1018 }
1019
1020 if (rl->count[BLK_RW_ASYNC] >= q->nr_requests) {
1021 blk_set_rl_full(rl, BLK_RW_ASYNC);
1022 } else {
1023 blk_clear_rl_full(rl, BLK_RW_ASYNC);
1024 wake_up(&rl->wait[BLK_RW_ASYNC]);
1025 }
1026 }
1027
1028 spin_unlock_irq(q->queue_lock);
1029 return 0;
1030}
1031
da8303c6 1032/**
a06e05e6 1033 * __get_request - get a free request
5b788ce3 1034 * @rl: request list to allocate from
ef295ecf 1035 * @op: operation and flags
da8303c6
TH
1036 * @bio: bio to allocate request for (can be %NULL)
1037 * @gfp_mask: allocation mask
1038 *
1039 * Get a free request from @q. This function may fail under memory
1040 * pressure or if @q is dead.
1041 *
da3dae54 1042 * Must be called with @q->queue_lock held and,
a492f075
JL
1043 * Returns ERR_PTR on failure, with @q->queue_lock held.
1044 * Returns request pointer on success, with @q->queue_lock *not held*.
1da177e4 1045 */
ef295ecf
CH
1046static struct request *__get_request(struct request_list *rl, unsigned int op,
1047 struct bio *bio, gfp_t gfp_mask)
1da177e4 1048{
5b788ce3 1049 struct request_queue *q = rl->q;
b679281a 1050 struct request *rq;
7f4b35d1
TH
1051 struct elevator_type *et = q->elevator->type;
1052 struct io_context *ioc = rq_ioc(bio);
f1f8cc94 1053 struct io_cq *icq = NULL;
ef295ecf 1054 const bool is_sync = op_is_sync(op);
75eb6c37 1055 int may_queue;
e8064021 1056 req_flags_t rq_flags = RQF_ALLOCED;
88ee5ef1 1057
3f3299d5 1058 if (unlikely(blk_queue_dying(q)))
a492f075 1059 return ERR_PTR(-ENODEV);
da8303c6 1060
ef295ecf 1061 may_queue = elv_may_queue(q, op);
88ee5ef1
JA
1062 if (may_queue == ELV_MQUEUE_NO)
1063 goto rq_starved;
1064
1faa16d2
JA
1065 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
1066 if (rl->count[is_sync]+1 >= q->nr_requests) {
88ee5ef1
JA
1067 /*
1068 * The queue will fill after this allocation, so set
1069 * it as full, and mark this process as "batching".
1070 * This process will be allowed to complete a batch of
1071 * requests, others will be blocked.
1072 */
5b788ce3 1073 if (!blk_rl_full(rl, is_sync)) {
88ee5ef1 1074 ioc_set_batching(q, ioc);
5b788ce3 1075 blk_set_rl_full(rl, is_sync);
88ee5ef1
JA
1076 } else {
1077 if (may_queue != ELV_MQUEUE_MUST
1078 && !ioc_batching(q, ioc)) {
1079 /*
1080 * The queue is full and the allocating
1081 * process is not a "batcher", and not
1082 * exempted by the IO scheduler
1083 */
a492f075 1084 return ERR_PTR(-ENOMEM);
88ee5ef1
JA
1085 }
1086 }
1da177e4 1087 }
d40f75a0 1088 blk_set_congested(rl, is_sync);
1da177e4
LT
1089 }
1090
082cf69e
JA
1091 /*
1092 * Only allow batching queuers to allocate up to 50% over the defined
1093 * limit of requests, otherwise we could have thousands of requests
1094 * allocated with any setting of ->nr_requests
1095 */
1faa16d2 1096 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
a492f075 1097 return ERR_PTR(-ENOMEM);
fd782a4a 1098
8a5ecdd4 1099 q->nr_rqs[is_sync]++;
1faa16d2
JA
1100 rl->count[is_sync]++;
1101 rl->starved[is_sync] = 0;
cb98fc8b 1102
f1f8cc94
TH
1103 /*
1104 * Decide whether the new request will be managed by elevator. If
e8064021 1105 * so, mark @rq_flags and increment elvpriv. Non-zero elvpriv will
f1f8cc94
TH
1106 * prevent the current elevator from being destroyed until the new
1107 * request is freed. This guarantees icq's won't be destroyed and
1108 * makes creating new ones safe.
1109 *
e6f7f93d
CH
1110 * Flush requests do not use the elevator so skip initialization.
1111 * This allows a request to share the flush and elevator data.
1112 *
f1f8cc94
TH
1113 * Also, lookup icq while holding queue_lock. If it doesn't exist,
1114 * it will be created after releasing queue_lock.
1115 */
e6f7f93d 1116 if (!op_is_flush(op) && !blk_queue_bypass(q)) {
e8064021 1117 rq_flags |= RQF_ELVPRIV;
8a5ecdd4 1118 q->nr_rqs_elvpriv++;
f1f8cc94
TH
1119 if (et->icq_cache && ioc)
1120 icq = ioc_lookup_icq(ioc, q);
9d5a4e94 1121 }
cb98fc8b 1122
f253b86b 1123 if (blk_queue_io_stat(q))
e8064021 1124 rq_flags |= RQF_IO_STAT;
1da177e4
LT
1125 spin_unlock_irq(q->queue_lock);
1126
29e2b09a 1127 /* allocate and init request */
5b788ce3 1128 rq = mempool_alloc(rl->rq_pool, gfp_mask);
29e2b09a 1129 if (!rq)
b679281a 1130 goto fail_alloc;
1da177e4 1131
29e2b09a 1132 blk_rq_init(q, rq);
a051661c 1133 blk_rq_set_rl(rq, rl);
5dc8b362 1134 blk_rq_set_prio(rq, ioc);
ef295ecf 1135 rq->cmd_flags = op;
e8064021 1136 rq->rq_flags = rq_flags;
29e2b09a 1137
aaf7c680 1138 /* init elvpriv */
e8064021 1139 if (rq_flags & RQF_ELVPRIV) {
aaf7c680 1140 if (unlikely(et->icq_cache && !icq)) {
7f4b35d1
TH
1141 if (ioc)
1142 icq = ioc_create_icq(ioc, q, gfp_mask);
aaf7c680
TH
1143 if (!icq)
1144 goto fail_elvpriv;
29e2b09a 1145 }
aaf7c680
TH
1146
1147 rq->elv.icq = icq;
1148 if (unlikely(elv_set_request(q, rq, bio, gfp_mask)))
1149 goto fail_elvpriv;
1150
1151 /* @rq->elv.icq holds io_context until @rq is freed */
29e2b09a
TH
1152 if (icq)
1153 get_io_context(icq->ioc);
1154 }
aaf7c680 1155out:
88ee5ef1
JA
1156 /*
1157 * ioc may be NULL here, and ioc_batching will be false. That's
1158 * OK, if the queue is under the request limit then requests need
1159 * not count toward the nr_batch_requests limit. There will always
1160 * be some limit enforced by BLK_BATCH_TIME.
1161 */
1da177e4
LT
1162 if (ioc_batching(q, ioc))
1163 ioc->nr_batch_requests--;
6728cb0e 1164
e6a40b09 1165 trace_block_getrq(q, bio, op);
1da177e4 1166 return rq;
b679281a 1167
aaf7c680
TH
1168fail_elvpriv:
1169 /*
1170 * elvpriv init failed. ioc, icq and elvpriv aren't mempool backed
1171 * and may fail indefinitely under memory pressure and thus
1172 * shouldn't stall IO. Treat this request as !elvpriv. This will
1173 * disturb iosched and blkcg but weird is bettern than dead.
1174 */
7b2b10e0 1175 printk_ratelimited(KERN_WARNING "%s: dev %s: request aux data allocation failed, iosched may be disturbed\n",
dc3b17cc 1176 __func__, dev_name(q->backing_dev_info->dev));
aaf7c680 1177
e8064021 1178 rq->rq_flags &= ~RQF_ELVPRIV;
aaf7c680
TH
1179 rq->elv.icq = NULL;
1180
1181 spin_lock_irq(q->queue_lock);
8a5ecdd4 1182 q->nr_rqs_elvpriv--;
aaf7c680
TH
1183 spin_unlock_irq(q->queue_lock);
1184 goto out;
1185
b679281a
TH
1186fail_alloc:
1187 /*
1188 * Allocation failed presumably due to memory. Undo anything we
1189 * might have messed up.
1190 *
1191 * Allocating task should really be put onto the front of the wait
1192 * queue, but this is pretty rare.
1193 */
1194 spin_lock_irq(q->queue_lock);
e8064021 1195 freed_request(rl, is_sync, rq_flags);
b679281a
TH
1196
1197 /*
1198 * in the very unlikely event that allocation failed and no
1199 * requests for this direction was pending, mark us starved so that
1200 * freeing of a request in the other direction will notice
1201 * us. another possible fix would be to split the rq mempool into
1202 * READ and WRITE
1203 */
1204rq_starved:
1205 if (unlikely(rl->count[is_sync] == 0))
1206 rl->starved[is_sync] = 1;
a492f075 1207 return ERR_PTR(-ENOMEM);
1da177e4
LT
1208}
1209
da8303c6 1210/**
a06e05e6 1211 * get_request - get a free request
da8303c6 1212 * @q: request_queue to allocate request from
ef295ecf 1213 * @op: operation and flags
da8303c6 1214 * @bio: bio to allocate request for (can be %NULL)
a06e05e6 1215 * @gfp_mask: allocation mask
da8303c6 1216 *
d0164adc
MG
1217 * Get a free request from @q. If %__GFP_DIRECT_RECLAIM is set in @gfp_mask,
1218 * this function keeps retrying under memory pressure and fails iff @q is dead.
d6344532 1219 *
da3dae54 1220 * Must be called with @q->queue_lock held and,
a492f075
JL
1221 * Returns ERR_PTR on failure, with @q->queue_lock held.
1222 * Returns request pointer on success, with @q->queue_lock *not held*.
1da177e4 1223 */
ef295ecf
CH
1224static struct request *get_request(struct request_queue *q, unsigned int op,
1225 struct bio *bio, gfp_t gfp_mask)
1da177e4 1226{
ef295ecf 1227 const bool is_sync = op_is_sync(op);
a06e05e6 1228 DEFINE_WAIT(wait);
a051661c 1229 struct request_list *rl;
1da177e4 1230 struct request *rq;
a051661c
TH
1231
1232 rl = blk_get_rl(q, bio); /* transferred to @rq on success */
a06e05e6 1233retry:
ef295ecf 1234 rq = __get_request(rl, op, bio, gfp_mask);
a492f075 1235 if (!IS_ERR(rq))
a06e05e6 1236 return rq;
1da177e4 1237
d0164adc 1238 if (!gfpflags_allow_blocking(gfp_mask) || unlikely(blk_queue_dying(q))) {
a051661c 1239 blk_put_rl(rl);
a492f075 1240 return rq;
a051661c 1241 }
1da177e4 1242
a06e05e6
TH
1243 /* wait on @rl and retry */
1244 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
1245 TASK_UNINTERRUPTIBLE);
1da177e4 1246
e6a40b09 1247 trace_block_sleeprq(q, bio, op);
1da177e4 1248
a06e05e6
TH
1249 spin_unlock_irq(q->queue_lock);
1250 io_schedule();
d6344532 1251
a06e05e6
TH
1252 /*
1253 * After sleeping, we become a "batching" process and will be able
1254 * to allocate at least one request, and up to a big batch of them
1255 * for a small period time. See ioc_batching, ioc_set_batching
1256 */
a06e05e6 1257 ioc_set_batching(q, current->io_context);
05caf8db 1258
a06e05e6
TH
1259 spin_lock_irq(q->queue_lock);
1260 finish_wait(&rl->wait[is_sync], &wait);
1da177e4 1261
a06e05e6 1262 goto retry;
1da177e4
LT
1263}
1264
320ae51f
JA
1265static struct request *blk_old_get_request(struct request_queue *q, int rw,
1266 gfp_t gfp_mask)
1da177e4
LT
1267{
1268 struct request *rq;
1269
7f4b35d1
TH
1270 /* create ioc upfront */
1271 create_io_context(gfp_mask, q->node);
1272
d6344532 1273 spin_lock_irq(q->queue_lock);
ef295ecf 1274 rq = get_request(q, rw, NULL, gfp_mask);
0c4de0f3 1275 if (IS_ERR(rq)) {
da8303c6 1276 spin_unlock_irq(q->queue_lock);
0c4de0f3
CH
1277 return rq;
1278 }
1da177e4 1279
0c4de0f3
CH
1280 /* q->queue_lock is unlocked at this point */
1281 rq->__data_len = 0;
1282 rq->__sector = (sector_t) -1;
1283 rq->bio = rq->biotail = NULL;
1da177e4
LT
1284 return rq;
1285}
320ae51f
JA
1286
1287struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
1288{
1289 if (q->mq_ops)
6f3b0e8b
CH
1290 return blk_mq_alloc_request(q, rw,
1291 (gfp_mask & __GFP_DIRECT_RECLAIM) ?
1292 0 : BLK_MQ_REQ_NOWAIT);
320ae51f
JA
1293 else
1294 return blk_old_get_request(q, rw, gfp_mask);
1295}
1da177e4
LT
1296EXPORT_SYMBOL(blk_get_request);
1297
1298/**
1299 * blk_requeue_request - put a request back on queue
1300 * @q: request queue where request should be inserted
1301 * @rq: request to be inserted
1302 *
1303 * Description:
1304 * Drivers often keep queueing requests until the hardware cannot accept
1305 * more, when that condition happens we need to put the request back
1306 * on the queue. Must be called with queue lock held.
1307 */
165125e1 1308void blk_requeue_request(struct request_queue *q, struct request *rq)
1da177e4 1309{
242f9dcb
JA
1310 blk_delete_timer(rq);
1311 blk_clear_rq_complete(rq);
5f3ea37c 1312 trace_block_rq_requeue(q, rq);
87760e5e 1313 wbt_requeue(q->rq_wb, &rq->issue_stat);
2056a782 1314
e8064021 1315 if (rq->rq_flags & RQF_QUEUED)
1da177e4
LT
1316 blk_queue_end_tag(q, rq);
1317
ba396a6c
JB
1318 BUG_ON(blk_queued_rq(rq));
1319
1da177e4
LT
1320 elv_requeue_request(q, rq);
1321}
1da177e4
LT
1322EXPORT_SYMBOL(blk_requeue_request);
1323
73c10101
JA
1324static void add_acct_request(struct request_queue *q, struct request *rq,
1325 int where)
1326{
320ae51f 1327 blk_account_io_start(rq, true);
7eaceacc 1328 __elv_add_request(q, rq, where);
73c10101
JA
1329}
1330
074a7aca
TH
1331static void part_round_stats_single(int cpu, struct hd_struct *part,
1332 unsigned long now)
1333{
7276d02e
JA
1334 int inflight;
1335
074a7aca
TH
1336 if (now == part->stamp)
1337 return;
1338
7276d02e
JA
1339 inflight = part_in_flight(part);
1340 if (inflight) {
074a7aca 1341 __part_stat_add(cpu, part, time_in_queue,
7276d02e 1342 inflight * (now - part->stamp));
074a7aca
TH
1343 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1344 }
1345 part->stamp = now;
1346}
1347
1348/**
496aa8a9
RD
1349 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1350 * @cpu: cpu number for stats access
1351 * @part: target partition
1da177e4
LT
1352 *
1353 * The average IO queue length and utilisation statistics are maintained
1354 * by observing the current state of the queue length and the amount of
1355 * time it has been in this state for.
1356 *
1357 * Normally, that accounting is done on IO completion, but that can result
1358 * in more than a second's worth of IO being accounted for within any one
1359 * second, leading to >100% utilisation. To deal with that, we call this
1360 * function to do a round-off before returning the results when reading
1361 * /proc/diskstats. This accounts immediately for all queue usage up to
1362 * the current jiffies and restarts the counters again.
1363 */
c9959059 1364void part_round_stats(int cpu, struct hd_struct *part)
6f2576af
JM
1365{
1366 unsigned long now = jiffies;
1367
074a7aca
TH
1368 if (part->partno)
1369 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1370 part_round_stats_single(cpu, part, now);
6f2576af 1371}
074a7aca 1372EXPORT_SYMBOL_GPL(part_round_stats);
6f2576af 1373
47fafbc7 1374#ifdef CONFIG_PM
c8158819
LM
1375static void blk_pm_put_request(struct request *rq)
1376{
e8064021 1377 if (rq->q->dev && !(rq->rq_flags & RQF_PM) && !--rq->q->nr_pending)
c8158819
LM
1378 pm_runtime_mark_last_busy(rq->q->dev);
1379}
1380#else
1381static inline void blk_pm_put_request(struct request *rq) {}
1382#endif
1383
1da177e4
LT
1384/*
1385 * queue lock must be held
1386 */
165125e1 1387void __blk_put_request(struct request_queue *q, struct request *req)
1da177e4 1388{
e8064021
CH
1389 req_flags_t rq_flags = req->rq_flags;
1390
1da177e4
LT
1391 if (unlikely(!q))
1392 return;
1da177e4 1393
6f5ba581
CH
1394 if (q->mq_ops) {
1395 blk_mq_free_request(req);
1396 return;
1397 }
1398
c8158819
LM
1399 blk_pm_put_request(req);
1400
8922e16c
TH
1401 elv_completed_request(q, req);
1402
1cd96c24
BH
1403 /* this is a bio leak */
1404 WARN_ON(req->bio != NULL);
1405
87760e5e
JA
1406 wbt_done(q->rq_wb, &req->issue_stat);
1407
1da177e4
LT
1408 /*
1409 * Request may not have originated from ll_rw_blk. if not,
1410 * it didn't come out of our reserved rq pools
1411 */
e8064021 1412 if (rq_flags & RQF_ALLOCED) {
a051661c 1413 struct request_list *rl = blk_rq_rl(req);
ef295ecf 1414 bool sync = op_is_sync(req->cmd_flags);
1da177e4 1415
1da177e4 1416 BUG_ON(!list_empty(&req->queuelist));
360f92c2 1417 BUG_ON(ELV_ON_HASH(req));
1da177e4 1418
a051661c 1419 blk_free_request(rl, req);
e8064021 1420 freed_request(rl, sync, rq_flags);
a051661c 1421 blk_put_rl(rl);
1da177e4
LT
1422 }
1423}
6e39b69e
MC
1424EXPORT_SYMBOL_GPL(__blk_put_request);
1425
1da177e4
LT
1426void blk_put_request(struct request *req)
1427{
165125e1 1428 struct request_queue *q = req->q;
8922e16c 1429
320ae51f
JA
1430 if (q->mq_ops)
1431 blk_mq_free_request(req);
1432 else {
1433 unsigned long flags;
1434
1435 spin_lock_irqsave(q->queue_lock, flags);
1436 __blk_put_request(q, req);
1437 spin_unlock_irqrestore(q->queue_lock, flags);
1438 }
1da177e4 1439}
1da177e4
LT
1440EXPORT_SYMBOL(blk_put_request);
1441
320ae51f
JA
1442bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1443 struct bio *bio)
73c10101 1444{
1eff9d32 1445 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
73c10101 1446
73c10101
JA
1447 if (!ll_back_merge_fn(q, req, bio))
1448 return false;
1449
8c1cf6bb 1450 trace_block_bio_backmerge(q, req, bio);
73c10101
JA
1451
1452 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1453 blk_rq_set_mixed_merge(req);
1454
1455 req->biotail->bi_next = bio;
1456 req->biotail = bio;
4f024f37 1457 req->__data_len += bio->bi_iter.bi_size;
73c10101
JA
1458 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1459
320ae51f 1460 blk_account_io_start(req, false);
73c10101
JA
1461 return true;
1462}
1463
320ae51f
JA
1464bool bio_attempt_front_merge(struct request_queue *q, struct request *req,
1465 struct bio *bio)
73c10101 1466{
1eff9d32 1467 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
73c10101 1468
73c10101
JA
1469 if (!ll_front_merge_fn(q, req, bio))
1470 return false;
1471
8c1cf6bb 1472 trace_block_bio_frontmerge(q, req, bio);
73c10101
JA
1473
1474 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1475 blk_rq_set_mixed_merge(req);
1476
73c10101
JA
1477 bio->bi_next = req->bio;
1478 req->bio = bio;
1479
4f024f37
KO
1480 req->__sector = bio->bi_iter.bi_sector;
1481 req->__data_len += bio->bi_iter.bi_size;
73c10101
JA
1482 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1483
320ae51f 1484 blk_account_io_start(req, false);
73c10101
JA
1485 return true;
1486}
1487
1e739730
CH
1488bool bio_attempt_discard_merge(struct request_queue *q, struct request *req,
1489 struct bio *bio)
1490{
1491 unsigned short segments = blk_rq_nr_discard_segments(req);
1492
1493 if (segments >= queue_max_discard_segments(q))
1494 goto no_merge;
1495 if (blk_rq_sectors(req) + bio_sectors(bio) >
1496 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
1497 goto no_merge;
1498
1499 req->biotail->bi_next = bio;
1500 req->biotail = bio;
1501 req->__data_len += bio->bi_iter.bi_size;
1502 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1503 req->nr_phys_segments = segments + 1;
1504
1505 blk_account_io_start(req, false);
1506 return true;
1507no_merge:
1508 req_set_nomerge(q, req);
1509 return false;
1510}
1511
bd87b589 1512/**
320ae51f 1513 * blk_attempt_plug_merge - try to merge with %current's plugged list
bd87b589
TH
1514 * @q: request_queue new bio is being queued at
1515 * @bio: new bio being queued
1516 * @request_count: out parameter for number of traversed plugged requests
ccc2600b
RD
1517 * @same_queue_rq: pointer to &struct request that gets filled in when
1518 * another request associated with @q is found on the plug list
1519 * (optional, may be %NULL)
bd87b589
TH
1520 *
1521 * Determine whether @bio being queued on @q can be merged with a request
1522 * on %current's plugged list. Returns %true if merge was successful,
1523 * otherwise %false.
1524 *
07c2bd37
TH
1525 * Plugging coalesces IOs from the same issuer for the same purpose without
1526 * going through @q->queue_lock. As such it's more of an issuing mechanism
1527 * than scheduling, and the request, while may have elvpriv data, is not
1528 * added on the elevator at this point. In addition, we don't have
1529 * reliable access to the elevator outside queue lock. Only check basic
1530 * merging parameters without querying the elevator.
da41a589
RE
1531 *
1532 * Caller must ensure !blk_queue_nomerges(q) beforehand.
73c10101 1533 */
320ae51f 1534bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
5b3f341f
SL
1535 unsigned int *request_count,
1536 struct request **same_queue_rq)
73c10101
JA
1537{
1538 struct blk_plug *plug;
1539 struct request *rq;
92f399c7 1540 struct list_head *plug_list;
73c10101 1541
bd87b589 1542 plug = current->plug;
73c10101 1543 if (!plug)
34fe7c05 1544 return false;
56ebdaf2 1545 *request_count = 0;
73c10101 1546
92f399c7
SL
1547 if (q->mq_ops)
1548 plug_list = &plug->mq_list;
1549 else
1550 plug_list = &plug->list;
1551
1552 list_for_each_entry_reverse(rq, plug_list, queuelist) {
34fe7c05 1553 bool merged = false;
73c10101 1554
5b3f341f 1555 if (rq->q == q) {
1b2e19f1 1556 (*request_count)++;
5b3f341f
SL
1557 /*
1558 * Only blk-mq multiple hardware queues case checks the
1559 * rq in the same queue, there should be only one such
1560 * rq in a queue
1561 **/
1562 if (same_queue_rq)
1563 *same_queue_rq = rq;
1564 }
56ebdaf2 1565
07c2bd37 1566 if (rq->q != q || !blk_rq_merge_ok(rq, bio))
73c10101
JA
1567 continue;
1568
34fe7c05
CH
1569 switch (blk_try_merge(rq, bio)) {
1570 case ELEVATOR_BACK_MERGE:
1571 merged = bio_attempt_back_merge(q, rq, bio);
1572 break;
1573 case ELEVATOR_FRONT_MERGE:
1574 merged = bio_attempt_front_merge(q, rq, bio);
1575 break;
1e739730
CH
1576 case ELEVATOR_DISCARD_MERGE:
1577 merged = bio_attempt_discard_merge(q, rq, bio);
1578 break;
34fe7c05
CH
1579 default:
1580 break;
73c10101 1581 }
34fe7c05
CH
1582
1583 if (merged)
1584 return true;
73c10101 1585 }
34fe7c05
CH
1586
1587 return false;
73c10101
JA
1588}
1589
0809e3ac
JM
1590unsigned int blk_plug_queued_count(struct request_queue *q)
1591{
1592 struct blk_plug *plug;
1593 struct request *rq;
1594 struct list_head *plug_list;
1595 unsigned int ret = 0;
1596
1597 plug = current->plug;
1598 if (!plug)
1599 goto out;
1600
1601 if (q->mq_ops)
1602 plug_list = &plug->mq_list;
1603 else
1604 plug_list = &plug->list;
1605
1606 list_for_each_entry(rq, plug_list, queuelist) {
1607 if (rq->q == q)
1608 ret++;
1609 }
1610out:
1611 return ret;
1612}
1613
86db1e29 1614void init_request_from_bio(struct request *req, struct bio *bio)
52d9e675 1615{
1eff9d32 1616 if (bio->bi_opf & REQ_RAHEAD)
a82afdfc 1617 req->cmd_flags |= REQ_FAILFAST_MASK;
b31dc66a 1618
52d9e675 1619 req->errors = 0;
4f024f37 1620 req->__sector = bio->bi_iter.bi_sector;
5dc8b362
AM
1621 if (ioprio_valid(bio_prio(bio)))
1622 req->ioprio = bio_prio(bio);
bc1c56fd 1623 blk_rq_bio_prep(req->q, req, bio);
52d9e675
TH
1624}
1625
dece1635 1626static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio)
1da177e4 1627{
73c10101 1628 struct blk_plug *plug;
34fe7c05 1629 int where = ELEVATOR_INSERT_SORT;
e4d750c9 1630 struct request *req, *free;
56ebdaf2 1631 unsigned int request_count = 0;
87760e5e 1632 unsigned int wb_acct;
1da177e4 1633
1da177e4
LT
1634 /*
1635 * low level driver can indicate that it wants pages above a
1636 * certain limit bounced to low memory (ie for highmem, or even
1637 * ISA dma in theory)
1638 */
1639 blk_queue_bounce(q, &bio);
1640
23688bf4
JN
1641 blk_queue_split(q, &bio, q->bio_split);
1642
ffecfd1a 1643 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
4246a0b6
CH
1644 bio->bi_error = -EIO;
1645 bio_endio(bio);
dece1635 1646 return BLK_QC_T_NONE;
ffecfd1a
DW
1647 }
1648
f73f44eb 1649 if (op_is_flush(bio->bi_opf)) {
73c10101 1650 spin_lock_irq(q->queue_lock);
ae1b1539 1651 where = ELEVATOR_INSERT_FLUSH;
28e7d184
TH
1652 goto get_rq;
1653 }
1654
73c10101
JA
1655 /*
1656 * Check if we can merge with the plugged list before grabbing
1657 * any locks.
1658 */
0809e3ac
JM
1659 if (!blk_queue_nomerges(q)) {
1660 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
dece1635 1661 return BLK_QC_T_NONE;
0809e3ac
JM
1662 } else
1663 request_count = blk_plug_queued_count(q);
1da177e4 1664
73c10101 1665 spin_lock_irq(q->queue_lock);
2056a782 1666
34fe7c05
CH
1667 switch (elv_merge(q, &req, bio)) {
1668 case ELEVATOR_BACK_MERGE:
1669 if (!bio_attempt_back_merge(q, req, bio))
1670 break;
1671 elv_bio_merged(q, req, bio);
1672 free = attempt_back_merge(q, req);
1673 if (free)
1674 __blk_put_request(q, free);
1675 else
1676 elv_merged_request(q, req, ELEVATOR_BACK_MERGE);
1677 goto out_unlock;
1678 case ELEVATOR_FRONT_MERGE:
1679 if (!bio_attempt_front_merge(q, req, bio))
1680 break;
1681 elv_bio_merged(q, req, bio);
1682 free = attempt_front_merge(q, req);
1683 if (free)
1684 __blk_put_request(q, free);
1685 else
1686 elv_merged_request(q, req, ELEVATOR_FRONT_MERGE);
1687 goto out_unlock;
1688 default:
1689 break;
1da177e4
LT
1690 }
1691
450991bc 1692get_rq:
87760e5e
JA
1693 wb_acct = wbt_wait(q->rq_wb, bio, q->queue_lock);
1694
1da177e4 1695 /*
450991bc 1696 * Grab a free request. This is might sleep but can not fail.
d6344532 1697 * Returns with the queue unlocked.
450991bc 1698 */
ef295ecf 1699 req = get_request(q, bio->bi_opf, bio, GFP_NOIO);
a492f075 1700 if (IS_ERR(req)) {
87760e5e 1701 __wbt_done(q->rq_wb, wb_acct);
4246a0b6
CH
1702 bio->bi_error = PTR_ERR(req);
1703 bio_endio(bio);
da8303c6
TH
1704 goto out_unlock;
1705 }
d6344532 1706
87760e5e
JA
1707 wbt_track(&req->issue_stat, wb_acct);
1708
450991bc
NP
1709 /*
1710 * After dropping the lock and possibly sleeping here, our request
1711 * may now be mergeable after it had proven unmergeable (above).
1712 * We don't worry about that case for efficiency. It won't happen
1713 * often, and the elevators are able to handle it.
1da177e4 1714 */
52d9e675 1715 init_request_from_bio(req, bio);
1da177e4 1716
9562ad9a 1717 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
11ccf116 1718 req->cpu = raw_smp_processor_id();
73c10101
JA
1719
1720 plug = current->plug;
721a9602 1721 if (plug) {
dc6d36c9
JA
1722 /*
1723 * If this is the first request added after a plug, fire
7aef2e78 1724 * of a plug trace.
0a6219a9
ML
1725 *
1726 * @request_count may become stale because of schedule
1727 * out, so check plug list again.
dc6d36c9 1728 */
0a6219a9 1729 if (!request_count || list_empty(&plug->list))
dc6d36c9 1730 trace_block_plug(q);
3540d5e8 1731 else {
50d24c34
SL
1732 struct request *last = list_entry_rq(plug->list.prev);
1733 if (request_count >= BLK_MAX_REQUEST_COUNT ||
1734 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE) {
3540d5e8 1735 blk_flush_plug_list(plug, false);
019ceb7d
SL
1736 trace_block_plug(q);
1737 }
73c10101 1738 }
73c10101 1739 list_add_tail(&req->queuelist, &plug->list);
320ae51f 1740 blk_account_io_start(req, true);
73c10101
JA
1741 } else {
1742 spin_lock_irq(q->queue_lock);
1743 add_acct_request(q, req, where);
24ecfbe2 1744 __blk_run_queue(q);
73c10101
JA
1745out_unlock:
1746 spin_unlock_irq(q->queue_lock);
1747 }
dece1635
JA
1748
1749 return BLK_QC_T_NONE;
1da177e4
LT
1750}
1751
1752/*
1753 * If bio->bi_dev is a partition, remap the location
1754 */
1755static inline void blk_partition_remap(struct bio *bio)
1756{
1757 struct block_device *bdev = bio->bi_bdev;
1758
778889d8
ST
1759 /*
1760 * Zone reset does not include bi_size so bio_sectors() is always 0.
1761 * Include a test for the reset op code and perform the remap if needed.
1762 */
1763 if (bdev != bdev->bd_contains &&
1764 (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)) {
1da177e4
LT
1765 struct hd_struct *p = bdev->bd_part;
1766
4f024f37 1767 bio->bi_iter.bi_sector += p->start_sect;
1da177e4 1768 bio->bi_bdev = bdev->bd_contains;
c7149d6b 1769
d07335e5
MS
1770 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1771 bdev->bd_dev,
4f024f37 1772 bio->bi_iter.bi_sector - p->start_sect);
1da177e4
LT
1773 }
1774}
1775
1da177e4
LT
1776static void handle_bad_sector(struct bio *bio)
1777{
1778 char b[BDEVNAME_SIZE];
1779
1780 printk(KERN_INFO "attempt to access beyond end of device\n");
6296b960 1781 printk(KERN_INFO "%s: rw=%d, want=%Lu, limit=%Lu\n",
1da177e4 1782 bdevname(bio->bi_bdev, b),
1eff9d32 1783 bio->bi_opf,
f73a1c7d 1784 (unsigned long long)bio_end_sector(bio),
77304d2a 1785 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
1da177e4
LT
1786}
1787
c17bb495
AM
1788#ifdef CONFIG_FAIL_MAKE_REQUEST
1789
1790static DECLARE_FAULT_ATTR(fail_make_request);
1791
1792static int __init setup_fail_make_request(char *str)
1793{
1794 return setup_fault_attr(&fail_make_request, str);
1795}
1796__setup("fail_make_request=", setup_fail_make_request);
1797
b2c9cd37 1798static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
c17bb495 1799{
b2c9cd37 1800 return part->make_it_fail && should_fail(&fail_make_request, bytes);
c17bb495
AM
1801}
1802
1803static int __init fail_make_request_debugfs(void)
1804{
dd48c085
AM
1805 struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
1806 NULL, &fail_make_request);
1807
21f9fcd8 1808 return PTR_ERR_OR_ZERO(dir);
c17bb495
AM
1809}
1810
1811late_initcall(fail_make_request_debugfs);
1812
1813#else /* CONFIG_FAIL_MAKE_REQUEST */
1814
b2c9cd37
AM
1815static inline bool should_fail_request(struct hd_struct *part,
1816 unsigned int bytes)
c17bb495 1817{
b2c9cd37 1818 return false;
c17bb495
AM
1819}
1820
1821#endif /* CONFIG_FAIL_MAKE_REQUEST */
1822
c07e2b41
JA
1823/*
1824 * Check whether this bio extends beyond the end of the device.
1825 */
1826static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1827{
1828 sector_t maxsector;
1829
1830 if (!nr_sectors)
1831 return 0;
1832
1833 /* Test device or partition size, when known. */
77304d2a 1834 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
c07e2b41 1835 if (maxsector) {
4f024f37 1836 sector_t sector = bio->bi_iter.bi_sector;
c07e2b41
JA
1837
1838 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1839 /*
1840 * This may well happen - the kernel calls bread()
1841 * without checking the size of the device, e.g., when
1842 * mounting a device.
1843 */
1844 handle_bad_sector(bio);
1845 return 1;
1846 }
1847 }
1848
1849 return 0;
1850}
1851
27a84d54
CH
1852static noinline_for_stack bool
1853generic_make_request_checks(struct bio *bio)
1da177e4 1854{
165125e1 1855 struct request_queue *q;
5a7bbad2 1856 int nr_sectors = bio_sectors(bio);
51fd77bd 1857 int err = -EIO;
5a7bbad2
CH
1858 char b[BDEVNAME_SIZE];
1859 struct hd_struct *part;
1da177e4
LT
1860
1861 might_sleep();
1da177e4 1862
c07e2b41
JA
1863 if (bio_check_eod(bio, nr_sectors))
1864 goto end_io;
1da177e4 1865
5a7bbad2
CH
1866 q = bdev_get_queue(bio->bi_bdev);
1867 if (unlikely(!q)) {
1868 printk(KERN_ERR
1869 "generic_make_request: Trying to access "
1870 "nonexistent block-device %s (%Lu)\n",
1871 bdevname(bio->bi_bdev, b),
4f024f37 1872 (long long) bio->bi_iter.bi_sector);
5a7bbad2
CH
1873 goto end_io;
1874 }
c17bb495 1875
5a7bbad2 1876 part = bio->bi_bdev->bd_part;
4f024f37 1877 if (should_fail_request(part, bio->bi_iter.bi_size) ||
5a7bbad2 1878 should_fail_request(&part_to_disk(part)->part0,
4f024f37 1879 bio->bi_iter.bi_size))
5a7bbad2 1880 goto end_io;
2056a782 1881
5a7bbad2
CH
1882 /*
1883 * If this device has partitions, remap block n
1884 * of partition p to block n+start(p) of the disk.
1885 */
1886 blk_partition_remap(bio);
2056a782 1887
5a7bbad2
CH
1888 if (bio_check_eod(bio, nr_sectors))
1889 goto end_io;
1e87901e 1890
5a7bbad2
CH
1891 /*
1892 * Filter flush bio's early so that make_request based
1893 * drivers without flush support don't have to worry
1894 * about them.
1895 */
f3a8ab7d 1896 if (op_is_flush(bio->bi_opf) &&
c888a8f9 1897 !test_bit(QUEUE_FLAG_WC, &q->queue_flags)) {
1eff9d32 1898 bio->bi_opf &= ~(REQ_PREFLUSH | REQ_FUA);
5a7bbad2
CH
1899 if (!nr_sectors) {
1900 err = 0;
51fd77bd
JA
1901 goto end_io;
1902 }
5a7bbad2 1903 }
5ddfe969 1904
288dab8a
CH
1905 switch (bio_op(bio)) {
1906 case REQ_OP_DISCARD:
1907 if (!blk_queue_discard(q))
1908 goto not_supported;
1909 break;
1910 case REQ_OP_SECURE_ERASE:
1911 if (!blk_queue_secure_erase(q))
1912 goto not_supported;
1913 break;
1914 case REQ_OP_WRITE_SAME:
1915 if (!bdev_write_same(bio->bi_bdev))
1916 goto not_supported;
58886785 1917 break;
2d253440
ST
1918 case REQ_OP_ZONE_REPORT:
1919 case REQ_OP_ZONE_RESET:
1920 if (!bdev_is_zoned(bio->bi_bdev))
1921 goto not_supported;
288dab8a 1922 break;
a6f0788e
CK
1923 case REQ_OP_WRITE_ZEROES:
1924 if (!bdev_write_zeroes_sectors(bio->bi_bdev))
1925 goto not_supported;
1926 break;
288dab8a
CH
1927 default:
1928 break;
5a7bbad2 1929 }
01edede4 1930
7f4b35d1
TH
1931 /*
1932 * Various block parts want %current->io_context and lazy ioc
1933 * allocation ends up trading a lot of pain for a small amount of
1934 * memory. Just allocate it upfront. This may fail and block
1935 * layer knows how to live with it.
1936 */
1937 create_io_context(GFP_ATOMIC, q->node);
1938
ae118896
TH
1939 if (!blkcg_bio_issue_check(q, bio))
1940 return false;
27a84d54 1941
5a7bbad2 1942 trace_block_bio_queue(q, bio);
27a84d54 1943 return true;
a7384677 1944
288dab8a
CH
1945not_supported:
1946 err = -EOPNOTSUPP;
a7384677 1947end_io:
4246a0b6
CH
1948 bio->bi_error = err;
1949 bio_endio(bio);
27a84d54 1950 return false;
1da177e4
LT
1951}
1952
27a84d54
CH
1953/**
1954 * generic_make_request - hand a buffer to its device driver for I/O
1955 * @bio: The bio describing the location in memory and on the device.
1956 *
1957 * generic_make_request() is used to make I/O requests of block
1958 * devices. It is passed a &struct bio, which describes the I/O that needs
1959 * to be done.
1960 *
1961 * generic_make_request() does not return any status. The
1962 * success/failure status of the request, along with notification of
1963 * completion, is delivered asynchronously through the bio->bi_end_io
1964 * function described (one day) else where.
1965 *
1966 * The caller of generic_make_request must make sure that bi_io_vec
1967 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1968 * set to describe the device address, and the
1969 * bi_end_io and optionally bi_private are set to describe how
1970 * completion notification should be signaled.
1971 *
1972 * generic_make_request and the drivers it calls may use bi_next if this
1973 * bio happens to be merged with someone else, and may resubmit the bio to
1974 * a lower device by calling into generic_make_request recursively, which
1975 * means the bio should NOT be touched after the call to ->make_request_fn.
d89d8796 1976 */
dece1635 1977blk_qc_t generic_make_request(struct bio *bio)
d89d8796 1978{
bddd87c7 1979 struct bio_list bio_list_on_stack;
dece1635 1980 blk_qc_t ret = BLK_QC_T_NONE;
bddd87c7 1981
27a84d54 1982 if (!generic_make_request_checks(bio))
dece1635 1983 goto out;
27a84d54
CH
1984
1985 /*
1986 * We only want one ->make_request_fn to be active at a time, else
1987 * stack usage with stacked devices could be a problem. So use
1988 * current->bio_list to keep a list of requests submited by a
1989 * make_request_fn function. current->bio_list is also used as a
1990 * flag to say if generic_make_request is currently active in this
1991 * task or not. If it is NULL, then no make_request is active. If
1992 * it is non-NULL, then a make_request is active, and new requests
1993 * should be added at the tail
1994 */
bddd87c7 1995 if (current->bio_list) {
bddd87c7 1996 bio_list_add(current->bio_list, bio);
dece1635 1997 goto out;
d89d8796 1998 }
27a84d54 1999
d89d8796
NB
2000 /* following loop may be a bit non-obvious, and so deserves some
2001 * explanation.
2002 * Before entering the loop, bio->bi_next is NULL (as all callers
2003 * ensure that) so we have a list with a single bio.
2004 * We pretend that we have just taken it off a longer list, so
bddd87c7
AM
2005 * we assign bio_list to a pointer to the bio_list_on_stack,
2006 * thus initialising the bio_list of new bios to be
27a84d54 2007 * added. ->make_request() may indeed add some more bios
d89d8796
NB
2008 * through a recursive call to generic_make_request. If it
2009 * did, we find a non-NULL value in bio_list and re-enter the loop
2010 * from the top. In this case we really did just take the bio
bddd87c7 2011 * of the top of the list (no pretending) and so remove it from
27a84d54 2012 * bio_list, and call into ->make_request() again.
d89d8796
NB
2013 */
2014 BUG_ON(bio->bi_next);
bddd87c7
AM
2015 bio_list_init(&bio_list_on_stack);
2016 current->bio_list = &bio_list_on_stack;
d89d8796 2017 do {
27a84d54
CH
2018 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
2019
6f3b0e8b 2020 if (likely(blk_queue_enter(q, false) == 0)) {
dece1635 2021 ret = q->make_request_fn(q, bio);
3ef28e83
DW
2022
2023 blk_queue_exit(q);
27a84d54 2024
3ef28e83
DW
2025 bio = bio_list_pop(current->bio_list);
2026 } else {
2027 struct bio *bio_next = bio_list_pop(current->bio_list);
2028
2029 bio_io_error(bio);
2030 bio = bio_next;
2031 }
d89d8796 2032 } while (bio);
bddd87c7 2033 current->bio_list = NULL; /* deactivate */
dece1635
JA
2034
2035out:
2036 return ret;
d89d8796 2037}
1da177e4
LT
2038EXPORT_SYMBOL(generic_make_request);
2039
2040/**
710027a4 2041 * submit_bio - submit a bio to the block device layer for I/O
1da177e4
LT
2042 * @bio: The &struct bio which describes the I/O
2043 *
2044 * submit_bio() is very similar in purpose to generic_make_request(), and
2045 * uses that function to do most of the work. Both are fairly rough
710027a4 2046 * interfaces; @bio must be presetup and ready for I/O.
1da177e4
LT
2047 *
2048 */
4e49ea4a 2049blk_qc_t submit_bio(struct bio *bio)
1da177e4 2050{
bf2de6f5
JA
2051 /*
2052 * If it's a regular read/write or a barrier with data attached,
2053 * go through the normal accounting stuff before submission.
2054 */
e2a60da7 2055 if (bio_has_data(bio)) {
4363ac7c
MP
2056 unsigned int count;
2057
95fe6c1a 2058 if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
4363ac7c
MP
2059 count = bdev_logical_block_size(bio->bi_bdev) >> 9;
2060 else
2061 count = bio_sectors(bio);
2062
a8ebb056 2063 if (op_is_write(bio_op(bio))) {
bf2de6f5
JA
2064 count_vm_events(PGPGOUT, count);
2065 } else {
4f024f37 2066 task_io_account_read(bio->bi_iter.bi_size);
bf2de6f5
JA
2067 count_vm_events(PGPGIN, count);
2068 }
2069
2070 if (unlikely(block_dump)) {
2071 char b[BDEVNAME_SIZE];
8dcbdc74 2072 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
ba25f9dc 2073 current->comm, task_pid_nr(current),
a8ebb056 2074 op_is_write(bio_op(bio)) ? "WRITE" : "READ",
4f024f37 2075 (unsigned long long)bio->bi_iter.bi_sector,
8dcbdc74
SM
2076 bdevname(bio->bi_bdev, b),
2077 count);
bf2de6f5 2078 }
1da177e4
LT
2079 }
2080
dece1635 2081 return generic_make_request(bio);
1da177e4 2082}
1da177e4
LT
2083EXPORT_SYMBOL(submit_bio);
2084
82124d60 2085/**
bf4e6b4e
HR
2086 * blk_cloned_rq_check_limits - Helper function to check a cloned request
2087 * for new the queue limits
82124d60
KU
2088 * @q: the queue
2089 * @rq: the request being checked
2090 *
2091 * Description:
2092 * @rq may have been made based on weaker limitations of upper-level queues
2093 * in request stacking drivers, and it may violate the limitation of @q.
2094 * Since the block layer and the underlying device driver trust @rq
2095 * after it is inserted to @q, it should be checked against @q before
2096 * the insertion using this generic function.
2097 *
82124d60 2098 * Request stacking drivers like request-based dm may change the queue
bf4e6b4e
HR
2099 * limits when retrying requests on other queues. Those requests need
2100 * to be checked against the new queue limits again during dispatch.
82124d60 2101 */
bf4e6b4e
HR
2102static int blk_cloned_rq_check_limits(struct request_queue *q,
2103 struct request *rq)
82124d60 2104{
8fe0d473 2105 if (blk_rq_sectors(rq) > blk_queue_get_max_sectors(q, req_op(rq))) {
82124d60
KU
2106 printk(KERN_ERR "%s: over max size limit.\n", __func__);
2107 return -EIO;
2108 }
2109
2110 /*
2111 * queue's settings related to segment counting like q->bounce_pfn
2112 * may differ from that of other stacking queues.
2113 * Recalculate it to check the request correctly on this queue's
2114 * limitation.
2115 */
2116 blk_recalc_rq_segments(rq);
8a78362c 2117 if (rq->nr_phys_segments > queue_max_segments(q)) {
82124d60
KU
2118 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
2119 return -EIO;
2120 }
2121
2122 return 0;
2123}
82124d60
KU
2124
2125/**
2126 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
2127 * @q: the queue to submit the request
2128 * @rq: the request being queued
2129 */
2130int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
2131{
2132 unsigned long flags;
4853abaa 2133 int where = ELEVATOR_INSERT_BACK;
82124d60 2134
bf4e6b4e 2135 if (blk_cloned_rq_check_limits(q, rq))
82124d60
KU
2136 return -EIO;
2137
b2c9cd37
AM
2138 if (rq->rq_disk &&
2139 should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
82124d60 2140 return -EIO;
82124d60 2141
7fb4898e
KB
2142 if (q->mq_ops) {
2143 if (blk_queue_io_stat(q))
2144 blk_account_io_start(rq, true);
bd6737f1 2145 blk_mq_sched_insert_request(rq, false, true, false, false);
7fb4898e
KB
2146 return 0;
2147 }
2148
82124d60 2149 spin_lock_irqsave(q->queue_lock, flags);
3f3299d5 2150 if (unlikely(blk_queue_dying(q))) {
8ba61435
TH
2151 spin_unlock_irqrestore(q->queue_lock, flags);
2152 return -ENODEV;
2153 }
82124d60
KU
2154
2155 /*
2156 * Submitting request must be dequeued before calling this function
2157 * because it will be linked to another request_queue
2158 */
2159 BUG_ON(blk_queued_rq(rq));
2160
f73f44eb 2161 if (op_is_flush(rq->cmd_flags))
4853abaa
JM
2162 where = ELEVATOR_INSERT_FLUSH;
2163
2164 add_acct_request(q, rq, where);
e67b77c7
JM
2165 if (where == ELEVATOR_INSERT_FLUSH)
2166 __blk_run_queue(q);
82124d60
KU
2167 spin_unlock_irqrestore(q->queue_lock, flags);
2168
2169 return 0;
2170}
2171EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
2172
80a761fd
TH
2173/**
2174 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
2175 * @rq: request to examine
2176 *
2177 * Description:
2178 * A request could be merge of IOs which require different failure
2179 * handling. This function determines the number of bytes which
2180 * can be failed from the beginning of the request without
2181 * crossing into area which need to be retried further.
2182 *
2183 * Return:
2184 * The number of bytes to fail.
2185 *
2186 * Context:
2187 * queue_lock must be held.
2188 */
2189unsigned int blk_rq_err_bytes(const struct request *rq)
2190{
2191 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
2192 unsigned int bytes = 0;
2193 struct bio *bio;
2194
e8064021 2195 if (!(rq->rq_flags & RQF_MIXED_MERGE))
80a761fd
TH
2196 return blk_rq_bytes(rq);
2197
2198 /*
2199 * Currently the only 'mixing' which can happen is between
2200 * different fastfail types. We can safely fail portions
2201 * which have all the failfast bits that the first one has -
2202 * the ones which are at least as eager to fail as the first
2203 * one.
2204 */
2205 for (bio = rq->bio; bio; bio = bio->bi_next) {
1eff9d32 2206 if ((bio->bi_opf & ff) != ff)
80a761fd 2207 break;
4f024f37 2208 bytes += bio->bi_iter.bi_size;
80a761fd
TH
2209 }
2210
2211 /* this could lead to infinite loop */
2212 BUG_ON(blk_rq_bytes(rq) && !bytes);
2213 return bytes;
2214}
2215EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
2216
320ae51f 2217void blk_account_io_completion(struct request *req, unsigned int bytes)
bc58ba94 2218{
c2553b58 2219 if (blk_do_io_stat(req)) {
bc58ba94
JA
2220 const int rw = rq_data_dir(req);
2221 struct hd_struct *part;
2222 int cpu;
2223
2224 cpu = part_stat_lock();
09e099d4 2225 part = req->part;
bc58ba94
JA
2226 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
2227 part_stat_unlock();
2228 }
2229}
2230
320ae51f 2231void blk_account_io_done(struct request *req)
bc58ba94 2232{
bc58ba94 2233 /*
dd4c133f
TH
2234 * Account IO completion. flush_rq isn't accounted as a
2235 * normal IO on queueing nor completion. Accounting the
2236 * containing request is enough.
bc58ba94 2237 */
e8064021 2238 if (blk_do_io_stat(req) && !(req->rq_flags & RQF_FLUSH_SEQ)) {
bc58ba94
JA
2239 unsigned long duration = jiffies - req->start_time;
2240 const int rw = rq_data_dir(req);
2241 struct hd_struct *part;
2242 int cpu;
2243
2244 cpu = part_stat_lock();
09e099d4 2245 part = req->part;
bc58ba94
JA
2246
2247 part_stat_inc(cpu, part, ios[rw]);
2248 part_stat_add(cpu, part, ticks[rw], duration);
2249 part_round_stats(cpu, part);
316d315b 2250 part_dec_in_flight(part, rw);
bc58ba94 2251
6c23a968 2252 hd_struct_put(part);
bc58ba94
JA
2253 part_stat_unlock();
2254 }
2255}
2256
47fafbc7 2257#ifdef CONFIG_PM
c8158819
LM
2258/*
2259 * Don't process normal requests when queue is suspended
2260 * or in the process of suspending/resuming
2261 */
2262static struct request *blk_pm_peek_request(struct request_queue *q,
2263 struct request *rq)
2264{
2265 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
e8064021 2266 (q->rpm_status != RPM_ACTIVE && !(rq->rq_flags & RQF_PM))))
c8158819
LM
2267 return NULL;
2268 else
2269 return rq;
2270}
2271#else
2272static inline struct request *blk_pm_peek_request(struct request_queue *q,
2273 struct request *rq)
2274{
2275 return rq;
2276}
2277#endif
2278
320ae51f
JA
2279void blk_account_io_start(struct request *rq, bool new_io)
2280{
2281 struct hd_struct *part;
2282 int rw = rq_data_dir(rq);
2283 int cpu;
2284
2285 if (!blk_do_io_stat(rq))
2286 return;
2287
2288 cpu = part_stat_lock();
2289
2290 if (!new_io) {
2291 part = rq->part;
2292 part_stat_inc(cpu, part, merges[rw]);
2293 } else {
2294 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
2295 if (!hd_struct_try_get(part)) {
2296 /*
2297 * The partition is already being removed,
2298 * the request will be accounted on the disk only
2299 *
2300 * We take a reference on disk->part0 although that
2301 * partition will never be deleted, so we can treat
2302 * it as any other partition.
2303 */
2304 part = &rq->rq_disk->part0;
2305 hd_struct_get(part);
2306 }
2307 part_round_stats(cpu, part);
2308 part_inc_in_flight(part, rw);
2309 rq->part = part;
2310 }
2311
2312 part_stat_unlock();
2313}
2314
3bcddeac 2315/**
9934c8c0
TH
2316 * blk_peek_request - peek at the top of a request queue
2317 * @q: request queue to peek at
2318 *
2319 * Description:
2320 * Return the request at the top of @q. The returned request
2321 * should be started using blk_start_request() before LLD starts
2322 * processing it.
2323 *
2324 * Return:
2325 * Pointer to the request at the top of @q if available. Null
2326 * otherwise.
2327 *
2328 * Context:
2329 * queue_lock must be held.
2330 */
2331struct request *blk_peek_request(struct request_queue *q)
158dbda0
TH
2332{
2333 struct request *rq;
2334 int ret;
2335
2336 while ((rq = __elv_next_request(q)) != NULL) {
c8158819
LM
2337
2338 rq = blk_pm_peek_request(q, rq);
2339 if (!rq)
2340 break;
2341
e8064021 2342 if (!(rq->rq_flags & RQF_STARTED)) {
158dbda0
TH
2343 /*
2344 * This is the first time the device driver
2345 * sees this request (possibly after
2346 * requeueing). Notify IO scheduler.
2347 */
e8064021 2348 if (rq->rq_flags & RQF_SORTED)
158dbda0
TH
2349 elv_activate_rq(q, rq);
2350
2351 /*
2352 * just mark as started even if we don't start
2353 * it, a request that has been delayed should
2354 * not be passed by new incoming requests
2355 */
e8064021 2356 rq->rq_flags |= RQF_STARTED;
158dbda0
TH
2357 trace_block_rq_issue(q, rq);
2358 }
2359
2360 if (!q->boundary_rq || q->boundary_rq == rq) {
2361 q->end_sector = rq_end_sector(rq);
2362 q->boundary_rq = NULL;
2363 }
2364
e8064021 2365 if (rq->rq_flags & RQF_DONTPREP)
158dbda0
TH
2366 break;
2367
2e46e8b2 2368 if (q->dma_drain_size && blk_rq_bytes(rq)) {
158dbda0
TH
2369 /*
2370 * make sure space for the drain appears we
2371 * know we can do this because max_hw_segments
2372 * has been adjusted to be one fewer than the
2373 * device can handle
2374 */
2375 rq->nr_phys_segments++;
2376 }
2377
2378 if (!q->prep_rq_fn)
2379 break;
2380
2381 ret = q->prep_rq_fn(q, rq);
2382 if (ret == BLKPREP_OK) {
2383 break;
2384 } else if (ret == BLKPREP_DEFER) {
2385 /*
2386 * the request may have been (partially) prepped.
2387 * we need to keep this request in the front to
e8064021 2388 * avoid resource deadlock. RQF_STARTED will
158dbda0
TH
2389 * prevent other fs requests from passing this one.
2390 */
2e46e8b2 2391 if (q->dma_drain_size && blk_rq_bytes(rq) &&
e8064021 2392 !(rq->rq_flags & RQF_DONTPREP)) {
158dbda0
TH
2393 /*
2394 * remove the space for the drain we added
2395 * so that we don't add it again
2396 */
2397 --rq->nr_phys_segments;
2398 }
2399
2400 rq = NULL;
2401 break;
0fb5b1fb
MP
2402 } else if (ret == BLKPREP_KILL || ret == BLKPREP_INVALID) {
2403 int err = (ret == BLKPREP_INVALID) ? -EREMOTEIO : -EIO;
2404
e8064021 2405 rq->rq_flags |= RQF_QUIET;
c143dc90
JB
2406 /*
2407 * Mark this request as started so we don't trigger
2408 * any debug logic in the end I/O path.
2409 */
2410 blk_start_request(rq);
0fb5b1fb 2411 __blk_end_request_all(rq, err);
158dbda0
TH
2412 } else {
2413 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2414 break;
2415 }
2416 }
2417
2418 return rq;
2419}
9934c8c0 2420EXPORT_SYMBOL(blk_peek_request);
158dbda0 2421
9934c8c0 2422void blk_dequeue_request(struct request *rq)
158dbda0 2423{
9934c8c0
TH
2424 struct request_queue *q = rq->q;
2425
158dbda0
TH
2426 BUG_ON(list_empty(&rq->queuelist));
2427 BUG_ON(ELV_ON_HASH(rq));
2428
2429 list_del_init(&rq->queuelist);
2430
2431 /*
2432 * the time frame between a request being removed from the lists
2433 * and to it is freed is accounted as io that is in progress at
2434 * the driver side.
2435 */
9195291e 2436 if (blk_account_rq(rq)) {
0a7ae2ff 2437 q->in_flight[rq_is_sync(rq)]++;
9195291e
DS
2438 set_io_start_time_ns(rq);
2439 }
158dbda0
TH
2440}
2441
9934c8c0
TH
2442/**
2443 * blk_start_request - start request processing on the driver
2444 * @req: request to dequeue
2445 *
2446 * Description:
2447 * Dequeue @req and start timeout timer on it. This hands off the
2448 * request to the driver.
2449 *
2450 * Block internal functions which don't want to start timer should
2451 * call blk_dequeue_request().
2452 *
2453 * Context:
2454 * queue_lock must be held.
2455 */
2456void blk_start_request(struct request *req)
2457{
2458 blk_dequeue_request(req);
2459
cf43e6be
JA
2460 if (test_bit(QUEUE_FLAG_STATS, &req->q->queue_flags)) {
2461 blk_stat_set_issue_time(&req->issue_stat);
2462 req->rq_flags |= RQF_STATS;
87760e5e 2463 wbt_issue(req->q->rq_wb, &req->issue_stat);
cf43e6be
JA
2464 }
2465
4912aa6c 2466 BUG_ON(test_bit(REQ_ATOM_COMPLETE, &req->atomic_flags));
9934c8c0
TH
2467 blk_add_timer(req);
2468}
2469EXPORT_SYMBOL(blk_start_request);
2470
2471/**
2472 * blk_fetch_request - fetch a request from a request queue
2473 * @q: request queue to fetch a request from
2474 *
2475 * Description:
2476 * Return the request at the top of @q. The request is started on
2477 * return and LLD can start processing it immediately.
2478 *
2479 * Return:
2480 * Pointer to the request at the top of @q if available. Null
2481 * otherwise.
2482 *
2483 * Context:
2484 * queue_lock must be held.
2485 */
2486struct request *blk_fetch_request(struct request_queue *q)
2487{
2488 struct request *rq;
2489
2490 rq = blk_peek_request(q);
2491 if (rq)
2492 blk_start_request(rq);
2493 return rq;
2494}
2495EXPORT_SYMBOL(blk_fetch_request);
2496
3bcddeac 2497/**
2e60e022 2498 * blk_update_request - Special helper function for request stacking drivers
8ebf9756 2499 * @req: the request being processed
710027a4 2500 * @error: %0 for success, < %0 for error
8ebf9756 2501 * @nr_bytes: number of bytes to complete @req
3bcddeac
KU
2502 *
2503 * Description:
8ebf9756
RD
2504 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2505 * the request structure even if @req doesn't have leftover.
2506 * If @req has leftover, sets it up for the next range of segments.
2e60e022
TH
2507 *
2508 * This special helper function is only for request stacking drivers
2509 * (e.g. request-based dm) so that they can handle partial completion.
2510 * Actual device drivers should use blk_end_request instead.
2511 *
2512 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2513 * %false return from this function.
3bcddeac
KU
2514 *
2515 * Return:
2e60e022
TH
2516 * %false - this request doesn't have any more data
2517 * %true - this request has more data
3bcddeac 2518 **/
2e60e022 2519bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
1da177e4 2520{
f79ea416 2521 int total_bytes;
1da177e4 2522
4a0efdc9
HR
2523 trace_block_rq_complete(req->q, req, nr_bytes);
2524
2e60e022
TH
2525 if (!req->bio)
2526 return false;
2527
1da177e4 2528 /*
6f41469c
TH
2529 * For fs requests, rq is just carrier of independent bio's
2530 * and each partial completion should be handled separately.
2531 * Reset per-request error on each partial completion.
2532 *
2533 * TODO: tj: This is too subtle. It would be better to let
2534 * low level drivers do what they see fit.
1da177e4 2535 */
57292b58 2536 if (!blk_rq_is_passthrough(req))
1da177e4
LT
2537 req->errors = 0;
2538
57292b58 2539 if (error && !blk_rq_is_passthrough(req) &&
e8064021 2540 !(req->rq_flags & RQF_QUIET)) {
79775567
HR
2541 char *error_type;
2542
2543 switch (error) {
2544 case -ENOLINK:
2545 error_type = "recoverable transport";
2546 break;
2547 case -EREMOTEIO:
2548 error_type = "critical target";
2549 break;
2550 case -EBADE:
2551 error_type = "critical nexus";
2552 break;
d1ffc1f8
HR
2553 case -ETIMEDOUT:
2554 error_type = "timeout";
2555 break;
a9d6ceb8
HR
2556 case -ENOSPC:
2557 error_type = "critical space allocation";
2558 break;
7e782af5
HR
2559 case -ENODATA:
2560 error_type = "critical medium";
2561 break;
79775567
HR
2562 case -EIO:
2563 default:
2564 error_type = "I/O";
2565 break;
2566 }
ef3ecb66
RE
2567 printk_ratelimited(KERN_ERR "%s: %s error, dev %s, sector %llu\n",
2568 __func__, error_type, req->rq_disk ?
37d7b34f
YZ
2569 req->rq_disk->disk_name : "?",
2570 (unsigned long long)blk_rq_pos(req));
2571
1da177e4
LT
2572 }
2573
bc58ba94 2574 blk_account_io_completion(req, nr_bytes);
d72d904a 2575
f79ea416
KO
2576 total_bytes = 0;
2577 while (req->bio) {
2578 struct bio *bio = req->bio;
4f024f37 2579 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
1da177e4 2580
4f024f37 2581 if (bio_bytes == bio->bi_iter.bi_size)
1da177e4 2582 req->bio = bio->bi_next;
1da177e4 2583
f79ea416 2584 req_bio_endio(req, bio, bio_bytes, error);
1da177e4 2585
f79ea416
KO
2586 total_bytes += bio_bytes;
2587 nr_bytes -= bio_bytes;
1da177e4 2588
f79ea416
KO
2589 if (!nr_bytes)
2590 break;
1da177e4
LT
2591 }
2592
2593 /*
2594 * completely done
2595 */
2e60e022
TH
2596 if (!req->bio) {
2597 /*
2598 * Reset counters so that the request stacking driver
2599 * can find how many bytes remain in the request
2600 * later.
2601 */
a2dec7b3 2602 req->__data_len = 0;
2e60e022
TH
2603 return false;
2604 }
1da177e4 2605
f9d03f96
CH
2606 WARN_ON_ONCE(req->rq_flags & RQF_SPECIAL_PAYLOAD);
2607
a2dec7b3 2608 req->__data_len -= total_bytes;
2e46e8b2
TH
2609
2610 /* update sector only for requests with clear definition of sector */
57292b58 2611 if (!blk_rq_is_passthrough(req))
a2dec7b3 2612 req->__sector += total_bytes >> 9;
2e46e8b2 2613
80a761fd 2614 /* mixed attributes always follow the first bio */
e8064021 2615 if (req->rq_flags & RQF_MIXED_MERGE) {
80a761fd 2616 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1eff9d32 2617 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
80a761fd
TH
2618 }
2619
2e46e8b2
TH
2620 /*
2621 * If total number of sectors is less than the first segment
2622 * size, something has gone terribly wrong.
2623 */
2624 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
8182924b 2625 blk_dump_rq_flags(req, "request botched");
a2dec7b3 2626 req->__data_len = blk_rq_cur_bytes(req);
2e46e8b2
TH
2627 }
2628
2629 /* recalculate the number of segments */
1da177e4 2630 blk_recalc_rq_segments(req);
2e46e8b2 2631
2e60e022 2632 return true;
1da177e4 2633}
2e60e022 2634EXPORT_SYMBOL_GPL(blk_update_request);
1da177e4 2635
2e60e022
TH
2636static bool blk_update_bidi_request(struct request *rq, int error,
2637 unsigned int nr_bytes,
2638 unsigned int bidi_bytes)
5efccd17 2639{
2e60e022
TH
2640 if (blk_update_request(rq, error, nr_bytes))
2641 return true;
5efccd17 2642
2e60e022
TH
2643 /* Bidi request must be completed as a whole */
2644 if (unlikely(blk_bidi_rq(rq)) &&
2645 blk_update_request(rq->next_rq, error, bidi_bytes))
2646 return true;
5efccd17 2647
e2e1a148
JA
2648 if (blk_queue_add_random(rq->q))
2649 add_disk_randomness(rq->rq_disk);
2e60e022
TH
2650
2651 return false;
1da177e4
LT
2652}
2653
28018c24
JB
2654/**
2655 * blk_unprep_request - unprepare a request
2656 * @req: the request
2657 *
2658 * This function makes a request ready for complete resubmission (or
2659 * completion). It happens only after all error handling is complete,
2660 * so represents the appropriate moment to deallocate any resources
2661 * that were allocated to the request in the prep_rq_fn. The queue
2662 * lock is held when calling this.
2663 */
2664void blk_unprep_request(struct request *req)
2665{
2666 struct request_queue *q = req->q;
2667
e8064021 2668 req->rq_flags &= ~RQF_DONTPREP;
28018c24
JB
2669 if (q->unprep_rq_fn)
2670 q->unprep_rq_fn(q, req);
2671}
2672EXPORT_SYMBOL_GPL(blk_unprep_request);
2673
1da177e4
LT
2674/*
2675 * queue lock must be held
2676 */
12120077 2677void blk_finish_request(struct request *req, int error)
1da177e4 2678{
cf43e6be
JA
2679 struct request_queue *q = req->q;
2680
2681 if (req->rq_flags & RQF_STATS)
2682 blk_stat_add(&q->rq_stats[rq_data_dir(req)], req);
2683
e8064021 2684 if (req->rq_flags & RQF_QUEUED)
cf43e6be 2685 blk_queue_end_tag(q, req);
b8286239 2686
ba396a6c 2687 BUG_ON(blk_queued_rq(req));
1da177e4 2688
57292b58 2689 if (unlikely(laptop_mode) && !blk_rq_is_passthrough(req))
dc3b17cc 2690 laptop_io_completion(req->q->backing_dev_info);
1da177e4 2691
e78042e5
MA
2692 blk_delete_timer(req);
2693
e8064021 2694 if (req->rq_flags & RQF_DONTPREP)
28018c24
JB
2695 blk_unprep_request(req);
2696
bc58ba94 2697 blk_account_io_done(req);
b8286239 2698
87760e5e
JA
2699 if (req->end_io) {
2700 wbt_done(req->q->rq_wb, &req->issue_stat);
8ffdc655 2701 req->end_io(req, error);
87760e5e 2702 } else {
b8286239
KU
2703 if (blk_bidi_rq(req))
2704 __blk_put_request(req->next_rq->q, req->next_rq);
2705
cf43e6be 2706 __blk_put_request(q, req);
b8286239 2707 }
1da177e4 2708}
12120077 2709EXPORT_SYMBOL(blk_finish_request);
1da177e4 2710
3b11313a 2711/**
2e60e022
TH
2712 * blk_end_bidi_request - Complete a bidi request
2713 * @rq: the request to complete
2714 * @error: %0 for success, < %0 for error
2715 * @nr_bytes: number of bytes to complete @rq
2716 * @bidi_bytes: number of bytes to complete @rq->next_rq
a0cd1285
JA
2717 *
2718 * Description:
e3a04fe3 2719 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2e60e022
TH
2720 * Drivers that supports bidi can safely call this member for any
2721 * type of request, bidi or uni. In the later case @bidi_bytes is
2722 * just ignored.
336cdb40
KU
2723 *
2724 * Return:
2e60e022
TH
2725 * %false - we are done with this request
2726 * %true - still buffers pending for this request
a0cd1285 2727 **/
b1f74493 2728static bool blk_end_bidi_request(struct request *rq, int error,
32fab448
KU
2729 unsigned int nr_bytes, unsigned int bidi_bytes)
2730{
336cdb40 2731 struct request_queue *q = rq->q;
2e60e022 2732 unsigned long flags;
32fab448 2733
2e60e022
TH
2734 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2735 return true;
32fab448 2736
336cdb40 2737 spin_lock_irqsave(q->queue_lock, flags);
2e60e022 2738 blk_finish_request(rq, error);
336cdb40
KU
2739 spin_unlock_irqrestore(q->queue_lock, flags);
2740
2e60e022 2741 return false;
32fab448
KU
2742}
2743
336cdb40 2744/**
2e60e022
TH
2745 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2746 * @rq: the request to complete
710027a4 2747 * @error: %0 for success, < %0 for error
e3a04fe3
KU
2748 * @nr_bytes: number of bytes to complete @rq
2749 * @bidi_bytes: number of bytes to complete @rq->next_rq
336cdb40
KU
2750 *
2751 * Description:
2e60e022
TH
2752 * Identical to blk_end_bidi_request() except that queue lock is
2753 * assumed to be locked on entry and remains so on return.
336cdb40
KU
2754 *
2755 * Return:
2e60e022
TH
2756 * %false - we are done with this request
2757 * %true - still buffers pending for this request
336cdb40 2758 **/
4853abaa 2759bool __blk_end_bidi_request(struct request *rq, int error,
b1f74493 2760 unsigned int nr_bytes, unsigned int bidi_bytes)
336cdb40 2761{
2e60e022
TH
2762 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2763 return true;
336cdb40 2764
2e60e022 2765 blk_finish_request(rq, error);
336cdb40 2766
2e60e022 2767 return false;
336cdb40 2768}
e19a3ab0
KU
2769
2770/**
2771 * blk_end_request - Helper function for drivers to complete the request.
2772 * @rq: the request being processed
710027a4 2773 * @error: %0 for success, < %0 for error
e19a3ab0
KU
2774 * @nr_bytes: number of bytes to complete
2775 *
2776 * Description:
2777 * Ends I/O on a number of bytes attached to @rq.
2778 * If @rq has leftover, sets it up for the next range of segments.
2779 *
2780 * Return:
b1f74493
FT
2781 * %false - we are done with this request
2782 * %true - still buffers pending for this request
e19a3ab0 2783 **/
b1f74493 2784bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
e19a3ab0 2785{
b1f74493 2786 return blk_end_bidi_request(rq, error, nr_bytes, 0);
e19a3ab0 2787}
56ad1740 2788EXPORT_SYMBOL(blk_end_request);
336cdb40
KU
2789
2790/**
b1f74493
FT
2791 * blk_end_request_all - Helper function for drives to finish the request.
2792 * @rq: the request to finish
8ebf9756 2793 * @error: %0 for success, < %0 for error
336cdb40
KU
2794 *
2795 * Description:
b1f74493
FT
2796 * Completely finish @rq.
2797 */
2798void blk_end_request_all(struct request *rq, int error)
336cdb40 2799{
b1f74493
FT
2800 bool pending;
2801 unsigned int bidi_bytes = 0;
336cdb40 2802
b1f74493
FT
2803 if (unlikely(blk_bidi_rq(rq)))
2804 bidi_bytes = blk_rq_bytes(rq->next_rq);
336cdb40 2805
b1f74493
FT
2806 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2807 BUG_ON(pending);
2808}
56ad1740 2809EXPORT_SYMBOL(blk_end_request_all);
336cdb40 2810
b1f74493
FT
2811/**
2812 * blk_end_request_cur - Helper function to finish the current request chunk.
2813 * @rq: the request to finish the current chunk for
8ebf9756 2814 * @error: %0 for success, < %0 for error
b1f74493
FT
2815 *
2816 * Description:
2817 * Complete the current consecutively mapped chunk from @rq.
2818 *
2819 * Return:
2820 * %false - we are done with this request
2821 * %true - still buffers pending for this request
2822 */
2823bool blk_end_request_cur(struct request *rq, int error)
2824{
2825 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
336cdb40 2826}
56ad1740 2827EXPORT_SYMBOL(blk_end_request_cur);
336cdb40 2828
80a761fd
TH
2829/**
2830 * blk_end_request_err - Finish a request till the next failure boundary.
2831 * @rq: the request to finish till the next failure boundary for
2832 * @error: must be negative errno
2833 *
2834 * Description:
2835 * Complete @rq till the next failure boundary.
2836 *
2837 * Return:
2838 * %false - we are done with this request
2839 * %true - still buffers pending for this request
2840 */
2841bool blk_end_request_err(struct request *rq, int error)
2842{
2843 WARN_ON(error >= 0);
2844 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2845}
2846EXPORT_SYMBOL_GPL(blk_end_request_err);
2847
e3a04fe3 2848/**
b1f74493
FT
2849 * __blk_end_request - Helper function for drivers to complete the request.
2850 * @rq: the request being processed
2851 * @error: %0 for success, < %0 for error
2852 * @nr_bytes: number of bytes to complete
e3a04fe3
KU
2853 *
2854 * Description:
b1f74493 2855 * Must be called with queue lock held unlike blk_end_request().
e3a04fe3
KU
2856 *
2857 * Return:
b1f74493
FT
2858 * %false - we are done with this request
2859 * %true - still buffers pending for this request
e3a04fe3 2860 **/
b1f74493 2861bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
e3a04fe3 2862{
b1f74493 2863 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
e3a04fe3 2864}
56ad1740 2865EXPORT_SYMBOL(__blk_end_request);
e3a04fe3 2866
32fab448 2867/**
b1f74493
FT
2868 * __blk_end_request_all - Helper function for drives to finish the request.
2869 * @rq: the request to finish
8ebf9756 2870 * @error: %0 for success, < %0 for error
32fab448
KU
2871 *
2872 * Description:
b1f74493 2873 * Completely finish @rq. Must be called with queue lock held.
32fab448 2874 */
b1f74493 2875void __blk_end_request_all(struct request *rq, int error)
32fab448 2876{
b1f74493
FT
2877 bool pending;
2878 unsigned int bidi_bytes = 0;
2879
2880 if (unlikely(blk_bidi_rq(rq)))
2881 bidi_bytes = blk_rq_bytes(rq->next_rq);
2882
2883 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2884 BUG_ON(pending);
32fab448 2885}
56ad1740 2886EXPORT_SYMBOL(__blk_end_request_all);
32fab448 2887
e19a3ab0 2888/**
b1f74493
FT
2889 * __blk_end_request_cur - Helper function to finish the current request chunk.
2890 * @rq: the request to finish the current chunk for
8ebf9756 2891 * @error: %0 for success, < %0 for error
e19a3ab0
KU
2892 *
2893 * Description:
b1f74493
FT
2894 * Complete the current consecutively mapped chunk from @rq. Must
2895 * be called with queue lock held.
e19a3ab0
KU
2896 *
2897 * Return:
b1f74493
FT
2898 * %false - we are done with this request
2899 * %true - still buffers pending for this request
2900 */
2901bool __blk_end_request_cur(struct request *rq, int error)
e19a3ab0 2902{
b1f74493 2903 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
e19a3ab0 2904}
56ad1740 2905EXPORT_SYMBOL(__blk_end_request_cur);
e19a3ab0 2906
80a761fd
TH
2907/**
2908 * __blk_end_request_err - Finish a request till the next failure boundary.
2909 * @rq: the request to finish till the next failure boundary for
2910 * @error: must be negative errno
2911 *
2912 * Description:
2913 * Complete @rq till the next failure boundary. Must be called
2914 * with queue lock held.
2915 *
2916 * Return:
2917 * %false - we are done with this request
2918 * %true - still buffers pending for this request
2919 */
2920bool __blk_end_request_err(struct request *rq, int error)
2921{
2922 WARN_ON(error >= 0);
2923 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2924}
2925EXPORT_SYMBOL_GPL(__blk_end_request_err);
2926
86db1e29
JA
2927void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2928 struct bio *bio)
1da177e4 2929{
b4f42e28 2930 if (bio_has_data(bio))
fb2dce86 2931 rq->nr_phys_segments = bio_phys_segments(q, bio);
b4f42e28 2932
4f024f37 2933 rq->__data_len = bio->bi_iter.bi_size;
1da177e4 2934 rq->bio = rq->biotail = bio;
1da177e4 2935
66846572
N
2936 if (bio->bi_bdev)
2937 rq->rq_disk = bio->bi_bdev->bd_disk;
2938}
1da177e4 2939
2d4dc890
IL
2940#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2941/**
2942 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2943 * @rq: the request to be flushed
2944 *
2945 * Description:
2946 * Flush all pages in @rq.
2947 */
2948void rq_flush_dcache_pages(struct request *rq)
2949{
2950 struct req_iterator iter;
7988613b 2951 struct bio_vec bvec;
2d4dc890
IL
2952
2953 rq_for_each_segment(bvec, rq, iter)
7988613b 2954 flush_dcache_page(bvec.bv_page);
2d4dc890
IL
2955}
2956EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2957#endif
2958
ef9e3fac
KU
2959/**
2960 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2961 * @q : the queue of the device being checked
2962 *
2963 * Description:
2964 * Check if underlying low-level drivers of a device are busy.
2965 * If the drivers want to export their busy state, they must set own
2966 * exporting function using blk_queue_lld_busy() first.
2967 *
2968 * Basically, this function is used only by request stacking drivers
2969 * to stop dispatching requests to underlying devices when underlying
2970 * devices are busy. This behavior helps more I/O merging on the queue
2971 * of the request stacking driver and prevents I/O throughput regression
2972 * on burst I/O load.
2973 *
2974 * Return:
2975 * 0 - Not busy (The request stacking driver should dispatch request)
2976 * 1 - Busy (The request stacking driver should stop dispatching request)
2977 */
2978int blk_lld_busy(struct request_queue *q)
2979{
2980 if (q->lld_busy_fn)
2981 return q->lld_busy_fn(q);
2982
2983 return 0;
2984}
2985EXPORT_SYMBOL_GPL(blk_lld_busy);
2986
78d8e58a
MS
2987/**
2988 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2989 * @rq: the clone request to be cleaned up
2990 *
2991 * Description:
2992 * Free all bios in @rq for a cloned request.
2993 */
2994void blk_rq_unprep_clone(struct request *rq)
2995{
2996 struct bio *bio;
2997
2998 while ((bio = rq->bio) != NULL) {
2999 rq->bio = bio->bi_next;
3000
3001 bio_put(bio);
3002 }
3003}
3004EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
3005
3006/*
3007 * Copy attributes of the original request to the clone request.
3008 * The actual data parts (e.g. ->cmd, ->sense) are not copied.
3009 */
3010static void __blk_rq_prep_clone(struct request *dst, struct request *src)
b0fd271d
KU
3011{
3012 dst->cpu = src->cpu;
b0fd271d
KU
3013 dst->__sector = blk_rq_pos(src);
3014 dst->__data_len = blk_rq_bytes(src);
3015 dst->nr_phys_segments = src->nr_phys_segments;
3016 dst->ioprio = src->ioprio;
3017 dst->extra_len = src->extra_len;
78d8e58a
MS
3018}
3019
3020/**
3021 * blk_rq_prep_clone - Helper function to setup clone request
3022 * @rq: the request to be setup
3023 * @rq_src: original request to be cloned
3024 * @bs: bio_set that bios for clone are allocated from
3025 * @gfp_mask: memory allocation mask for bio
3026 * @bio_ctr: setup function to be called for each clone bio.
3027 * Returns %0 for success, non %0 for failure.
3028 * @data: private data to be passed to @bio_ctr
3029 *
3030 * Description:
3031 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
3032 * The actual data parts of @rq_src (e.g. ->cmd, ->sense)
3033 * are not copied, and copying such parts is the caller's responsibility.
3034 * Also, pages which the original bios are pointing to are not copied
3035 * and the cloned bios just point same pages.
3036 * So cloned bios must be completed before original bios, which means
3037 * the caller must complete @rq before @rq_src.
3038 */
3039int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
3040 struct bio_set *bs, gfp_t gfp_mask,
3041 int (*bio_ctr)(struct bio *, struct bio *, void *),
3042 void *data)
3043{
3044 struct bio *bio, *bio_src;
3045
3046 if (!bs)
3047 bs = fs_bio_set;
3048
3049 __rq_for_each_bio(bio_src, rq_src) {
3050 bio = bio_clone_fast(bio_src, gfp_mask, bs);
3051 if (!bio)
3052 goto free_and_out;
3053
3054 if (bio_ctr && bio_ctr(bio, bio_src, data))
3055 goto free_and_out;
3056
3057 if (rq->bio) {
3058 rq->biotail->bi_next = bio;
3059 rq->biotail = bio;
3060 } else
3061 rq->bio = rq->biotail = bio;
3062 }
3063
3064 __blk_rq_prep_clone(rq, rq_src);
3065
3066 return 0;
3067
3068free_and_out:
3069 if (bio)
3070 bio_put(bio);
3071 blk_rq_unprep_clone(rq);
3072
3073 return -ENOMEM;
b0fd271d
KU
3074}
3075EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
3076
59c3d45e 3077int kblockd_schedule_work(struct work_struct *work)
1da177e4
LT
3078{
3079 return queue_work(kblockd_workqueue, work);
3080}
1da177e4
LT
3081EXPORT_SYMBOL(kblockd_schedule_work);
3082
ee63cfa7
JA
3083int kblockd_schedule_work_on(int cpu, struct work_struct *work)
3084{
3085 return queue_work_on(cpu, kblockd_workqueue, work);
3086}
3087EXPORT_SYMBOL(kblockd_schedule_work_on);
3088
59c3d45e
JA
3089int kblockd_schedule_delayed_work(struct delayed_work *dwork,
3090 unsigned long delay)
e43473b7
VG
3091{
3092 return queue_delayed_work(kblockd_workqueue, dwork, delay);
3093}
3094EXPORT_SYMBOL(kblockd_schedule_delayed_work);
3095
8ab14595
JA
3096int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3097 unsigned long delay)
3098{
3099 return queue_delayed_work_on(cpu, kblockd_workqueue, dwork, delay);
3100}
3101EXPORT_SYMBOL(kblockd_schedule_delayed_work_on);
3102
75df7136
SJ
3103/**
3104 * blk_start_plug - initialize blk_plug and track it inside the task_struct
3105 * @plug: The &struct blk_plug that needs to be initialized
3106 *
3107 * Description:
3108 * Tracking blk_plug inside the task_struct will help with auto-flushing the
3109 * pending I/O should the task end up blocking between blk_start_plug() and
3110 * blk_finish_plug(). This is important from a performance perspective, but
3111 * also ensures that we don't deadlock. For instance, if the task is blocking
3112 * for a memory allocation, memory reclaim could end up wanting to free a
3113 * page belonging to that request that is currently residing in our private
3114 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
3115 * this kind of deadlock.
3116 */
73c10101
JA
3117void blk_start_plug(struct blk_plug *plug)
3118{
3119 struct task_struct *tsk = current;
3120
dd6cf3e1
SL
3121 /*
3122 * If this is a nested plug, don't actually assign it.
3123 */
3124 if (tsk->plug)
3125 return;
3126
73c10101 3127 INIT_LIST_HEAD(&plug->list);
320ae51f 3128 INIT_LIST_HEAD(&plug->mq_list);
048c9374 3129 INIT_LIST_HEAD(&plug->cb_list);
73c10101 3130 /*
dd6cf3e1
SL
3131 * Store ordering should not be needed here, since a potential
3132 * preempt will imply a full memory barrier
73c10101 3133 */
dd6cf3e1 3134 tsk->plug = plug;
73c10101
JA
3135}
3136EXPORT_SYMBOL(blk_start_plug);
3137
3138static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
3139{
3140 struct request *rqa = container_of(a, struct request, queuelist);
3141 struct request *rqb = container_of(b, struct request, queuelist);
3142
975927b9
JM
3143 return !(rqa->q < rqb->q ||
3144 (rqa->q == rqb->q && blk_rq_pos(rqa) < blk_rq_pos(rqb)));
73c10101
JA
3145}
3146
49cac01e
JA
3147/*
3148 * If 'from_schedule' is true, then postpone the dispatch of requests
3149 * until a safe kblockd context. We due this to avoid accidental big
3150 * additional stack usage in driver dispatch, in places where the originally
3151 * plugger did not intend it.
3152 */
f6603783 3153static void queue_unplugged(struct request_queue *q, unsigned int depth,
49cac01e 3154 bool from_schedule)
99e22598 3155 __releases(q->queue_lock)
94b5eb28 3156{
49cac01e 3157 trace_block_unplug(q, depth, !from_schedule);
99e22598 3158
70460571 3159 if (from_schedule)
24ecfbe2 3160 blk_run_queue_async(q);
70460571 3161 else
24ecfbe2 3162 __blk_run_queue(q);
70460571 3163 spin_unlock(q->queue_lock);
94b5eb28
JA
3164}
3165
74018dc3 3166static void flush_plug_callbacks(struct blk_plug *plug, bool from_schedule)
048c9374
N
3167{
3168 LIST_HEAD(callbacks);
3169
2a7d5559
SL
3170 while (!list_empty(&plug->cb_list)) {
3171 list_splice_init(&plug->cb_list, &callbacks);
048c9374 3172
2a7d5559
SL
3173 while (!list_empty(&callbacks)) {
3174 struct blk_plug_cb *cb = list_first_entry(&callbacks,
048c9374
N
3175 struct blk_plug_cb,
3176 list);
2a7d5559 3177 list_del(&cb->list);
74018dc3 3178 cb->callback(cb, from_schedule);
2a7d5559 3179 }
048c9374
N
3180 }
3181}
3182
9cbb1750
N
3183struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug, void *data,
3184 int size)
3185{
3186 struct blk_plug *plug = current->plug;
3187 struct blk_plug_cb *cb;
3188
3189 if (!plug)
3190 return NULL;
3191
3192 list_for_each_entry(cb, &plug->cb_list, list)
3193 if (cb->callback == unplug && cb->data == data)
3194 return cb;
3195
3196 /* Not currently on the callback list */
3197 BUG_ON(size < sizeof(*cb));
3198 cb = kzalloc(size, GFP_ATOMIC);
3199 if (cb) {
3200 cb->data = data;
3201 cb->callback = unplug;
3202 list_add(&cb->list, &plug->cb_list);
3203 }
3204 return cb;
3205}
3206EXPORT_SYMBOL(blk_check_plugged);
3207
49cac01e 3208void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
73c10101
JA
3209{
3210 struct request_queue *q;
3211 unsigned long flags;
3212 struct request *rq;
109b8129 3213 LIST_HEAD(list);
94b5eb28 3214 unsigned int depth;
73c10101 3215
74018dc3 3216 flush_plug_callbacks(plug, from_schedule);
320ae51f
JA
3217
3218 if (!list_empty(&plug->mq_list))
3219 blk_mq_flush_plug_list(plug, from_schedule);
3220
73c10101
JA
3221 if (list_empty(&plug->list))
3222 return;
3223
109b8129
N
3224 list_splice_init(&plug->list, &list);
3225
422765c2 3226 list_sort(NULL, &list, plug_rq_cmp);
73c10101
JA
3227
3228 q = NULL;
94b5eb28 3229 depth = 0;
18811272
JA
3230
3231 /*
3232 * Save and disable interrupts here, to avoid doing it for every
3233 * queue lock we have to take.
3234 */
73c10101 3235 local_irq_save(flags);
109b8129
N
3236 while (!list_empty(&list)) {
3237 rq = list_entry_rq(list.next);
73c10101 3238 list_del_init(&rq->queuelist);
73c10101
JA
3239 BUG_ON(!rq->q);
3240 if (rq->q != q) {
99e22598
JA
3241 /*
3242 * This drops the queue lock
3243 */
3244 if (q)
49cac01e 3245 queue_unplugged(q, depth, from_schedule);
73c10101 3246 q = rq->q;
94b5eb28 3247 depth = 0;
73c10101
JA
3248 spin_lock(q->queue_lock);
3249 }
8ba61435
TH
3250
3251 /*
3252 * Short-circuit if @q is dead
3253 */
3f3299d5 3254 if (unlikely(blk_queue_dying(q))) {
8ba61435
TH
3255 __blk_end_request_all(rq, -ENODEV);
3256 continue;
3257 }
3258
73c10101
JA
3259 /*
3260 * rq is already accounted, so use raw insert
3261 */
f73f44eb 3262 if (op_is_flush(rq->cmd_flags))
401a18e9
JA
3263 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
3264 else
3265 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
94b5eb28
JA
3266
3267 depth++;
73c10101
JA
3268 }
3269
99e22598
JA
3270 /*
3271 * This drops the queue lock
3272 */
3273 if (q)
49cac01e 3274 queue_unplugged(q, depth, from_schedule);
73c10101 3275
73c10101
JA
3276 local_irq_restore(flags);
3277}
73c10101
JA
3278
3279void blk_finish_plug(struct blk_plug *plug)
3280{
dd6cf3e1
SL
3281 if (plug != current->plug)
3282 return;
f6603783 3283 blk_flush_plug_list(plug, false);
73c10101 3284
dd6cf3e1 3285 current->plug = NULL;
73c10101 3286}
88b996cd 3287EXPORT_SYMBOL(blk_finish_plug);
73c10101 3288
47fafbc7 3289#ifdef CONFIG_PM
6c954667
LM
3290/**
3291 * blk_pm_runtime_init - Block layer runtime PM initialization routine
3292 * @q: the queue of the device
3293 * @dev: the device the queue belongs to
3294 *
3295 * Description:
3296 * Initialize runtime-PM-related fields for @q and start auto suspend for
3297 * @dev. Drivers that want to take advantage of request-based runtime PM
3298 * should call this function after @dev has been initialized, and its
3299 * request queue @q has been allocated, and runtime PM for it can not happen
3300 * yet(either due to disabled/forbidden or its usage_count > 0). In most
3301 * cases, driver should call this function before any I/O has taken place.
3302 *
3303 * This function takes care of setting up using auto suspend for the device,
3304 * the autosuspend delay is set to -1 to make runtime suspend impossible
3305 * until an updated value is either set by user or by driver. Drivers do
3306 * not need to touch other autosuspend settings.
3307 *
3308 * The block layer runtime PM is request based, so only works for drivers
3309 * that use request as their IO unit instead of those directly use bio's.
3310 */
3311void blk_pm_runtime_init(struct request_queue *q, struct device *dev)
3312{
3313 q->dev = dev;
3314 q->rpm_status = RPM_ACTIVE;
3315 pm_runtime_set_autosuspend_delay(q->dev, -1);
3316 pm_runtime_use_autosuspend(q->dev);
3317}
3318EXPORT_SYMBOL(blk_pm_runtime_init);
3319
3320/**
3321 * blk_pre_runtime_suspend - Pre runtime suspend check
3322 * @q: the queue of the device
3323 *
3324 * Description:
3325 * This function will check if runtime suspend is allowed for the device
3326 * by examining if there are any requests pending in the queue. If there
3327 * are requests pending, the device can not be runtime suspended; otherwise,
3328 * the queue's status will be updated to SUSPENDING and the driver can
3329 * proceed to suspend the device.
3330 *
3331 * For the not allowed case, we mark last busy for the device so that
3332 * runtime PM core will try to autosuspend it some time later.
3333 *
3334 * This function should be called near the start of the device's
3335 * runtime_suspend callback.
3336 *
3337 * Return:
3338 * 0 - OK to runtime suspend the device
3339 * -EBUSY - Device should not be runtime suspended
3340 */
3341int blk_pre_runtime_suspend(struct request_queue *q)
3342{
3343 int ret = 0;
3344
4fd41a85
KX
3345 if (!q->dev)
3346 return ret;
3347
6c954667
LM
3348 spin_lock_irq(q->queue_lock);
3349 if (q->nr_pending) {
3350 ret = -EBUSY;
3351 pm_runtime_mark_last_busy(q->dev);
3352 } else {
3353 q->rpm_status = RPM_SUSPENDING;
3354 }
3355 spin_unlock_irq(q->queue_lock);
3356 return ret;
3357}
3358EXPORT_SYMBOL(blk_pre_runtime_suspend);
3359
3360/**
3361 * blk_post_runtime_suspend - Post runtime suspend processing
3362 * @q: the queue of the device
3363 * @err: return value of the device's runtime_suspend function
3364 *
3365 * Description:
3366 * Update the queue's runtime status according to the return value of the
3367 * device's runtime suspend function and mark last busy for the device so
3368 * that PM core will try to auto suspend the device at a later time.
3369 *
3370 * This function should be called near the end of the device's
3371 * runtime_suspend callback.
3372 */
3373void blk_post_runtime_suspend(struct request_queue *q, int err)
3374{
4fd41a85
KX
3375 if (!q->dev)
3376 return;
3377
6c954667
LM
3378 spin_lock_irq(q->queue_lock);
3379 if (!err) {
3380 q->rpm_status = RPM_SUSPENDED;
3381 } else {
3382 q->rpm_status = RPM_ACTIVE;
3383 pm_runtime_mark_last_busy(q->dev);
3384 }
3385 spin_unlock_irq(q->queue_lock);
3386}
3387EXPORT_SYMBOL(blk_post_runtime_suspend);
3388
3389/**
3390 * blk_pre_runtime_resume - Pre runtime resume processing
3391 * @q: the queue of the device
3392 *
3393 * Description:
3394 * Update the queue's runtime status to RESUMING in preparation for the
3395 * runtime resume of the device.
3396 *
3397 * This function should be called near the start of the device's
3398 * runtime_resume callback.
3399 */
3400void blk_pre_runtime_resume(struct request_queue *q)
3401{
4fd41a85
KX
3402 if (!q->dev)
3403 return;
3404
6c954667
LM
3405 spin_lock_irq(q->queue_lock);
3406 q->rpm_status = RPM_RESUMING;
3407 spin_unlock_irq(q->queue_lock);
3408}
3409EXPORT_SYMBOL(blk_pre_runtime_resume);
3410
3411/**
3412 * blk_post_runtime_resume - Post runtime resume processing
3413 * @q: the queue of the device
3414 * @err: return value of the device's runtime_resume function
3415 *
3416 * Description:
3417 * Update the queue's runtime status according to the return value of the
3418 * device's runtime_resume function. If it is successfully resumed, process
3419 * the requests that are queued into the device's queue when it is resuming
3420 * and then mark last busy and initiate autosuspend for it.
3421 *
3422 * This function should be called near the end of the device's
3423 * runtime_resume callback.
3424 */
3425void blk_post_runtime_resume(struct request_queue *q, int err)
3426{
4fd41a85
KX
3427 if (!q->dev)
3428 return;
3429
6c954667
LM
3430 spin_lock_irq(q->queue_lock);
3431 if (!err) {
3432 q->rpm_status = RPM_ACTIVE;
3433 __blk_run_queue(q);
3434 pm_runtime_mark_last_busy(q->dev);
c60855cd 3435 pm_request_autosuspend(q->dev);
6c954667
LM
3436 } else {
3437 q->rpm_status = RPM_SUSPENDED;
3438 }
3439 spin_unlock_irq(q->queue_lock);
3440}
3441EXPORT_SYMBOL(blk_post_runtime_resume);
d07ab6d1
MW
3442
3443/**
3444 * blk_set_runtime_active - Force runtime status of the queue to be active
3445 * @q: the queue of the device
3446 *
3447 * If the device is left runtime suspended during system suspend the resume
3448 * hook typically resumes the device and corrects runtime status
3449 * accordingly. However, that does not affect the queue runtime PM status
3450 * which is still "suspended". This prevents processing requests from the
3451 * queue.
3452 *
3453 * This function can be used in driver's resume hook to correct queue
3454 * runtime PM status and re-enable peeking requests from the queue. It
3455 * should be called before first request is added to the queue.
3456 */
3457void blk_set_runtime_active(struct request_queue *q)
3458{
3459 spin_lock_irq(q->queue_lock);
3460 q->rpm_status = RPM_ACTIVE;
3461 pm_runtime_mark_last_busy(q->dev);
3462 pm_request_autosuspend(q->dev);
3463 spin_unlock_irq(q->queue_lock);
3464}
3465EXPORT_SYMBOL(blk_set_runtime_active);
6c954667
LM
3466#endif
3467
1da177e4
LT
3468int __init blk_dev_init(void)
3469{
ef295ecf
CH
3470 BUILD_BUG_ON(REQ_OP_LAST >= (1 << REQ_OP_BITS));
3471 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
0762b23d 3472 FIELD_SIZEOF(struct request, cmd_flags));
ef295ecf
CH
3473 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
3474 FIELD_SIZEOF(struct bio, bi_opf));
9eb55b03 3475
89b90be2
TH
3476 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
3477 kblockd_workqueue = alloc_workqueue("kblockd",
28747fcd 3478 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
1da177e4
LT
3479 if (!kblockd_workqueue)
3480 panic("Failed to create kblockd\n");
3481
3482 request_cachep = kmem_cache_create("blkdev_requests",
20c2df83 3483 sizeof(struct request), 0, SLAB_PANIC, NULL);
1da177e4 3484
c2789bd4 3485 blk_requestq_cachep = kmem_cache_create("request_queue",
165125e1 3486 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
1da177e4 3487
18fbda91
OS
3488#ifdef CONFIG_DEBUG_FS
3489 blk_debugfs_root = debugfs_create_dir("block", NULL);
3490#endif
3491
d38ecf93 3492 return 0;
1da177e4 3493}