blob: d2bba4700e652ab7d0b13e01e9e86275aaf15c5d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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>
Jens Axboe320ae512013-10-24 09:20:05 +010019#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/completion.h>
26#include <linux/slab.h>
27#include <linux/swap.h>
28#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080029#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080030#include <linux/fault-inject.h>
Jens Axboe73c10102011-03-08 13:19:51 +010031#include <linux/list_sort.h>
Tejun Heoe3c78ca2011-10-19 14:32:38 +020032#include <linux/delay.h>
Tejun Heoaaf7c682012-04-19 16:29:22 -070033#include <linux/ratelimit.h>
Lin Ming6c954662013-03-23 11:42:26 +080034#include <linux/pm_runtime.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040035#include <linux/blk-cgroup.h>
Li Zefan55782132009-06-09 13:43:05 +080036
37#define CREATE_TRACE_POINTS
38#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Jens Axboe8324aa92008-01-29 14:51:59 +010040#include "blk.h"
Ming Lei43a5e4e2013-12-26 21:31:35 +080041#include "blk-mq.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070042#include "blk-mq-sched.h"
Jens Axboe87760e52016-11-09 12:38:14 -070043#include "blk-wbt.h"
Jens Axboe8324aa92008-01-29 14:51:59 +010044
Mike Snitzerd07335e2010-11-16 12:52:38 +010045EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020046EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -070047EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Keith Busch3291fa52014-04-28 12:30:52 -060048EXPORT_TRACEPOINT_SYMBOL_GPL(block_split);
NeilBrowncbae8d42012-12-14 20:49:27 +010049EXPORT_TRACEPOINT_SYMBOL_GPL(block_unplug);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010050
Tejun Heoa73f7302011-12-14 00:33:37 +010051DEFINE_IDA(blk_queue_ida);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * For the allocated request tables
55 */
Wei Tangd674d412015-11-24 09:58:45 +080056struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 * For queue allocation
60 */
Jens Axboe6728cb02008-01-31 13:03:55 +010061struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Controlling structure to kblockd
65 */
Jens Axboeff856ba2006-01-09 16:02:34 +010066static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Tejun Heod40f75a2015-05-22 17:13:42 -040068static void blk_clear_congested(struct request_list *rl, int sync)
69{
Tejun Heod40f75a2015-05-22 17:13:42 -040070#ifdef CONFIG_CGROUP_WRITEBACK
71 clear_wb_congested(rl->blkg->wb_congested, sync);
72#else
Tejun Heo482cf792015-05-22 17:13:43 -040073 /*
74 * If !CGROUP_WRITEBACK, all blkg's map to bdi->wb and we shouldn't
75 * flip its congestion state for events on other blkcgs.
76 */
77 if (rl == &rl->q->root_rl)
Jan Karadc3b17c2017-02-02 15:56:50 +010078 clear_wb_congested(rl->q->backing_dev_info->wb.congested, sync);
Tejun Heod40f75a2015-05-22 17:13:42 -040079#endif
80}
81
82static void blk_set_congested(struct request_list *rl, int sync)
83{
Tejun Heod40f75a2015-05-22 17:13:42 -040084#ifdef CONFIG_CGROUP_WRITEBACK
85 set_wb_congested(rl->blkg->wb_congested, sync);
86#else
Tejun Heo482cf792015-05-22 17:13:43 -040087 /* see blk_clear_congested() */
88 if (rl == &rl->q->root_rl)
Jan Karadc3b17c2017-02-02 15:56:50 +010089 set_wb_congested(rl->q->backing_dev_info->wb.congested, sync);
Tejun Heod40f75a2015-05-22 17:13:42 -040090#endif
91}
92
Jens Axboe8324aa92008-01-29 14:51:59 +010093void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 int nr;
96
97 nr = q->nr_requests - (q->nr_requests / 8) + 1;
98 if (nr > q->nr_requests)
99 nr = q->nr_requests;
100 q->nr_congestion_on = nr;
101
102 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
103 if (nr < 1)
104 nr = 1;
105 q->nr_congestion_off = nr;
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
109 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
110 * @bdev: device
111 *
112 * Locates the passed device's request queue and returns the address of its
Tejun Heoff9ea322014-09-08 08:03:56 +0900113 * backing_dev_info. This function can only be called if @bdev is opened
114 * and the return value is never NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
117{
Jens Axboe165125e2007-07-24 09:28:11 +0200118 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jan Karadc3b17c2017-02-02 15:56:50 +0100120 return q->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122EXPORT_SYMBOL(blk_get_backing_dev_info);
123
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200124void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200126 memset(rq, 0, sizeof(*rq));
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700129 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200130 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100131 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900132 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200133 INIT_HLIST_NODE(&rq->hash);
134 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe63a71382008-02-08 12:41:03 +0100135 rq->tag = -1;
Jens Axboebd166ef2017-01-17 06:03:22 -0700136 rq->internal_tag = -1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900137 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700138 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100139 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200141EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
NeilBrown5bb23a62007-09-27 12:46:13 +0200143static void req_bio_endio(struct request *rq, struct bio *bio,
144 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100145{
Mike Snitzer78d8e582015-06-26 10:01:13 -0400146 if (error)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200147 bio->bi_error = error;
Tejun Heo797e7db2006-01-06 09:51:03 +0100148
Christoph Hellwige8064022016-10-20 15:12:13 +0200149 if (unlikely(rq->rq_flags & RQF_QUIET))
Jens Axboeb7c44ed2015-07-24 12:37:59 -0600150 bio_set_flag(bio, BIO_QUIET);
Tejun Heo143a87f2011-01-25 12:43:52 +0100151
Kent Overstreetf79ea412012-09-20 16:38:30 -0700152 bio_advance(bio, nbytes);
Tejun Heo143a87f2011-01-25 12:43:52 +0100153
154 /* don't actually finish bio if it's part of flush sequence */
Christoph Hellwige8064022016-10-20 15:12:13 +0200155 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200156 bio_endio(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +0100157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159void blk_dump_rq_flags(struct request *rq, char *msg)
160{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100161 printk(KERN_INFO "%s: dev %s: flags=%llx\n", msg,
162 rq->rq_disk ? rq->rq_disk->disk_name : "?",
Jens Axboe59533162013-05-23 12:25:08 +0200163 (unsigned long long) rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Tejun Heo83096eb2009-05-07 22:24:39 +0900165 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
166 (unsigned long long)blk_rq_pos(rq),
167 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Jens Axboeb4f42e22014-04-10 09:46:28 -0600168 printk(KERN_INFO " bio %p, biotail %p, len %u\n",
169 rq->bio, rq->biotail, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171EXPORT_SYMBOL(blk_dump_rq_flags);
172
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500173static void blk_delay_work(struct work_struct *work)
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200174{
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500175 struct request_queue *q;
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200176
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500177 q = container_of(work, struct request_queue, delay_work.work);
178 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200179 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500180 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/**
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500184 * blk_delay_queue - restart queueing after defined interval
185 * @q: The &struct request_queue in question
186 * @msecs: Delay in msecs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
188 * Description:
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500189 * Sometimes queueing needs to be postponed for a little while, to allow
190 * resources to come back. This function will make sure that queueing is
Bart Van Assche70460572012-11-28 13:45:56 +0100191 * restarted around the specified time. Queue lock must be held.
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500192 */
193void blk_delay_queue(struct request_queue *q, unsigned long msecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Bart Van Assche70460572012-11-28 13:45:56 +0100195 if (likely(!blk_queue_dead(q)))
196 queue_delayed_work(kblockd_workqueue, &q->delay_work,
197 msecs_to_jiffies(msecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500199EXPORT_SYMBOL(blk_delay_queue);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/**
Jens Axboe21491412015-12-28 13:01:22 -0700202 * blk_start_queue_async - asynchronously restart a previously stopped queue
203 * @q: The &struct request_queue in question
204 *
205 * Description:
206 * blk_start_queue_async() will clear the stop flag on the queue, and
207 * ensure that the request_fn for the queue is run from an async
208 * context.
209 **/
210void blk_start_queue_async(struct request_queue *q)
211{
212 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
213 blk_run_queue_async(q);
214}
215EXPORT_SYMBOL(blk_start_queue_async);
216
217/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200219 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
221 * Description:
222 * blk_start_queue() will clear the stop flag on the queue, and call
223 * the request_fn for the queue if it was in a stopped state when
224 * entered. Also see blk_stop_queue(). Queue lock must be held.
225 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200226void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200228 WARN_ON(!irqs_disabled());
229
Nick Piggin75ad23b2008-04-29 14:48:33 +0200230 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200231 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233EXPORT_SYMBOL(blk_start_queue);
234
235/**
236 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200237 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 *
239 * Description:
240 * The Linux block layer assumes that a block driver will consume all
241 * entries on the request queue when the request_fn strategy is called.
242 * Often this will not happen, because of hardware limitations (queue
243 * depth settings). If a device driver gets a 'queue full' response,
244 * or if it simply chooses not to queue more I/O at one point, it can
245 * call this function to prevent the request_fn from being called until
246 * the driver has signalled it's ready to go again. This happens by calling
247 * blk_start_queue() to restart queue operations. Queue lock must be held.
248 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200249void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Tejun Heo136b5722012-08-21 13:18:24 -0700251 cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200252 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254EXPORT_SYMBOL(blk_stop_queue);
255
256/**
257 * blk_sync_queue - cancel any pending callbacks on a queue
258 * @q: the queue
259 *
260 * Description:
261 * The block layer may perform asynchronous callback activity
262 * on a queue, such as calling the unplug function after a timeout.
263 * A block device may call blk_sync_queue to ensure that any
264 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200265 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * that its ->make_request_fn will not re-add plugging prior to calling
267 * this function.
268 *
Vivek Goyalda527772011-03-02 19:05:33 -0500269 * This function does not cancel any asynchronous activity arising
Masanari Iidada3dae52014-09-09 01:27:23 +0900270 * out of elevator or throttling code. That would require elevator_exit()
Tejun Heo5efd6112012-03-05 13:15:12 -0800271 * and blkcg_exit_queue() to be called with queue lock initialized.
Vivek Goyalda527772011-03-02 19:05:33 -0500272 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 */
274void blk_sync_queue(struct request_queue *q)
275{
Jens Axboe70ed28b2008-11-19 14:38:39 +0100276 del_timer_sync(&q->timeout);
Ming Leif04c1fe2013-12-26 21:31:36 +0800277
278 if (q->mq_ops) {
279 struct blk_mq_hw_ctx *hctx;
280 int i;
281
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600282 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe27489a32016-08-24 15:54:25 -0600283 cancel_work_sync(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600284 cancel_delayed_work_sync(&hctx->delay_work);
285 }
Ming Leif04c1fe2013-12-26 21:31:36 +0800286 } else {
287 cancel_delayed_work_sync(&q->delay_work);
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290EXPORT_SYMBOL(blk_sync_queue);
291
292/**
Bart Van Asschec246e802012-12-06 14:32:01 +0100293 * __blk_run_queue_uncond - run a queue whether or not it has been stopped
294 * @q: The queue to run
295 *
296 * Description:
297 * Invoke request handling on a queue if there are any pending requests.
298 * May be used to restart request handling after a request has completed.
299 * This variant runs the queue whether or not the queue has been
300 * stopped. Must be called with the queue lock held and interrupts
301 * disabled. See also @blk_run_queue.
302 */
303inline void __blk_run_queue_uncond(struct request_queue *q)
304{
305 if (unlikely(blk_queue_dead(q)))
306 return;
307
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100308 /*
309 * Some request_fn implementations, e.g. scsi_request_fn(), unlock
310 * the queue lock internally. As a result multiple threads may be
311 * running such a request function concurrently. Keep track of the
312 * number of active request_fn invocations such that blk_drain_queue()
313 * can wait until all these request_fn calls have finished.
314 */
315 q->request_fn_active++;
Bart Van Asschec246e802012-12-06 14:32:01 +0100316 q->request_fn(q);
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100317 q->request_fn_active--;
Bart Van Asschec246e802012-12-06 14:32:01 +0100318}
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200319EXPORT_SYMBOL_GPL(__blk_run_queue_uncond);
Bart Van Asschec246e802012-12-06 14:32:01 +0100320
321/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200322 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200324 *
325 * Description:
326 * See @blk_run_queue. This variant must be called with the queue lock
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200327 * held and interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200329void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Tejun Heoa538cd02009-04-23 11:05:17 +0900331 if (unlikely(blk_queue_stopped(q)))
332 return;
333
Bart Van Asschec246e802012-12-06 14:32:01 +0100334 __blk_run_queue_uncond(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200335}
336EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200337
Nick Piggin75ad23b2008-04-29 14:48:33 +0200338/**
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200339 * blk_run_queue_async - run a single device queue in workqueue context
340 * @q: The queue to run
341 *
342 * Description:
343 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
Bart Van Assche70460572012-11-28 13:45:56 +0100344 * of us. The caller must hold the queue lock.
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200345 */
346void blk_run_queue_async(struct request_queue *q)
347{
Bart Van Assche70460572012-11-28 13:45:56 +0100348 if (likely(!blk_queue_stopped(q) && !blk_queue_dead(q)))
Tejun Heoe7c2f962012-08-21 13:18:24 -0700349 mod_delayed_work(kblockd_workqueue, &q->delay_work, 0);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200350}
Jens Axboec21e6be2011-04-19 13:32:46 +0200351EXPORT_SYMBOL(blk_run_queue_async);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200352
353/**
Nick Piggin75ad23b2008-04-29 14:48:33 +0200354 * blk_run_queue - run a single device queue
355 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200356 *
357 * Description:
358 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900359 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200360 */
361void blk_run_queue(struct request_queue *q)
362{
363 unsigned long flags;
364
365 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200366 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 spin_unlock_irqrestore(q->queue_lock, flags);
368}
369EXPORT_SYMBOL(blk_run_queue);
370
Jens Axboe165125e2007-07-24 09:28:11 +0200371void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500372{
373 kobject_put(&q->kobj);
374}
Jens Axboed86e0e82011-05-27 07:44:43 +0200375EXPORT_SYMBOL(blk_put_queue);
Al Viro483f4af2006-03-18 18:34:37 -0500376
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200377/**
Bart Van Assche807592a2012-11-28 13:43:38 +0100378 * __blk_drain_queue - drain requests from request_queue
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200379 * @q: queue to drain
Tejun Heoc9a929d2011-10-19 14:42:16 +0200380 * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200381 *
Tejun Heoc9a929d2011-10-19 14:42:16 +0200382 * Drain requests from @q. If @drain_all is set, all requests are drained.
383 * If not, only ELVPRIV requests are drained. The caller is responsible
384 * for ensuring that no new requests which need to be drained are queued.
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200385 */
Bart Van Assche807592a2012-11-28 13:43:38 +0100386static void __blk_drain_queue(struct request_queue *q, bool drain_all)
387 __releases(q->queue_lock)
388 __acquires(q->queue_lock)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200389{
Asias He458f27a2012-06-15 08:45:25 +0200390 int i;
391
Bart Van Assche807592a2012-11-28 13:43:38 +0100392 lockdep_assert_held(q->queue_lock);
393
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200394 while (true) {
Tejun Heo481a7d62011-12-14 00:33:37 +0100395 bool drain = false;
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200396
Tejun Heob855b042012-03-06 21:24:55 +0100397 /*
398 * The caller might be trying to drain @q before its
399 * elevator is initialized.
400 */
401 if (q->elevator)
402 elv_drain_elevator(q);
403
Tejun Heo5efd6112012-03-05 13:15:12 -0800404 blkcg_drain_queue(q);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200405
Tejun Heo4eabc942011-12-15 20:03:04 +0100406 /*
407 * This function might be called on a queue which failed
Tejun Heob855b042012-03-06 21:24:55 +0100408 * driver init after queue creation or is not yet fully
409 * active yet. Some drivers (e.g. fd and loop) get unhappy
410 * in such cases. Kick queue iff dispatch queue has
411 * something on it and @q has request_fn set.
Tejun Heo4eabc942011-12-15 20:03:04 +0100412 */
Tejun Heob855b042012-03-06 21:24:55 +0100413 if (!list_empty(&q->queue_head) && q->request_fn)
Tejun Heo4eabc942011-12-15 20:03:04 +0100414 __blk_run_queue(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200415
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700416 drain |= q->nr_rqs_elvpriv;
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100417 drain |= q->request_fn_active;
Tejun Heo481a7d62011-12-14 00:33:37 +0100418
419 /*
420 * Unfortunately, requests are queued at and tracked from
421 * multiple places and there's no single counter which can
422 * be drained. Check all the queues and counters.
423 */
424 if (drain_all) {
Ming Leie97c2932014-09-25 23:23:46 +0800425 struct blk_flush_queue *fq = blk_get_flush_queue(q, NULL);
Tejun Heo481a7d62011-12-14 00:33:37 +0100426 drain |= !list_empty(&q->queue_head);
427 for (i = 0; i < 2; i++) {
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700428 drain |= q->nr_rqs[i];
Tejun Heo481a7d62011-12-14 00:33:37 +0100429 drain |= q->in_flight[i];
Ming Lei7c94e1c2014-09-25 23:23:43 +0800430 if (fq)
431 drain |= !list_empty(&fq->flush_queue[i]);
Tejun Heo481a7d62011-12-14 00:33:37 +0100432 }
433 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200434
Tejun Heo481a7d62011-12-14 00:33:37 +0100435 if (!drain)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200436 break;
Bart Van Assche807592a2012-11-28 13:43:38 +0100437
438 spin_unlock_irq(q->queue_lock);
439
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200440 msleep(10);
Bart Van Assche807592a2012-11-28 13:43:38 +0100441
442 spin_lock_irq(q->queue_lock);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200443 }
Asias He458f27a2012-06-15 08:45:25 +0200444
445 /*
446 * With queue marked dead, any woken up waiter will fail the
447 * allocation path, so the wakeup chaining is lost and we're
448 * left with hung waiters. We need to wake up those waiters.
449 */
450 if (q->request_fn) {
Tejun Heoa0516612012-06-26 15:05:44 -0700451 struct request_list *rl;
452
Tejun Heoa0516612012-06-26 15:05:44 -0700453 blk_queue_for_each_rl(rl, q)
454 for (i = 0; i < ARRAY_SIZE(rl->wait); i++)
455 wake_up_all(&rl->wait[i]);
Asias He458f27a2012-06-15 08:45:25 +0200456 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200457}
458
Tejun Heoc9a929d2011-10-19 14:42:16 +0200459/**
Tejun Heod7325802012-03-05 13:14:58 -0800460 * blk_queue_bypass_start - enter queue bypass mode
461 * @q: queue of interest
462 *
463 * In bypass mode, only the dispatch FIFO queue of @q is used. This
464 * function makes @q enter bypass mode and drains all requests which were
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800465 * throttled or issued before. On return, it's guaranteed that no request
Tejun Heo80fd9972012-04-13 14:50:53 -0700466 * is being throttled or has ELVPRIV set and blk_queue_bypass() %true
467 * inside queue or RCU read lock.
Tejun Heod7325802012-03-05 13:14:58 -0800468 */
469void blk_queue_bypass_start(struct request_queue *q)
470{
471 spin_lock_irq(q->queue_lock);
Tejun Heo776687b2014-07-01 10:29:17 -0600472 q->bypass_depth++;
Tejun Heod7325802012-03-05 13:14:58 -0800473 queue_flag_set(QUEUE_FLAG_BYPASS, q);
474 spin_unlock_irq(q->queue_lock);
475
Tejun Heo776687b2014-07-01 10:29:17 -0600476 /*
477 * Queues start drained. Skip actual draining till init is
478 * complete. This avoids lenghty delays during queue init which
479 * can happen many times during boot.
480 */
481 if (blk_queue_init_done(q)) {
Bart Van Assche807592a2012-11-28 13:43:38 +0100482 spin_lock_irq(q->queue_lock);
483 __blk_drain_queue(q, false);
484 spin_unlock_irq(q->queue_lock);
485
Tejun Heob82d4b12012-04-13 13:11:31 -0700486 /* ensure blk_queue_bypass() is %true inside RCU read lock */
487 synchronize_rcu();
488 }
Tejun Heod7325802012-03-05 13:14:58 -0800489}
490EXPORT_SYMBOL_GPL(blk_queue_bypass_start);
491
492/**
493 * blk_queue_bypass_end - leave queue bypass mode
494 * @q: queue of interest
495 *
496 * Leave bypass mode and restore the normal queueing behavior.
497 */
498void blk_queue_bypass_end(struct request_queue *q)
499{
500 spin_lock_irq(q->queue_lock);
501 if (!--q->bypass_depth)
502 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
503 WARN_ON_ONCE(q->bypass_depth < 0);
504 spin_unlock_irq(q->queue_lock);
505}
506EXPORT_SYMBOL_GPL(blk_queue_bypass_end);
507
Jens Axboeaed3ea92014-12-22 14:04:42 -0700508void blk_set_queue_dying(struct request_queue *q)
509{
Bart Van Assche1b856082016-08-16 16:48:36 -0700510 spin_lock_irq(q->queue_lock);
511 queue_flag_set(QUEUE_FLAG_DYING, q);
512 spin_unlock_irq(q->queue_lock);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700513
514 if (q->mq_ops)
515 blk_mq_wake_waiters(q);
516 else {
517 struct request_list *rl;
518
519 blk_queue_for_each_rl(rl, q) {
520 if (rl->rq_pool) {
521 wake_up(&rl->wait[BLK_RW_SYNC]);
522 wake_up(&rl->wait[BLK_RW_ASYNC]);
523 }
524 }
525 }
526}
527EXPORT_SYMBOL_GPL(blk_set_queue_dying);
528
Tejun Heod7325802012-03-05 13:14:58 -0800529/**
Tejun Heoc9a929d2011-10-19 14:42:16 +0200530 * blk_cleanup_queue - shutdown a request queue
531 * @q: request queue to shutdown
532 *
Bart Van Asschec246e802012-12-06 14:32:01 +0100533 * Mark @q DYING, drain all pending requests, mark @q DEAD, destroy and
534 * put it. All future requests will be failed immediately with -ENODEV.
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500535 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100536void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500537{
Tejun Heoc9a929d2011-10-19 14:42:16 +0200538 spinlock_t *lock = q->queue_lock;
Jens Axboee3335de2008-09-18 09:22:54 -0700539
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100540 /* mark @q DYING, no new request or merges will be allowed afterwards */
Al Viro483f4af2006-03-18 18:34:37 -0500541 mutex_lock(&q->sysfs_lock);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700542 blk_set_queue_dying(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200543 spin_lock_irq(lock);
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800544
Tejun Heo80fd9972012-04-13 14:50:53 -0700545 /*
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100546 * A dying queue is permanently in bypass mode till released. Note
Tejun Heo80fd9972012-04-13 14:50:53 -0700547 * that, unlike blk_queue_bypass_start(), we aren't performing
548 * synchronize_rcu() after entering bypass mode to avoid the delay
549 * as some drivers create and destroy a lot of queues while
550 * probing. This is still safe because blk_release_queue() will be
551 * called only after the queue refcnt drops to zero and nothing,
552 * RCU or not, would be traversing the queue by then.
553 */
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800554 q->bypass_depth++;
555 queue_flag_set(QUEUE_FLAG_BYPASS, q);
556
Tejun Heoc9a929d2011-10-19 14:42:16 +0200557 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
558 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100559 queue_flag_set(QUEUE_FLAG_DYING, q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200560 spin_unlock_irq(lock);
561 mutex_unlock(&q->sysfs_lock);
562
Bart Van Asschec246e802012-12-06 14:32:01 +0100563 /*
564 * Drain all requests queued before DYING marking. Set DEAD flag to
565 * prevent that q->request_fn() gets invoked after draining finished.
566 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400567 blk_freeze_queue(q);
568 spin_lock_irq(lock);
569 if (!q->mq_ops)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800570 __blk_drain_queue(q, true);
Bart Van Asschec246e802012-12-06 14:32:01 +0100571 queue_flag_set(QUEUE_FLAG_DEAD, q);
Bart Van Assche807592a2012-11-28 13:43:38 +0100572 spin_unlock_irq(lock);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200573
Dan Williams5a48fc12015-10-21 13:20:23 -0400574 /* for synchronous bio-based driver finish in-flight integrity i/o */
575 blk_flush_integrity();
576
Tejun Heoc9a929d2011-10-19 14:42:16 +0200577 /* @q won't process any more request, flush async actions */
Jan Karadc3b17c2017-02-02 15:56:50 +0100578 del_timer_sync(&q->backing_dev_info->laptop_mode_wb_timer);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200579 blk_sync_queue(q);
580
Bart Van Assche45a9c9d2014-12-09 16:57:48 +0100581 if (q->mq_ops)
582 blk_mq_free_queue(q);
Dan Williams3ef28e82015-10-21 13:20:12 -0400583 percpu_ref_exit(&q->q_usage_counter);
Bart Van Assche45a9c9d2014-12-09 16:57:48 +0100584
Asias He5e5cfac2012-05-24 23:28:52 +0800585 spin_lock_irq(lock);
586 if (q->queue_lock != &q->__queue_lock)
587 q->queue_lock = &q->__queue_lock;
588 spin_unlock_irq(lock);
589
Jan Karadc3b17c2017-02-02 15:56:50 +0100590 bdi_unregister(q->backing_dev_info);
NeilBrown6cd18e72015-04-27 14:12:22 +1000591
Tejun Heoc9a929d2011-10-19 14:42:16 +0200592 /* @q is and will stay empty, shutdown and put */
Al Viro483f4af2006-03-18 18:34:37 -0500593 blk_put_queue(q);
594}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595EXPORT_SYMBOL(blk_cleanup_queue);
596
David Rientjes271508d2015-03-24 16:21:16 -0700597/* Allocate memory local to the request queue */
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700598static void *alloc_request_simple(gfp_t gfp_mask, void *data)
David Rientjes271508d2015-03-24 16:21:16 -0700599{
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700600 struct request_queue *q = data;
601
602 return kmem_cache_alloc_node(request_cachep, gfp_mask, q->node);
David Rientjes271508d2015-03-24 16:21:16 -0700603}
604
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700605static void free_request_simple(void *element, void *data)
David Rientjes271508d2015-03-24 16:21:16 -0700606{
607 kmem_cache_free(request_cachep, element);
608}
609
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700610static void *alloc_request_size(gfp_t gfp_mask, void *data)
611{
612 struct request_queue *q = data;
613 struct request *rq;
614
615 rq = kmalloc_node(sizeof(struct request) + q->cmd_size, gfp_mask,
616 q->node);
617 if (rq && q->init_rq_fn && q->init_rq_fn(q, rq, gfp_mask) < 0) {
618 kfree(rq);
619 rq = NULL;
620 }
621 return rq;
622}
623
624static void free_request_size(void *element, void *data)
625{
626 struct request_queue *q = data;
627
628 if (q->exit_rq_fn)
629 q->exit_rq_fn(q, element);
630 kfree(element);
631}
632
Tejun Heo5b788ce2012-06-04 20:40:59 -0700633int blk_init_rl(struct request_list *rl, struct request_queue *q,
634 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400636 if (unlikely(rl->rq_pool))
637 return 0;
638
Tejun Heo5b788ce2012-06-04 20:40:59 -0700639 rl->q = q;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200640 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
641 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200642 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
643 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700645 if (q->cmd_size) {
646 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
647 alloc_request_size, free_request_size,
648 q, gfp_mask, q->node);
649 } else {
650 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
651 alloc_request_simple, free_request_simple,
652 q, gfp_mask, q->node);
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (!rl->rq_pool)
655 return -ENOMEM;
656
657 return 0;
658}
659
Tejun Heo5b788ce2012-06-04 20:40:59 -0700660void blk_exit_rl(struct request_list *rl)
661{
662 if (rl->rq_pool)
663 mempool_destroy(rl->rq_pool);
664}
665
Jens Axboe165125e2007-07-24 09:28:11 +0200666struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Ezequiel Garciac304a512012-11-10 10:39:44 +0100668 return blk_alloc_queue_node(gfp_mask, NUMA_NO_NODE);
Christoph Lameter19460892005-06-23 00:08:19 -0700669}
670EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100672int blk_queue_enter(struct request_queue *q, bool nowait)
Dan Williams3ef28e82015-10-21 13:20:12 -0400673{
674 while (true) {
675 int ret;
676
677 if (percpu_ref_tryget_live(&q->q_usage_counter))
678 return 0;
679
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100680 if (nowait)
Dan Williams3ef28e82015-10-21 13:20:12 -0400681 return -EBUSY;
682
683 ret = wait_event_interruptible(q->mq_freeze_wq,
684 !atomic_read(&q->mq_freeze_depth) ||
685 blk_queue_dying(q));
686 if (blk_queue_dying(q))
687 return -ENODEV;
688 if (ret)
689 return ret;
690 }
691}
692
693void blk_queue_exit(struct request_queue *q)
694{
695 percpu_ref_put(&q->q_usage_counter);
696}
697
698static void blk_queue_usage_counter_release(struct percpu_ref *ref)
699{
700 struct request_queue *q =
701 container_of(ref, struct request_queue, q_usage_counter);
702
703 wake_up_all(&q->mq_freeze_wq);
704}
705
Christoph Hellwig287922e2015-10-30 20:57:30 +0800706static void blk_rq_timed_out_timer(unsigned long data)
707{
708 struct request_queue *q = (struct request_queue *)data;
709
710 kblockd_schedule_work(&q->timeout_work);
711}
712
Jens Axboe165125e2007-07-24 09:28:11 +0200713struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700714{
Jens Axboe165125e2007-07-24 09:28:11 +0200715 struct request_queue *q;
Christoph Lameter19460892005-06-23 00:08:19 -0700716
Jens Axboe8324aa92008-01-29 14:51:59 +0100717 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700718 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!q)
720 return NULL;
721
Dan Carpenter00380a42012-03-23 09:58:54 +0100722 q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask);
Tejun Heoa73f7302011-12-14 00:33:37 +0100723 if (q->id < 0)
Ming Lei3d2936f2014-05-27 23:35:14 +0800724 goto fail_q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100725
Kent Overstreet54efd502015-04-23 22:37:18 -0700726 q->bio_split = bioset_create(BIO_POOL_SIZE, 0);
727 if (!q->bio_split)
728 goto fail_id;
729
Jan Karad03f6cd2017-02-02 15:56:51 +0100730 q->backing_dev_info = bdi_alloc_node(gfp_mask, node_id);
731 if (!q->backing_dev_info)
732 goto fail_split;
733
Jan Karadc3b17c2017-02-02 15:56:50 +0100734 q->backing_dev_info->ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300735 (VM_MAX_READAHEAD * 1024) / PAGE_SIZE;
Jan Karadc3b17c2017-02-02 15:56:50 +0100736 q->backing_dev_info->capabilities = BDI_CAP_CGROUP_WRITEBACK;
737 q->backing_dev_info->name = "block";
Mike Snitzer51514122011-11-23 10:59:13 +0100738 q->node = node_id;
Jens Axboe0989a022009-06-12 14:42:56 +0200739
Jan Karadc3b17c2017-02-02 15:56:50 +0100740 setup_timer(&q->backing_dev_info->laptop_mode_wb_timer,
Matthew Garrett31373d02010-04-06 14:25:14 +0200741 laptop_mode_timer_fn, (unsigned long) q);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700742 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
Tejun Heob855b042012-03-06 21:24:55 +0100743 INIT_LIST_HEAD(&q->queue_head);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700744 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +0100745 INIT_LIST_HEAD(&q->icq_list);
Tejun Heo4eef3042012-03-05 13:15:18 -0800746#ifdef CONFIG_BLK_CGROUP
Tejun Heoe8989fa2012-03-05 13:15:20 -0800747 INIT_LIST_HEAD(&q->blkg_list);
Tejun Heo4eef3042012-03-05 13:15:18 -0800748#endif
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500749 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500750
Jens Axboe8324aa92008-01-29 14:51:59 +0100751 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Al Viro483f4af2006-03-18 18:34:37 -0500753 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700754 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500755
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500756 /*
757 * By default initialize queue_lock to internal lock and driver can
758 * override it later if need be.
759 */
760 q->queue_lock = &q->__queue_lock;
761
Tejun Heob82d4b12012-04-13 13:11:31 -0700762 /*
763 * A queue starts its life with bypass turned on to avoid
764 * unnecessary bypass on/off overhead and nasty surprises during
Tejun Heo749fefe2012-09-20 14:08:52 -0700765 * init. The initial bypass will be finished when the queue is
766 * registered by blk_register_queue().
Tejun Heob82d4b12012-04-13 13:11:31 -0700767 */
768 q->bypass_depth = 1;
769 __set_bit(QUEUE_FLAG_BYPASS, &q->queue_flags);
770
Jens Axboe320ae512013-10-24 09:20:05 +0100771 init_waitqueue_head(&q->mq_freeze_wq);
772
Dan Williams3ef28e82015-10-21 13:20:12 -0400773 /*
774 * Init percpu_ref in atomic mode so that it's faster to shutdown.
775 * See blk_register_queue() for details.
776 */
777 if (percpu_ref_init(&q->q_usage_counter,
778 blk_queue_usage_counter_release,
779 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Mikulas Patockafff49962013-10-14 12:11:36 -0400780 goto fail_bdi;
Tejun Heof51b8022012-03-05 13:15:05 -0800781
Dan Williams3ef28e82015-10-21 13:20:12 -0400782 if (blkcg_init_queue(q))
783 goto fail_ref;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100786
Dan Williams3ef28e82015-10-21 13:20:12 -0400787fail_ref:
788 percpu_ref_exit(&q->q_usage_counter);
Mikulas Patockafff49962013-10-14 12:11:36 -0400789fail_bdi:
Jan Karad03f6cd2017-02-02 15:56:51 +0100790 bdi_put(q->backing_dev_info);
Kent Overstreet54efd502015-04-23 22:37:18 -0700791fail_split:
792 bioset_free(q->bio_split);
Tejun Heoa73f7302011-12-14 00:33:37 +0100793fail_id:
794 ida_simple_remove(&blk_queue_ida, q->id);
795fail_q:
796 kmem_cache_free(blk_requestq_cachep, q);
797 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
Christoph Lameter19460892005-06-23 00:08:19 -0700799EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801/**
802 * blk_init_queue - prepare a request queue for use with a block device
803 * @rfn: The function to be called to process requests that have been
804 * placed on the queue.
805 * @lock: Request queue spin lock
806 *
807 * Description:
808 * If a block device wishes to use the standard request handling procedures,
809 * which sorts requests and coalesces adjacent requests, then it must
810 * call blk_init_queue(). The function @rfn will be called when there
811 * are requests on the queue that need to be processed. If the device
812 * supports plugging, then @rfn may not be called immediately when requests
813 * are available on the queue, but may be called at some time later instead.
814 * Plugged queues are generally unplugged when a buffer belonging to one
815 * of the requests on the queue is needed, or due to memory pressure.
816 *
817 * @rfn is not required, or even expected, to remove all requests off the
818 * queue, but only as many as it can handle at a time. If it does leave
819 * requests on the queue, it is responsible for arranging that the requests
820 * get dealt with eventually.
821 *
822 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200823 * request queue; this lock will be taken also from interrupt context, so irq
824 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200826 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * it didn't succeed.
828 *
829 * Note:
830 * blk_init_queue() must be paired with a blk_cleanup_queue() call
831 * when the block device is deactivated (such as at module unload).
832 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700833
Jens Axboe165125e2007-07-24 09:28:11 +0200834struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Ezequiel Garciac304a512012-11-10 10:39:44 +0100836 return blk_init_queue_node(rfn, lock, NUMA_NO_NODE);
Christoph Lameter19460892005-06-23 00:08:19 -0700837}
838EXPORT_SYMBOL(blk_init_queue);
839
Jens Axboe165125e2007-07-24 09:28:11 +0200840struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700841blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
842{
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300843 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300845 q = blk_alloc_queue_node(GFP_KERNEL, node_id);
846 if (!q)
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600847 return NULL;
848
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300849 q->request_fn = rfn;
850 if (lock)
851 q->queue_lock = lock;
852 if (blk_init_allocated_queue(q) < 0) {
853 blk_cleanup_queue(q);
854 return NULL;
855 }
Christoph Hellwig18741982014-02-10 09:29:00 -0700856
Mike Snitzer7982e902014-03-08 17:20:01 -0700857 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200858}
859EXPORT_SYMBOL(blk_init_queue_node);
860
Jens Axboedece1632015-11-05 10:41:16 -0700861static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio);
Mike Snitzer336b7e12015-05-11 14:06:32 -0400862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300864int blk_init_allocated_queue(struct request_queue *q)
865{
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700866 q->fq = blk_alloc_flush_queue(q, NUMA_NO_NODE, q->cmd_size);
Ming Leiba483382014-09-25 23:23:44 +0800867 if (!q->fq)
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300868 return -ENOMEM;
Mike Snitzer7982e902014-03-08 17:20:01 -0700869
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700870 if (q->init_rq_fn && q->init_rq_fn(q, q->fq->flush_rq, GFP_KERNEL))
871 goto out_free_flush_queue;
872
Tejun Heoa0516612012-06-26 15:05:44 -0700873 if (blk_init_rl(&q->root_rl, q, GFP_KERNEL))
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700874 goto out_exit_flush_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Christoph Hellwig287922e2015-10-30 20:57:30 +0800876 INIT_WORK(&q->timeout_work, blk_timeout_work);
Tejun Heo60ea8222012-09-20 14:09:30 -0700877 q->queue_flags |= QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500878
Jens Axboef3b144a2009-03-06 08:48:33 +0100879 /*
880 * This also sets hw/phys segments, boundary and size
881 */
Jens Axboec20e8de2011-09-12 12:03:37 +0200882 blk_queue_make_request(q, blk_queue_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Alan Stern44ec9542007-02-20 11:01:57 -0500884 q->sg_reserved_size = INT_MAX;
885
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600886 /* Protect q->elevator from elevator_change */
887 mutex_lock(&q->sysfs_lock);
888
Tejun Heob82d4b12012-04-13 13:11:31 -0700889 /* init elevator */
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600890 if (elevator_init(q, NULL)) {
891 mutex_unlock(&q->sysfs_lock);
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700892 goto out_exit_flush_rq;
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600893 }
894
895 mutex_unlock(&q->sysfs_lock);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300896 return 0;
Dave Jones708f04d2014-03-20 15:03:58 -0600897
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700898out_exit_flush_rq:
899 if (q->exit_rq_fn)
900 q->exit_rq_fn(q, q->fq->flush_rq);
901out_free_flush_queue:
Ming Leiba483382014-09-25 23:23:44 +0800902 blk_free_flush_queue(q->fq);
Jens Axboe87760e52016-11-09 12:38:14 -0700903 wbt_exit(q);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300904 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
Mike Snitzer51514122011-11-23 10:59:13 +0100906EXPORT_SYMBOL(blk_init_allocated_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Tejun Heo09ac46c2011-12-14 00:33:38 +0100908bool blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100910 if (likely(!blk_queue_dying(q))) {
Tejun Heo09ac46c2011-12-14 00:33:38 +0100911 __blk_get_queue(q);
912 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
Tejun Heo09ac46c2011-12-14 00:33:38 +0100915 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
Jens Axboed86e0e82011-05-27 07:44:43 +0200917EXPORT_SYMBOL(blk_get_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Tejun Heo5b788ce2012-06-04 20:40:59 -0700919static inline void blk_free_request(struct request_list *rl, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Christoph Hellwige8064022016-10-20 15:12:13 +0200921 if (rq->rq_flags & RQF_ELVPRIV) {
Tejun Heo5b788ce2012-06-04 20:40:59 -0700922 elv_put_request(rl->q, rq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100923 if (rq->elv.icq)
Tejun Heo11a31222012-02-07 07:51:30 +0100924 put_io_context(rq->elv.icq->ioc);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100925 }
926
Tejun Heo5b788ce2012-06-04 20:40:59 -0700927 mempool_free(rq, rl->rq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * ioc_batching returns true if the ioc is a valid batching request and
932 * should be given priority access to a request.
933 */
Jens Axboe165125e2007-07-24 09:28:11 +0200934static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 if (!ioc)
937 return 0;
938
939 /*
940 * Make sure the process is able to allocate at least 1 request
941 * even if the batch times out, otherwise we could theoretically
942 * lose wakeups.
943 */
944 return ioc->nr_batch_requests == q->nr_batching ||
945 (ioc->nr_batch_requests > 0
946 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
947}
948
949/*
950 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
951 * will cause the process to be a "batcher" on all queues in the system. This
952 * is the behaviour we want though - once it gets a wakeup it should be given
953 * a nice run.
954 */
Jens Axboe165125e2007-07-24 09:28:11 +0200955static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 if (!ioc || ioc_batching(q, ioc))
958 return;
959
960 ioc->nr_batch_requests = q->nr_batching;
961 ioc->last_waited = jiffies;
962}
963
Tejun Heo5b788ce2012-06-04 20:40:59 -0700964static void __freed_request(struct request_list *rl, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700966 struct request_queue *q = rl->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Tejun Heod40f75a2015-05-22 17:13:42 -0400968 if (rl->count[sync] < queue_congestion_off_threshold(q))
969 blk_clear_congested(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jens Axboe1faa16d2009-04-06 14:48:01 +0200971 if (rl->count[sync] + 1 <= q->nr_requests) {
972 if (waitqueue_active(&rl->wait[sync]))
973 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Tejun Heo5b788ce2012-06-04 20:40:59 -0700975 blk_clear_rl_full(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977}
978
979/*
980 * A request has just been released. Account for it, update the full and
981 * congestion status, wake up any waiters. Called under q->queue_lock.
982 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200983static void freed_request(struct request_list *rl, bool sync,
984 req_flags_t rq_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700986 struct request_queue *q = rl->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700988 q->nr_rqs[sync]--;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200989 rl->count[sync]--;
Christoph Hellwige8064022016-10-20 15:12:13 +0200990 if (rq_flags & RQF_ELVPRIV)
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700991 q->nr_rqs_elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Tejun Heo5b788ce2012-06-04 20:40:59 -0700993 __freed_request(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Jens Axboe1faa16d2009-04-06 14:48:01 +0200995 if (unlikely(rl->starved[sync ^ 1]))
Tejun Heo5b788ce2012-06-04 20:40:59 -0700996 __freed_request(rl, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600999int blk_update_nr_requests(struct request_queue *q, unsigned int nr)
1000{
1001 struct request_list *rl;
Tejun Heod40f75a2015-05-22 17:13:42 -04001002 int on_thresh, off_thresh;
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001003
1004 spin_lock_irq(q->queue_lock);
1005 q->nr_requests = nr;
1006 blk_queue_congestion_threshold(q);
Tejun Heod40f75a2015-05-22 17:13:42 -04001007 on_thresh = queue_congestion_on_threshold(q);
1008 off_thresh = queue_congestion_off_threshold(q);
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001009
1010 blk_queue_for_each_rl(rl, q) {
Tejun Heod40f75a2015-05-22 17:13:42 -04001011 if (rl->count[BLK_RW_SYNC] >= on_thresh)
1012 blk_set_congested(rl, BLK_RW_SYNC);
1013 else if (rl->count[BLK_RW_SYNC] < off_thresh)
1014 blk_clear_congested(rl, BLK_RW_SYNC);
1015
1016 if (rl->count[BLK_RW_ASYNC] >= on_thresh)
1017 blk_set_congested(rl, BLK_RW_ASYNC);
1018 else if (rl->count[BLK_RW_ASYNC] < off_thresh)
1019 blk_clear_congested(rl, BLK_RW_ASYNC);
1020
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001021 if (rl->count[BLK_RW_SYNC] >= q->nr_requests) {
1022 blk_set_rl_full(rl, BLK_RW_SYNC);
1023 } else {
1024 blk_clear_rl_full(rl, BLK_RW_SYNC);
1025 wake_up(&rl->wait[BLK_RW_SYNC]);
1026 }
1027
1028 if (rl->count[BLK_RW_ASYNC] >= q->nr_requests) {
1029 blk_set_rl_full(rl, BLK_RW_ASYNC);
1030 } else {
1031 blk_clear_rl_full(rl, BLK_RW_ASYNC);
1032 wake_up(&rl->wait[BLK_RW_ASYNC]);
1033 }
1034 }
1035
1036 spin_unlock_irq(q->queue_lock);
1037 return 0;
1038}
1039
Tejun Heoda8303c2011-10-19 14:33:05 +02001040/**
Tejun Heoa06e05e2012-06-04 20:40:55 -07001041 * __get_request - get a free request
Tejun Heo5b788ce2012-06-04 20:40:59 -07001042 * @rl: request list to allocate from
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001043 * @op: operation and flags
Tejun Heoda8303c2011-10-19 14:33:05 +02001044 * @bio: bio to allocate request for (can be %NULL)
1045 * @gfp_mask: allocation mask
1046 *
1047 * Get a free request from @q. This function may fail under memory
1048 * pressure or if @q is dead.
1049 *
Masanari Iidada3dae52014-09-09 01:27:23 +09001050 * Must be called with @q->queue_lock held and,
Joe Lawrencea492f072014-08-28 08:15:21 -06001051 * Returns ERR_PTR on failure, with @q->queue_lock held.
1052 * Returns request pointer on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001054static struct request *__get_request(struct request_list *rl, unsigned int op,
1055 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Tejun Heo5b788ce2012-06-04 20:40:59 -07001057 struct request_queue *q = rl->q;
Tejun Heob6792812012-03-05 13:15:23 -08001058 struct request *rq;
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001059 struct elevator_type *et = q->elevator->type;
1060 struct io_context *ioc = rq_ioc(bio);
Tejun Heof1f8cc92011-12-14 00:33:42 +01001061 struct io_cq *icq = NULL;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001062 const bool is_sync = op_is_sync(op);
Tejun Heo75eb6c32011-10-19 14:31:22 +02001063 int may_queue;
Christoph Hellwige8064022016-10-20 15:12:13 +02001064 req_flags_t rq_flags = RQF_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Bart Van Assche3f3299d2012-11-28 13:42:38 +01001066 if (unlikely(blk_queue_dying(q)))
Joe Lawrencea492f072014-08-28 08:15:21 -06001067 return ERR_PTR(-ENODEV);
Tejun Heoda8303c2011-10-19 14:33:05 +02001068
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001069 may_queue = elv_may_queue(q, op);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001070 if (may_queue == ELV_MQUEUE_NO)
1071 goto rq_starved;
1072
Jens Axboe1faa16d2009-04-06 14:48:01 +02001073 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
1074 if (rl->count[is_sync]+1 >= q->nr_requests) {
Tejun Heof2dbd762011-12-14 00:33:40 +01001075 /*
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001076 * The queue will fill after this allocation, so set
1077 * it as full, and mark this process as "batching".
1078 * This process will be allowed to complete a batch of
1079 * requests, others will be blocked.
1080 */
Tejun Heo5b788ce2012-06-04 20:40:59 -07001081 if (!blk_rl_full(rl, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001082 ioc_set_batching(q, ioc);
Tejun Heo5b788ce2012-06-04 20:40:59 -07001083 blk_set_rl_full(rl, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001084 } else {
1085 if (may_queue != ELV_MQUEUE_MUST
1086 && !ioc_batching(q, ioc)) {
1087 /*
1088 * The queue is full and the allocating
1089 * process is not a "batcher", and not
1090 * exempted by the IO scheduler
1091 */
Joe Lawrencea492f072014-08-28 08:15:21 -06001092 return ERR_PTR(-ENOMEM);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001093 }
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Tejun Heod40f75a2015-05-22 17:13:42 -04001096 blk_set_congested(rl, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
Jens Axboe082cf692005-06-28 16:35:11 +02001099 /*
1100 * Only allow batching queuers to allocate up to 50% over the defined
1101 * limit of requests, otherwise we could have thousands of requests
1102 * allocated with any setting of ->nr_requests
1103 */
Jens Axboe1faa16d2009-04-06 14:48:01 +02001104 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Joe Lawrencea492f072014-08-28 08:15:21 -06001105 return ERR_PTR(-ENOMEM);
Hugh Dickinsfd782a42005-06-29 15:15:40 +01001106
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001107 q->nr_rqs[is_sync]++;
Jens Axboe1faa16d2009-04-06 14:48:01 +02001108 rl->count[is_sync]++;
1109 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02001110
Tejun Heof1f8cc92011-12-14 00:33:42 +01001111 /*
1112 * Decide whether the new request will be managed by elevator. If
Christoph Hellwige8064022016-10-20 15:12:13 +02001113 * so, mark @rq_flags and increment elvpriv. Non-zero elvpriv will
Tejun Heof1f8cc92011-12-14 00:33:42 +01001114 * prevent the current elevator from being destroyed until the new
1115 * request is freed. This guarantees icq's won't be destroyed and
1116 * makes creating new ones safe.
1117 *
Christoph Hellwige6f7f932017-01-25 11:17:11 +01001118 * Flush requests do not use the elevator so skip initialization.
1119 * This allows a request to share the flush and elevator data.
1120 *
Tejun Heof1f8cc92011-12-14 00:33:42 +01001121 * Also, lookup icq while holding queue_lock. If it doesn't exist,
1122 * it will be created after releasing queue_lock.
1123 */
Christoph Hellwige6f7f932017-01-25 11:17:11 +01001124 if (!op_is_flush(op) && !blk_queue_bypass(q)) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001125 rq_flags |= RQF_ELVPRIV;
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001126 q->nr_rqs_elvpriv++;
Tejun Heof1f8cc92011-12-14 00:33:42 +01001127 if (et->icq_cache && ioc)
1128 icq = ioc_lookup_icq(ioc, q);
Mike Snitzer9d5a4e92011-02-11 11:05:46 +01001129 }
Tejun Heocb98fc82005-10-28 08:29:39 +02001130
Jens Axboef253b862010-10-24 22:06:02 +02001131 if (blk_queue_io_stat(q))
Christoph Hellwige8064022016-10-20 15:12:13 +02001132 rq_flags |= RQF_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 spin_unlock_irq(q->queue_lock);
1134
Tejun Heo29e2b092012-04-19 16:29:21 -07001135 /* allocate and init request */
Tejun Heo5b788ce2012-06-04 20:40:59 -07001136 rq = mempool_alloc(rl->rq_pool, gfp_mask);
Tejun Heo29e2b092012-04-19 16:29:21 -07001137 if (!rq)
Tejun Heob6792812012-03-05 13:15:23 -08001138 goto fail_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Tejun Heo29e2b092012-04-19 16:29:21 -07001140 blk_rq_init(q, rq);
Tejun Heoa0516612012-06-26 15:05:44 -07001141 blk_rq_set_rl(rq, rl);
Adam Manzanares5dc8b362016-10-17 11:27:28 -07001142 blk_rq_set_prio(rq, ioc);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001143 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +02001144 rq->rq_flags = rq_flags;
Tejun Heo29e2b092012-04-19 16:29:21 -07001145
Tejun Heoaaf7c682012-04-19 16:29:22 -07001146 /* init elvpriv */
Christoph Hellwige8064022016-10-20 15:12:13 +02001147 if (rq_flags & RQF_ELVPRIV) {
Tejun Heoaaf7c682012-04-19 16:29:22 -07001148 if (unlikely(et->icq_cache && !icq)) {
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001149 if (ioc)
1150 icq = ioc_create_icq(ioc, q, gfp_mask);
Tejun Heoaaf7c682012-04-19 16:29:22 -07001151 if (!icq)
1152 goto fail_elvpriv;
Tejun Heo29e2b092012-04-19 16:29:21 -07001153 }
Tejun Heoaaf7c682012-04-19 16:29:22 -07001154
1155 rq->elv.icq = icq;
1156 if (unlikely(elv_set_request(q, rq, bio, gfp_mask)))
1157 goto fail_elvpriv;
1158
1159 /* @rq->elv.icq holds io_context until @rq is freed */
Tejun Heo29e2b092012-04-19 16:29:21 -07001160 if (icq)
1161 get_io_context(icq->ioc);
1162 }
Tejun Heoaaf7c682012-04-19 16:29:22 -07001163out:
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001164 /*
1165 * ioc may be NULL here, and ioc_batching will be false. That's
1166 * OK, if the queue is under the request limit then requests need
1167 * not count toward the nr_batch_requests limit. There will always
1168 * be some limit enforced by BLK_BATCH_TIME.
1169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (ioc_batching(q, ioc))
1171 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +01001172
Mike Christiee6a40b02016-06-05 14:32:11 -05001173 trace_block_getrq(q, bio, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return rq;
Tejun Heob6792812012-03-05 13:15:23 -08001175
Tejun Heoaaf7c682012-04-19 16:29:22 -07001176fail_elvpriv:
1177 /*
1178 * elvpriv init failed. ioc, icq and elvpriv aren't mempool backed
1179 * and may fail indefinitely under memory pressure and thus
1180 * shouldn't stall IO. Treat this request as !elvpriv. This will
1181 * disturb iosched and blkcg but weird is bettern than dead.
1182 */
Robert Elliott7b2b10e2014-08-27 10:50:36 -05001183 printk_ratelimited(KERN_WARNING "%s: dev %s: request aux data allocation failed, iosched may be disturbed\n",
Jan Karadc3b17c2017-02-02 15:56:50 +01001184 __func__, dev_name(q->backing_dev_info->dev));
Tejun Heoaaf7c682012-04-19 16:29:22 -07001185
Christoph Hellwige8064022016-10-20 15:12:13 +02001186 rq->rq_flags &= ~RQF_ELVPRIV;
Tejun Heoaaf7c682012-04-19 16:29:22 -07001187 rq->elv.icq = NULL;
1188
1189 spin_lock_irq(q->queue_lock);
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001190 q->nr_rqs_elvpriv--;
Tejun Heoaaf7c682012-04-19 16:29:22 -07001191 spin_unlock_irq(q->queue_lock);
1192 goto out;
1193
Tejun Heob6792812012-03-05 13:15:23 -08001194fail_alloc:
1195 /*
1196 * Allocation failed presumably due to memory. Undo anything we
1197 * might have messed up.
1198 *
1199 * Allocating task should really be put onto the front of the wait
1200 * queue, but this is pretty rare.
1201 */
1202 spin_lock_irq(q->queue_lock);
Christoph Hellwige8064022016-10-20 15:12:13 +02001203 freed_request(rl, is_sync, rq_flags);
Tejun Heob6792812012-03-05 13:15:23 -08001204
1205 /*
1206 * in the very unlikely event that allocation failed and no
1207 * requests for this direction was pending, mark us starved so that
1208 * freeing of a request in the other direction will notice
1209 * us. another possible fix would be to split the rq mempool into
1210 * READ and WRITE
1211 */
1212rq_starved:
1213 if (unlikely(rl->count[is_sync] == 0))
1214 rl->starved[is_sync] = 1;
Joe Lawrencea492f072014-08-28 08:15:21 -06001215 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Tejun Heoda8303c2011-10-19 14:33:05 +02001218/**
Tejun Heoa06e05e2012-06-04 20:40:55 -07001219 * get_request - get a free request
Tejun Heoda8303c2011-10-19 14:33:05 +02001220 * @q: request_queue to allocate request from
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001221 * @op: operation and flags
Tejun Heoda8303c2011-10-19 14:33:05 +02001222 * @bio: bio to allocate request for (can be %NULL)
Tejun Heoa06e05e2012-06-04 20:40:55 -07001223 * @gfp_mask: allocation mask
Nick Piggind6344532005-06-28 20:45:14 -07001224 *
Mel Gormand0164ad2015-11-06 16:28:21 -08001225 * Get a free request from @q. If %__GFP_DIRECT_RECLAIM is set in @gfp_mask,
1226 * this function keeps retrying under memory pressure and fails iff @q is dead.
Tejun Heoda8303c2011-10-19 14:33:05 +02001227 *
Masanari Iidada3dae52014-09-09 01:27:23 +09001228 * Must be called with @q->queue_lock held and,
Joe Lawrencea492f072014-08-28 08:15:21 -06001229 * Returns ERR_PTR on failure, with @q->queue_lock held.
1230 * Returns request pointer on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001232static struct request *get_request(struct request_queue *q, unsigned int op,
1233 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001235 const bool is_sync = op_is_sync(op);
Tejun Heoa06e05e2012-06-04 20:40:55 -07001236 DEFINE_WAIT(wait);
Tejun Heoa0516612012-06-26 15:05:44 -07001237 struct request_list *rl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct request *rq;
Tejun Heoa0516612012-06-26 15:05:44 -07001239
1240 rl = blk_get_rl(q, bio); /* transferred to @rq on success */
Tejun Heoa06e05e2012-06-04 20:40:55 -07001241retry:
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001242 rq = __get_request(rl, op, bio, gfp_mask);
Joe Lawrencea492f072014-08-28 08:15:21 -06001243 if (!IS_ERR(rq))
Tejun Heoa06e05e2012-06-04 20:40:55 -07001244 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Mel Gormand0164ad2015-11-06 16:28:21 -08001246 if (!gfpflags_allow_blocking(gfp_mask) || unlikely(blk_queue_dying(q))) {
Tejun Heoa0516612012-06-26 15:05:44 -07001247 blk_put_rl(rl);
Joe Lawrencea492f072014-08-28 08:15:21 -06001248 return rq;
Tejun Heoa0516612012-06-26 15:05:44 -07001249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Tejun Heoa06e05e2012-06-04 20:40:55 -07001251 /* wait on @rl and retry */
1252 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
1253 TASK_UNINTERRUPTIBLE);
Tejun Heoda8303c2011-10-19 14:33:05 +02001254
Mike Christiee6a40b02016-06-05 14:32:11 -05001255 trace_block_sleeprq(q, bio, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Tejun Heoa06e05e2012-06-04 20:40:55 -07001257 spin_unlock_irq(q->queue_lock);
1258 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Tejun Heoa06e05e2012-06-04 20:40:55 -07001260 /*
1261 * After sleeping, we become a "batching" process and will be able
1262 * to allocate at least one request, and up to a big batch of them
1263 * for a small period time. See ioc_batching, ioc_set_batching
1264 */
Tejun Heoa06e05e2012-06-04 20:40:55 -07001265 ioc_set_batching(q, current->io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Tejun Heoa06e05e2012-06-04 20:40:55 -07001267 spin_lock_irq(q->queue_lock);
1268 finish_wait(&rl->wait[is_sync], &wait);
Jens Axboe2056a782006-03-23 20:00:26 +01001269
Tejun Heoa06e05e2012-06-04 20:40:55 -07001270 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Jens Axboe320ae512013-10-24 09:20:05 +01001273static struct request *blk_old_get_request(struct request_queue *q, int rw,
1274 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
1276 struct request *rq;
1277
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001278 /* create ioc upfront */
1279 create_io_context(gfp_mask, q->node);
1280
Nick Piggind6344532005-06-28 20:45:14 -07001281 spin_lock_irq(q->queue_lock);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001282 rq = get_request(q, rw, NULL, gfp_mask);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001283 if (IS_ERR(rq)) {
Tejun Heoda8303c2011-10-19 14:33:05 +02001284 spin_unlock_irq(q->queue_lock);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001285 return rq;
1286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001288 /* q->queue_lock is unlocked at this point */
1289 rq->__data_len = 0;
1290 rq->__sector = (sector_t) -1;
1291 rq->bio = rq->biotail = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return rq;
1293}
Jens Axboe320ae512013-10-24 09:20:05 +01001294
1295struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
1296{
1297 if (q->mq_ops)
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001298 return blk_mq_alloc_request(q, rw,
1299 (gfp_mask & __GFP_DIRECT_RECLAIM) ?
1300 0 : BLK_MQ_REQ_NOWAIT);
Jens Axboe320ae512013-10-24 09:20:05 +01001301 else
1302 return blk_old_get_request(q, rw, gfp_mask);
1303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304EXPORT_SYMBOL(blk_get_request);
1305
1306/**
1307 * blk_requeue_request - put a request back on queue
1308 * @q: request queue where request should be inserted
1309 * @rq: request to be inserted
1310 *
1311 * Description:
1312 * Drivers often keep queueing requests until the hardware cannot accept
1313 * more, when that condition happens we need to put the request back
1314 * on the queue. Must be called with queue lock held.
1315 */
Jens Axboe165125e2007-07-24 09:28:11 +02001316void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001318 blk_delete_timer(rq);
1319 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001320 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -07001321 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboe2056a782006-03-23 20:00:26 +01001322
Christoph Hellwige8064022016-10-20 15:12:13 +02001323 if (rq->rq_flags & RQF_QUEUED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 blk_queue_end_tag(q, rq);
1325
James Bottomleyba396a62009-05-27 14:17:08 +02001326 BUG_ON(blk_queued_rq(rq));
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 elv_requeue_request(q, rq);
1329}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330EXPORT_SYMBOL(blk_requeue_request);
1331
Jens Axboe73c10102011-03-08 13:19:51 +01001332static void add_acct_request(struct request_queue *q, struct request *rq,
1333 int where)
1334{
Jens Axboe320ae512013-10-24 09:20:05 +01001335 blk_account_io_start(rq, true);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001336 __elv_add_request(q, rq, where);
Jens Axboe73c10102011-03-08 13:19:51 +01001337}
1338
Tejun Heo074a7ac2008-08-25 19:56:14 +09001339static void part_round_stats_single(int cpu, struct hd_struct *part,
1340 unsigned long now)
1341{
Jens Axboe7276d022014-05-09 15:48:23 -06001342 int inflight;
1343
Tejun Heo074a7ac2008-08-25 19:56:14 +09001344 if (now == part->stamp)
1345 return;
1346
Jens Axboe7276d022014-05-09 15:48:23 -06001347 inflight = part_in_flight(part);
1348 if (inflight) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001349 __part_stat_add(cpu, part, time_in_queue,
Jens Axboe7276d022014-05-09 15:48:23 -06001350 inflight * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001351 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1352 }
1353 part->stamp = now;
1354}
1355
1356/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001357 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1358 * @cpu: cpu number for stats access
1359 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 *
1361 * The average IO queue length and utilisation statistics are maintained
1362 * by observing the current state of the queue length and the amount of
1363 * time it has been in this state for.
1364 *
1365 * Normally, that accounting is done on IO completion, but that can result
1366 * in more than a second's worth of IO being accounted for within any one
1367 * second, leading to >100% utilisation. To deal with that, we call this
1368 * function to do a round-off before returning the results when reading
1369 * /proc/diskstats. This accounts immediately for all queue usage up to
1370 * the current jiffies and restarts the counters again.
1371 */
Tejun Heoc9959052008-08-25 19:47:21 +09001372void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001373{
1374 unsigned long now = jiffies;
1375
Tejun Heo074a7ac2008-08-25 19:56:14 +09001376 if (part->partno)
1377 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1378 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001379}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001380EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001381
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01001382#ifdef CONFIG_PM
Lin Mingc8158812013-03-23 11:42:27 +08001383static void blk_pm_put_request(struct request *rq)
1384{
Christoph Hellwige8064022016-10-20 15:12:13 +02001385 if (rq->q->dev && !(rq->rq_flags & RQF_PM) && !--rq->q->nr_pending)
Lin Mingc8158812013-03-23 11:42:27 +08001386 pm_runtime_mark_last_busy(rq->q->dev);
1387}
1388#else
1389static inline void blk_pm_put_request(struct request *rq) {}
1390#endif
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/*
1393 * queue lock must be held
1394 */
Jens Axboe165125e2007-07-24 09:28:11 +02001395void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Christoph Hellwige8064022016-10-20 15:12:13 +02001397 req_flags_t rq_flags = req->rq_flags;
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (unlikely(!q))
1400 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Christoph Hellwig6f5ba582014-02-07 10:22:37 -08001402 if (q->mq_ops) {
1403 blk_mq_free_request(req);
1404 return;
1405 }
1406
Lin Mingc8158812013-03-23 11:42:27 +08001407 blk_pm_put_request(req);
1408
Tejun Heo8922e162005-10-20 16:23:44 +02001409 elv_completed_request(q, req);
1410
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001411 /* this is a bio leak */
1412 WARN_ON(req->bio != NULL);
1413
Jens Axboe87760e52016-11-09 12:38:14 -07001414 wbt_done(q->rq_wb, &req->issue_stat);
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /*
1417 * Request may not have originated from ll_rw_blk. if not,
1418 * it didn't come out of our reserved rq pools
1419 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001420 if (rq_flags & RQF_ALLOCED) {
Tejun Heoa0516612012-06-26 15:05:44 -07001421 struct request_list *rl = blk_rq_rl(req);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001422 bool sync = op_is_sync(req->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe360f92c2014-04-09 20:27:01 -06001425 BUG_ON(ELV_ON_HASH(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Tejun Heoa0516612012-06-26 15:05:44 -07001427 blk_free_request(rl, req);
Christoph Hellwige8064022016-10-20 15:12:13 +02001428 freed_request(rl, sync, rq_flags);
Tejun Heoa0516612012-06-26 15:05:44 -07001429 blk_put_rl(rl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431}
Mike Christie6e39b692005-11-11 05:30:24 -06001432EXPORT_SYMBOL_GPL(__blk_put_request);
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434void blk_put_request(struct request *req)
1435{
Jens Axboe165125e2007-07-24 09:28:11 +02001436 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Jens Axboe320ae512013-10-24 09:20:05 +01001438 if (q->mq_ops)
1439 blk_mq_free_request(req);
1440 else {
1441 unsigned long flags;
1442
1443 spin_lock_irqsave(q->queue_lock, flags);
1444 __blk_put_request(q, req);
1445 spin_unlock_irqrestore(q->queue_lock, flags);
1446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448EXPORT_SYMBOL(blk_put_request);
1449
Jens Axboe320ae512013-10-24 09:20:05 +01001450bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1451 struct bio *bio)
Jens Axboe73c10102011-03-08 13:19:51 +01001452{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001453 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001454
Jens Axboe73c10102011-03-08 13:19:51 +01001455 if (!ll_back_merge_fn(q, req, bio))
1456 return false;
1457
Tejun Heo8c1cf6b2013-01-11 13:06:34 -08001458 trace_block_bio_backmerge(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001459
1460 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1461 blk_rq_set_mixed_merge(req);
1462
1463 req->biotail->bi_next = bio;
1464 req->biotail = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001465 req->__data_len += bio->bi_iter.bi_size;
Jens Axboe73c10102011-03-08 13:19:51 +01001466 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1467
Jens Axboe320ae512013-10-24 09:20:05 +01001468 blk_account_io_start(req, false);
Jens Axboe73c10102011-03-08 13:19:51 +01001469 return true;
1470}
1471
Jens Axboe320ae512013-10-24 09:20:05 +01001472bool bio_attempt_front_merge(struct request_queue *q, struct request *req,
1473 struct bio *bio)
Jens Axboe73c10102011-03-08 13:19:51 +01001474{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001475 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001476
Jens Axboe73c10102011-03-08 13:19:51 +01001477 if (!ll_front_merge_fn(q, req, bio))
1478 return false;
1479
Tejun Heo8c1cf6b2013-01-11 13:06:34 -08001480 trace_block_bio_frontmerge(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001481
1482 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1483 blk_rq_set_mixed_merge(req);
1484
Jens Axboe73c10102011-03-08 13:19:51 +01001485 bio->bi_next = req->bio;
1486 req->bio = bio;
1487
Kent Overstreet4f024f32013-10-11 15:44:27 -07001488 req->__sector = bio->bi_iter.bi_sector;
1489 req->__data_len += bio->bi_iter.bi_size;
Jens Axboe73c10102011-03-08 13:19:51 +01001490 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1491
Jens Axboe320ae512013-10-24 09:20:05 +01001492 blk_account_io_start(req, false);
Jens Axboe73c10102011-03-08 13:19:51 +01001493 return true;
1494}
1495
Tejun Heobd87b582011-10-19 14:33:08 +02001496/**
Jens Axboe320ae512013-10-24 09:20:05 +01001497 * blk_attempt_plug_merge - try to merge with %current's plugged list
Tejun Heobd87b582011-10-19 14:33:08 +02001498 * @q: request_queue new bio is being queued at
1499 * @bio: new bio being queued
1500 * @request_count: out parameter for number of traversed plugged requests
Randy Dunlapccc26002015-10-30 18:36:16 -07001501 * @same_queue_rq: pointer to &struct request that gets filled in when
1502 * another request associated with @q is found on the plug list
1503 * (optional, may be %NULL)
Tejun Heobd87b582011-10-19 14:33:08 +02001504 *
1505 * Determine whether @bio being queued on @q can be merged with a request
1506 * on %current's plugged list. Returns %true if merge was successful,
1507 * otherwise %false.
1508 *
Tejun Heo07c2bd32012-02-08 09:19:42 +01001509 * Plugging coalesces IOs from the same issuer for the same purpose without
1510 * going through @q->queue_lock. As such it's more of an issuing mechanism
1511 * than scheduling, and the request, while may have elvpriv data, is not
1512 * added on the elevator at this point. In addition, we don't have
1513 * reliable access to the elevator outside queue lock. Only check basic
1514 * merging parameters without querying the elevator.
Robert Elliottda41a582014-05-20 16:46:26 -05001515 *
1516 * Caller must ensure !blk_queue_nomerges(q) beforehand.
Jens Axboe73c10102011-03-08 13:19:51 +01001517 */
Jens Axboe320ae512013-10-24 09:20:05 +01001518bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
Shaohua Li5b3f3412015-05-08 10:51:33 -07001519 unsigned int *request_count,
1520 struct request **same_queue_rq)
Jens Axboe73c10102011-03-08 13:19:51 +01001521{
1522 struct blk_plug *plug;
1523 struct request *rq;
1524 bool ret = false;
Shaohua Li92f399c2013-10-29 12:01:03 -06001525 struct list_head *plug_list;
Jens Axboe73c10102011-03-08 13:19:51 +01001526
Tejun Heobd87b582011-10-19 14:33:08 +02001527 plug = current->plug;
Jens Axboe73c10102011-03-08 13:19:51 +01001528 if (!plug)
1529 goto out;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001530 *request_count = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01001531
Shaohua Li92f399c2013-10-29 12:01:03 -06001532 if (q->mq_ops)
1533 plug_list = &plug->mq_list;
1534 else
1535 plug_list = &plug->list;
1536
1537 list_for_each_entry_reverse(rq, plug_list, queuelist) {
Jens Axboe73c10102011-03-08 13:19:51 +01001538 int el_ret;
1539
Shaohua Li5b3f3412015-05-08 10:51:33 -07001540 if (rq->q == q) {
Shaohua Li1b2e19f2012-04-06 11:37:47 -06001541 (*request_count)++;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001542 /*
1543 * Only blk-mq multiple hardware queues case checks the
1544 * rq in the same queue, there should be only one such
1545 * rq in a queue
1546 **/
1547 if (same_queue_rq)
1548 *same_queue_rq = rq;
1549 }
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001550
Tejun Heo07c2bd32012-02-08 09:19:42 +01001551 if (rq->q != q || !blk_rq_merge_ok(rq, bio))
Jens Axboe73c10102011-03-08 13:19:51 +01001552 continue;
1553
Tejun Heo050c8ea2012-02-08 09:19:38 +01001554 el_ret = blk_try_merge(rq, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001555 if (el_ret == ELEVATOR_BACK_MERGE) {
1556 ret = bio_attempt_back_merge(q, rq, bio);
1557 if (ret)
1558 break;
1559 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1560 ret = bio_attempt_front_merge(q, rq, bio);
1561 if (ret)
1562 break;
1563 }
1564 }
1565out:
1566 return ret;
1567}
1568
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001569unsigned int blk_plug_queued_count(struct request_queue *q)
1570{
1571 struct blk_plug *plug;
1572 struct request *rq;
1573 struct list_head *plug_list;
1574 unsigned int ret = 0;
1575
1576 plug = current->plug;
1577 if (!plug)
1578 goto out;
1579
1580 if (q->mq_ops)
1581 plug_list = &plug->mq_list;
1582 else
1583 plug_list = &plug->list;
1584
1585 list_for_each_entry(rq, plug_list, queuelist) {
1586 if (rq->q == q)
1587 ret++;
1588 }
1589out:
1590 return ret;
1591}
1592
Jens Axboe86db1e22008-01-29 14:53:40 +01001593void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001594{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001595 if (bio->bi_opf & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001596 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001597
Tejun Heo52d9e672006-01-06 09:49:58 +01001598 req->errors = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001599 req->__sector = bio->bi_iter.bi_sector;
Adam Manzanares5dc8b362016-10-17 11:27:28 -07001600 if (ioprio_valid(bio_prio(bio)))
1601 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001602 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001603}
1604
Jens Axboedece1632015-11-05 10:41:16 -07001605static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Jens Axboe73c10102011-03-08 13:19:51 +01001607 struct blk_plug *plug;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001608 int el_ret, where = ELEVATOR_INSERT_SORT;
Jens Axboe73c10102011-03-08 13:19:51 +01001609 struct request *req;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001610 unsigned int request_count = 0;
Jens Axboe87760e52016-11-09 12:38:14 -07001611 unsigned int wb_acct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /*
1614 * low level driver can indicate that it wants pages above a
1615 * certain limit bounced to low memory (ie for highmem, or even
1616 * ISA dma in theory)
1617 */
1618 blk_queue_bounce(q, &bio);
1619
Junichi Nomura23688bf2015-12-22 10:23:44 -07001620 blk_queue_split(q, &bio, q->bio_split);
1621
Darrick J. Wongffecfd12013-02-21 16:42:55 -08001622 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001623 bio->bi_error = -EIO;
1624 bio_endio(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001625 return BLK_QC_T_NONE;
Darrick J. Wongffecfd12013-02-21 16:42:55 -08001626 }
1627
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001628 if (op_is_flush(bio->bi_opf)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001629 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001630 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001631 goto get_rq;
1632 }
1633
Jens Axboe73c10102011-03-08 13:19:51 +01001634 /*
1635 * Check if we can merge with the plugged list before grabbing
1636 * any locks.
1637 */
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001638 if (!blk_queue_nomerges(q)) {
1639 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
Jens Axboedece1632015-11-05 10:41:16 -07001640 return BLK_QC_T_NONE;
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001641 } else
1642 request_count = blk_plug_queued_count(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001643
1644 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001647 if (el_ret == ELEVATOR_BACK_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001648 if (bio_attempt_back_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001649 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001650 if (!attempt_back_merge(q, req))
1651 elv_merged_request(q, req, el_ret);
1652 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001653 }
Jens Axboe73c10102011-03-08 13:19:51 +01001654 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001655 if (bio_attempt_front_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001656 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001657 if (!attempt_front_merge(q, req))
1658 elv_merged_request(q, req, el_ret);
1659 goto out_unlock;
1660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663get_rq:
Jens Axboe87760e52016-11-09 12:38:14 -07001664 wb_acct = wbt_wait(q->rq_wb, bio, q->queue_lock);
1665
Nick Piggin450991b2005-06-28 20:45:13 -07001666 /*
1667 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001668 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001669 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001670 req = get_request(q, bio->bi_opf, bio, GFP_NOIO);
Joe Lawrencea492f072014-08-28 08:15:21 -06001671 if (IS_ERR(req)) {
Jens Axboe87760e52016-11-09 12:38:14 -07001672 __wbt_done(q->rq_wb, wb_acct);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001673 bio->bi_error = PTR_ERR(req);
1674 bio_endio(bio);
Tejun Heoda8303c2011-10-19 14:33:05 +02001675 goto out_unlock;
1676 }
Nick Piggind6344532005-06-28 20:45:14 -07001677
Jens Axboe87760e52016-11-09 12:38:14 -07001678 wbt_track(&req->issue_stat, wb_acct);
1679
Nick Piggin450991b2005-06-28 20:45:13 -07001680 /*
1681 * After dropping the lock and possibly sleeping here, our request
1682 * may now be mergeable after it had proven unmergeable (above).
1683 * We don't worry about that case for efficiency. It won't happen
1684 * often, and the elevators are able to handle it.
1685 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001686 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Tao Ma9562ad92011-10-24 16:11:30 +02001688 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
Jens Axboe11ccf112011-07-26 15:01:15 +02001689 req->cpu = raw_smp_processor_id();
Tejun Heodd831002010-09-03 11:56:16 +02001690
Jens Axboe73c10102011-03-08 13:19:51 +01001691 plug = current->plug;
Jens Axboe721a9602011-03-09 11:56:30 +01001692 if (plug) {
Jens Axboedc6d36c2011-04-12 10:28:28 +02001693 /*
1694 * If this is the first request added after a plug, fire
Jianpeng Ma7aef2e72013-09-11 13:21:07 -06001695 * of a plug trace.
Ming Lei0a6219a2016-11-16 18:07:05 +08001696 *
1697 * @request_count may become stale because of schedule
1698 * out, so check plug list again.
Jens Axboedc6d36c2011-04-12 10:28:28 +02001699 */
Ming Lei0a6219a2016-11-16 18:07:05 +08001700 if (!request_count || list_empty(&plug->list))
Jens Axboedc6d36c2011-04-12 10:28:28 +02001701 trace_block_plug(q);
Shaohua Li3540d5e2011-11-16 09:21:50 +01001702 else {
Shaohua Li50d24c32016-11-03 17:03:53 -07001703 struct request *last = list_entry_rq(plug->list.prev);
1704 if (request_count >= BLK_MAX_REQUEST_COUNT ||
1705 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE) {
Shaohua Li3540d5e2011-11-16 09:21:50 +01001706 blk_flush_plug_list(plug, false);
Shaohua Li019ceb72011-11-16 09:21:50 +01001707 trace_block_plug(q);
1708 }
Jens Axboe73c10102011-03-08 13:19:51 +01001709 }
Shaohua Lia6327162011-08-24 16:04:32 +02001710 list_add_tail(&req->queuelist, &plug->list);
Jens Axboe320ae512013-10-24 09:20:05 +01001711 blk_account_io_start(req, true);
Jens Axboe73c10102011-03-08 13:19:51 +01001712 } else {
1713 spin_lock_irq(q->queue_lock);
1714 add_acct_request(q, req, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02001715 __blk_run_queue(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001716out_unlock:
1717 spin_unlock_irq(q->queue_lock);
1718 }
Jens Axboedece1632015-11-05 10:41:16 -07001719
1720 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723/*
1724 * If bio->bi_dev is a partition, remap the location
1725 */
1726static inline void blk_partition_remap(struct bio *bio)
1727{
1728 struct block_device *bdev = bio->bi_bdev;
1729
Shaun Tancheff778889d2016-11-21 15:52:23 -06001730 /*
1731 * Zone reset does not include bi_size so bio_sectors() is always 0.
1732 * Include a test for the reset op code and perform the remap if needed.
1733 */
1734 if (bdev != bdev->bd_contains &&
1735 (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001737
Kent Overstreet4f024f32013-10-11 15:44:27 -07001738 bio->bi_iter.bi_sector += p->start_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001740
Mike Snitzerd07335e2010-11-16 12:52:38 +01001741 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1742 bdev->bd_dev,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001743 bio->bi_iter.bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747static void handle_bad_sector(struct bio *bio)
1748{
1749 char b[BDEVNAME_SIZE];
1750
1751 printk(KERN_INFO "attempt to access beyond end of device\n");
Mike Christie6296b962016-06-05 14:32:21 -05001752 printk(KERN_INFO "%s: rw=%d, want=%Lu, limit=%Lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 bdevname(bio->bi_bdev, b),
Jens Axboe1eff9d32016-08-05 15:35:16 -06001754 bio->bi_opf,
Kent Overstreetf73a1c72012-09-25 15:05:12 -07001755 (unsigned long long)bio_end_sector(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001756 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Akinobu Mitac17bb492006-12-08 02:39:46 -08001759#ifdef CONFIG_FAIL_MAKE_REQUEST
1760
1761static DECLARE_FAULT_ATTR(fail_make_request);
1762
1763static int __init setup_fail_make_request(char *str)
1764{
1765 return setup_fault_attr(&fail_make_request, str);
1766}
1767__setup("fail_make_request=", setup_fail_make_request);
1768
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001769static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001770{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001771 return part->make_it_fail && should_fail(&fail_make_request, bytes);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001772}
1773
1774static int __init fail_make_request_debugfs(void)
1775{
Akinobu Mitadd48c082011-08-03 16:21:01 -07001776 struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
1777 NULL, &fail_make_request);
1778
Duan Jiong21f9fcd2014-04-11 15:58:56 +08001779 return PTR_ERR_OR_ZERO(dir);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001780}
1781
1782late_initcall(fail_make_request_debugfs);
1783
1784#else /* CONFIG_FAIL_MAKE_REQUEST */
1785
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001786static inline bool should_fail_request(struct hd_struct *part,
1787 unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001788{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001789 return false;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001790}
1791
1792#endif /* CONFIG_FAIL_MAKE_REQUEST */
1793
Jens Axboec07e2b42007-07-18 13:27:58 +02001794/*
1795 * Check whether this bio extends beyond the end of the device.
1796 */
1797static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1798{
1799 sector_t maxsector;
1800
1801 if (!nr_sectors)
1802 return 0;
1803
1804 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001805 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001806 if (maxsector) {
Kent Overstreet4f024f32013-10-11 15:44:27 -07001807 sector_t sector = bio->bi_iter.bi_sector;
Jens Axboec07e2b42007-07-18 13:27:58 +02001808
1809 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1810 /*
1811 * This may well happen - the kernel calls bread()
1812 * without checking the size of the device, e.g., when
1813 * mounting a device.
1814 */
1815 handle_bad_sector(bio);
1816 return 1;
1817 }
1818 }
1819
1820 return 0;
1821}
1822
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001823static noinline_for_stack bool
1824generic_make_request_checks(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Jens Axboe165125e2007-07-24 09:28:11 +02001826 struct request_queue *q;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001827 int nr_sectors = bio_sectors(bio);
Jens Axboe51fd77b2007-11-02 08:49:08 +01001828 int err = -EIO;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001829 char b[BDEVNAME_SIZE];
1830 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Jens Axboec07e2b42007-07-18 13:27:58 +02001834 if (bio_check_eod(bio, nr_sectors))
1835 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001837 q = bdev_get_queue(bio->bi_bdev);
1838 if (unlikely(!q)) {
1839 printk(KERN_ERR
1840 "generic_make_request: Trying to access "
1841 "nonexistent block-device %s (%Lu)\n",
1842 bdevname(bio->bi_bdev, b),
Kent Overstreet4f024f32013-10-11 15:44:27 -07001843 (long long) bio->bi_iter.bi_sector);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001844 goto end_io;
1845 }
1846
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001847 part = bio->bi_bdev->bd_part;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001848 if (should_fail_request(part, bio->bi_iter.bi_size) ||
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001849 should_fail_request(&part_to_disk(part)->part0,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001850 bio->bi_iter.bi_size))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001851 goto end_io;
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 /*
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001854 * If this device has partitions, remap block n
1855 * of partition p to block n+start(p) of the disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001857 blk_partition_remap(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001859 if (bio_check_eod(bio, nr_sectors))
1860 goto end_io;
1861
1862 /*
1863 * Filter flush bio's early so that make_request based
1864 * drivers without flush support don't have to worry
1865 * about them.
1866 */
Jens Axboef3a8ab72017-01-27 09:08:23 -07001867 if (op_is_flush(bio->bi_opf) &&
Jens Axboec888a8f2016-04-13 13:33:19 -06001868 !test_bit(QUEUE_FLAG_WC, &q->queue_flags)) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001869 bio->bi_opf &= ~(REQ_PREFLUSH | REQ_FUA);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001870 if (!nr_sectors) {
1871 err = 0;
Tejun Heoa7384672008-11-28 13:32:03 +09001872 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Christoph Hellwig288dab82016-06-09 16:00:36 +02001876 switch (bio_op(bio)) {
1877 case REQ_OP_DISCARD:
1878 if (!blk_queue_discard(q))
1879 goto not_supported;
1880 break;
1881 case REQ_OP_SECURE_ERASE:
1882 if (!blk_queue_secure_erase(q))
1883 goto not_supported;
1884 break;
1885 case REQ_OP_WRITE_SAME:
1886 if (!bdev_write_same(bio->bi_bdev))
1887 goto not_supported;
Nicolai Stange58886782016-12-04 14:56:39 +01001888 break;
Shaun Tancheff2d253442016-10-18 15:40:32 +09001889 case REQ_OP_ZONE_REPORT:
1890 case REQ_OP_ZONE_RESET:
1891 if (!bdev_is_zoned(bio->bi_bdev))
1892 goto not_supported;
Christoph Hellwig288dab82016-06-09 16:00:36 +02001893 break;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001894 case REQ_OP_WRITE_ZEROES:
1895 if (!bdev_write_zeroes_sectors(bio->bi_bdev))
1896 goto not_supported;
1897 break;
Christoph Hellwig288dab82016-06-09 16:00:36 +02001898 default:
1899 break;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001902 /*
1903 * Various block parts want %current->io_context and lazy ioc
1904 * allocation ends up trading a lot of pain for a small amount of
1905 * memory. Just allocate it upfront. This may fail and block
1906 * layer knows how to live with it.
1907 */
1908 create_io_context(GFP_ATOMIC, q->node);
1909
Tejun Heoae118892015-08-18 14:55:20 -07001910 if (!blkcg_bio_issue_check(q, bio))
1911 return false;
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001912
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001913 trace_block_bio_queue(q, bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001914 return true;
Tejun Heoa7384672008-11-28 13:32:03 +09001915
Christoph Hellwig288dab82016-06-09 16:00:36 +02001916not_supported:
1917 err = -EOPNOTSUPP;
Tejun Heoa7384672008-11-28 13:32:03 +09001918end_io:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001919 bio->bi_error = err;
1920 bio_endio(bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001921 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001924/**
1925 * generic_make_request - hand a buffer to its device driver for I/O
1926 * @bio: The bio describing the location in memory and on the device.
1927 *
1928 * generic_make_request() is used to make I/O requests of block
1929 * devices. It is passed a &struct bio, which describes the I/O that needs
1930 * to be done.
1931 *
1932 * generic_make_request() does not return any status. The
1933 * success/failure status of the request, along with notification of
1934 * completion, is delivered asynchronously through the bio->bi_end_io
1935 * function described (one day) else where.
1936 *
1937 * The caller of generic_make_request must make sure that bi_io_vec
1938 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1939 * set to describe the device address, and the
1940 * bi_end_io and optionally bi_private are set to describe how
1941 * completion notification should be signaled.
1942 *
1943 * generic_make_request and the drivers it calls may use bi_next if this
1944 * bio happens to be merged with someone else, and may resubmit the bio to
1945 * a lower device by calling into generic_make_request recursively, which
1946 * means the bio should NOT be touched after the call to ->make_request_fn.
Neil Brownd89d8792007-05-01 09:53:42 +02001947 */
Jens Axboedece1632015-11-05 10:41:16 -07001948blk_qc_t generic_make_request(struct bio *bio)
Neil Brownd89d8792007-05-01 09:53:42 +02001949{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001950 struct bio_list bio_list_on_stack;
Jens Axboedece1632015-11-05 10:41:16 -07001951 blk_qc_t ret = BLK_QC_T_NONE;
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001952
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001953 if (!generic_make_request_checks(bio))
Jens Axboedece1632015-11-05 10:41:16 -07001954 goto out;
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001955
1956 /*
1957 * We only want one ->make_request_fn to be active at a time, else
1958 * stack usage with stacked devices could be a problem. So use
1959 * current->bio_list to keep a list of requests submited by a
1960 * make_request_fn function. current->bio_list is also used as a
1961 * flag to say if generic_make_request is currently active in this
1962 * task or not. If it is NULL, then no make_request is active. If
1963 * it is non-NULL, then a make_request is active, and new requests
1964 * should be added at the tail
1965 */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001966 if (current->bio_list) {
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001967 bio_list_add(current->bio_list, bio);
Jens Axboedece1632015-11-05 10:41:16 -07001968 goto out;
Neil Brownd89d8792007-05-01 09:53:42 +02001969 }
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001970
Neil Brownd89d8792007-05-01 09:53:42 +02001971 /* following loop may be a bit non-obvious, and so deserves some
1972 * explanation.
1973 * Before entering the loop, bio->bi_next is NULL (as all callers
1974 * ensure that) so we have a list with a single bio.
1975 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001976 * we assign bio_list to a pointer to the bio_list_on_stack,
1977 * thus initialising the bio_list of new bios to be
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001978 * added. ->make_request() may indeed add some more bios
Neil Brownd89d8792007-05-01 09:53:42 +02001979 * through a recursive call to generic_make_request. If it
1980 * did, we find a non-NULL value in bio_list and re-enter the loop
1981 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001982 * of the top of the list (no pretending) and so remove it from
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001983 * bio_list, and call into ->make_request() again.
Neil Brownd89d8792007-05-01 09:53:42 +02001984 */
1985 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001986 bio_list_init(&bio_list_on_stack);
1987 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001988 do {
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001989 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
1990
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001991 if (likely(blk_queue_enter(q, false) == 0)) {
Jens Axboedece1632015-11-05 10:41:16 -07001992 ret = q->make_request_fn(q, bio);
Dan Williams3ef28e82015-10-21 13:20:12 -04001993
1994 blk_queue_exit(q);
1995
1996 bio = bio_list_pop(current->bio_list);
1997 } else {
1998 struct bio *bio_next = bio_list_pop(current->bio_list);
1999
2000 bio_io_error(bio);
2001 bio = bio_next;
2002 }
Neil Brownd89d8792007-05-01 09:53:42 +02002003 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01002004 current->bio_list = NULL; /* deactivate */
Jens Axboedece1632015-11-05 10:41:16 -07002005
2006out:
2007 return ret;
Neil Brownd89d8792007-05-01 09:53:42 +02002008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009EXPORT_SYMBOL(generic_make_request);
2010
2011/**
Randy Dunlap710027a2008-08-19 20:13:11 +02002012 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 * @bio: The &struct bio which describes the I/O
2014 *
2015 * submit_bio() is very similar in purpose to generic_make_request(), and
2016 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02002017 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 *
2019 */
Mike Christie4e49ea42016-06-05 14:31:41 -05002020blk_qc_t submit_bio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Jens Axboebf2de6f2007-09-27 13:01:25 +02002022 /*
2023 * If it's a regular read/write or a barrier with data attached,
2024 * go through the normal accounting stuff before submission.
2025 */
Martin K. Petersene2a60da2012-09-18 12:19:25 -04002026 if (bio_has_data(bio)) {
Martin K. Petersen4363ac72012-09-18 12:19:27 -04002027 unsigned int count;
2028
Mike Christie95fe6c12016-06-05 14:31:48 -05002029 if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
Martin K. Petersen4363ac72012-09-18 12:19:27 -04002030 count = bdev_logical_block_size(bio->bi_bdev) >> 9;
2031 else
2032 count = bio_sectors(bio);
2033
Mike Christiea8ebb052016-06-05 14:31:45 -05002034 if (op_is_write(bio_op(bio))) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02002035 count_vm_events(PGPGOUT, count);
2036 } else {
Kent Overstreet4f024f32013-10-11 15:44:27 -07002037 task_io_account_read(bio->bi_iter.bi_size);
Jens Axboebf2de6f2007-09-27 13:01:25 +02002038 count_vm_events(PGPGIN, count);
2039 }
2040
2041 if (unlikely(block_dump)) {
2042 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02002043 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002044 current->comm, task_pid_nr(current),
Mike Christiea8ebb052016-06-05 14:31:45 -05002045 op_is_write(bio_op(bio)) ? "WRITE" : "READ",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002046 (unsigned long long)bio->bi_iter.bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02002047 bdevname(bio->bi_bdev, b),
2048 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02002049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051
Jens Axboedece1632015-11-05 10:41:16 -07002052 return generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054EXPORT_SYMBOL(submit_bio);
2055
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002056/**
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002057 * blk_cloned_rq_check_limits - Helper function to check a cloned request
2058 * for new the queue limits
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002059 * @q: the queue
2060 * @rq: the request being checked
2061 *
2062 * Description:
2063 * @rq may have been made based on weaker limitations of upper-level queues
2064 * in request stacking drivers, and it may violate the limitation of @q.
2065 * Since the block layer and the underlying device driver trust @rq
2066 * after it is inserted to @q, it should be checked against @q before
2067 * the insertion using this generic function.
2068 *
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002069 * Request stacking drivers like request-based dm may change the queue
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002070 * limits when retrying requests on other queues. Those requests need
2071 * to be checked against the new queue limits again during dispatch.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002072 */
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002073static int blk_cloned_rq_check_limits(struct request_queue *q,
2074 struct request *rq)
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002075{
Mike Christie8fe0d472016-06-05 14:32:15 -05002076 if (blk_rq_sectors(rq) > blk_queue_get_max_sectors(q, req_op(rq))) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002077 printk(KERN_ERR "%s: over max size limit.\n", __func__);
2078 return -EIO;
2079 }
2080
2081 /*
2082 * queue's settings related to segment counting like q->bounce_pfn
2083 * may differ from that of other stacking queues.
2084 * Recalculate it to check the request correctly on this queue's
2085 * limitation.
2086 */
2087 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05002088 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002089 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
2090 return -EIO;
2091 }
2092
2093 return 0;
2094}
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002095
2096/**
2097 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
2098 * @q: the queue to submit the request
2099 * @rq: the request being queued
2100 */
2101int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
2102{
2103 unsigned long flags;
Jeff Moyer4853aba2011-08-15 21:37:25 +02002104 int where = ELEVATOR_INSERT_BACK;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002105
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002106 if (blk_cloned_rq_check_limits(q, rq))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002107 return -EIO;
2108
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07002109 if (rq->rq_disk &&
2110 should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002111 return -EIO;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002112
Keith Busch7fb48982014-10-17 17:46:38 -06002113 if (q->mq_ops) {
2114 if (blk_queue_io_stat(q))
2115 blk_account_io_start(rq, true);
Jens Axboebd6737f2017-01-27 01:00:47 -07002116 blk_mq_sched_insert_request(rq, false, true, false, false);
Keith Busch7fb48982014-10-17 17:46:38 -06002117 return 0;
2118 }
2119
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002120 spin_lock_irqsave(q->queue_lock, flags);
Bart Van Assche3f3299d2012-11-28 13:42:38 +01002121 if (unlikely(blk_queue_dying(q))) {
Tejun Heo8ba61432011-12-14 00:33:37 +01002122 spin_unlock_irqrestore(q->queue_lock, flags);
2123 return -ENODEV;
2124 }
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002125
2126 /*
2127 * Submitting request must be dequeued before calling this function
2128 * because it will be linked to another request_queue
2129 */
2130 BUG_ON(blk_queued_rq(rq));
2131
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07002132 if (op_is_flush(rq->cmd_flags))
Jeff Moyer4853aba2011-08-15 21:37:25 +02002133 where = ELEVATOR_INSERT_FLUSH;
2134
2135 add_acct_request(q, rq, where);
Jeff Moyere67b77c2011-10-17 12:57:23 +02002136 if (where == ELEVATOR_INSERT_FLUSH)
2137 __blk_run_queue(q);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002138 spin_unlock_irqrestore(q->queue_lock, flags);
2139
2140 return 0;
2141}
2142EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
2143
Tejun Heo80a761f2009-07-03 17:48:17 +09002144/**
2145 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
2146 * @rq: request to examine
2147 *
2148 * Description:
2149 * A request could be merge of IOs which require different failure
2150 * handling. This function determines the number of bytes which
2151 * can be failed from the beginning of the request without
2152 * crossing into area which need to be retried further.
2153 *
2154 * Return:
2155 * The number of bytes to fail.
2156 *
2157 * Context:
2158 * queue_lock must be held.
2159 */
2160unsigned int blk_rq_err_bytes(const struct request *rq)
2161{
2162 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
2163 unsigned int bytes = 0;
2164 struct bio *bio;
2165
Christoph Hellwige8064022016-10-20 15:12:13 +02002166 if (!(rq->rq_flags & RQF_MIXED_MERGE))
Tejun Heo80a761f2009-07-03 17:48:17 +09002167 return blk_rq_bytes(rq);
2168
2169 /*
2170 * Currently the only 'mixing' which can happen is between
2171 * different fastfail types. We can safely fail portions
2172 * which have all the failfast bits that the first one has -
2173 * the ones which are at least as eager to fail as the first
2174 * one.
2175 */
2176 for (bio = rq->bio; bio; bio = bio->bi_next) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06002177 if ((bio->bi_opf & ff) != ff)
Tejun Heo80a761f2009-07-03 17:48:17 +09002178 break;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002179 bytes += bio->bi_iter.bi_size;
Tejun Heo80a761f2009-07-03 17:48:17 +09002180 }
2181
2182 /* this could lead to infinite loop */
2183 BUG_ON(blk_rq_bytes(rq) && !bytes);
2184 return bytes;
2185}
2186EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
2187
Jens Axboe320ae512013-10-24 09:20:05 +01002188void blk_account_io_completion(struct request *req, unsigned int bytes)
Jens Axboebc58ba92009-01-23 10:54:44 +01002189{
Jens Axboec2553b52009-04-24 08:10:11 +02002190 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01002191 const int rw = rq_data_dir(req);
2192 struct hd_struct *part;
2193 int cpu;
2194
2195 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01002196 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01002197 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
2198 part_stat_unlock();
2199 }
2200}
2201
Jens Axboe320ae512013-10-24 09:20:05 +01002202void blk_account_io_done(struct request *req)
Jens Axboebc58ba92009-01-23 10:54:44 +01002203{
Jens Axboebc58ba92009-01-23 10:54:44 +01002204 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02002205 * Account IO completion. flush_rq isn't accounted as a
2206 * normal IO on queueing nor completion. Accounting the
2207 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01002208 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002209 if (blk_do_io_stat(req) && !(req->rq_flags & RQF_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01002210 unsigned long duration = jiffies - req->start_time;
2211 const int rw = rq_data_dir(req);
2212 struct hd_struct *part;
2213 int cpu;
2214
2215 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01002216 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01002217
2218 part_stat_inc(cpu, part, ios[rw]);
2219 part_stat_add(cpu, part, ticks[rw], duration);
2220 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002221 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01002222
Jens Axboe6c23a962011-01-07 08:43:37 +01002223 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01002224 part_stat_unlock();
2225 }
2226}
2227
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01002228#ifdef CONFIG_PM
Lin Mingc8158812013-03-23 11:42:27 +08002229/*
2230 * Don't process normal requests when queue is suspended
2231 * or in the process of suspending/resuming
2232 */
2233static struct request *blk_pm_peek_request(struct request_queue *q,
2234 struct request *rq)
2235{
2236 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
Christoph Hellwige8064022016-10-20 15:12:13 +02002237 (q->rpm_status != RPM_ACTIVE && !(rq->rq_flags & RQF_PM))))
Lin Mingc8158812013-03-23 11:42:27 +08002238 return NULL;
2239 else
2240 return rq;
2241}
2242#else
2243static inline struct request *blk_pm_peek_request(struct request_queue *q,
2244 struct request *rq)
2245{
2246 return rq;
2247}
2248#endif
2249
Jens Axboe320ae512013-10-24 09:20:05 +01002250void blk_account_io_start(struct request *rq, bool new_io)
2251{
2252 struct hd_struct *part;
2253 int rw = rq_data_dir(rq);
2254 int cpu;
2255
2256 if (!blk_do_io_stat(rq))
2257 return;
2258
2259 cpu = part_stat_lock();
2260
2261 if (!new_io) {
2262 part = rq->part;
2263 part_stat_inc(cpu, part, merges[rw]);
2264 } else {
2265 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
2266 if (!hd_struct_try_get(part)) {
2267 /*
2268 * The partition is already being removed,
2269 * the request will be accounted on the disk only
2270 *
2271 * We take a reference on disk->part0 although that
2272 * partition will never be deleted, so we can treat
2273 * it as any other partition.
2274 */
2275 part = &rq->rq_disk->part0;
2276 hd_struct_get(part);
2277 }
2278 part_round_stats(cpu, part);
2279 part_inc_in_flight(part, rw);
2280 rq->part = part;
2281 }
2282
2283 part_stat_unlock();
2284}
2285
Tejun Heo53a08802008-12-03 12:41:26 +01002286/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002287 * blk_peek_request - peek at the top of a request queue
2288 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002289 *
2290 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002291 * Return the request at the top of @q. The returned request
2292 * should be started using blk_start_request() before LLD starts
2293 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002294 *
2295 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002296 * Pointer to the request at the top of @q if available. Null
2297 * otherwise.
2298 *
2299 * Context:
2300 * queue_lock must be held.
2301 */
2302struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09002303{
2304 struct request *rq;
2305 int ret;
2306
2307 while ((rq = __elv_next_request(q)) != NULL) {
Lin Mingc8158812013-03-23 11:42:27 +08002308
2309 rq = blk_pm_peek_request(q, rq);
2310 if (!rq)
2311 break;
2312
Christoph Hellwige8064022016-10-20 15:12:13 +02002313 if (!(rq->rq_flags & RQF_STARTED)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002314 /*
2315 * This is the first time the device driver
2316 * sees this request (possibly after
2317 * requeueing). Notify IO scheduler.
2318 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002319 if (rq->rq_flags & RQF_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09002320 elv_activate_rq(q, rq);
2321
2322 /*
2323 * just mark as started even if we don't start
2324 * it, a request that has been delayed should
2325 * not be passed by new incoming requests
2326 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002327 rq->rq_flags |= RQF_STARTED;
Tejun Heo158dbda2009-04-23 11:05:18 +09002328 trace_block_rq_issue(q, rq);
2329 }
2330
2331 if (!q->boundary_rq || q->boundary_rq == rq) {
2332 q->end_sector = rq_end_sector(rq);
2333 q->boundary_rq = NULL;
2334 }
2335
Christoph Hellwige8064022016-10-20 15:12:13 +02002336 if (rq->rq_flags & RQF_DONTPREP)
Tejun Heo158dbda2009-04-23 11:05:18 +09002337 break;
2338
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002339 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002340 /*
2341 * make sure space for the drain appears we
2342 * know we can do this because max_hw_segments
2343 * has been adjusted to be one fewer than the
2344 * device can handle
2345 */
2346 rq->nr_phys_segments++;
2347 }
2348
2349 if (!q->prep_rq_fn)
2350 break;
2351
2352 ret = q->prep_rq_fn(q, rq);
2353 if (ret == BLKPREP_OK) {
2354 break;
2355 } else if (ret == BLKPREP_DEFER) {
2356 /*
2357 * the request may have been (partially) prepped.
2358 * we need to keep this request in the front to
Christoph Hellwige8064022016-10-20 15:12:13 +02002359 * avoid resource deadlock. RQF_STARTED will
Tejun Heo158dbda2009-04-23 11:05:18 +09002360 * prevent other fs requests from passing this one.
2361 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002362 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Christoph Hellwige8064022016-10-20 15:12:13 +02002363 !(rq->rq_flags & RQF_DONTPREP)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002364 /*
2365 * remove the space for the drain we added
2366 * so that we don't add it again
2367 */
2368 --rq->nr_phys_segments;
2369 }
2370
2371 rq = NULL;
2372 break;
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -05002373 } else if (ret == BLKPREP_KILL || ret == BLKPREP_INVALID) {
2374 int err = (ret == BLKPREP_INVALID) ? -EREMOTEIO : -EIO;
2375
Christoph Hellwige8064022016-10-20 15:12:13 +02002376 rq->rq_flags |= RQF_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02002377 /*
2378 * Mark this request as started so we don't trigger
2379 * any debug logic in the end I/O path.
2380 */
2381 blk_start_request(rq);
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -05002382 __blk_end_request_all(rq, err);
Tejun Heo158dbda2009-04-23 11:05:18 +09002383 } else {
2384 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2385 break;
2386 }
2387 }
2388
2389 return rq;
2390}
Tejun Heo9934c8c2009-05-08 11:54:16 +09002391EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09002392
Tejun Heo9934c8c2009-05-08 11:54:16 +09002393void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09002394{
Tejun Heo9934c8c2009-05-08 11:54:16 +09002395 struct request_queue *q = rq->q;
2396
Tejun Heo158dbda2009-04-23 11:05:18 +09002397 BUG_ON(list_empty(&rq->queuelist));
2398 BUG_ON(ELV_ON_HASH(rq));
2399
2400 list_del_init(&rq->queuelist);
2401
2402 /*
2403 * the time frame between a request being removed from the lists
2404 * and to it is freed is accounted as io that is in progress at
2405 * the driver side.
2406 */
Divyesh Shah91952912010-04-01 15:01:41 -07002407 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02002408 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07002409 set_io_start_time_ns(rq);
2410 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002411}
2412
Tejun Heo5efccd12009-04-23 11:05:18 +09002413/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002414 * blk_start_request - start request processing on the driver
2415 * @req: request to dequeue
2416 *
2417 * Description:
2418 * Dequeue @req and start timeout timer on it. This hands off the
2419 * request to the driver.
2420 *
2421 * Block internal functions which don't want to start timer should
2422 * call blk_dequeue_request().
2423 *
2424 * Context:
2425 * queue_lock must be held.
2426 */
2427void blk_start_request(struct request *req)
2428{
2429 blk_dequeue_request(req);
2430
Jens Axboecf43e6b2016-11-07 21:32:37 -07002431 if (test_bit(QUEUE_FLAG_STATS, &req->q->queue_flags)) {
2432 blk_stat_set_issue_time(&req->issue_stat);
2433 req->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -07002434 wbt_issue(req->q->rq_wb, &req->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -07002435 }
2436
Jeff Moyer4912aa62013-10-08 14:36:41 -04002437 BUG_ON(test_bit(REQ_ATOM_COMPLETE, &req->atomic_flags));
Tejun Heo9934c8c2009-05-08 11:54:16 +09002438 blk_add_timer(req);
2439}
2440EXPORT_SYMBOL(blk_start_request);
2441
2442/**
2443 * blk_fetch_request - fetch a request from a request queue
2444 * @q: request queue to fetch a request from
2445 *
2446 * Description:
2447 * Return the request at the top of @q. The request is started on
2448 * return and LLD can start processing it immediately.
2449 *
2450 * Return:
2451 * Pointer to the request at the top of @q if available. Null
2452 * otherwise.
2453 *
2454 * Context:
2455 * queue_lock must be held.
2456 */
2457struct request *blk_fetch_request(struct request_queue *q)
2458{
2459 struct request *rq;
2460
2461 rq = blk_peek_request(q);
2462 if (rq)
2463 blk_start_request(rq);
2464 return rq;
2465}
2466EXPORT_SYMBOL(blk_fetch_request);
2467
2468/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002469 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002470 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002471 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002472 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002473 *
2474 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002475 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2476 * the request structure even if @req doesn't have leftover.
2477 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002478 *
2479 * This special helper function is only for request stacking drivers
2480 * (e.g. request-based dm) so that they can handle partial completion.
2481 * Actual device drivers should use blk_end_request instead.
2482 *
2483 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2484 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002485 *
2486 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002487 * %false - this request doesn't have any more data
2488 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002489 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002490bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Kent Overstreetf79ea412012-09-20 16:38:30 -07002492 int total_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Hannes Reinecke4a0efdc2014-10-01 14:32:31 +02002494 trace_block_rq_complete(req->q, req, nr_bytes);
2495
Tejun Heo2e60e022009-04-23 11:05:18 +09002496 if (!req->bio)
2497 return false;
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002500 * For fs requests, rq is just carrier of independent bio's
2501 * and each partial completion should be handled separately.
2502 * Reset per-request error on each partial completion.
2503 *
2504 * TODO: tj: This is too subtle. It would be better to let
2505 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 */
Christoph Hellwig57292b52017-01-31 16:57:29 +01002507 if (!blk_rq_is_passthrough(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 req->errors = 0;
2509
Christoph Hellwig57292b52017-01-31 16:57:29 +01002510 if (error && !blk_rq_is_passthrough(req) &&
Christoph Hellwige8064022016-10-20 15:12:13 +02002511 !(req->rq_flags & RQF_QUIET)) {
Hannes Reinecke79775562011-01-18 10:13:13 +01002512 char *error_type;
2513
2514 switch (error) {
2515 case -ENOLINK:
2516 error_type = "recoverable transport";
2517 break;
2518 case -EREMOTEIO:
2519 error_type = "critical target";
2520 break;
2521 case -EBADE:
2522 error_type = "critical nexus";
2523 break;
Hannes Reinecked1ffc1f2013-01-30 09:26:16 +00002524 case -ETIMEDOUT:
2525 error_type = "timeout";
2526 break;
Hannes Reineckea9d6ceb82013-07-01 15:16:25 +02002527 case -ENOSPC:
2528 error_type = "critical space allocation";
2529 break;
Hannes Reinecke7e782af2013-07-01 15:16:26 +02002530 case -ENODATA:
2531 error_type = "critical medium";
2532 break;
Hannes Reinecke79775562011-01-18 10:13:13 +01002533 case -EIO:
2534 default:
2535 error_type = "I/O";
2536 break;
2537 }
Robert Elliottef3ecb62014-08-27 10:50:31 -05002538 printk_ratelimited(KERN_ERR "%s: %s error, dev %s, sector %llu\n",
2539 __func__, error_type, req->rq_disk ?
Yi Zou37d7b342012-08-30 16:26:25 -07002540 req->rq_disk->disk_name : "?",
2541 (unsigned long long)blk_rq_pos(req));
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 }
2544
Jens Axboebc58ba92009-01-23 10:54:44 +01002545 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002546
Kent Overstreetf79ea412012-09-20 16:38:30 -07002547 total_bytes = 0;
2548 while (req->bio) {
2549 struct bio *bio = req->bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002550 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Kent Overstreet4f024f32013-10-11 15:44:27 -07002552 if (bio_bytes == bio->bi_iter.bi_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 req->bio = bio->bi_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Kent Overstreetf79ea412012-09-20 16:38:30 -07002555 req_bio_endio(req, bio, bio_bytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Kent Overstreetf79ea412012-09-20 16:38:30 -07002557 total_bytes += bio_bytes;
2558 nr_bytes -= bio_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Kent Overstreetf79ea412012-09-20 16:38:30 -07002560 if (!nr_bytes)
2561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 }
2563
2564 /*
2565 * completely done
2566 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002567 if (!req->bio) {
2568 /*
2569 * Reset counters so that the request stacking driver
2570 * can find how many bytes remain in the request
2571 * later.
2572 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002573 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002574 return false;
2575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07002577 WARN_ON_ONCE(req->rq_flags & RQF_SPECIAL_PAYLOAD);
2578
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002579 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002580
2581 /* update sector only for requests with clear definition of sector */
Christoph Hellwig57292b52017-01-31 16:57:29 +01002582 if (!blk_rq_is_passthrough(req))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002583 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002584
Tejun Heo80a761f2009-07-03 17:48:17 +09002585 /* mixed attributes always follow the first bio */
Christoph Hellwige8064022016-10-20 15:12:13 +02002586 if (req->rq_flags & RQF_MIXED_MERGE) {
Tejun Heo80a761f2009-07-03 17:48:17 +09002587 req->cmd_flags &= ~REQ_FAILFAST_MASK;
Jens Axboe1eff9d32016-08-05 15:35:16 -06002588 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
Tejun Heo80a761f2009-07-03 17:48:17 +09002589 }
2590
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002591 /*
2592 * If total number of sectors is less than the first segment
2593 * size, something has gone terribly wrong.
2594 */
2595 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
Jens Axboe81829242011-03-30 09:51:33 +02002596 blk_dump_rq_flags(req, "request botched");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002597 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002598 }
2599
2600 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002602
Tejun Heo2e60e022009-04-23 11:05:18 +09002603 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
Tejun Heo2e60e022009-04-23 11:05:18 +09002605EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Tejun Heo2e60e022009-04-23 11:05:18 +09002607static bool blk_update_bidi_request(struct request *rq, int error,
2608 unsigned int nr_bytes,
2609 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002610{
Tejun Heo2e60e022009-04-23 11:05:18 +09002611 if (blk_update_request(rq, error, nr_bytes))
2612 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002613
Tejun Heo2e60e022009-04-23 11:05:18 +09002614 /* Bidi request must be completed as a whole */
2615 if (unlikely(blk_bidi_rq(rq)) &&
2616 blk_update_request(rq->next_rq, error, bidi_bytes))
2617 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002618
Jens Axboee2e1a142010-06-09 10:42:09 +02002619 if (blk_queue_add_random(rq->q))
2620 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002621
2622 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
James Bottomley28018c22010-07-01 19:49:17 +09002625/**
2626 * blk_unprep_request - unprepare a request
2627 * @req: the request
2628 *
2629 * This function makes a request ready for complete resubmission (or
2630 * completion). It happens only after all error handling is complete,
2631 * so represents the appropriate moment to deallocate any resources
2632 * that were allocated to the request in the prep_rq_fn. The queue
2633 * lock is held when calling this.
2634 */
2635void blk_unprep_request(struct request *req)
2636{
2637 struct request_queue *q = req->q;
2638
Christoph Hellwige8064022016-10-20 15:12:13 +02002639 req->rq_flags &= ~RQF_DONTPREP;
James Bottomley28018c22010-07-01 19:49:17 +09002640 if (q->unprep_rq_fn)
2641 q->unprep_rq_fn(q, req);
2642}
2643EXPORT_SYMBOL_GPL(blk_unprep_request);
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645/*
2646 * queue lock must be held
2647 */
Christoph Hellwig12120072014-04-16 09:44:59 +02002648void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
Jens Axboecf43e6b2016-11-07 21:32:37 -07002650 struct request_queue *q = req->q;
2651
2652 if (req->rq_flags & RQF_STATS)
2653 blk_stat_add(&q->rq_stats[rq_data_dir(req)], req);
2654
Christoph Hellwige8064022016-10-20 15:12:13 +02002655 if (req->rq_flags & RQF_QUEUED)
Jens Axboecf43e6b2016-11-07 21:32:37 -07002656 blk_queue_end_tag(q, req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002657
James Bottomleyba396a62009-05-27 14:17:08 +02002658 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Christoph Hellwig57292b52017-01-31 16:57:29 +01002660 if (unlikely(laptop_mode) && !blk_rq_is_passthrough(req))
Jan Karadc3b17c2017-02-02 15:56:50 +01002661 laptop_io_completion(req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Mike Andersone78042e52008-10-30 02:16:20 -07002663 blk_delete_timer(req);
2664
Christoph Hellwige8064022016-10-20 15:12:13 +02002665 if (req->rq_flags & RQF_DONTPREP)
James Bottomley28018c22010-07-01 19:49:17 +09002666 blk_unprep_request(req);
2667
Jens Axboebc58ba92009-01-23 10:54:44 +01002668 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002669
Jens Axboe87760e52016-11-09 12:38:14 -07002670 if (req->end_io) {
2671 wbt_done(req->q->rq_wb, &req->issue_stat);
Tejun Heo8ffdc652006-01-06 09:49:03 +01002672 req->end_io(req, error);
Jens Axboe87760e52016-11-09 12:38:14 -07002673 } else {
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002674 if (blk_bidi_rq(req))
2675 __blk_put_request(req->next_rq->q, req->next_rq);
2676
Jens Axboecf43e6b2016-11-07 21:32:37 -07002677 __blk_put_request(q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
2679}
Christoph Hellwig12120072014-04-16 09:44:59 +02002680EXPORT_SYMBOL(blk_finish_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002682/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002683 * blk_end_bidi_request - Complete a bidi request
2684 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002685 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002686 * @nr_bytes: number of bytes to complete @rq
2687 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002688 *
2689 * Description:
2690 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002691 * Drivers that supports bidi can safely call this member for any
2692 * type of request, bidi or uni. In the later case @bidi_bytes is
2693 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002694 *
2695 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002696 * %false - we are done with this request
2697 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002698 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002699static bool blk_end_bidi_request(struct request *rq, int error,
2700 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002701{
2702 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002703 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002704
Tejun Heo2e60e022009-04-23 11:05:18 +09002705 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2706 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002707
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002708 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002709 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002710 spin_unlock_irqrestore(q->queue_lock, flags);
2711
Tejun Heo2e60e022009-04-23 11:05:18 +09002712 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002713}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002714
2715/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002716 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2717 * @rq: the request to complete
2718 * @error: %0 for success, < %0 for error
2719 * @nr_bytes: number of bytes to complete @rq
2720 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002721 *
2722 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002723 * Identical to blk_end_bidi_request() except that queue lock is
2724 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002725 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002726 * Return:
2727 * %false - we are done with this request
2728 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002729 **/
Jeff Moyer4853aba2011-08-15 21:37:25 +02002730bool __blk_end_bidi_request(struct request *rq, int error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002731 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002732{
Tejun Heo2e60e022009-04-23 11:05:18 +09002733 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2734 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002735
Tejun Heo2e60e022009-04-23 11:05:18 +09002736 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002737
Tejun Heo2e60e022009-04-23 11:05:18 +09002738 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002739}
2740
2741/**
2742 * blk_end_request - Helper function for drivers to complete the request.
2743 * @rq: the request being processed
2744 * @error: %0 for success, < %0 for error
2745 * @nr_bytes: number of bytes to complete
2746 *
2747 * Description:
2748 * Ends I/O on a number of bytes attached to @rq.
2749 * If @rq has leftover, sets it up for the next range of segments.
2750 *
2751 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002752 * %false - we are done with this request
2753 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002754 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002755bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002756{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002757 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002758}
Jens Axboe56ad1742009-07-28 22:11:24 +02002759EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002760
2761/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002762 * blk_end_request_all - Helper function for drives to finish the request.
2763 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002764 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002765 *
2766 * Description:
2767 * Completely finish @rq.
2768 */
2769void blk_end_request_all(struct request *rq, int error)
2770{
2771 bool pending;
2772 unsigned int bidi_bytes = 0;
2773
2774 if (unlikely(blk_bidi_rq(rq)))
2775 bidi_bytes = blk_rq_bytes(rq->next_rq);
2776
2777 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2778 BUG_ON(pending);
2779}
Jens Axboe56ad1742009-07-28 22:11:24 +02002780EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002781
2782/**
2783 * blk_end_request_cur - Helper function to finish the current request chunk.
2784 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002785 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002786 *
2787 * Description:
2788 * Complete the current consecutively mapped chunk from @rq.
2789 *
2790 * Return:
2791 * %false - we are done with this request
2792 * %true - still buffers pending for this request
2793 */
2794bool blk_end_request_cur(struct request *rq, int error)
2795{
2796 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2797}
Jens Axboe56ad1742009-07-28 22:11:24 +02002798EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002799
2800/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002801 * blk_end_request_err - Finish a request till the next failure boundary.
2802 * @rq: the request to finish till the next failure boundary for
2803 * @error: must be negative errno
2804 *
2805 * Description:
2806 * Complete @rq till the next failure boundary.
2807 *
2808 * Return:
2809 * %false - we are done with this request
2810 * %true - still buffers pending for this request
2811 */
2812bool blk_end_request_err(struct request *rq, int error)
2813{
2814 WARN_ON(error >= 0);
2815 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2816}
2817EXPORT_SYMBOL_GPL(blk_end_request_err);
2818
2819/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002820 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002821 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002822 * @error: %0 for success, < %0 for error
2823 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002824 *
2825 * Description:
2826 * Must be called with queue lock held unlike blk_end_request().
2827 *
2828 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002829 * %false - we are done with this request
2830 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002831 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002832bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002833{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002834 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002835}
Jens Axboe56ad1742009-07-28 22:11:24 +02002836EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002837
2838/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002839 * __blk_end_request_all - Helper function for drives to finish the request.
2840 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002841 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002842 *
2843 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002844 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002845 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002846void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002847{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002848 bool pending;
2849 unsigned int bidi_bytes = 0;
2850
2851 if (unlikely(blk_bidi_rq(rq)))
2852 bidi_bytes = blk_rq_bytes(rq->next_rq);
2853
2854 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2855 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002856}
Jens Axboe56ad1742009-07-28 22:11:24 +02002857EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002858
2859/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002860 * __blk_end_request_cur - Helper function to finish the current request chunk.
2861 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002862 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002863 *
2864 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002865 * Complete the current consecutively mapped chunk from @rq. Must
2866 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002867 *
2868 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002869 * %false - we are done with this request
2870 * %true - still buffers pending for this request
2871 */
2872bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002873{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002874 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002875}
Jens Axboe56ad1742009-07-28 22:11:24 +02002876EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002877
Tejun Heo80a761f2009-07-03 17:48:17 +09002878/**
2879 * __blk_end_request_err - Finish a request till the next failure boundary.
2880 * @rq: the request to finish till the next failure boundary for
2881 * @error: must be negative errno
2882 *
2883 * Description:
2884 * Complete @rq till the next failure boundary. Must be called
2885 * with queue lock held.
2886 *
2887 * Return:
2888 * %false - we are done with this request
2889 * %true - still buffers pending for this request
2890 */
2891bool __blk_end_request_err(struct request *rq, int error)
2892{
2893 WARN_ON(error >= 0);
2894 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2895}
2896EXPORT_SYMBOL_GPL(__blk_end_request_err);
2897
Jens Axboe86db1e22008-01-29 14:53:40 +01002898void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2899 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
Jens Axboeb4f42e22014-04-10 09:46:28 -06002901 if (bio_has_data(bio))
David Woodhousefb2dce82008-08-05 18:01:53 +01002902 rq->nr_phys_segments = bio_phys_segments(q, bio);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002903
Kent Overstreet4f024f32013-10-11 15:44:27 -07002904 rq->__data_len = bio->bi_iter.bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
NeilBrown66846572007-08-16 13:31:28 +02002907 if (bio->bi_bdev)
2908 rq->rq_disk = bio->bi_bdev->bd_disk;
2909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002911#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2912/**
2913 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2914 * @rq: the request to be flushed
2915 *
2916 * Description:
2917 * Flush all pages in @rq.
2918 */
2919void rq_flush_dcache_pages(struct request *rq)
2920{
2921 struct req_iterator iter;
Kent Overstreet79886132013-11-23 17:19:00 -08002922 struct bio_vec bvec;
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002923
2924 rq_for_each_segment(bvec, rq, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08002925 flush_dcache_page(bvec.bv_page);
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002926}
2927EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2928#endif
2929
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002930/**
2931 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2932 * @q : the queue of the device being checked
2933 *
2934 * Description:
2935 * Check if underlying low-level drivers of a device are busy.
2936 * If the drivers want to export their busy state, they must set own
2937 * exporting function using blk_queue_lld_busy() first.
2938 *
2939 * Basically, this function is used only by request stacking drivers
2940 * to stop dispatching requests to underlying devices when underlying
2941 * devices are busy. This behavior helps more I/O merging on the queue
2942 * of the request stacking driver and prevents I/O throughput regression
2943 * on burst I/O load.
2944 *
2945 * Return:
2946 * 0 - Not busy (The request stacking driver should dispatch request)
2947 * 1 - Busy (The request stacking driver should stop dispatching request)
2948 */
2949int blk_lld_busy(struct request_queue *q)
2950{
2951 if (q->lld_busy_fn)
2952 return q->lld_busy_fn(q);
2953
2954 return 0;
2955}
2956EXPORT_SYMBOL_GPL(blk_lld_busy);
2957
Mike Snitzer78d8e582015-06-26 10:01:13 -04002958/**
2959 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2960 * @rq: the clone request to be cleaned up
2961 *
2962 * Description:
2963 * Free all bios in @rq for a cloned request.
2964 */
2965void blk_rq_unprep_clone(struct request *rq)
2966{
2967 struct bio *bio;
2968
2969 while ((bio = rq->bio) != NULL) {
2970 rq->bio = bio->bi_next;
2971
2972 bio_put(bio);
2973 }
2974}
2975EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2976
2977/*
2978 * Copy attributes of the original request to the clone request.
2979 * The actual data parts (e.g. ->cmd, ->sense) are not copied.
2980 */
2981static void __blk_rq_prep_clone(struct request *dst, struct request *src)
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002982{
2983 dst->cpu = src->cpu;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002984 dst->__sector = blk_rq_pos(src);
2985 dst->__data_len = blk_rq_bytes(src);
2986 dst->nr_phys_segments = src->nr_phys_segments;
2987 dst->ioprio = src->ioprio;
2988 dst->extra_len = src->extra_len;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002989}
2990
2991/**
2992 * blk_rq_prep_clone - Helper function to setup clone request
2993 * @rq: the request to be setup
2994 * @rq_src: original request to be cloned
2995 * @bs: bio_set that bios for clone are allocated from
2996 * @gfp_mask: memory allocation mask for bio
2997 * @bio_ctr: setup function to be called for each clone bio.
2998 * Returns %0 for success, non %0 for failure.
2999 * @data: private data to be passed to @bio_ctr
3000 *
3001 * Description:
3002 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
3003 * The actual data parts of @rq_src (e.g. ->cmd, ->sense)
3004 * are not copied, and copying such parts is the caller's responsibility.
3005 * Also, pages which the original bios are pointing to are not copied
3006 * and the cloned bios just point same pages.
3007 * So cloned bios must be completed before original bios, which means
3008 * the caller must complete @rq before @rq_src.
3009 */
3010int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
3011 struct bio_set *bs, gfp_t gfp_mask,
3012 int (*bio_ctr)(struct bio *, struct bio *, void *),
3013 void *data)
3014{
3015 struct bio *bio, *bio_src;
3016
3017 if (!bs)
3018 bs = fs_bio_set;
3019
3020 __rq_for_each_bio(bio_src, rq_src) {
3021 bio = bio_clone_fast(bio_src, gfp_mask, bs);
3022 if (!bio)
3023 goto free_and_out;
3024
3025 if (bio_ctr && bio_ctr(bio, bio_src, data))
3026 goto free_and_out;
3027
3028 if (rq->bio) {
3029 rq->biotail->bi_next = bio;
3030 rq->biotail = bio;
3031 } else
3032 rq->bio = rq->biotail = bio;
3033 }
3034
3035 __blk_rq_prep_clone(rq, rq_src);
3036
3037 return 0;
3038
3039free_and_out:
3040 if (bio)
3041 bio_put(bio);
3042 blk_rq_unprep_clone(rq);
3043
3044 return -ENOMEM;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02003045}
3046EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
3047
Jens Axboe59c3d452014-04-08 09:15:35 -06003048int kblockd_schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
3050 return queue_work(kblockd_workqueue, work);
3051}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052EXPORT_SYMBOL(kblockd_schedule_work);
3053
Jens Axboeee63cfa2016-08-24 15:52:48 -06003054int kblockd_schedule_work_on(int cpu, struct work_struct *work)
3055{
3056 return queue_work_on(cpu, kblockd_workqueue, work);
3057}
3058EXPORT_SYMBOL(kblockd_schedule_work_on);
3059
Jens Axboe59c3d452014-04-08 09:15:35 -06003060int kblockd_schedule_delayed_work(struct delayed_work *dwork,
3061 unsigned long delay)
Vivek Goyale43473b2010-09-15 17:06:35 -04003062{
3063 return queue_delayed_work(kblockd_workqueue, dwork, delay);
3064}
3065EXPORT_SYMBOL(kblockd_schedule_delayed_work);
3066
Jens Axboe8ab14592014-04-08 09:17:40 -06003067int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3068 unsigned long delay)
3069{
3070 return queue_delayed_work_on(cpu, kblockd_workqueue, dwork, delay);
3071}
3072EXPORT_SYMBOL(kblockd_schedule_delayed_work_on);
3073
Suresh Jayaraman75df7132011-09-21 10:00:16 +02003074/**
3075 * blk_start_plug - initialize blk_plug and track it inside the task_struct
3076 * @plug: The &struct blk_plug that needs to be initialized
3077 *
3078 * Description:
3079 * Tracking blk_plug inside the task_struct will help with auto-flushing the
3080 * pending I/O should the task end up blocking between blk_start_plug() and
3081 * blk_finish_plug(). This is important from a performance perspective, but
3082 * also ensures that we don't deadlock. For instance, if the task is blocking
3083 * for a memory allocation, memory reclaim could end up wanting to free a
3084 * page belonging to that request that is currently residing in our private
3085 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
3086 * this kind of deadlock.
3087 */
Jens Axboe73c10102011-03-08 13:19:51 +01003088void blk_start_plug(struct blk_plug *plug)
3089{
3090 struct task_struct *tsk = current;
3091
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003092 /*
3093 * If this is a nested plug, don't actually assign it.
3094 */
3095 if (tsk->plug)
3096 return;
3097
Jens Axboe73c10102011-03-08 13:19:51 +01003098 INIT_LIST_HEAD(&plug->list);
Jens Axboe320ae512013-10-24 09:20:05 +01003099 INIT_LIST_HEAD(&plug->mq_list);
NeilBrown048c9372011-04-18 09:52:22 +02003100 INIT_LIST_HEAD(&plug->cb_list);
Jens Axboe73c10102011-03-08 13:19:51 +01003101 /*
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003102 * Store ordering should not be needed here, since a potential
3103 * preempt will imply a full memory barrier
Jens Axboe73c10102011-03-08 13:19:51 +01003104 */
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003105 tsk->plug = plug;
Jens Axboe73c10102011-03-08 13:19:51 +01003106}
3107EXPORT_SYMBOL(blk_start_plug);
3108
3109static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
3110{
3111 struct request *rqa = container_of(a, struct request, queuelist);
3112 struct request *rqb = container_of(b, struct request, queuelist);
3113
Jianpeng Ma975927b2012-10-25 21:58:17 +02003114 return !(rqa->q < rqb->q ||
3115 (rqa->q == rqb->q && blk_rq_pos(rqa) < blk_rq_pos(rqb)));
Jens Axboe73c10102011-03-08 13:19:51 +01003116}
3117
Jens Axboe49cac012011-04-16 13:51:05 +02003118/*
3119 * If 'from_schedule' is true, then postpone the dispatch of requests
3120 * until a safe kblockd context. We due this to avoid accidental big
3121 * additional stack usage in driver dispatch, in places where the originally
3122 * plugger did not intend it.
3123 */
Jens Axboef6603782011-04-15 15:49:07 +02003124static void queue_unplugged(struct request_queue *q, unsigned int depth,
Jens Axboe49cac012011-04-16 13:51:05 +02003125 bool from_schedule)
Jens Axboe99e22592011-04-18 09:59:55 +02003126 __releases(q->queue_lock)
Jens Axboe94b5eb22011-04-12 10:12:19 +02003127{
Jens Axboe49cac012011-04-16 13:51:05 +02003128 trace_block_unplug(q, depth, !from_schedule);
Jens Axboe99e22592011-04-18 09:59:55 +02003129
Bart Van Assche70460572012-11-28 13:45:56 +01003130 if (from_schedule)
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003131 blk_run_queue_async(q);
Bart Van Assche70460572012-11-28 13:45:56 +01003132 else
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003133 __blk_run_queue(q);
Bart Van Assche70460572012-11-28 13:45:56 +01003134 spin_unlock(q->queue_lock);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003135}
3136
NeilBrown74018dc2012-07-31 09:08:15 +02003137static void flush_plug_callbacks(struct blk_plug *plug, bool from_schedule)
NeilBrown048c9372011-04-18 09:52:22 +02003138{
3139 LIST_HEAD(callbacks);
3140
Shaohua Li2a7d5552012-07-31 09:08:15 +02003141 while (!list_empty(&plug->cb_list)) {
3142 list_splice_init(&plug->cb_list, &callbacks);
NeilBrown048c9372011-04-18 09:52:22 +02003143
Shaohua Li2a7d5552012-07-31 09:08:15 +02003144 while (!list_empty(&callbacks)) {
3145 struct blk_plug_cb *cb = list_first_entry(&callbacks,
NeilBrown048c9372011-04-18 09:52:22 +02003146 struct blk_plug_cb,
3147 list);
Shaohua Li2a7d5552012-07-31 09:08:15 +02003148 list_del(&cb->list);
NeilBrown74018dc2012-07-31 09:08:15 +02003149 cb->callback(cb, from_schedule);
Shaohua Li2a7d5552012-07-31 09:08:15 +02003150 }
NeilBrown048c9372011-04-18 09:52:22 +02003151 }
3152}
3153
NeilBrown9cbb1752012-07-31 09:08:14 +02003154struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug, void *data,
3155 int size)
3156{
3157 struct blk_plug *plug = current->plug;
3158 struct blk_plug_cb *cb;
3159
3160 if (!plug)
3161 return NULL;
3162
3163 list_for_each_entry(cb, &plug->cb_list, list)
3164 if (cb->callback == unplug && cb->data == data)
3165 return cb;
3166
3167 /* Not currently on the callback list */
3168 BUG_ON(size < sizeof(*cb));
3169 cb = kzalloc(size, GFP_ATOMIC);
3170 if (cb) {
3171 cb->data = data;
3172 cb->callback = unplug;
3173 list_add(&cb->list, &plug->cb_list);
3174 }
3175 return cb;
3176}
3177EXPORT_SYMBOL(blk_check_plugged);
3178
Jens Axboe49cac012011-04-16 13:51:05 +02003179void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
Jens Axboe73c10102011-03-08 13:19:51 +01003180{
3181 struct request_queue *q;
3182 unsigned long flags;
3183 struct request *rq;
NeilBrown109b8122011-04-11 14:13:10 +02003184 LIST_HEAD(list);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003185 unsigned int depth;
Jens Axboe73c10102011-03-08 13:19:51 +01003186
NeilBrown74018dc2012-07-31 09:08:15 +02003187 flush_plug_callbacks(plug, from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01003188
3189 if (!list_empty(&plug->mq_list))
3190 blk_mq_flush_plug_list(plug, from_schedule);
3191
Jens Axboe73c10102011-03-08 13:19:51 +01003192 if (list_empty(&plug->list))
3193 return;
3194
NeilBrown109b8122011-04-11 14:13:10 +02003195 list_splice_init(&plug->list, &list);
3196
Jianpeng Ma422765c2013-01-11 14:46:09 +01003197 list_sort(NULL, &list, plug_rq_cmp);
Jens Axboe73c10102011-03-08 13:19:51 +01003198
3199 q = NULL;
Jens Axboe94b5eb22011-04-12 10:12:19 +02003200 depth = 0;
Jens Axboe188112722011-04-12 10:11:24 +02003201
3202 /*
3203 * Save and disable interrupts here, to avoid doing it for every
3204 * queue lock we have to take.
3205 */
Jens Axboe73c10102011-03-08 13:19:51 +01003206 local_irq_save(flags);
NeilBrown109b8122011-04-11 14:13:10 +02003207 while (!list_empty(&list)) {
3208 rq = list_entry_rq(list.next);
Jens Axboe73c10102011-03-08 13:19:51 +01003209 list_del_init(&rq->queuelist);
Jens Axboe73c10102011-03-08 13:19:51 +01003210 BUG_ON(!rq->q);
3211 if (rq->q != q) {
Jens Axboe99e22592011-04-18 09:59:55 +02003212 /*
3213 * This drops the queue lock
3214 */
3215 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02003216 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01003217 q = rq->q;
Jens Axboe94b5eb22011-04-12 10:12:19 +02003218 depth = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01003219 spin_lock(q->queue_lock);
3220 }
Tejun Heo8ba61432011-12-14 00:33:37 +01003221
3222 /*
3223 * Short-circuit if @q is dead
3224 */
Bart Van Assche3f3299d2012-11-28 13:42:38 +01003225 if (unlikely(blk_queue_dying(q))) {
Tejun Heo8ba61432011-12-14 00:33:37 +01003226 __blk_end_request_all(rq, -ENODEV);
3227 continue;
3228 }
3229
Jens Axboe73c10102011-03-08 13:19:51 +01003230 /*
3231 * rq is already accounted, so use raw insert
3232 */
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07003233 if (op_is_flush(rq->cmd_flags))
Jens Axboe401a18e2011-03-25 16:57:52 +01003234 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
3235 else
3236 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003237
3238 depth++;
Jens Axboe73c10102011-03-08 13:19:51 +01003239 }
3240
Jens Axboe99e22592011-04-18 09:59:55 +02003241 /*
3242 * This drops the queue lock
3243 */
3244 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02003245 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01003246
Jens Axboe73c10102011-03-08 13:19:51 +01003247 local_irq_restore(flags);
3248}
Jens Axboe73c10102011-03-08 13:19:51 +01003249
3250void blk_finish_plug(struct blk_plug *plug)
3251{
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003252 if (plug != current->plug)
3253 return;
Jens Axboef6603782011-04-15 15:49:07 +02003254 blk_flush_plug_list(plug, false);
Christoph Hellwig88b996c2011-04-15 15:20:10 +02003255
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003256 current->plug = NULL;
Jens Axboe73c10102011-03-08 13:19:51 +01003257}
3258EXPORT_SYMBOL(blk_finish_plug);
3259
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01003260#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +08003261/**
3262 * blk_pm_runtime_init - Block layer runtime PM initialization routine
3263 * @q: the queue of the device
3264 * @dev: the device the queue belongs to
3265 *
3266 * Description:
3267 * Initialize runtime-PM-related fields for @q and start auto suspend for
3268 * @dev. Drivers that want to take advantage of request-based runtime PM
3269 * should call this function after @dev has been initialized, and its
3270 * request queue @q has been allocated, and runtime PM for it can not happen
3271 * yet(either due to disabled/forbidden or its usage_count > 0). In most
3272 * cases, driver should call this function before any I/O has taken place.
3273 *
3274 * This function takes care of setting up using auto suspend for the device,
3275 * the autosuspend delay is set to -1 to make runtime suspend impossible
3276 * until an updated value is either set by user or by driver. Drivers do
3277 * not need to touch other autosuspend settings.
3278 *
3279 * The block layer runtime PM is request based, so only works for drivers
3280 * that use request as their IO unit instead of those directly use bio's.
3281 */
3282void blk_pm_runtime_init(struct request_queue *q, struct device *dev)
3283{
3284 q->dev = dev;
3285 q->rpm_status = RPM_ACTIVE;
3286 pm_runtime_set_autosuspend_delay(q->dev, -1);
3287 pm_runtime_use_autosuspend(q->dev);
3288}
3289EXPORT_SYMBOL(blk_pm_runtime_init);
3290
3291/**
3292 * blk_pre_runtime_suspend - Pre runtime suspend check
3293 * @q: the queue of the device
3294 *
3295 * Description:
3296 * This function will check if runtime suspend is allowed for the device
3297 * by examining if there are any requests pending in the queue. If there
3298 * are requests pending, the device can not be runtime suspended; otherwise,
3299 * the queue's status will be updated to SUSPENDING and the driver can
3300 * proceed to suspend the device.
3301 *
3302 * For the not allowed case, we mark last busy for the device so that
3303 * runtime PM core will try to autosuspend it some time later.
3304 *
3305 * This function should be called near the start of the device's
3306 * runtime_suspend callback.
3307 *
3308 * Return:
3309 * 0 - OK to runtime suspend the device
3310 * -EBUSY - Device should not be runtime suspended
3311 */
3312int blk_pre_runtime_suspend(struct request_queue *q)
3313{
3314 int ret = 0;
3315
Ken Xue4fd41a852015-12-01 14:45:46 +08003316 if (!q->dev)
3317 return ret;
3318
Lin Ming6c954662013-03-23 11:42:26 +08003319 spin_lock_irq(q->queue_lock);
3320 if (q->nr_pending) {
3321 ret = -EBUSY;
3322 pm_runtime_mark_last_busy(q->dev);
3323 } else {
3324 q->rpm_status = RPM_SUSPENDING;
3325 }
3326 spin_unlock_irq(q->queue_lock);
3327 return ret;
3328}
3329EXPORT_SYMBOL(blk_pre_runtime_suspend);
3330
3331/**
3332 * blk_post_runtime_suspend - Post runtime suspend processing
3333 * @q: the queue of the device
3334 * @err: return value of the device's runtime_suspend function
3335 *
3336 * Description:
3337 * Update the queue's runtime status according to the return value of the
3338 * device's runtime suspend function and mark last busy for the device so
3339 * that PM core will try to auto suspend the device at a later time.
3340 *
3341 * This function should be called near the end of the device's
3342 * runtime_suspend callback.
3343 */
3344void blk_post_runtime_suspend(struct request_queue *q, int err)
3345{
Ken Xue4fd41a852015-12-01 14:45:46 +08003346 if (!q->dev)
3347 return;
3348
Lin Ming6c954662013-03-23 11:42:26 +08003349 spin_lock_irq(q->queue_lock);
3350 if (!err) {
3351 q->rpm_status = RPM_SUSPENDED;
3352 } else {
3353 q->rpm_status = RPM_ACTIVE;
3354 pm_runtime_mark_last_busy(q->dev);
3355 }
3356 spin_unlock_irq(q->queue_lock);
3357}
3358EXPORT_SYMBOL(blk_post_runtime_suspend);
3359
3360/**
3361 * blk_pre_runtime_resume - Pre runtime resume processing
3362 * @q: the queue of the device
3363 *
3364 * Description:
3365 * Update the queue's runtime status to RESUMING in preparation for the
3366 * runtime resume of the device.
3367 *
3368 * This function should be called near the start of the device's
3369 * runtime_resume callback.
3370 */
3371void blk_pre_runtime_resume(struct request_queue *q)
3372{
Ken Xue4fd41a852015-12-01 14:45:46 +08003373 if (!q->dev)
3374 return;
3375
Lin Ming6c954662013-03-23 11:42:26 +08003376 spin_lock_irq(q->queue_lock);
3377 q->rpm_status = RPM_RESUMING;
3378 spin_unlock_irq(q->queue_lock);
3379}
3380EXPORT_SYMBOL(blk_pre_runtime_resume);
3381
3382/**
3383 * blk_post_runtime_resume - Post runtime resume processing
3384 * @q: the queue of the device
3385 * @err: return value of the device's runtime_resume function
3386 *
3387 * Description:
3388 * Update the queue's runtime status according to the return value of the
3389 * device's runtime_resume function. If it is successfully resumed, process
3390 * the requests that are queued into the device's queue when it is resuming
3391 * and then mark last busy and initiate autosuspend for it.
3392 *
3393 * This function should be called near the end of the device's
3394 * runtime_resume callback.
3395 */
3396void blk_post_runtime_resume(struct request_queue *q, int err)
3397{
Ken Xue4fd41a852015-12-01 14:45:46 +08003398 if (!q->dev)
3399 return;
3400
Lin Ming6c954662013-03-23 11:42:26 +08003401 spin_lock_irq(q->queue_lock);
3402 if (!err) {
3403 q->rpm_status = RPM_ACTIVE;
3404 __blk_run_queue(q);
3405 pm_runtime_mark_last_busy(q->dev);
Aaron Luc60855c2013-05-17 15:47:20 +08003406 pm_request_autosuspend(q->dev);
Lin Ming6c954662013-03-23 11:42:26 +08003407 } else {
3408 q->rpm_status = RPM_SUSPENDED;
3409 }
3410 spin_unlock_irq(q->queue_lock);
3411}
3412EXPORT_SYMBOL(blk_post_runtime_resume);
Mika Westerbergd07ab6d2016-02-18 10:54:11 +02003413
3414/**
3415 * blk_set_runtime_active - Force runtime status of the queue to be active
3416 * @q: the queue of the device
3417 *
3418 * If the device is left runtime suspended during system suspend the resume
3419 * hook typically resumes the device and corrects runtime status
3420 * accordingly. However, that does not affect the queue runtime PM status
3421 * which is still "suspended". This prevents processing requests from the
3422 * queue.
3423 *
3424 * This function can be used in driver's resume hook to correct queue
3425 * runtime PM status and re-enable peeking requests from the queue. It
3426 * should be called before first request is added to the queue.
3427 */
3428void blk_set_runtime_active(struct request_queue *q)
3429{
3430 spin_lock_irq(q->queue_lock);
3431 q->rpm_status = RPM_ACTIVE;
3432 pm_runtime_mark_last_busy(q->dev);
3433 pm_request_autosuspend(q->dev);
3434 spin_unlock_irq(q->queue_lock);
3435}
3436EXPORT_SYMBOL(blk_set_runtime_active);
Lin Ming6c954662013-03-23 11:42:26 +08003437#endif
3438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439int __init blk_dev_init(void)
3440{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06003441 BUILD_BUG_ON(REQ_OP_LAST >= (1 << REQ_OP_BITS));
3442 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
Maninder Singh0762b232015-07-07 12:41:07 +05303443 FIELD_SIZEOF(struct request, cmd_flags));
Christoph Hellwigef295ec2016-10-28 08:48:16 -06003444 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
3445 FIELD_SIZEOF(struct bio, bi_opf));
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02003446
Tejun Heo89b90be2011-01-03 15:01:47 +01003447 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
3448 kblockd_workqueue = alloc_workqueue("kblockd",
Matias Bjørling28747fc2014-06-11 23:43:54 +02003449 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (!kblockd_workqueue)
3451 panic("Failed to create kblockd\n");
3452
3453 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09003454 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Ilya Dryomovc2789bd2015-11-20 22:16:46 +01003456 blk_requestq_cachep = kmem_cache_create("request_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02003457 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return 0;
3460}