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