blob: a5726e01f8394d612e9feb2f36392cc250b09fff [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
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200108void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200110 memset(rq, 0, sizeof(*rq));
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700113 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200114 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100115 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900116 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200117 INIT_HLIST_NODE(&rq->hash);
118 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe63a71382008-02-08 12:41:03 +0100119 rq->tag = -1;
Jens Axboebd166ef2017-01-17 06:03:22 -0700120 rq->internal_tag = -1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900121 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700122 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100123 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200125EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
NeilBrown5bb23a62007-09-27 12:46:13 +0200127static void req_bio_endio(struct request *rq, struct bio *bio,
128 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100129{
Mike Snitzer78d8e582015-06-26 10:01:13 -0400130 if (error)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200131 bio->bi_error = error;
Tejun Heo797e7db2006-01-06 09:51:03 +0100132
Christoph Hellwige8064022016-10-20 15:12:13 +0200133 if (unlikely(rq->rq_flags & RQF_QUIET))
Jens Axboeb7c44ed2015-07-24 12:37:59 -0600134 bio_set_flag(bio, BIO_QUIET);
Tejun Heo143a87f2011-01-25 12:43:52 +0100135
Kent Overstreetf79ea412012-09-20 16:38:30 -0700136 bio_advance(bio, nbytes);
Tejun Heo143a87f2011-01-25 12:43:52 +0100137
138 /* don't actually finish bio if it's part of flush sequence */
Christoph Hellwige8064022016-10-20 15:12:13 +0200139 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200140 bio_endio(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +0100141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143void blk_dump_rq_flags(struct request *rq, char *msg)
144{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100145 printk(KERN_INFO "%s: dev %s: flags=%llx\n", msg,
146 rq->rq_disk ? rq->rq_disk->disk_name : "?",
Jens Axboe59533162013-05-23 12:25:08 +0200147 (unsigned long long) rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Tejun Heo83096eb2009-05-07 22:24:39 +0900149 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
150 (unsigned long long)blk_rq_pos(rq),
151 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Jens Axboeb4f42e22014-04-10 09:46:28 -0600152 printk(KERN_INFO " bio %p, biotail %p, len %u\n",
153 rq->bio, rq->biotail, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155EXPORT_SYMBOL(blk_dump_rq_flags);
156
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500157static void blk_delay_work(struct work_struct *work)
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200158{
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500159 struct request_queue *q;
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200160
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500161 q = container_of(work, struct request_queue, delay_work.work);
162 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200163 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500164 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/**
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500168 * blk_delay_queue - restart queueing after defined interval
169 * @q: The &struct request_queue in question
170 * @msecs: Delay in msecs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Description:
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500173 * Sometimes queueing needs to be postponed for a little while, to allow
174 * resources to come back. This function will make sure that queueing is
Bart Van Assche70460572012-11-28 13:45:56 +0100175 * restarted around the specified time. Queue lock must be held.
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500176 */
177void blk_delay_queue(struct request_queue *q, unsigned long msecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Bart Van Assche70460572012-11-28 13:45:56 +0100179 if (likely(!blk_queue_dead(q)))
180 queue_delayed_work(kblockd_workqueue, &q->delay_work,
181 msecs_to_jiffies(msecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500183EXPORT_SYMBOL(blk_delay_queue);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
Jens Axboe21491412015-12-28 13:01:22 -0700186 * blk_start_queue_async - asynchronously restart a previously stopped queue
187 * @q: The &struct request_queue in question
188 *
189 * Description:
190 * blk_start_queue_async() will clear the stop flag on the queue, and
191 * ensure that the request_fn for the queue is run from an async
192 * context.
193 **/
194void blk_start_queue_async(struct request_queue *q)
195{
196 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
197 blk_run_queue_async(q);
198}
199EXPORT_SYMBOL(blk_start_queue_async);
200
201/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200203 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * Description:
206 * blk_start_queue() will clear the stop flag on the queue, and call
207 * the request_fn for the queue if it was in a stopped state when
208 * entered. Also see blk_stop_queue(). Queue lock must be held.
209 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200210void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200212 WARN_ON(!irqs_disabled());
213
Nick Piggin75ad23b2008-04-29 14:48:33 +0200214 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200215 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217EXPORT_SYMBOL(blk_start_queue);
218
219/**
220 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200221 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * Description:
224 * The Linux block layer assumes that a block driver will consume all
225 * entries on the request queue when the request_fn strategy is called.
226 * Often this will not happen, because of hardware limitations (queue
227 * depth settings). If a device driver gets a 'queue full' response,
228 * or if it simply chooses not to queue more I/O at one point, it can
229 * call this function to prevent the request_fn from being called until
230 * the driver has signalled it's ready to go again. This happens by calling
231 * blk_start_queue() to restart queue operations. Queue lock must be held.
232 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200233void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Tejun Heo136b5722012-08-21 13:18:24 -0700235 cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200236 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238EXPORT_SYMBOL(blk_stop_queue);
239
240/**
241 * blk_sync_queue - cancel any pending callbacks on a queue
242 * @q: the queue
243 *
244 * Description:
245 * The block layer may perform asynchronous callback activity
246 * on a queue, such as calling the unplug function after a timeout.
247 * A block device may call blk_sync_queue to ensure that any
248 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200249 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * that its ->make_request_fn will not re-add plugging prior to calling
251 * this function.
252 *
Vivek Goyalda527772011-03-02 19:05:33 -0500253 * This function does not cancel any asynchronous activity arising
Masanari Iidada3dae52014-09-09 01:27:23 +0900254 * out of elevator or throttling code. That would require elevator_exit()
Tejun Heo5efd6112012-03-05 13:15:12 -0800255 * and blkcg_exit_queue() to be called with queue lock initialized.
Vivek Goyalda527772011-03-02 19:05:33 -0500256 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
258void blk_sync_queue(struct request_queue *q)
259{
Jens Axboe70ed28b2008-11-19 14:38:39 +0100260 del_timer_sync(&q->timeout);
Ming Leif04c1fe2013-12-26 21:31:36 +0800261
262 if (q->mq_ops) {
263 struct blk_mq_hw_ctx *hctx;
264 int i;
265
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600266 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe27489a32016-08-24 15:54:25 -0600267 cancel_work_sync(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600268 cancel_delayed_work_sync(&hctx->delay_work);
269 }
Ming Leif04c1fe2013-12-26 21:31:36 +0800270 } else {
271 cancel_delayed_work_sync(&q->delay_work);
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274EXPORT_SYMBOL(blk_sync_queue);
275
276/**
Bart Van Asschec246e802012-12-06 14:32:01 +0100277 * __blk_run_queue_uncond - run a queue whether or not it has been stopped
278 * @q: The queue to run
279 *
280 * Description:
281 * Invoke request handling on a queue if there are any pending requests.
282 * May be used to restart request handling after a request has completed.
283 * This variant runs the queue whether or not the queue has been
284 * stopped. Must be called with the queue lock held and interrupts
285 * disabled. See also @blk_run_queue.
286 */
287inline void __blk_run_queue_uncond(struct request_queue *q)
288{
289 if (unlikely(blk_queue_dead(q)))
290 return;
291
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100292 /*
293 * Some request_fn implementations, e.g. scsi_request_fn(), unlock
294 * the queue lock internally. As a result multiple threads may be
295 * running such a request function concurrently. Keep track of the
296 * number of active request_fn invocations such that blk_drain_queue()
297 * can wait until all these request_fn calls have finished.
298 */
299 q->request_fn_active++;
Bart Van Asschec246e802012-12-06 14:32:01 +0100300 q->request_fn(q);
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100301 q->request_fn_active--;
Bart Van Asschec246e802012-12-06 14:32:01 +0100302}
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200303EXPORT_SYMBOL_GPL(__blk_run_queue_uncond);
Bart Van Asschec246e802012-12-06 14:32:01 +0100304
305/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200306 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200308 *
309 * Description:
310 * See @blk_run_queue. This variant must be called with the queue lock
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200311 * held and interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200313void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Tejun Heoa538cd02009-04-23 11:05:17 +0900315 if (unlikely(blk_queue_stopped(q)))
316 return;
317
Bart Van Asschec246e802012-12-06 14:32:01 +0100318 __blk_run_queue_uncond(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200319}
320EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200321
Nick Piggin75ad23b2008-04-29 14:48:33 +0200322/**
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200323 * blk_run_queue_async - run a single device queue in workqueue context
324 * @q: The queue to run
325 *
326 * Description:
327 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
Bart Van Assche70460572012-11-28 13:45:56 +0100328 * of us. The caller must hold the queue lock.
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200329 */
330void blk_run_queue_async(struct request_queue *q)
331{
Bart Van Assche70460572012-11-28 13:45:56 +0100332 if (likely(!blk_queue_stopped(q) && !blk_queue_dead(q)))
Tejun Heoe7c2f962012-08-21 13:18:24 -0700333 mod_delayed_work(kblockd_workqueue, &q->delay_work, 0);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200334}
Jens Axboec21e6be2011-04-19 13:32:46 +0200335EXPORT_SYMBOL(blk_run_queue_async);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200336
337/**
Nick Piggin75ad23b2008-04-29 14:48:33 +0200338 * blk_run_queue - run a single device queue
339 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200340 *
341 * Description:
342 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900343 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200344 */
345void blk_run_queue(struct request_queue *q)
346{
347 unsigned long flags;
348
349 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200350 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 spin_unlock_irqrestore(q->queue_lock, flags);
352}
353EXPORT_SYMBOL(blk_run_queue);
354
Jens Axboe165125e2007-07-24 09:28:11 +0200355void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500356{
357 kobject_put(&q->kobj);
358}
Jens Axboed86e0e82011-05-27 07:44:43 +0200359EXPORT_SYMBOL(blk_put_queue);
Al Viro483f4af2006-03-18 18:34:37 -0500360
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200361/**
Bart Van Assche807592a2012-11-28 13:43:38 +0100362 * __blk_drain_queue - drain requests from request_queue
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200363 * @q: queue to drain
Tejun Heoc9a929d2011-10-19 14:42:16 +0200364 * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200365 *
Tejun Heoc9a929d2011-10-19 14:42:16 +0200366 * Drain requests from @q. If @drain_all is set, all requests are drained.
367 * If not, only ELVPRIV requests are drained. The caller is responsible
368 * for ensuring that no new requests which need to be drained are queued.
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200369 */
Bart Van Assche807592a2012-11-28 13:43:38 +0100370static void __blk_drain_queue(struct request_queue *q, bool drain_all)
371 __releases(q->queue_lock)
372 __acquires(q->queue_lock)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200373{
Asias He458f27a2012-06-15 08:45:25 +0200374 int i;
375
Bart Van Assche807592a2012-11-28 13:43:38 +0100376 lockdep_assert_held(q->queue_lock);
377
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200378 while (true) {
Tejun Heo481a7d62011-12-14 00:33:37 +0100379 bool drain = false;
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200380
Tejun Heob855b042012-03-06 21:24:55 +0100381 /*
382 * The caller might be trying to drain @q before its
383 * elevator is initialized.
384 */
385 if (q->elevator)
386 elv_drain_elevator(q);
387
Tejun Heo5efd6112012-03-05 13:15:12 -0800388 blkcg_drain_queue(q);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200389
Tejun Heo4eabc942011-12-15 20:03:04 +0100390 /*
391 * This function might be called on a queue which failed
Tejun Heob855b042012-03-06 21:24:55 +0100392 * driver init after queue creation or is not yet fully
393 * active yet. Some drivers (e.g. fd and loop) get unhappy
394 * in such cases. Kick queue iff dispatch queue has
395 * something on it and @q has request_fn set.
Tejun Heo4eabc942011-12-15 20:03:04 +0100396 */
Tejun Heob855b042012-03-06 21:24:55 +0100397 if (!list_empty(&q->queue_head) && q->request_fn)
Tejun Heo4eabc942011-12-15 20:03:04 +0100398 __blk_run_queue(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200399
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700400 drain |= q->nr_rqs_elvpriv;
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100401 drain |= q->request_fn_active;
Tejun Heo481a7d62011-12-14 00:33:37 +0100402
403 /*
404 * Unfortunately, requests are queued at and tracked from
405 * multiple places and there's no single counter which can
406 * be drained. Check all the queues and counters.
407 */
408 if (drain_all) {
Ming Leie97c2932014-09-25 23:23:46 +0800409 struct blk_flush_queue *fq = blk_get_flush_queue(q, NULL);
Tejun Heo481a7d62011-12-14 00:33:37 +0100410 drain |= !list_empty(&q->queue_head);
411 for (i = 0; i < 2; i++) {
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700412 drain |= q->nr_rqs[i];
Tejun Heo481a7d62011-12-14 00:33:37 +0100413 drain |= q->in_flight[i];
Ming Lei7c94e1c2014-09-25 23:23:43 +0800414 if (fq)
415 drain |= !list_empty(&fq->flush_queue[i]);
Tejun Heo481a7d62011-12-14 00:33:37 +0100416 }
417 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200418
Tejun Heo481a7d62011-12-14 00:33:37 +0100419 if (!drain)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200420 break;
Bart Van Assche807592a2012-11-28 13:43:38 +0100421
422 spin_unlock_irq(q->queue_lock);
423
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200424 msleep(10);
Bart Van Assche807592a2012-11-28 13:43:38 +0100425
426 spin_lock_irq(q->queue_lock);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200427 }
Asias He458f27a2012-06-15 08:45:25 +0200428
429 /*
430 * With queue marked dead, any woken up waiter will fail the
431 * allocation path, so the wakeup chaining is lost and we're
432 * left with hung waiters. We need to wake up those waiters.
433 */
434 if (q->request_fn) {
Tejun Heoa0516612012-06-26 15:05:44 -0700435 struct request_list *rl;
436
Tejun Heoa0516612012-06-26 15:05:44 -0700437 blk_queue_for_each_rl(rl, q)
438 for (i = 0; i < ARRAY_SIZE(rl->wait); i++)
439 wake_up_all(&rl->wait[i]);
Asias He458f27a2012-06-15 08:45:25 +0200440 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200441}
442
Tejun Heoc9a929d2011-10-19 14:42:16 +0200443/**
Tejun Heod7325802012-03-05 13:14:58 -0800444 * blk_queue_bypass_start - enter queue bypass mode
445 * @q: queue of interest
446 *
447 * In bypass mode, only the dispatch FIFO queue of @q is used. This
448 * function makes @q enter bypass mode and drains all requests which were
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800449 * throttled or issued before. On return, it's guaranteed that no request
Tejun Heo80fd9972012-04-13 14:50:53 -0700450 * is being throttled or has ELVPRIV set and blk_queue_bypass() %true
451 * inside queue or RCU read lock.
Tejun Heod7325802012-03-05 13:14:58 -0800452 */
453void blk_queue_bypass_start(struct request_queue *q)
454{
455 spin_lock_irq(q->queue_lock);
Tejun Heo776687b2014-07-01 10:29:17 -0600456 q->bypass_depth++;
Tejun Heod7325802012-03-05 13:14:58 -0800457 queue_flag_set(QUEUE_FLAG_BYPASS, q);
458 spin_unlock_irq(q->queue_lock);
459
Tejun Heo776687b2014-07-01 10:29:17 -0600460 /*
461 * Queues start drained. Skip actual draining till init is
462 * complete. This avoids lenghty delays during queue init which
463 * can happen many times during boot.
464 */
465 if (blk_queue_init_done(q)) {
Bart Van Assche807592a2012-11-28 13:43:38 +0100466 spin_lock_irq(q->queue_lock);
467 __blk_drain_queue(q, false);
468 spin_unlock_irq(q->queue_lock);
469
Tejun Heob82d4b12012-04-13 13:11:31 -0700470 /* ensure blk_queue_bypass() is %true inside RCU read lock */
471 synchronize_rcu();
472 }
Tejun Heod7325802012-03-05 13:14:58 -0800473}
474EXPORT_SYMBOL_GPL(blk_queue_bypass_start);
475
476/**
477 * blk_queue_bypass_end - leave queue bypass mode
478 * @q: queue of interest
479 *
480 * Leave bypass mode and restore the normal queueing behavior.
481 */
482void blk_queue_bypass_end(struct request_queue *q)
483{
484 spin_lock_irq(q->queue_lock);
485 if (!--q->bypass_depth)
486 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
487 WARN_ON_ONCE(q->bypass_depth < 0);
488 spin_unlock_irq(q->queue_lock);
489}
490EXPORT_SYMBOL_GPL(blk_queue_bypass_end);
491
Jens Axboeaed3ea92014-12-22 14:04:42 -0700492void blk_set_queue_dying(struct request_queue *q)
493{
Bart Van Assche1b856082016-08-16 16:48:36 -0700494 spin_lock_irq(q->queue_lock);
495 queue_flag_set(QUEUE_FLAG_DYING, q);
496 spin_unlock_irq(q->queue_lock);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700497
498 if (q->mq_ops)
499 blk_mq_wake_waiters(q);
500 else {
501 struct request_list *rl;
502
503 blk_queue_for_each_rl(rl, q) {
504 if (rl->rq_pool) {
505 wake_up(&rl->wait[BLK_RW_SYNC]);
506 wake_up(&rl->wait[BLK_RW_ASYNC]);
507 }
508 }
509 }
510}
511EXPORT_SYMBOL_GPL(blk_set_queue_dying);
512
Tejun Heod7325802012-03-05 13:14:58 -0800513/**
Tejun Heoc9a929d2011-10-19 14:42:16 +0200514 * blk_cleanup_queue - shutdown a request queue
515 * @q: request queue to shutdown
516 *
Bart Van Asschec246e802012-12-06 14:32:01 +0100517 * Mark @q DYING, drain all pending requests, mark @q DEAD, destroy and
518 * put it. All future requests will be failed immediately with -ENODEV.
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500519 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100520void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500521{
Tejun Heoc9a929d2011-10-19 14:42:16 +0200522 spinlock_t *lock = q->queue_lock;
Jens Axboee3335de2008-09-18 09:22:54 -0700523
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100524 /* mark @q DYING, no new request or merges will be allowed afterwards */
Al Viro483f4af2006-03-18 18:34:37 -0500525 mutex_lock(&q->sysfs_lock);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700526 blk_set_queue_dying(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200527 spin_lock_irq(lock);
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800528
Tejun Heo80fd9972012-04-13 14:50:53 -0700529 /*
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100530 * A dying queue is permanently in bypass mode till released. Note
Tejun Heo80fd9972012-04-13 14:50:53 -0700531 * that, unlike blk_queue_bypass_start(), we aren't performing
532 * synchronize_rcu() after entering bypass mode to avoid the delay
533 * as some drivers create and destroy a lot of queues while
534 * probing. This is still safe because blk_release_queue() will be
535 * called only after the queue refcnt drops to zero and nothing,
536 * RCU or not, would be traversing the queue by then.
537 */
Tejun Heo6ecf23a2012-03-05 13:14:59 -0800538 q->bypass_depth++;
539 queue_flag_set(QUEUE_FLAG_BYPASS, q);
540
Tejun Heoc9a929d2011-10-19 14:42:16 +0200541 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
542 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100543 queue_flag_set(QUEUE_FLAG_DYING, q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200544 spin_unlock_irq(lock);
545 mutex_unlock(&q->sysfs_lock);
546
Bart Van Asschec246e802012-12-06 14:32:01 +0100547 /*
548 * Drain all requests queued before DYING marking. Set DEAD flag to
549 * prevent that q->request_fn() gets invoked after draining finished.
550 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400551 blk_freeze_queue(q);
552 spin_lock_irq(lock);
553 if (!q->mq_ops)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800554 __blk_drain_queue(q, true);
Bart Van Asschec246e802012-12-06 14:32:01 +0100555 queue_flag_set(QUEUE_FLAG_DEAD, q);
Bart Van Assche807592a2012-11-28 13:43:38 +0100556 spin_unlock_irq(lock);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200557
Dan Williams5a48fc12015-10-21 13:20:23 -0400558 /* for synchronous bio-based driver finish in-flight integrity i/o */
559 blk_flush_integrity();
560
Tejun Heoc9a929d2011-10-19 14:42:16 +0200561 /* @q won't process any more request, flush async actions */
Jan Karadc3b17c2017-02-02 15:56:50 +0100562 del_timer_sync(&q->backing_dev_info->laptop_mode_wb_timer);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200563 blk_sync_queue(q);
564
Bart Van Assche45a9c9d2014-12-09 16:57:48 +0100565 if (q->mq_ops)
566 blk_mq_free_queue(q);
Dan Williams3ef28e82015-10-21 13:20:12 -0400567 percpu_ref_exit(&q->q_usage_counter);
Bart Van Assche45a9c9d2014-12-09 16:57:48 +0100568
Asias He5e5cfac2012-05-24 23:28:52 +0800569 spin_lock_irq(lock);
570 if (q->queue_lock != &q->__queue_lock)
571 q->queue_lock = &q->__queue_lock;
572 spin_unlock_irq(lock);
573
Jan Karadc3b17c2017-02-02 15:56:50 +0100574 bdi_unregister(q->backing_dev_info);
Dan Williams0dba1312017-02-01 14:05:23 -0800575 put_disk_devt(q->disk_devt);
NeilBrown6cd18e72015-04-27 14:12:22 +1000576
Tejun Heoc9a929d2011-10-19 14:42:16 +0200577 /* @q is and will stay empty, shutdown and put */
Al Viro483f4af2006-03-18 18:34:37 -0500578 blk_put_queue(q);
579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580EXPORT_SYMBOL(blk_cleanup_queue);
581
David Rientjes271508d2015-03-24 16:21:16 -0700582/* Allocate memory local to the request queue */
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700583static void *alloc_request_simple(gfp_t gfp_mask, void *data)
David Rientjes271508d2015-03-24 16:21:16 -0700584{
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700585 struct request_queue *q = data;
586
587 return kmem_cache_alloc_node(request_cachep, gfp_mask, q->node);
David Rientjes271508d2015-03-24 16:21:16 -0700588}
589
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700590static void free_request_simple(void *element, void *data)
David Rientjes271508d2015-03-24 16:21:16 -0700591{
592 kmem_cache_free(request_cachep, element);
593}
594
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700595static void *alloc_request_size(gfp_t gfp_mask, void *data)
596{
597 struct request_queue *q = data;
598 struct request *rq;
599
600 rq = kmalloc_node(sizeof(struct request) + q->cmd_size, gfp_mask,
601 q->node);
602 if (rq && q->init_rq_fn && q->init_rq_fn(q, rq, gfp_mask) < 0) {
603 kfree(rq);
604 rq = NULL;
605 }
606 return rq;
607}
608
609static void free_request_size(void *element, void *data)
610{
611 struct request_queue *q = data;
612
613 if (q->exit_rq_fn)
614 q->exit_rq_fn(q, element);
615 kfree(element);
616}
617
Tejun Heo5b788ce2012-06-04 20:40:59 -0700618int blk_init_rl(struct request_list *rl, struct request_queue *q,
619 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400621 if (unlikely(rl->rq_pool))
622 return 0;
623
Tejun Heo5b788ce2012-06-04 20:40:59 -0700624 rl->q = q;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200625 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
626 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200627 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
628 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700630 if (q->cmd_size) {
631 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
632 alloc_request_size, free_request_size,
633 q, gfp_mask, q->node);
634 } else {
635 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ,
636 alloc_request_simple, free_request_simple,
637 q, gfp_mask, q->node);
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (!rl->rq_pool)
640 return -ENOMEM;
641
642 return 0;
643}
644
Tejun Heo5b788ce2012-06-04 20:40:59 -0700645void blk_exit_rl(struct request_list *rl)
646{
647 if (rl->rq_pool)
648 mempool_destroy(rl->rq_pool);
649}
650
Jens Axboe165125e2007-07-24 09:28:11 +0200651struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Ezequiel Garciac304a512012-11-10 10:39:44 +0100653 return blk_alloc_queue_node(gfp_mask, NUMA_NO_NODE);
Christoph Lameter19460892005-06-23 00:08:19 -0700654}
655EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100657int blk_queue_enter(struct request_queue *q, bool nowait)
Dan Williams3ef28e82015-10-21 13:20:12 -0400658{
659 while (true) {
660 int ret;
661
662 if (percpu_ref_tryget_live(&q->q_usage_counter))
663 return 0;
664
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100665 if (nowait)
Dan Williams3ef28e82015-10-21 13:20:12 -0400666 return -EBUSY;
667
668 ret = wait_event_interruptible(q->mq_freeze_wq,
669 !atomic_read(&q->mq_freeze_depth) ||
670 blk_queue_dying(q));
671 if (blk_queue_dying(q))
672 return -ENODEV;
673 if (ret)
674 return ret;
675 }
676}
677
678void blk_queue_exit(struct request_queue *q)
679{
680 percpu_ref_put(&q->q_usage_counter);
681}
682
683static void blk_queue_usage_counter_release(struct percpu_ref *ref)
684{
685 struct request_queue *q =
686 container_of(ref, struct request_queue, q_usage_counter);
687
688 wake_up_all(&q->mq_freeze_wq);
689}
690
Christoph Hellwig287922e2015-10-30 20:57:30 +0800691static void blk_rq_timed_out_timer(unsigned long data)
692{
693 struct request_queue *q = (struct request_queue *)data;
694
695 kblockd_schedule_work(&q->timeout_work);
696}
697
Jens Axboe165125e2007-07-24 09:28:11 +0200698struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700699{
Jens Axboe165125e2007-07-24 09:28:11 +0200700 struct request_queue *q;
Christoph Lameter19460892005-06-23 00:08:19 -0700701
Jens Axboe8324aa92008-01-29 14:51:59 +0100702 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700703 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (!q)
705 return NULL;
706
Dan Carpenter00380a42012-03-23 09:58:54 +0100707 q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask);
Tejun Heoa73f7302011-12-14 00:33:37 +0100708 if (q->id < 0)
Ming Lei3d2936f2014-05-27 23:35:14 +0800709 goto fail_q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100710
Kent Overstreet54efd502015-04-23 22:37:18 -0700711 q->bio_split = bioset_create(BIO_POOL_SIZE, 0);
712 if (!q->bio_split)
713 goto fail_id;
714
Jan Karad03f6cd2017-02-02 15:56:51 +0100715 q->backing_dev_info = bdi_alloc_node(gfp_mask, node_id);
716 if (!q->backing_dev_info)
717 goto fail_split;
718
Jan Karadc3b17c2017-02-02 15:56:50 +0100719 q->backing_dev_info->ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300720 (VM_MAX_READAHEAD * 1024) / PAGE_SIZE;
Jan Karadc3b17c2017-02-02 15:56:50 +0100721 q->backing_dev_info->capabilities = BDI_CAP_CGROUP_WRITEBACK;
722 q->backing_dev_info->name = "block";
Mike Snitzer51514122011-11-23 10:59:13 +0100723 q->node = node_id;
Jens Axboe0989a022009-06-12 14:42:56 +0200724
Jan Karadc3b17c2017-02-02 15:56:50 +0100725 setup_timer(&q->backing_dev_info->laptop_mode_wb_timer,
Matthew Garrett31373d02010-04-06 14:25:14 +0200726 laptop_mode_timer_fn, (unsigned long) q);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700727 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
Tejun Heob855b042012-03-06 21:24:55 +0100728 INIT_LIST_HEAD(&q->queue_head);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700729 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +0100730 INIT_LIST_HEAD(&q->icq_list);
Tejun Heo4eef3042012-03-05 13:15:18 -0800731#ifdef CONFIG_BLK_CGROUP
Tejun Heoe8989fa2012-03-05 13:15:20 -0800732 INIT_LIST_HEAD(&q->blkg_list);
Tejun Heo4eef3042012-03-05 13:15:18 -0800733#endif
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500734 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500735
Jens Axboe8324aa92008-01-29 14:51:59 +0100736 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Al Viro483f4af2006-03-18 18:34:37 -0500738 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700739 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500740
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500741 /*
742 * By default initialize queue_lock to internal lock and driver can
743 * override it later if need be.
744 */
745 q->queue_lock = &q->__queue_lock;
746
Tejun Heob82d4b12012-04-13 13:11:31 -0700747 /*
748 * A queue starts its life with bypass turned on to avoid
749 * unnecessary bypass on/off overhead and nasty surprises during
Tejun Heo749fefe2012-09-20 14:08:52 -0700750 * init. The initial bypass will be finished when the queue is
751 * registered by blk_register_queue().
Tejun Heob82d4b12012-04-13 13:11:31 -0700752 */
753 q->bypass_depth = 1;
754 __set_bit(QUEUE_FLAG_BYPASS, &q->queue_flags);
755
Jens Axboe320ae512013-10-24 09:20:05 +0100756 init_waitqueue_head(&q->mq_freeze_wq);
757
Dan Williams3ef28e82015-10-21 13:20:12 -0400758 /*
759 * Init percpu_ref in atomic mode so that it's faster to shutdown.
760 * See blk_register_queue() for details.
761 */
762 if (percpu_ref_init(&q->q_usage_counter,
763 blk_queue_usage_counter_release,
764 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Mikulas Patockafff49962013-10-14 12:11:36 -0400765 goto fail_bdi;
Tejun Heof51b8022012-03-05 13:15:05 -0800766
Dan Williams3ef28e82015-10-21 13:20:12 -0400767 if (blkcg_init_queue(q))
768 goto fail_ref;
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100771
Dan Williams3ef28e82015-10-21 13:20:12 -0400772fail_ref:
773 percpu_ref_exit(&q->q_usage_counter);
Mikulas Patockafff49962013-10-14 12:11:36 -0400774fail_bdi:
Jan Karad03f6cd2017-02-02 15:56:51 +0100775 bdi_put(q->backing_dev_info);
Kent Overstreet54efd502015-04-23 22:37:18 -0700776fail_split:
777 bioset_free(q->bio_split);
Tejun Heoa73f7302011-12-14 00:33:37 +0100778fail_id:
779 ida_simple_remove(&blk_queue_ida, q->id);
780fail_q:
781 kmem_cache_free(blk_requestq_cachep, q);
782 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
Christoph Lameter19460892005-06-23 00:08:19 -0700784EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786/**
787 * blk_init_queue - prepare a request queue for use with a block device
788 * @rfn: The function to be called to process requests that have been
789 * placed on the queue.
790 * @lock: Request queue spin lock
791 *
792 * Description:
793 * If a block device wishes to use the standard request handling procedures,
794 * which sorts requests and coalesces adjacent requests, then it must
795 * call blk_init_queue(). The function @rfn will be called when there
796 * are requests on the queue that need to be processed. If the device
797 * supports plugging, then @rfn may not be called immediately when requests
798 * are available on the queue, but may be called at some time later instead.
799 * Plugged queues are generally unplugged when a buffer belonging to one
800 * of the requests on the queue is needed, or due to memory pressure.
801 *
802 * @rfn is not required, or even expected, to remove all requests off the
803 * queue, but only as many as it can handle at a time. If it does leave
804 * requests on the queue, it is responsible for arranging that the requests
805 * get dealt with eventually.
806 *
807 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200808 * request queue; this lock will be taken also from interrupt context, so irq
809 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200811 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * it didn't succeed.
813 *
814 * Note:
815 * blk_init_queue() must be paired with a blk_cleanup_queue() call
816 * when the block device is deactivated (such as at module unload).
817 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700818
Jens Axboe165125e2007-07-24 09:28:11 +0200819struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Ezequiel Garciac304a512012-11-10 10:39:44 +0100821 return blk_init_queue_node(rfn, lock, NUMA_NO_NODE);
Christoph Lameter19460892005-06-23 00:08:19 -0700822}
823EXPORT_SYMBOL(blk_init_queue);
824
Jens Axboe165125e2007-07-24 09:28:11 +0200825struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700826blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
827{
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300828 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300830 q = blk_alloc_queue_node(GFP_KERNEL, node_id);
831 if (!q)
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600832 return NULL;
833
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300834 q->request_fn = rfn;
835 if (lock)
836 q->queue_lock = lock;
837 if (blk_init_allocated_queue(q) < 0) {
838 blk_cleanup_queue(q);
839 return NULL;
840 }
Christoph Hellwig18741982014-02-10 09:29:00 -0700841
Mike Snitzer7982e902014-03-08 17:20:01 -0700842 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200843}
844EXPORT_SYMBOL(blk_init_queue_node);
845
Jens Axboedece1632015-11-05 10:41:16 -0700846static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio);
Mike Snitzer336b7e12015-05-11 14:06:32 -0400847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300849int blk_init_allocated_queue(struct request_queue *q)
850{
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700851 q->fq = blk_alloc_flush_queue(q, NUMA_NO_NODE, q->cmd_size);
Ming Leiba483382014-09-25 23:23:44 +0800852 if (!q->fq)
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300853 return -ENOMEM;
Mike Snitzer7982e902014-03-08 17:20:01 -0700854
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700855 if (q->init_rq_fn && q->init_rq_fn(q, q->fq->flush_rq, GFP_KERNEL))
856 goto out_free_flush_queue;
857
Tejun Heoa0516612012-06-26 15:05:44 -0700858 if (blk_init_rl(&q->root_rl, q, GFP_KERNEL))
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700859 goto out_exit_flush_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Christoph Hellwig287922e2015-10-30 20:57:30 +0800861 INIT_WORK(&q->timeout_work, blk_timeout_work);
Tejun Heo60ea8222012-09-20 14:09:30 -0700862 q->queue_flags |= QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500863
Jens Axboef3b144a2009-03-06 08:48:33 +0100864 /*
865 * This also sets hw/phys segments, boundary and size
866 */
Jens Axboec20e8de2011-09-12 12:03:37 +0200867 blk_queue_make_request(q, blk_queue_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Alan Stern44ec9542007-02-20 11:01:57 -0500869 q->sg_reserved_size = INT_MAX;
870
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600871 /* Protect q->elevator from elevator_change */
872 mutex_lock(&q->sysfs_lock);
873
Tejun Heob82d4b12012-04-13 13:11:31 -0700874 /* init elevator */
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600875 if (elevator_init(q, NULL)) {
876 mutex_unlock(&q->sysfs_lock);
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700877 goto out_exit_flush_rq;
Tomoki Sekiyamaeb1c1602013-10-15 16:42:16 -0600878 }
879
880 mutex_unlock(&q->sysfs_lock);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300881 return 0;
Dave Jones708f04d2014-03-20 15:03:58 -0600882
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700883out_exit_flush_rq:
884 if (q->exit_rq_fn)
885 q->exit_rq_fn(q, q->fq->flush_rq);
886out_free_flush_queue:
Ming Leiba483382014-09-25 23:23:44 +0800887 blk_free_flush_queue(q->fq);
Jens Axboe87760e52016-11-09 12:38:14 -0700888 wbt_exit(q);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +0300889 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
Mike Snitzer51514122011-11-23 10:59:13 +0100891EXPORT_SYMBOL(blk_init_allocated_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Tejun Heo09ac46c2011-12-14 00:33:38 +0100893bool blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100895 if (likely(!blk_queue_dying(q))) {
Tejun Heo09ac46c2011-12-14 00:33:38 +0100896 __blk_get_queue(q);
897 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
Tejun Heo09ac46c2011-12-14 00:33:38 +0100900 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
Jens Axboed86e0e82011-05-27 07:44:43 +0200902EXPORT_SYMBOL(blk_get_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Tejun Heo5b788ce2012-06-04 20:40:59 -0700904static inline void blk_free_request(struct request_list *rl, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Christoph Hellwige8064022016-10-20 15:12:13 +0200906 if (rq->rq_flags & RQF_ELVPRIV) {
Tejun Heo5b788ce2012-06-04 20:40:59 -0700907 elv_put_request(rl->q, rq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100908 if (rq->elv.icq)
Tejun Heo11a31222012-02-07 07:51:30 +0100909 put_io_context(rq->elv.icq->ioc);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100910 }
911
Tejun Heo5b788ce2012-06-04 20:40:59 -0700912 mempool_free(rq, rl->rq_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/*
916 * ioc_batching returns true if the ioc is a valid batching request and
917 * should be given priority access to a request.
918 */
Jens Axboe165125e2007-07-24 09:28:11 +0200919static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 if (!ioc)
922 return 0;
923
924 /*
925 * Make sure the process is able to allocate at least 1 request
926 * even if the batch times out, otherwise we could theoretically
927 * lose wakeups.
928 */
929 return ioc->nr_batch_requests == q->nr_batching ||
930 (ioc->nr_batch_requests > 0
931 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
932}
933
934/*
935 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
936 * will cause the process to be a "batcher" on all queues in the system. This
937 * is the behaviour we want though - once it gets a wakeup it should be given
938 * a nice run.
939 */
Jens Axboe165125e2007-07-24 09:28:11 +0200940static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
942 if (!ioc || ioc_batching(q, ioc))
943 return;
944
945 ioc->nr_batch_requests = q->nr_batching;
946 ioc->last_waited = jiffies;
947}
948
Tejun Heo5b788ce2012-06-04 20:40:59 -0700949static void __freed_request(struct request_list *rl, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700951 struct request_queue *q = rl->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Tejun Heod40f75a2015-05-22 17:13:42 -0400953 if (rl->count[sync] < queue_congestion_off_threshold(q))
954 blk_clear_congested(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Jens Axboe1faa16d2009-04-06 14:48:01 +0200956 if (rl->count[sync] + 1 <= q->nr_requests) {
957 if (waitqueue_active(&rl->wait[sync]))
958 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Tejun Heo5b788ce2012-06-04 20:40:59 -0700960 blk_clear_rl_full(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962}
963
964/*
965 * A request has just been released. Account for it, update the full and
966 * congestion status, wake up any waiters. Called under q->queue_lock.
967 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200968static void freed_request(struct request_list *rl, bool sync,
969 req_flags_t rq_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700971 struct request_queue *q = rl->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700973 q->nr_rqs[sync]--;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200974 rl->count[sync]--;
Christoph Hellwige8064022016-10-20 15:12:13 +0200975 if (rq_flags & RQF_ELVPRIV)
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700976 q->nr_rqs_elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Tejun Heo5b788ce2012-06-04 20:40:59 -0700978 __freed_request(rl, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jens Axboe1faa16d2009-04-06 14:48:01 +0200980 if (unlikely(rl->starved[sync ^ 1]))
Tejun Heo5b788ce2012-06-04 20:40:59 -0700981 __freed_request(rl, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600984int blk_update_nr_requests(struct request_queue *q, unsigned int nr)
985{
986 struct request_list *rl;
Tejun Heod40f75a2015-05-22 17:13:42 -0400987 int on_thresh, off_thresh;
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600988
989 spin_lock_irq(q->queue_lock);
990 q->nr_requests = nr;
991 blk_queue_congestion_threshold(q);
Tejun Heod40f75a2015-05-22 17:13:42 -0400992 on_thresh = queue_congestion_on_threshold(q);
993 off_thresh = queue_congestion_off_threshold(q);
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600994
995 blk_queue_for_each_rl(rl, q) {
Tejun Heod40f75a2015-05-22 17:13:42 -0400996 if (rl->count[BLK_RW_SYNC] >= on_thresh)
997 blk_set_congested(rl, BLK_RW_SYNC);
998 else if (rl->count[BLK_RW_SYNC] < off_thresh)
999 blk_clear_congested(rl, BLK_RW_SYNC);
1000
1001 if (rl->count[BLK_RW_ASYNC] >= on_thresh)
1002 blk_set_congested(rl, BLK_RW_ASYNC);
1003 else if (rl->count[BLK_RW_ASYNC] < off_thresh)
1004 blk_clear_congested(rl, BLK_RW_ASYNC);
1005
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001006 if (rl->count[BLK_RW_SYNC] >= q->nr_requests) {
1007 blk_set_rl_full(rl, BLK_RW_SYNC);
1008 } else {
1009 blk_clear_rl_full(rl, BLK_RW_SYNC);
1010 wake_up(&rl->wait[BLK_RW_SYNC]);
1011 }
1012
1013 if (rl->count[BLK_RW_ASYNC] >= q->nr_requests) {
1014 blk_set_rl_full(rl, BLK_RW_ASYNC);
1015 } else {
1016 blk_clear_rl_full(rl, BLK_RW_ASYNC);
1017 wake_up(&rl->wait[BLK_RW_ASYNC]);
1018 }
1019 }
1020
1021 spin_unlock_irq(q->queue_lock);
1022 return 0;
1023}
1024
Tejun Heoda8303c2011-10-19 14:33:05 +02001025/**
Tejun Heoa06e05e2012-06-04 20:40:55 -07001026 * __get_request - get a free request
Tejun Heo5b788ce2012-06-04 20:40:59 -07001027 * @rl: request list to allocate from
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001028 * @op: operation and flags
Tejun Heoda8303c2011-10-19 14:33:05 +02001029 * @bio: bio to allocate request for (can be %NULL)
1030 * @gfp_mask: allocation mask
1031 *
1032 * Get a free request from @q. This function may fail under memory
1033 * pressure or if @q is dead.
1034 *
Masanari Iidada3dae52014-09-09 01:27:23 +09001035 * Must be called with @q->queue_lock held and,
Joe Lawrencea492f072014-08-28 08:15:21 -06001036 * Returns ERR_PTR on failure, with @q->queue_lock held.
1037 * Returns request pointer on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001039static struct request *__get_request(struct request_list *rl, unsigned int op,
1040 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Tejun Heo5b788ce2012-06-04 20:40:59 -07001042 struct request_queue *q = rl->q;
Tejun Heob6792812012-03-05 13:15:23 -08001043 struct request *rq;
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001044 struct elevator_type *et = q->elevator->type;
1045 struct io_context *ioc = rq_ioc(bio);
Tejun Heof1f8cc92011-12-14 00:33:42 +01001046 struct io_cq *icq = NULL;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001047 const bool is_sync = op_is_sync(op);
Tejun Heo75eb6c32011-10-19 14:31:22 +02001048 int may_queue;
Christoph Hellwige8064022016-10-20 15:12:13 +02001049 req_flags_t rq_flags = RQF_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Bart Van Assche3f3299d2012-11-28 13:42:38 +01001051 if (unlikely(blk_queue_dying(q)))
Joe Lawrencea492f072014-08-28 08:15:21 -06001052 return ERR_PTR(-ENODEV);
Tejun Heoda8303c2011-10-19 14:33:05 +02001053
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001054 may_queue = elv_may_queue(q, op);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001055 if (may_queue == ELV_MQUEUE_NO)
1056 goto rq_starved;
1057
Jens Axboe1faa16d2009-04-06 14:48:01 +02001058 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
1059 if (rl->count[is_sync]+1 >= q->nr_requests) {
Tejun Heof2dbd762011-12-14 00:33:40 +01001060 /*
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001061 * The queue will fill after this allocation, so set
1062 * it as full, and mark this process as "batching".
1063 * This process will be allowed to complete a batch of
1064 * requests, others will be blocked.
1065 */
Tejun Heo5b788ce2012-06-04 20:40:59 -07001066 if (!blk_rl_full(rl, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001067 ioc_set_batching(q, ioc);
Tejun Heo5b788ce2012-06-04 20:40:59 -07001068 blk_set_rl_full(rl, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001069 } else {
1070 if (may_queue != ELV_MQUEUE_MUST
1071 && !ioc_batching(q, ioc)) {
1072 /*
1073 * The queue is full and the allocating
1074 * process is not a "batcher", and not
1075 * exempted by the IO scheduler
1076 */
Joe Lawrencea492f072014-08-28 08:15:21 -06001077 return ERR_PTR(-ENOMEM);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001078 }
1079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
Tejun Heod40f75a2015-05-22 17:13:42 -04001081 blk_set_congested(rl, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
Jens Axboe082cf692005-06-28 16:35:11 +02001084 /*
1085 * Only allow batching queuers to allocate up to 50% over the defined
1086 * limit of requests, otherwise we could have thousands of requests
1087 * allocated with any setting of ->nr_requests
1088 */
Jens Axboe1faa16d2009-04-06 14:48:01 +02001089 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Joe Lawrencea492f072014-08-28 08:15:21 -06001090 return ERR_PTR(-ENOMEM);
Hugh Dickinsfd782a42005-06-29 15:15:40 +01001091
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001092 q->nr_rqs[is_sync]++;
Jens Axboe1faa16d2009-04-06 14:48:01 +02001093 rl->count[is_sync]++;
1094 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02001095
Tejun Heof1f8cc92011-12-14 00:33:42 +01001096 /*
1097 * Decide whether the new request will be managed by elevator. If
Christoph Hellwige8064022016-10-20 15:12:13 +02001098 * so, mark @rq_flags and increment elvpriv. Non-zero elvpriv will
Tejun Heof1f8cc92011-12-14 00:33:42 +01001099 * prevent the current elevator from being destroyed until the new
1100 * request is freed. This guarantees icq's won't be destroyed and
1101 * makes creating new ones safe.
1102 *
Christoph Hellwige6f7f932017-01-25 11:17:11 +01001103 * Flush requests do not use the elevator so skip initialization.
1104 * This allows a request to share the flush and elevator data.
1105 *
Tejun Heof1f8cc92011-12-14 00:33:42 +01001106 * Also, lookup icq while holding queue_lock. If it doesn't exist,
1107 * it will be created after releasing queue_lock.
1108 */
Christoph Hellwige6f7f932017-01-25 11:17:11 +01001109 if (!op_is_flush(op) && !blk_queue_bypass(q)) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001110 rq_flags |= RQF_ELVPRIV;
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001111 q->nr_rqs_elvpriv++;
Tejun Heof1f8cc92011-12-14 00:33:42 +01001112 if (et->icq_cache && ioc)
1113 icq = ioc_lookup_icq(ioc, q);
Mike Snitzer9d5a4e92011-02-11 11:05:46 +01001114 }
Tejun Heocb98fc82005-10-28 08:29:39 +02001115
Jens Axboef253b862010-10-24 22:06:02 +02001116 if (blk_queue_io_stat(q))
Christoph Hellwige8064022016-10-20 15:12:13 +02001117 rq_flags |= RQF_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 spin_unlock_irq(q->queue_lock);
1119
Tejun Heo29e2b092012-04-19 16:29:21 -07001120 /* allocate and init request */
Tejun Heo5b788ce2012-06-04 20:40:59 -07001121 rq = mempool_alloc(rl->rq_pool, gfp_mask);
Tejun Heo29e2b092012-04-19 16:29:21 -07001122 if (!rq)
Tejun Heob6792812012-03-05 13:15:23 -08001123 goto fail_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Tejun Heo29e2b092012-04-19 16:29:21 -07001125 blk_rq_init(q, rq);
Tejun Heoa0516612012-06-26 15:05:44 -07001126 blk_rq_set_rl(rq, rl);
Adam Manzanares5dc8b362016-10-17 11:27:28 -07001127 blk_rq_set_prio(rq, ioc);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001128 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +02001129 rq->rq_flags = rq_flags;
Tejun Heo29e2b092012-04-19 16:29:21 -07001130
Tejun Heoaaf7c682012-04-19 16:29:22 -07001131 /* init elvpriv */
Christoph Hellwige8064022016-10-20 15:12:13 +02001132 if (rq_flags & RQF_ELVPRIV) {
Tejun Heoaaf7c682012-04-19 16:29:22 -07001133 if (unlikely(et->icq_cache && !icq)) {
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001134 if (ioc)
1135 icq = ioc_create_icq(ioc, q, gfp_mask);
Tejun Heoaaf7c682012-04-19 16:29:22 -07001136 if (!icq)
1137 goto fail_elvpriv;
Tejun Heo29e2b092012-04-19 16:29:21 -07001138 }
Tejun Heoaaf7c682012-04-19 16:29:22 -07001139
1140 rq->elv.icq = icq;
1141 if (unlikely(elv_set_request(q, rq, bio, gfp_mask)))
1142 goto fail_elvpriv;
1143
1144 /* @rq->elv.icq holds io_context until @rq is freed */
Tejun Heo29e2b092012-04-19 16:29:21 -07001145 if (icq)
1146 get_io_context(icq->ioc);
1147 }
Tejun Heoaaf7c682012-04-19 16:29:22 -07001148out:
Jens Axboe88ee5ef2005-11-12 11:09:12 +01001149 /*
1150 * ioc may be NULL here, and ioc_batching will be false. That's
1151 * OK, if the queue is under the request limit then requests need
1152 * not count toward the nr_batch_requests limit. There will always
1153 * be some limit enforced by BLK_BATCH_TIME.
1154 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (ioc_batching(q, ioc))
1156 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +01001157
Mike Christiee6a40b02016-06-05 14:32:11 -05001158 trace_block_getrq(q, bio, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return rq;
Tejun Heob6792812012-03-05 13:15:23 -08001160
Tejun Heoaaf7c682012-04-19 16:29:22 -07001161fail_elvpriv:
1162 /*
1163 * elvpriv init failed. ioc, icq and elvpriv aren't mempool backed
1164 * and may fail indefinitely under memory pressure and thus
1165 * shouldn't stall IO. Treat this request as !elvpriv. This will
1166 * disturb iosched and blkcg but weird is bettern than dead.
1167 */
Robert Elliott7b2b10e2014-08-27 10:50:36 -05001168 printk_ratelimited(KERN_WARNING "%s: dev %s: request aux data allocation failed, iosched may be disturbed\n",
Jan Karadc3b17c2017-02-02 15:56:50 +01001169 __func__, dev_name(q->backing_dev_info->dev));
Tejun Heoaaf7c682012-04-19 16:29:22 -07001170
Christoph Hellwige8064022016-10-20 15:12:13 +02001171 rq->rq_flags &= ~RQF_ELVPRIV;
Tejun Heoaaf7c682012-04-19 16:29:22 -07001172 rq->elv.icq = NULL;
1173
1174 spin_lock_irq(q->queue_lock);
Tejun Heo8a5ecdd2012-06-04 20:40:58 -07001175 q->nr_rqs_elvpriv--;
Tejun Heoaaf7c682012-04-19 16:29:22 -07001176 spin_unlock_irq(q->queue_lock);
1177 goto out;
1178
Tejun Heob6792812012-03-05 13:15:23 -08001179fail_alloc:
1180 /*
1181 * Allocation failed presumably due to memory. Undo anything we
1182 * might have messed up.
1183 *
1184 * Allocating task should really be put onto the front of the wait
1185 * queue, but this is pretty rare.
1186 */
1187 spin_lock_irq(q->queue_lock);
Christoph Hellwige8064022016-10-20 15:12:13 +02001188 freed_request(rl, is_sync, rq_flags);
Tejun Heob6792812012-03-05 13:15:23 -08001189
1190 /*
1191 * in the very unlikely event that allocation failed and no
1192 * requests for this direction was pending, mark us starved so that
1193 * freeing of a request in the other direction will notice
1194 * us. another possible fix would be to split the rq mempool into
1195 * READ and WRITE
1196 */
1197rq_starved:
1198 if (unlikely(rl->count[is_sync] == 0))
1199 rl->starved[is_sync] = 1;
Joe Lawrencea492f072014-08-28 08:15:21 -06001200 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Tejun Heoda8303c2011-10-19 14:33:05 +02001203/**
Tejun Heoa06e05e2012-06-04 20:40:55 -07001204 * get_request - get a free request
Tejun Heoda8303c2011-10-19 14:33:05 +02001205 * @q: request_queue to allocate request from
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001206 * @op: operation and flags
Tejun Heoda8303c2011-10-19 14:33:05 +02001207 * @bio: bio to allocate request for (can be %NULL)
Tejun Heoa06e05e2012-06-04 20:40:55 -07001208 * @gfp_mask: allocation mask
Nick Piggind6344532005-06-28 20:45:14 -07001209 *
Mel Gormand0164ad2015-11-06 16:28:21 -08001210 * Get a free request from @q. If %__GFP_DIRECT_RECLAIM is set in @gfp_mask,
1211 * this function keeps retrying under memory pressure and fails iff @q is dead.
Tejun Heoda8303c2011-10-19 14:33:05 +02001212 *
Masanari Iidada3dae52014-09-09 01:27:23 +09001213 * Must be called with @q->queue_lock held and,
Joe Lawrencea492f072014-08-28 08:15:21 -06001214 * Returns ERR_PTR on failure, with @q->queue_lock held.
1215 * Returns request pointer on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001217static struct request *get_request(struct request_queue *q, unsigned int op,
1218 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001220 const bool is_sync = op_is_sync(op);
Tejun Heoa06e05e2012-06-04 20:40:55 -07001221 DEFINE_WAIT(wait);
Tejun Heoa0516612012-06-26 15:05:44 -07001222 struct request_list *rl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct request *rq;
Tejun Heoa0516612012-06-26 15:05:44 -07001224
1225 rl = blk_get_rl(q, bio); /* transferred to @rq on success */
Tejun Heoa06e05e2012-06-04 20:40:55 -07001226retry:
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001227 rq = __get_request(rl, op, bio, gfp_mask);
Joe Lawrencea492f072014-08-28 08:15:21 -06001228 if (!IS_ERR(rq))
Tejun Heoa06e05e2012-06-04 20:40:55 -07001229 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Mel Gormand0164ad2015-11-06 16:28:21 -08001231 if (!gfpflags_allow_blocking(gfp_mask) || unlikely(blk_queue_dying(q))) {
Tejun Heoa0516612012-06-26 15:05:44 -07001232 blk_put_rl(rl);
Joe Lawrencea492f072014-08-28 08:15:21 -06001233 return rq;
Tejun Heoa0516612012-06-26 15:05:44 -07001234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Tejun Heoa06e05e2012-06-04 20:40:55 -07001236 /* wait on @rl and retry */
1237 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
1238 TASK_UNINTERRUPTIBLE);
Tejun Heoda8303c2011-10-19 14:33:05 +02001239
Mike Christiee6a40b02016-06-05 14:32:11 -05001240 trace_block_sleeprq(q, bio, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Tejun Heoa06e05e2012-06-04 20:40:55 -07001242 spin_unlock_irq(q->queue_lock);
1243 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Tejun Heoa06e05e2012-06-04 20:40:55 -07001245 /*
1246 * After sleeping, we become a "batching" process and will be able
1247 * to allocate at least one request, and up to a big batch of them
1248 * for a small period time. See ioc_batching, ioc_set_batching
1249 */
Tejun Heoa06e05e2012-06-04 20:40:55 -07001250 ioc_set_batching(q, current->io_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Tejun Heoa06e05e2012-06-04 20:40:55 -07001252 spin_lock_irq(q->queue_lock);
1253 finish_wait(&rl->wait[is_sync], &wait);
Jens Axboe2056a782006-03-23 20:00:26 +01001254
Tejun Heoa06e05e2012-06-04 20:40:55 -07001255 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Jens Axboe320ae512013-10-24 09:20:05 +01001258static struct request *blk_old_get_request(struct request_queue *q, int rw,
1259 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 struct request *rq;
1262
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001263 /* create ioc upfront */
1264 create_io_context(gfp_mask, q->node);
1265
Nick Piggind6344532005-06-28 20:45:14 -07001266 spin_lock_irq(q->queue_lock);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001267 rq = get_request(q, rw, NULL, gfp_mask);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001268 if (IS_ERR(rq)) {
Tejun Heoda8303c2011-10-19 14:33:05 +02001269 spin_unlock_irq(q->queue_lock);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001270 return rq;
1271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +02001273 /* q->queue_lock is unlocked at this point */
1274 rq->__data_len = 0;
1275 rq->__sector = (sector_t) -1;
1276 rq->bio = rq->biotail = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return rq;
1278}
Jens Axboe320ae512013-10-24 09:20:05 +01001279
1280struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
1281{
1282 if (q->mq_ops)
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001283 return blk_mq_alloc_request(q, rw,
1284 (gfp_mask & __GFP_DIRECT_RECLAIM) ?
1285 0 : BLK_MQ_REQ_NOWAIT);
Jens Axboe320ae512013-10-24 09:20:05 +01001286 else
1287 return blk_old_get_request(q, rw, gfp_mask);
1288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289EXPORT_SYMBOL(blk_get_request);
1290
1291/**
1292 * blk_requeue_request - put a request back on queue
1293 * @q: request queue where request should be inserted
1294 * @rq: request to be inserted
1295 *
1296 * Description:
1297 * Drivers often keep queueing requests until the hardware cannot accept
1298 * more, when that condition happens we need to put the request back
1299 * on the queue. Must be called with queue lock held.
1300 */
Jens Axboe165125e2007-07-24 09:28:11 +02001301void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001303 blk_delete_timer(rq);
1304 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001305 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -07001306 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboe2056a782006-03-23 20:00:26 +01001307
Christoph Hellwige8064022016-10-20 15:12:13 +02001308 if (rq->rq_flags & RQF_QUEUED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 blk_queue_end_tag(q, rq);
1310
James Bottomleyba396a62009-05-27 14:17:08 +02001311 BUG_ON(blk_queued_rq(rq));
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 elv_requeue_request(q, rq);
1314}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315EXPORT_SYMBOL(blk_requeue_request);
1316
Jens Axboe73c10102011-03-08 13:19:51 +01001317static void add_acct_request(struct request_queue *q, struct request *rq,
1318 int where)
1319{
Jens Axboe320ae512013-10-24 09:20:05 +01001320 blk_account_io_start(rq, true);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001321 __elv_add_request(q, rq, where);
Jens Axboe73c10102011-03-08 13:19:51 +01001322}
1323
Tejun Heo074a7ac2008-08-25 19:56:14 +09001324static void part_round_stats_single(int cpu, struct hd_struct *part,
1325 unsigned long now)
1326{
Jens Axboe7276d022014-05-09 15:48:23 -06001327 int inflight;
1328
Tejun Heo074a7ac2008-08-25 19:56:14 +09001329 if (now == part->stamp)
1330 return;
1331
Jens Axboe7276d022014-05-09 15:48:23 -06001332 inflight = part_in_flight(part);
1333 if (inflight) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001334 __part_stat_add(cpu, part, time_in_queue,
Jens Axboe7276d022014-05-09 15:48:23 -06001335 inflight * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001336 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1337 }
1338 part->stamp = now;
1339}
1340
1341/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001342 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1343 * @cpu: cpu number for stats access
1344 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
1346 * The average IO queue length and utilisation statistics are maintained
1347 * by observing the current state of the queue length and the amount of
1348 * time it has been in this state for.
1349 *
1350 * Normally, that accounting is done on IO completion, but that can result
1351 * in more than a second's worth of IO being accounted for within any one
1352 * second, leading to >100% utilisation. To deal with that, we call this
1353 * function to do a round-off before returning the results when reading
1354 * /proc/diskstats. This accounts immediately for all queue usage up to
1355 * the current jiffies and restarts the counters again.
1356 */
Tejun Heoc9959052008-08-25 19:47:21 +09001357void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001358{
1359 unsigned long now = jiffies;
1360
Tejun Heo074a7ac2008-08-25 19:56:14 +09001361 if (part->partno)
1362 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1363 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001364}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001365EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001366
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01001367#ifdef CONFIG_PM
Lin Mingc8158812013-03-23 11:42:27 +08001368static void blk_pm_put_request(struct request *rq)
1369{
Christoph Hellwige8064022016-10-20 15:12:13 +02001370 if (rq->q->dev && !(rq->rq_flags & RQF_PM) && !--rq->q->nr_pending)
Lin Mingc8158812013-03-23 11:42:27 +08001371 pm_runtime_mark_last_busy(rq->q->dev);
1372}
1373#else
1374static inline void blk_pm_put_request(struct request *rq) {}
1375#endif
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377/*
1378 * queue lock must be held
1379 */
Jens Axboe165125e2007-07-24 09:28:11 +02001380void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Christoph Hellwige8064022016-10-20 15:12:13 +02001382 req_flags_t rq_flags = req->rq_flags;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (unlikely(!q))
1385 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Christoph Hellwig6f5ba582014-02-07 10:22:37 -08001387 if (q->mq_ops) {
1388 blk_mq_free_request(req);
1389 return;
1390 }
1391
Lin Mingc8158812013-03-23 11:42:27 +08001392 blk_pm_put_request(req);
1393
Tejun Heo8922e162005-10-20 16:23:44 +02001394 elv_completed_request(q, req);
1395
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001396 /* this is a bio leak */
1397 WARN_ON(req->bio != NULL);
1398
Jens Axboe87760e52016-11-09 12:38:14 -07001399 wbt_done(q->rq_wb, &req->issue_stat);
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /*
1402 * Request may not have originated from ll_rw_blk. if not,
1403 * it didn't come out of our reserved rq pools
1404 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001405 if (rq_flags & RQF_ALLOCED) {
Tejun Heoa0516612012-06-26 15:05:44 -07001406 struct request_list *rl = blk_rq_rl(req);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001407 bool sync = op_is_sync(req->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe360f92c2014-04-09 20:27:01 -06001410 BUG_ON(ELV_ON_HASH(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Tejun Heoa0516612012-06-26 15:05:44 -07001412 blk_free_request(rl, req);
Christoph Hellwige8064022016-10-20 15:12:13 +02001413 freed_request(rl, sync, rq_flags);
Tejun Heoa0516612012-06-26 15:05:44 -07001414 blk_put_rl(rl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416}
Mike Christie6e39b692005-11-11 05:30:24 -06001417EXPORT_SYMBOL_GPL(__blk_put_request);
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419void blk_put_request(struct request *req)
1420{
Jens Axboe165125e2007-07-24 09:28:11 +02001421 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Jens Axboe320ae512013-10-24 09:20:05 +01001423 if (q->mq_ops)
1424 blk_mq_free_request(req);
1425 else {
1426 unsigned long flags;
1427
1428 spin_lock_irqsave(q->queue_lock, flags);
1429 __blk_put_request(q, req);
1430 spin_unlock_irqrestore(q->queue_lock, flags);
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433EXPORT_SYMBOL(blk_put_request);
1434
Jens Axboe320ae512013-10-24 09:20:05 +01001435bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1436 struct bio *bio)
Jens Axboe73c10102011-03-08 13:19:51 +01001437{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001438 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001439
Jens Axboe73c10102011-03-08 13:19:51 +01001440 if (!ll_back_merge_fn(q, req, bio))
1441 return false;
1442
Tejun Heo8c1cf6b2013-01-11 13:06:34 -08001443 trace_block_bio_backmerge(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001444
1445 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1446 blk_rq_set_mixed_merge(req);
1447
1448 req->biotail->bi_next = bio;
1449 req->biotail = bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001450 req->__data_len += bio->bi_iter.bi_size;
Jens Axboe73c10102011-03-08 13:19:51 +01001451 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1452
Jens Axboe320ae512013-10-24 09:20:05 +01001453 blk_account_io_start(req, false);
Jens Axboe73c10102011-03-08 13:19:51 +01001454 return true;
1455}
1456
Jens Axboe320ae512013-10-24 09:20:05 +01001457bool bio_attempt_front_merge(struct request_queue *q, struct request *req,
1458 struct bio *bio)
Jens Axboe73c10102011-03-08 13:19:51 +01001459{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001460 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001461
Jens Axboe73c10102011-03-08 13:19:51 +01001462 if (!ll_front_merge_fn(q, req, bio))
1463 return false;
1464
Tejun Heo8c1cf6b2013-01-11 13:06:34 -08001465 trace_block_bio_frontmerge(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001466
1467 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1468 blk_rq_set_mixed_merge(req);
1469
Jens Axboe73c10102011-03-08 13:19:51 +01001470 bio->bi_next = req->bio;
1471 req->bio = bio;
1472
Kent Overstreet4f024f32013-10-11 15:44:27 -07001473 req->__sector = bio->bi_iter.bi_sector;
1474 req->__data_len += bio->bi_iter.bi_size;
Jens Axboe73c10102011-03-08 13:19:51 +01001475 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1476
Jens Axboe320ae512013-10-24 09:20:05 +01001477 blk_account_io_start(req, false);
Jens Axboe73c10102011-03-08 13:19:51 +01001478 return true;
1479}
1480
Tejun Heobd87b582011-10-19 14:33:08 +02001481/**
Jens Axboe320ae512013-10-24 09:20:05 +01001482 * blk_attempt_plug_merge - try to merge with %current's plugged list
Tejun Heobd87b582011-10-19 14:33:08 +02001483 * @q: request_queue new bio is being queued at
1484 * @bio: new bio being queued
1485 * @request_count: out parameter for number of traversed plugged requests
Randy Dunlapccc26002015-10-30 18:36:16 -07001486 * @same_queue_rq: pointer to &struct request that gets filled in when
1487 * another request associated with @q is found on the plug list
1488 * (optional, may be %NULL)
Tejun Heobd87b582011-10-19 14:33:08 +02001489 *
1490 * Determine whether @bio being queued on @q can be merged with a request
1491 * on %current's plugged list. Returns %true if merge was successful,
1492 * otherwise %false.
1493 *
Tejun Heo07c2bd32012-02-08 09:19:42 +01001494 * Plugging coalesces IOs from the same issuer for the same purpose without
1495 * going through @q->queue_lock. As such it's more of an issuing mechanism
1496 * than scheduling, and the request, while may have elvpriv data, is not
1497 * added on the elevator at this point. In addition, we don't have
1498 * reliable access to the elevator outside queue lock. Only check basic
1499 * merging parameters without querying the elevator.
Robert Elliottda41a582014-05-20 16:46:26 -05001500 *
1501 * Caller must ensure !blk_queue_nomerges(q) beforehand.
Jens Axboe73c10102011-03-08 13:19:51 +01001502 */
Jens Axboe320ae512013-10-24 09:20:05 +01001503bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
Shaohua Li5b3f3412015-05-08 10:51:33 -07001504 unsigned int *request_count,
1505 struct request **same_queue_rq)
Jens Axboe73c10102011-03-08 13:19:51 +01001506{
1507 struct blk_plug *plug;
1508 struct request *rq;
1509 bool ret = false;
Shaohua Li92f399c2013-10-29 12:01:03 -06001510 struct list_head *plug_list;
Jens Axboe73c10102011-03-08 13:19:51 +01001511
Tejun Heobd87b582011-10-19 14:33:08 +02001512 plug = current->plug;
Jens Axboe73c10102011-03-08 13:19:51 +01001513 if (!plug)
1514 goto out;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001515 *request_count = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01001516
Shaohua Li92f399c2013-10-29 12:01:03 -06001517 if (q->mq_ops)
1518 plug_list = &plug->mq_list;
1519 else
1520 plug_list = &plug->list;
1521
1522 list_for_each_entry_reverse(rq, plug_list, queuelist) {
Jens Axboe73c10102011-03-08 13:19:51 +01001523 int el_ret;
1524
Shaohua Li5b3f3412015-05-08 10:51:33 -07001525 if (rq->q == q) {
Shaohua Li1b2e19f2012-04-06 11:37:47 -06001526 (*request_count)++;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001527 /*
1528 * Only blk-mq multiple hardware queues case checks the
1529 * rq in the same queue, there should be only one such
1530 * rq in a queue
1531 **/
1532 if (same_queue_rq)
1533 *same_queue_rq = rq;
1534 }
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001535
Tejun Heo07c2bd32012-02-08 09:19:42 +01001536 if (rq->q != q || !blk_rq_merge_ok(rq, bio))
Jens Axboe73c10102011-03-08 13:19:51 +01001537 continue;
1538
Tejun Heo050c8ea2012-02-08 09:19:38 +01001539 el_ret = blk_try_merge(rq, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001540 if (el_ret == ELEVATOR_BACK_MERGE) {
1541 ret = bio_attempt_back_merge(q, rq, bio);
1542 if (ret)
1543 break;
1544 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1545 ret = bio_attempt_front_merge(q, rq, bio);
1546 if (ret)
1547 break;
1548 }
1549 }
1550out:
1551 return ret;
1552}
1553
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001554unsigned int blk_plug_queued_count(struct request_queue *q)
1555{
1556 struct blk_plug *plug;
1557 struct request *rq;
1558 struct list_head *plug_list;
1559 unsigned int ret = 0;
1560
1561 plug = current->plug;
1562 if (!plug)
1563 goto out;
1564
1565 if (q->mq_ops)
1566 plug_list = &plug->mq_list;
1567 else
1568 plug_list = &plug->list;
1569
1570 list_for_each_entry(rq, plug_list, queuelist) {
1571 if (rq->q == q)
1572 ret++;
1573 }
1574out:
1575 return ret;
1576}
1577
Jens Axboe86db1e22008-01-29 14:53:40 +01001578void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001579{
Jens Axboe1eff9d32016-08-05 15:35:16 -06001580 if (bio->bi_opf & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001581 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001582
Tejun Heo52d9e672006-01-06 09:49:58 +01001583 req->errors = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001584 req->__sector = bio->bi_iter.bi_sector;
Adam Manzanares5dc8b362016-10-17 11:27:28 -07001585 if (ioprio_valid(bio_prio(bio)))
1586 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001587 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001588}
1589
Jens Axboedece1632015-11-05 10:41:16 -07001590static blk_qc_t blk_queue_bio(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Jens Axboe73c10102011-03-08 13:19:51 +01001592 struct blk_plug *plug;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001593 int el_ret, where = ELEVATOR_INSERT_SORT;
Jens Axboe73c10102011-03-08 13:19:51 +01001594 struct request *req;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001595 unsigned int request_count = 0;
Jens Axboe87760e52016-11-09 12:38:14 -07001596 unsigned int wb_acct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 /*
1599 * low level driver can indicate that it wants pages above a
1600 * certain limit bounced to low memory (ie for highmem, or even
1601 * ISA dma in theory)
1602 */
1603 blk_queue_bounce(q, &bio);
1604
Junichi Nomura23688bf2015-12-22 10:23:44 -07001605 blk_queue_split(q, &bio, q->bio_split);
1606
Darrick J. Wongffecfd12013-02-21 16:42:55 -08001607 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001608 bio->bi_error = -EIO;
1609 bio_endio(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001610 return BLK_QC_T_NONE;
Darrick J. Wongffecfd12013-02-21 16:42:55 -08001611 }
1612
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001613 if (op_is_flush(bio->bi_opf)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001614 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001615 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001616 goto get_rq;
1617 }
1618
Jens Axboe73c10102011-03-08 13:19:51 +01001619 /*
1620 * Check if we can merge with the plugged list before grabbing
1621 * any locks.
1622 */
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001623 if (!blk_queue_nomerges(q)) {
1624 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
Jens Axboedece1632015-11-05 10:41:16 -07001625 return BLK_QC_T_NONE;
Jeff Moyer0809e3a2015-10-20 23:13:51 +08001626 } else
1627 request_count = blk_plug_queued_count(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001628
1629 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001632 if (el_ret == ELEVATOR_BACK_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001633 if (bio_attempt_back_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001634 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001635 if (!attempt_back_merge(q, req))
1636 elv_merged_request(q, req, el_ret);
1637 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001638 }
Jens Axboe73c10102011-03-08 13:19:51 +01001639 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001640 if (bio_attempt_front_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001641 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001642 if (!attempt_front_merge(q, req))
1643 elv_merged_request(q, req, el_ret);
1644 goto out_unlock;
1645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648get_rq:
Jens Axboe87760e52016-11-09 12:38:14 -07001649 wb_acct = wbt_wait(q->rq_wb, bio, q->queue_lock);
1650
Nick Piggin450991b2005-06-28 20:45:13 -07001651 /*
1652 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001653 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001654 */
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001655 req = get_request(q, bio->bi_opf, bio, GFP_NOIO);
Joe Lawrencea492f072014-08-28 08:15:21 -06001656 if (IS_ERR(req)) {
Jens Axboe87760e52016-11-09 12:38:14 -07001657 __wbt_done(q->rq_wb, wb_acct);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001658 bio->bi_error = PTR_ERR(req);
1659 bio_endio(bio);
Tejun Heoda8303c2011-10-19 14:33:05 +02001660 goto out_unlock;
1661 }
Nick Piggind6344532005-06-28 20:45:14 -07001662
Jens Axboe87760e52016-11-09 12:38:14 -07001663 wbt_track(&req->issue_stat, wb_acct);
1664
Nick Piggin450991b2005-06-28 20:45:13 -07001665 /*
1666 * After dropping the lock and possibly sleeping here, our request
1667 * may now be mergeable after it had proven unmergeable (above).
1668 * We don't worry about that case for efficiency. It won't happen
1669 * often, and the elevators are able to handle it.
1670 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001671 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Tao Ma9562ad92011-10-24 16:11:30 +02001673 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
Jens Axboe11ccf112011-07-26 15:01:15 +02001674 req->cpu = raw_smp_processor_id();
Tejun Heodd831002010-09-03 11:56:16 +02001675
Jens Axboe73c10102011-03-08 13:19:51 +01001676 plug = current->plug;
Jens Axboe721a9602011-03-09 11:56:30 +01001677 if (plug) {
Jens Axboedc6d36c2011-04-12 10:28:28 +02001678 /*
1679 * If this is the first request added after a plug, fire
Jianpeng Ma7aef2e72013-09-11 13:21:07 -06001680 * of a plug trace.
Ming Lei0a6219a2016-11-16 18:07:05 +08001681 *
1682 * @request_count may become stale because of schedule
1683 * out, so check plug list again.
Jens Axboedc6d36c2011-04-12 10:28:28 +02001684 */
Ming Lei0a6219a2016-11-16 18:07:05 +08001685 if (!request_count || list_empty(&plug->list))
Jens Axboedc6d36c2011-04-12 10:28:28 +02001686 trace_block_plug(q);
Shaohua Li3540d5e2011-11-16 09:21:50 +01001687 else {
Shaohua Li50d24c32016-11-03 17:03:53 -07001688 struct request *last = list_entry_rq(plug->list.prev);
1689 if (request_count >= BLK_MAX_REQUEST_COUNT ||
1690 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE) {
Shaohua Li3540d5e2011-11-16 09:21:50 +01001691 blk_flush_plug_list(plug, false);
Shaohua Li019ceb72011-11-16 09:21:50 +01001692 trace_block_plug(q);
1693 }
Jens Axboe73c10102011-03-08 13:19:51 +01001694 }
Shaohua Lia6327162011-08-24 16:04:32 +02001695 list_add_tail(&req->queuelist, &plug->list);
Jens Axboe320ae512013-10-24 09:20:05 +01001696 blk_account_io_start(req, true);
Jens Axboe73c10102011-03-08 13:19:51 +01001697 } else {
1698 spin_lock_irq(q->queue_lock);
1699 add_acct_request(q, req, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02001700 __blk_run_queue(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001701out_unlock:
1702 spin_unlock_irq(q->queue_lock);
1703 }
Jens Axboedece1632015-11-05 10:41:16 -07001704
1705 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
1708/*
1709 * If bio->bi_dev is a partition, remap the location
1710 */
1711static inline void blk_partition_remap(struct bio *bio)
1712{
1713 struct block_device *bdev = bio->bi_bdev;
1714
Shaun Tancheff778889d2016-11-21 15:52:23 -06001715 /*
1716 * Zone reset does not include bi_size so bio_sectors() is always 0.
1717 * Include a test for the reset op code and perform the remap if needed.
1718 */
1719 if (bdev != bdev->bd_contains &&
1720 (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001722
Kent Overstreet4f024f32013-10-11 15:44:27 -07001723 bio->bi_iter.bi_sector += p->start_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001725
Mike Snitzerd07335e2010-11-16 12:52:38 +01001726 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1727 bdev->bd_dev,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001728 bio->bi_iter.bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 }
1730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732static void handle_bad_sector(struct bio *bio)
1733{
1734 char b[BDEVNAME_SIZE];
1735
1736 printk(KERN_INFO "attempt to access beyond end of device\n");
Mike Christie6296b962016-06-05 14:32:21 -05001737 printk(KERN_INFO "%s: rw=%d, want=%Lu, limit=%Lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 bdevname(bio->bi_bdev, b),
Jens Axboe1eff9d32016-08-05 15:35:16 -06001739 bio->bi_opf,
Kent Overstreetf73a1c72012-09-25 15:05:12 -07001740 (unsigned long long)bio_end_sector(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001741 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743
Akinobu Mitac17bb492006-12-08 02:39:46 -08001744#ifdef CONFIG_FAIL_MAKE_REQUEST
1745
1746static DECLARE_FAULT_ATTR(fail_make_request);
1747
1748static int __init setup_fail_make_request(char *str)
1749{
1750 return setup_fault_attr(&fail_make_request, str);
1751}
1752__setup("fail_make_request=", setup_fail_make_request);
1753
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001754static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001755{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001756 return part->make_it_fail && should_fail(&fail_make_request, bytes);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001757}
1758
1759static int __init fail_make_request_debugfs(void)
1760{
Akinobu Mitadd48c082011-08-03 16:21:01 -07001761 struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
1762 NULL, &fail_make_request);
1763
Duan Jiong21f9fcd2014-04-11 15:58:56 +08001764 return PTR_ERR_OR_ZERO(dir);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001765}
1766
1767late_initcall(fail_make_request_debugfs);
1768
1769#else /* CONFIG_FAIL_MAKE_REQUEST */
1770
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001771static inline bool should_fail_request(struct hd_struct *part,
1772 unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001773{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001774 return false;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001775}
1776
1777#endif /* CONFIG_FAIL_MAKE_REQUEST */
1778
Jens Axboec07e2b42007-07-18 13:27:58 +02001779/*
1780 * Check whether this bio extends beyond the end of the device.
1781 */
1782static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1783{
1784 sector_t maxsector;
1785
1786 if (!nr_sectors)
1787 return 0;
1788
1789 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001790 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001791 if (maxsector) {
Kent Overstreet4f024f32013-10-11 15:44:27 -07001792 sector_t sector = bio->bi_iter.bi_sector;
Jens Axboec07e2b42007-07-18 13:27:58 +02001793
1794 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1795 /*
1796 * This may well happen - the kernel calls bread()
1797 * without checking the size of the device, e.g., when
1798 * mounting a device.
1799 */
1800 handle_bad_sector(bio);
1801 return 1;
1802 }
1803 }
1804
1805 return 0;
1806}
1807
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001808static noinline_for_stack bool
1809generic_make_request_checks(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Jens Axboe165125e2007-07-24 09:28:11 +02001811 struct request_queue *q;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001812 int nr_sectors = bio_sectors(bio);
Jens Axboe51fd77b2007-11-02 08:49:08 +01001813 int err = -EIO;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001814 char b[BDEVNAME_SIZE];
1815 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Jens Axboec07e2b42007-07-18 13:27:58 +02001819 if (bio_check_eod(bio, nr_sectors))
1820 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001822 q = bdev_get_queue(bio->bi_bdev);
1823 if (unlikely(!q)) {
1824 printk(KERN_ERR
1825 "generic_make_request: Trying to access "
1826 "nonexistent block-device %s (%Lu)\n",
1827 bdevname(bio->bi_bdev, b),
Kent Overstreet4f024f32013-10-11 15:44:27 -07001828 (long long) bio->bi_iter.bi_sector);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001829 goto end_io;
1830 }
1831
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001832 part = bio->bi_bdev->bd_part;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001833 if (should_fail_request(part, bio->bi_iter.bi_size) ||
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001834 should_fail_request(&part_to_disk(part)->part0,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001835 bio->bi_iter.bi_size))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001836 goto end_io;
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 /*
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001839 * If this device has partitions, remap block n
1840 * of partition p to block n+start(p) of the disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001842 blk_partition_remap(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001844 if (bio_check_eod(bio, nr_sectors))
1845 goto end_io;
1846
1847 /*
1848 * Filter flush bio's early so that make_request based
1849 * drivers without flush support don't have to worry
1850 * about them.
1851 */
Jens Axboef3a8ab72017-01-27 09:08:23 -07001852 if (op_is_flush(bio->bi_opf) &&
Jens Axboec888a8f2016-04-13 13:33:19 -06001853 !test_bit(QUEUE_FLAG_WC, &q->queue_flags)) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001854 bio->bi_opf &= ~(REQ_PREFLUSH | REQ_FUA);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001855 if (!nr_sectors) {
1856 err = 0;
Tejun Heoa7384672008-11-28 13:32:03 +09001857 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Christoph Hellwig288dab82016-06-09 16:00:36 +02001861 switch (bio_op(bio)) {
1862 case REQ_OP_DISCARD:
1863 if (!blk_queue_discard(q))
1864 goto not_supported;
1865 break;
1866 case REQ_OP_SECURE_ERASE:
1867 if (!blk_queue_secure_erase(q))
1868 goto not_supported;
1869 break;
1870 case REQ_OP_WRITE_SAME:
1871 if (!bdev_write_same(bio->bi_bdev))
1872 goto not_supported;
Nicolai Stange58886782016-12-04 14:56:39 +01001873 break;
Shaun Tancheff2d253442016-10-18 15:40:32 +09001874 case REQ_OP_ZONE_REPORT:
1875 case REQ_OP_ZONE_RESET:
1876 if (!bdev_is_zoned(bio->bi_bdev))
1877 goto not_supported;
Christoph Hellwig288dab82016-06-09 16:00:36 +02001878 break;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001879 case REQ_OP_WRITE_ZEROES:
1880 if (!bdev_write_zeroes_sectors(bio->bi_bdev))
1881 goto not_supported;
1882 break;
Christoph Hellwig288dab82016-06-09 16:00:36 +02001883 default:
1884 break;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Tejun Heo7f4b35d2012-06-04 20:40:56 -07001887 /*
1888 * Various block parts want %current->io_context and lazy ioc
1889 * allocation ends up trading a lot of pain for a small amount of
1890 * memory. Just allocate it upfront. This may fail and block
1891 * layer knows how to live with it.
1892 */
1893 create_io_context(GFP_ATOMIC, q->node);
1894
Tejun Heoae118892015-08-18 14:55:20 -07001895 if (!blkcg_bio_issue_check(q, bio))
1896 return false;
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001897
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001898 trace_block_bio_queue(q, bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001899 return true;
Tejun Heoa7384672008-11-28 13:32:03 +09001900
Christoph Hellwig288dab82016-06-09 16:00:36 +02001901not_supported:
1902 err = -EOPNOTSUPP;
Tejun Heoa7384672008-11-28 13:32:03 +09001903end_io:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001904 bio->bi_error = err;
1905 bio_endio(bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001906 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001909/**
1910 * generic_make_request - hand a buffer to its device driver for I/O
1911 * @bio: The bio describing the location in memory and on the device.
1912 *
1913 * generic_make_request() is used to make I/O requests of block
1914 * devices. It is passed a &struct bio, which describes the I/O that needs
1915 * to be done.
1916 *
1917 * generic_make_request() does not return any status. The
1918 * success/failure status of the request, along with notification of
1919 * completion, is delivered asynchronously through the bio->bi_end_io
1920 * function described (one day) else where.
1921 *
1922 * The caller of generic_make_request must make sure that bi_io_vec
1923 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1924 * set to describe the device address, and the
1925 * bi_end_io and optionally bi_private are set to describe how
1926 * completion notification should be signaled.
1927 *
1928 * generic_make_request and the drivers it calls may use bi_next if this
1929 * bio happens to be merged with someone else, and may resubmit the bio to
1930 * a lower device by calling into generic_make_request recursively, which
1931 * means the bio should NOT be touched after the call to ->make_request_fn.
Neil Brownd89d8792007-05-01 09:53:42 +02001932 */
Jens Axboedece1632015-11-05 10:41:16 -07001933blk_qc_t generic_make_request(struct bio *bio)
Neil Brownd89d8792007-05-01 09:53:42 +02001934{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001935 struct bio_list bio_list_on_stack;
Jens Axboedece1632015-11-05 10:41:16 -07001936 blk_qc_t ret = BLK_QC_T_NONE;
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001937
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001938 if (!generic_make_request_checks(bio))
Jens Axboedece1632015-11-05 10:41:16 -07001939 goto out;
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001940
1941 /*
1942 * We only want one ->make_request_fn to be active at a time, else
1943 * stack usage with stacked devices could be a problem. So use
1944 * current->bio_list to keep a list of requests submited by a
1945 * make_request_fn function. current->bio_list is also used as a
1946 * flag to say if generic_make_request is currently active in this
1947 * task or not. If it is NULL, then no make_request is active. If
1948 * it is non-NULL, then a make_request is active, and new requests
1949 * should be added at the tail
1950 */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001951 if (current->bio_list) {
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001952 bio_list_add(current->bio_list, bio);
Jens Axboedece1632015-11-05 10:41:16 -07001953 goto out;
Neil Brownd89d8792007-05-01 09:53:42 +02001954 }
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001955
Neil Brownd89d8792007-05-01 09:53:42 +02001956 /* following loop may be a bit non-obvious, and so deserves some
1957 * explanation.
1958 * Before entering the loop, bio->bi_next is NULL (as all callers
1959 * ensure that) so we have a list with a single bio.
1960 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001961 * we assign bio_list to a pointer to the bio_list_on_stack,
1962 * thus initialising the bio_list of new bios to be
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001963 * added. ->make_request() may indeed add some more bios
Neil Brownd89d8792007-05-01 09:53:42 +02001964 * through a recursive call to generic_make_request. If it
1965 * did, we find a non-NULL value in bio_list and re-enter the loop
1966 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001967 * of the top of the list (no pretending) and so remove it from
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001968 * bio_list, and call into ->make_request() again.
Neil Brownd89d8792007-05-01 09:53:42 +02001969 */
1970 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001971 bio_list_init(&bio_list_on_stack);
1972 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001973 do {
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001974 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
1975
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001976 if (likely(blk_queue_enter(q, false) == 0)) {
Jens Axboedece1632015-11-05 10:41:16 -07001977 ret = q->make_request_fn(q, bio);
Dan Williams3ef28e82015-10-21 13:20:12 -04001978
1979 blk_queue_exit(q);
1980
1981 bio = bio_list_pop(current->bio_list);
1982 } else {
1983 struct bio *bio_next = bio_list_pop(current->bio_list);
1984
1985 bio_io_error(bio);
1986 bio = bio_next;
1987 }
Neil Brownd89d8792007-05-01 09:53:42 +02001988 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001989 current->bio_list = NULL; /* deactivate */
Jens Axboedece1632015-11-05 10:41:16 -07001990
1991out:
1992 return ret;
Neil Brownd89d8792007-05-01 09:53:42 +02001993}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994EXPORT_SYMBOL(generic_make_request);
1995
1996/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001997 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 * @bio: The &struct bio which describes the I/O
1999 *
2000 * submit_bio() is very similar in purpose to generic_make_request(), and
2001 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02002002 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 *
2004 */
Mike Christie4e49ea42016-06-05 14:31:41 -05002005blk_qc_t submit_bio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Jens Axboebf2de6f2007-09-27 13:01:25 +02002007 /*
2008 * If it's a regular read/write or a barrier with data attached,
2009 * go through the normal accounting stuff before submission.
2010 */
Martin K. Petersene2a60da2012-09-18 12:19:25 -04002011 if (bio_has_data(bio)) {
Martin K. Petersen4363ac72012-09-18 12:19:27 -04002012 unsigned int count;
2013
Mike Christie95fe6c12016-06-05 14:31:48 -05002014 if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
Martin K. Petersen4363ac72012-09-18 12:19:27 -04002015 count = bdev_logical_block_size(bio->bi_bdev) >> 9;
2016 else
2017 count = bio_sectors(bio);
2018
Mike Christiea8ebb052016-06-05 14:31:45 -05002019 if (op_is_write(bio_op(bio))) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02002020 count_vm_events(PGPGOUT, count);
2021 } else {
Kent Overstreet4f024f32013-10-11 15:44:27 -07002022 task_io_account_read(bio->bi_iter.bi_size);
Jens Axboebf2de6f2007-09-27 13:01:25 +02002023 count_vm_events(PGPGIN, count);
2024 }
2025
2026 if (unlikely(block_dump)) {
2027 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02002028 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002029 current->comm, task_pid_nr(current),
Mike Christiea8ebb052016-06-05 14:31:45 -05002030 op_is_write(bio_op(bio)) ? "WRITE" : "READ",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002031 (unsigned long long)bio->bi_iter.bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02002032 bdevname(bio->bi_bdev, b),
2033 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02002034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 }
2036
Jens Axboedece1632015-11-05 10:41:16 -07002037 return generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039EXPORT_SYMBOL(submit_bio);
2040
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002041/**
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002042 * blk_cloned_rq_check_limits - Helper function to check a cloned request
2043 * for new the queue limits
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002044 * @q: the queue
2045 * @rq: the request being checked
2046 *
2047 * Description:
2048 * @rq may have been made based on weaker limitations of upper-level queues
2049 * in request stacking drivers, and it may violate the limitation of @q.
2050 * Since the block layer and the underlying device driver trust @rq
2051 * after it is inserted to @q, it should be checked against @q before
2052 * the insertion using this generic function.
2053 *
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002054 * Request stacking drivers like request-based dm may change the queue
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002055 * limits when retrying requests on other queues. Those requests need
2056 * to be checked against the new queue limits again during dispatch.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002057 */
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002058static int blk_cloned_rq_check_limits(struct request_queue *q,
2059 struct request *rq)
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002060{
Mike Christie8fe0d472016-06-05 14:32:15 -05002061 if (blk_rq_sectors(rq) > blk_queue_get_max_sectors(q, req_op(rq))) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002062 printk(KERN_ERR "%s: over max size limit.\n", __func__);
2063 return -EIO;
2064 }
2065
2066 /*
2067 * queue's settings related to segment counting like q->bounce_pfn
2068 * may differ from that of other stacking queues.
2069 * Recalculate it to check the request correctly on this queue's
2070 * limitation.
2071 */
2072 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05002073 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002074 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
2075 return -EIO;
2076 }
2077
2078 return 0;
2079}
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002080
2081/**
2082 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
2083 * @q: the queue to submit the request
2084 * @rq: the request being queued
2085 */
2086int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
2087{
2088 unsigned long flags;
Jeff Moyer4853aba2011-08-15 21:37:25 +02002089 int where = ELEVATOR_INSERT_BACK;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002090
Hannes Reineckebf4e6b42015-11-26 08:46:57 +01002091 if (blk_cloned_rq_check_limits(q, rq))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002092 return -EIO;
2093
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07002094 if (rq->rq_disk &&
2095 should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002096 return -EIO;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002097
Keith Busch7fb48982014-10-17 17:46:38 -06002098 if (q->mq_ops) {
2099 if (blk_queue_io_stat(q))
2100 blk_account_io_start(rq, true);
Jens Axboebd6737f2017-01-27 01:00:47 -07002101 blk_mq_sched_insert_request(rq, false, true, false, false);
Keith Busch7fb48982014-10-17 17:46:38 -06002102 return 0;
2103 }
2104
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002105 spin_lock_irqsave(q->queue_lock, flags);
Bart Van Assche3f3299d2012-11-28 13:42:38 +01002106 if (unlikely(blk_queue_dying(q))) {
Tejun Heo8ba61432011-12-14 00:33:37 +01002107 spin_unlock_irqrestore(q->queue_lock, flags);
2108 return -ENODEV;
2109 }
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002110
2111 /*
2112 * Submitting request must be dequeued before calling this function
2113 * because it will be linked to another request_queue
2114 */
2115 BUG_ON(blk_queued_rq(rq));
2116
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07002117 if (op_is_flush(rq->cmd_flags))
Jeff Moyer4853aba2011-08-15 21:37:25 +02002118 where = ELEVATOR_INSERT_FLUSH;
2119
2120 add_acct_request(q, rq, where);
Jeff Moyere67b77c2011-10-17 12:57:23 +02002121 if (where == ELEVATOR_INSERT_FLUSH)
2122 __blk_run_queue(q);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04002123 spin_unlock_irqrestore(q->queue_lock, flags);
2124
2125 return 0;
2126}
2127EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
2128
Tejun Heo80a761f2009-07-03 17:48:17 +09002129/**
2130 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
2131 * @rq: request to examine
2132 *
2133 * Description:
2134 * A request could be merge of IOs which require different failure
2135 * handling. This function determines the number of bytes which
2136 * can be failed from the beginning of the request without
2137 * crossing into area which need to be retried further.
2138 *
2139 * Return:
2140 * The number of bytes to fail.
2141 *
2142 * Context:
2143 * queue_lock must be held.
2144 */
2145unsigned int blk_rq_err_bytes(const struct request *rq)
2146{
2147 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
2148 unsigned int bytes = 0;
2149 struct bio *bio;
2150
Christoph Hellwige8064022016-10-20 15:12:13 +02002151 if (!(rq->rq_flags & RQF_MIXED_MERGE))
Tejun Heo80a761f2009-07-03 17:48:17 +09002152 return blk_rq_bytes(rq);
2153
2154 /*
2155 * Currently the only 'mixing' which can happen is between
2156 * different fastfail types. We can safely fail portions
2157 * which have all the failfast bits that the first one has -
2158 * the ones which are at least as eager to fail as the first
2159 * one.
2160 */
2161 for (bio = rq->bio; bio; bio = bio->bi_next) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06002162 if ((bio->bi_opf & ff) != ff)
Tejun Heo80a761f2009-07-03 17:48:17 +09002163 break;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002164 bytes += bio->bi_iter.bi_size;
Tejun Heo80a761f2009-07-03 17:48:17 +09002165 }
2166
2167 /* this could lead to infinite loop */
2168 BUG_ON(blk_rq_bytes(rq) && !bytes);
2169 return bytes;
2170}
2171EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
2172
Jens Axboe320ae512013-10-24 09:20:05 +01002173void blk_account_io_completion(struct request *req, unsigned int bytes)
Jens Axboebc58ba92009-01-23 10:54:44 +01002174{
Jens Axboec2553b52009-04-24 08:10:11 +02002175 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01002176 const int rw = rq_data_dir(req);
2177 struct hd_struct *part;
2178 int cpu;
2179
2180 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01002181 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01002182 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
2183 part_stat_unlock();
2184 }
2185}
2186
Jens Axboe320ae512013-10-24 09:20:05 +01002187void blk_account_io_done(struct request *req)
Jens Axboebc58ba92009-01-23 10:54:44 +01002188{
Jens Axboebc58ba92009-01-23 10:54:44 +01002189 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02002190 * Account IO completion. flush_rq isn't accounted as a
2191 * normal IO on queueing nor completion. Accounting the
2192 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01002193 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002194 if (blk_do_io_stat(req) && !(req->rq_flags & RQF_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01002195 unsigned long duration = jiffies - req->start_time;
2196 const int rw = rq_data_dir(req);
2197 struct hd_struct *part;
2198 int cpu;
2199
2200 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01002201 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01002202
2203 part_stat_inc(cpu, part, ios[rw]);
2204 part_stat_add(cpu, part, ticks[rw], duration);
2205 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002206 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01002207
Jens Axboe6c23a962011-01-07 08:43:37 +01002208 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01002209 part_stat_unlock();
2210 }
2211}
2212
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01002213#ifdef CONFIG_PM
Lin Mingc8158812013-03-23 11:42:27 +08002214/*
2215 * Don't process normal requests when queue is suspended
2216 * or in the process of suspending/resuming
2217 */
2218static struct request *blk_pm_peek_request(struct request_queue *q,
2219 struct request *rq)
2220{
2221 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
Christoph Hellwige8064022016-10-20 15:12:13 +02002222 (q->rpm_status != RPM_ACTIVE && !(rq->rq_flags & RQF_PM))))
Lin Mingc8158812013-03-23 11:42:27 +08002223 return NULL;
2224 else
2225 return rq;
2226}
2227#else
2228static inline struct request *blk_pm_peek_request(struct request_queue *q,
2229 struct request *rq)
2230{
2231 return rq;
2232}
2233#endif
2234
Jens Axboe320ae512013-10-24 09:20:05 +01002235void blk_account_io_start(struct request *rq, bool new_io)
2236{
2237 struct hd_struct *part;
2238 int rw = rq_data_dir(rq);
2239 int cpu;
2240
2241 if (!blk_do_io_stat(rq))
2242 return;
2243
2244 cpu = part_stat_lock();
2245
2246 if (!new_io) {
2247 part = rq->part;
2248 part_stat_inc(cpu, part, merges[rw]);
2249 } else {
2250 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
2251 if (!hd_struct_try_get(part)) {
2252 /*
2253 * The partition is already being removed,
2254 * the request will be accounted on the disk only
2255 *
2256 * We take a reference on disk->part0 although that
2257 * partition will never be deleted, so we can treat
2258 * it as any other partition.
2259 */
2260 part = &rq->rq_disk->part0;
2261 hd_struct_get(part);
2262 }
2263 part_round_stats(cpu, part);
2264 part_inc_in_flight(part, rw);
2265 rq->part = part;
2266 }
2267
2268 part_stat_unlock();
2269}
2270
Tejun Heo53a08802008-12-03 12:41:26 +01002271/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002272 * blk_peek_request - peek at the top of a request queue
2273 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002274 *
2275 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002276 * Return the request at the top of @q. The returned request
2277 * should be started using blk_start_request() before LLD starts
2278 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002279 *
2280 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002281 * Pointer to the request at the top of @q if available. Null
2282 * otherwise.
2283 *
2284 * Context:
2285 * queue_lock must be held.
2286 */
2287struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09002288{
2289 struct request *rq;
2290 int ret;
2291
2292 while ((rq = __elv_next_request(q)) != NULL) {
Lin Mingc8158812013-03-23 11:42:27 +08002293
2294 rq = blk_pm_peek_request(q, rq);
2295 if (!rq)
2296 break;
2297
Christoph Hellwige8064022016-10-20 15:12:13 +02002298 if (!(rq->rq_flags & RQF_STARTED)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002299 /*
2300 * This is the first time the device driver
2301 * sees this request (possibly after
2302 * requeueing). Notify IO scheduler.
2303 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002304 if (rq->rq_flags & RQF_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09002305 elv_activate_rq(q, rq);
2306
2307 /*
2308 * just mark as started even if we don't start
2309 * it, a request that has been delayed should
2310 * not be passed by new incoming requests
2311 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002312 rq->rq_flags |= RQF_STARTED;
Tejun Heo158dbda2009-04-23 11:05:18 +09002313 trace_block_rq_issue(q, rq);
2314 }
2315
2316 if (!q->boundary_rq || q->boundary_rq == rq) {
2317 q->end_sector = rq_end_sector(rq);
2318 q->boundary_rq = NULL;
2319 }
2320
Christoph Hellwige8064022016-10-20 15:12:13 +02002321 if (rq->rq_flags & RQF_DONTPREP)
Tejun Heo158dbda2009-04-23 11:05:18 +09002322 break;
2323
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002324 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002325 /*
2326 * make sure space for the drain appears we
2327 * know we can do this because max_hw_segments
2328 * has been adjusted to be one fewer than the
2329 * device can handle
2330 */
2331 rq->nr_phys_segments++;
2332 }
2333
2334 if (!q->prep_rq_fn)
2335 break;
2336
2337 ret = q->prep_rq_fn(q, rq);
2338 if (ret == BLKPREP_OK) {
2339 break;
2340 } else if (ret == BLKPREP_DEFER) {
2341 /*
2342 * the request may have been (partially) prepped.
2343 * we need to keep this request in the front to
Christoph Hellwige8064022016-10-20 15:12:13 +02002344 * avoid resource deadlock. RQF_STARTED will
Tejun Heo158dbda2009-04-23 11:05:18 +09002345 * prevent other fs requests from passing this one.
2346 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002347 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Christoph Hellwige8064022016-10-20 15:12:13 +02002348 !(rq->rq_flags & RQF_DONTPREP)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002349 /*
2350 * remove the space for the drain we added
2351 * so that we don't add it again
2352 */
2353 --rq->nr_phys_segments;
2354 }
2355
2356 rq = NULL;
2357 break;
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -05002358 } else if (ret == BLKPREP_KILL || ret == BLKPREP_INVALID) {
2359 int err = (ret == BLKPREP_INVALID) ? -EREMOTEIO : -EIO;
2360
Christoph Hellwige8064022016-10-20 15:12:13 +02002361 rq->rq_flags |= RQF_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02002362 /*
2363 * Mark this request as started so we don't trigger
2364 * any debug logic in the end I/O path.
2365 */
2366 blk_start_request(rq);
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -05002367 __blk_end_request_all(rq, err);
Tejun Heo158dbda2009-04-23 11:05:18 +09002368 } else {
2369 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2370 break;
2371 }
2372 }
2373
2374 return rq;
2375}
Tejun Heo9934c8c2009-05-08 11:54:16 +09002376EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09002377
Tejun Heo9934c8c2009-05-08 11:54:16 +09002378void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09002379{
Tejun Heo9934c8c2009-05-08 11:54:16 +09002380 struct request_queue *q = rq->q;
2381
Tejun Heo158dbda2009-04-23 11:05:18 +09002382 BUG_ON(list_empty(&rq->queuelist));
2383 BUG_ON(ELV_ON_HASH(rq));
2384
2385 list_del_init(&rq->queuelist);
2386
2387 /*
2388 * the time frame between a request being removed from the lists
2389 * and to it is freed is accounted as io that is in progress at
2390 * the driver side.
2391 */
Divyesh Shah91952912010-04-01 15:01:41 -07002392 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02002393 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07002394 set_io_start_time_ns(rq);
2395 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002396}
2397
Tejun Heo5efccd12009-04-23 11:05:18 +09002398/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002399 * blk_start_request - start request processing on the driver
2400 * @req: request to dequeue
2401 *
2402 * Description:
2403 * Dequeue @req and start timeout timer on it. This hands off the
2404 * request to the driver.
2405 *
2406 * Block internal functions which don't want to start timer should
2407 * call blk_dequeue_request().
2408 *
2409 * Context:
2410 * queue_lock must be held.
2411 */
2412void blk_start_request(struct request *req)
2413{
2414 blk_dequeue_request(req);
2415
Jens Axboecf43e6b2016-11-07 21:32:37 -07002416 if (test_bit(QUEUE_FLAG_STATS, &req->q->queue_flags)) {
2417 blk_stat_set_issue_time(&req->issue_stat);
2418 req->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -07002419 wbt_issue(req->q->rq_wb, &req->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -07002420 }
2421
Jeff Moyer4912aa62013-10-08 14:36:41 -04002422 BUG_ON(test_bit(REQ_ATOM_COMPLETE, &req->atomic_flags));
Tejun Heo9934c8c2009-05-08 11:54:16 +09002423 blk_add_timer(req);
2424}
2425EXPORT_SYMBOL(blk_start_request);
2426
2427/**
2428 * blk_fetch_request - fetch a request from a request queue
2429 * @q: request queue to fetch a request from
2430 *
2431 * Description:
2432 * Return the request at the top of @q. The request is started on
2433 * return and LLD can start processing it immediately.
2434 *
2435 * Return:
2436 * Pointer to the request at the top of @q if available. Null
2437 * otherwise.
2438 *
2439 * Context:
2440 * queue_lock must be held.
2441 */
2442struct request *blk_fetch_request(struct request_queue *q)
2443{
2444 struct request *rq;
2445
2446 rq = blk_peek_request(q);
2447 if (rq)
2448 blk_start_request(rq);
2449 return rq;
2450}
2451EXPORT_SYMBOL(blk_fetch_request);
2452
2453/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002454 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002455 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002456 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002457 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002458 *
2459 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002460 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2461 * the request structure even if @req doesn't have leftover.
2462 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002463 *
2464 * This special helper function is only for request stacking drivers
2465 * (e.g. request-based dm) so that they can handle partial completion.
2466 * Actual device drivers should use blk_end_request instead.
2467 *
2468 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2469 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002470 *
2471 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002472 * %false - this request doesn't have any more data
2473 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002474 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002475bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Kent Overstreetf79ea412012-09-20 16:38:30 -07002477 int total_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Hannes Reinecke4a0efdc2014-10-01 14:32:31 +02002479 trace_block_rq_complete(req->q, req, nr_bytes);
2480
Tejun Heo2e60e022009-04-23 11:05:18 +09002481 if (!req->bio)
2482 return false;
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002485 * For fs requests, rq is just carrier of independent bio's
2486 * and each partial completion should be handled separately.
2487 * Reset per-request error on each partial completion.
2488 *
2489 * TODO: tj: This is too subtle. It would be better to let
2490 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 */
Christoph Hellwig57292b52017-01-31 16:57:29 +01002492 if (!blk_rq_is_passthrough(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 req->errors = 0;
2494
Christoph Hellwig57292b52017-01-31 16:57:29 +01002495 if (error && !blk_rq_is_passthrough(req) &&
Christoph Hellwige8064022016-10-20 15:12:13 +02002496 !(req->rq_flags & RQF_QUIET)) {
Hannes Reinecke79775562011-01-18 10:13:13 +01002497 char *error_type;
2498
2499 switch (error) {
2500 case -ENOLINK:
2501 error_type = "recoverable transport";
2502 break;
2503 case -EREMOTEIO:
2504 error_type = "critical target";
2505 break;
2506 case -EBADE:
2507 error_type = "critical nexus";
2508 break;
Hannes Reinecked1ffc1f2013-01-30 09:26:16 +00002509 case -ETIMEDOUT:
2510 error_type = "timeout";
2511 break;
Hannes Reineckea9d6ceb82013-07-01 15:16:25 +02002512 case -ENOSPC:
2513 error_type = "critical space allocation";
2514 break;
Hannes Reinecke7e782af2013-07-01 15:16:26 +02002515 case -ENODATA:
2516 error_type = "critical medium";
2517 break;
Hannes Reinecke79775562011-01-18 10:13:13 +01002518 case -EIO:
2519 default:
2520 error_type = "I/O";
2521 break;
2522 }
Robert Elliottef3ecb62014-08-27 10:50:31 -05002523 printk_ratelimited(KERN_ERR "%s: %s error, dev %s, sector %llu\n",
2524 __func__, error_type, req->rq_disk ?
Yi Zou37d7b342012-08-30 16:26:25 -07002525 req->rq_disk->disk_name : "?",
2526 (unsigned long long)blk_rq_pos(req));
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 }
2529
Jens Axboebc58ba92009-01-23 10:54:44 +01002530 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002531
Kent Overstreetf79ea412012-09-20 16:38:30 -07002532 total_bytes = 0;
2533 while (req->bio) {
2534 struct bio *bio = req->bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002535 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Kent Overstreet4f024f32013-10-11 15:44:27 -07002537 if (bio_bytes == bio->bi_iter.bi_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 req->bio = bio->bi_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Kent Overstreetf79ea412012-09-20 16:38:30 -07002540 req_bio_endio(req, bio, bio_bytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Kent Overstreetf79ea412012-09-20 16:38:30 -07002542 total_bytes += bio_bytes;
2543 nr_bytes -= bio_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Kent Overstreetf79ea412012-09-20 16:38:30 -07002545 if (!nr_bytes)
2546 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 }
2548
2549 /*
2550 * completely done
2551 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002552 if (!req->bio) {
2553 /*
2554 * Reset counters so that the request stacking driver
2555 * can find how many bytes remain in the request
2556 * later.
2557 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002558 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002559 return false;
2560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07002562 WARN_ON_ONCE(req->rq_flags & RQF_SPECIAL_PAYLOAD);
2563
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002564 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002565
2566 /* update sector only for requests with clear definition of sector */
Christoph Hellwig57292b52017-01-31 16:57:29 +01002567 if (!blk_rq_is_passthrough(req))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002568 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002569
Tejun Heo80a761f2009-07-03 17:48:17 +09002570 /* mixed attributes always follow the first bio */
Christoph Hellwige8064022016-10-20 15:12:13 +02002571 if (req->rq_flags & RQF_MIXED_MERGE) {
Tejun Heo80a761f2009-07-03 17:48:17 +09002572 req->cmd_flags &= ~REQ_FAILFAST_MASK;
Jens Axboe1eff9d32016-08-05 15:35:16 -06002573 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
Tejun Heo80a761f2009-07-03 17:48:17 +09002574 }
2575
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002576 /*
2577 * If total number of sectors is less than the first segment
2578 * size, something has gone terribly wrong.
2579 */
2580 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
Jens Axboe81829242011-03-30 09:51:33 +02002581 blk_dump_rq_flags(req, "request botched");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002582 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002583 }
2584
2585 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002587
Tejun Heo2e60e022009-04-23 11:05:18 +09002588 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
Tejun Heo2e60e022009-04-23 11:05:18 +09002590EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Tejun Heo2e60e022009-04-23 11:05:18 +09002592static bool blk_update_bidi_request(struct request *rq, int error,
2593 unsigned int nr_bytes,
2594 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002595{
Tejun Heo2e60e022009-04-23 11:05:18 +09002596 if (blk_update_request(rq, error, nr_bytes))
2597 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002598
Tejun Heo2e60e022009-04-23 11:05:18 +09002599 /* Bidi request must be completed as a whole */
2600 if (unlikely(blk_bidi_rq(rq)) &&
2601 blk_update_request(rq->next_rq, error, bidi_bytes))
2602 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002603
Jens Axboee2e1a142010-06-09 10:42:09 +02002604 if (blk_queue_add_random(rq->q))
2605 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002606
2607 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
2609
James Bottomley28018c22010-07-01 19:49:17 +09002610/**
2611 * blk_unprep_request - unprepare a request
2612 * @req: the request
2613 *
2614 * This function makes a request ready for complete resubmission (or
2615 * completion). It happens only after all error handling is complete,
2616 * so represents the appropriate moment to deallocate any resources
2617 * that were allocated to the request in the prep_rq_fn. The queue
2618 * lock is held when calling this.
2619 */
2620void blk_unprep_request(struct request *req)
2621{
2622 struct request_queue *q = req->q;
2623
Christoph Hellwige8064022016-10-20 15:12:13 +02002624 req->rq_flags &= ~RQF_DONTPREP;
James Bottomley28018c22010-07-01 19:49:17 +09002625 if (q->unprep_rq_fn)
2626 q->unprep_rq_fn(q, req);
2627}
2628EXPORT_SYMBOL_GPL(blk_unprep_request);
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630/*
2631 * queue lock must be held
2632 */
Christoph Hellwig12120072014-04-16 09:44:59 +02002633void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Jens Axboecf43e6b2016-11-07 21:32:37 -07002635 struct request_queue *q = req->q;
2636
2637 if (req->rq_flags & RQF_STATS)
2638 blk_stat_add(&q->rq_stats[rq_data_dir(req)], req);
2639
Christoph Hellwige8064022016-10-20 15:12:13 +02002640 if (req->rq_flags & RQF_QUEUED)
Jens Axboecf43e6b2016-11-07 21:32:37 -07002641 blk_queue_end_tag(q, req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002642
James Bottomleyba396a62009-05-27 14:17:08 +02002643 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Christoph Hellwig57292b52017-01-31 16:57:29 +01002645 if (unlikely(laptop_mode) && !blk_rq_is_passthrough(req))
Jan Karadc3b17c2017-02-02 15:56:50 +01002646 laptop_io_completion(req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Mike Andersone78042e52008-10-30 02:16:20 -07002648 blk_delete_timer(req);
2649
Christoph Hellwige8064022016-10-20 15:12:13 +02002650 if (req->rq_flags & RQF_DONTPREP)
James Bottomley28018c22010-07-01 19:49:17 +09002651 blk_unprep_request(req);
2652
Jens Axboebc58ba92009-01-23 10:54:44 +01002653 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002654
Jens Axboe87760e52016-11-09 12:38:14 -07002655 if (req->end_io) {
2656 wbt_done(req->q->rq_wb, &req->issue_stat);
Tejun Heo8ffdc652006-01-06 09:49:03 +01002657 req->end_io(req, error);
Jens Axboe87760e52016-11-09 12:38:14 -07002658 } else {
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002659 if (blk_bidi_rq(req))
2660 __blk_put_request(req->next_rq->q, req->next_rq);
2661
Jens Axboecf43e6b2016-11-07 21:32:37 -07002662 __blk_put_request(q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
2664}
Christoph Hellwig12120072014-04-16 09:44:59 +02002665EXPORT_SYMBOL(blk_finish_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002667/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002668 * blk_end_bidi_request - Complete a bidi request
2669 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002670 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002671 * @nr_bytes: number of bytes to complete @rq
2672 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002673 *
2674 * Description:
2675 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002676 * Drivers that supports bidi can safely call this member for any
2677 * type of request, bidi or uni. In the later case @bidi_bytes is
2678 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002679 *
2680 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002681 * %false - we are done with this request
2682 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002683 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002684static bool blk_end_bidi_request(struct request *rq, int error,
2685 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002686{
2687 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002688 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002689
Tejun Heo2e60e022009-04-23 11:05:18 +09002690 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2691 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002692
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002693 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002694 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002695 spin_unlock_irqrestore(q->queue_lock, flags);
2696
Tejun Heo2e60e022009-04-23 11:05:18 +09002697 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002698}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002699
2700/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002701 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2702 * @rq: the request to complete
2703 * @error: %0 for success, < %0 for error
2704 * @nr_bytes: number of bytes to complete @rq
2705 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002706 *
2707 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002708 * Identical to blk_end_bidi_request() except that queue lock is
2709 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002710 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002711 * Return:
2712 * %false - we are done with this request
2713 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002714 **/
Jeff Moyer4853aba2011-08-15 21:37:25 +02002715bool __blk_end_bidi_request(struct request *rq, int error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002716 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002717{
Tejun Heo2e60e022009-04-23 11:05:18 +09002718 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2719 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002720
Tejun Heo2e60e022009-04-23 11:05:18 +09002721 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002722
Tejun Heo2e60e022009-04-23 11:05:18 +09002723 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002724}
2725
2726/**
2727 * blk_end_request - Helper function for drivers to complete the request.
2728 * @rq: the request being processed
2729 * @error: %0 for success, < %0 for error
2730 * @nr_bytes: number of bytes to complete
2731 *
2732 * Description:
2733 * Ends I/O on a number of bytes attached to @rq.
2734 * If @rq has leftover, sets it up for the next range of segments.
2735 *
2736 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002737 * %false - we are done with this request
2738 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002739 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002740bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002741{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002742 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002743}
Jens Axboe56ad1742009-07-28 22:11:24 +02002744EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002745
2746/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002747 * blk_end_request_all - Helper function for drives to finish the request.
2748 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002749 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002750 *
2751 * Description:
2752 * Completely finish @rq.
2753 */
2754void blk_end_request_all(struct request *rq, int error)
2755{
2756 bool pending;
2757 unsigned int bidi_bytes = 0;
2758
2759 if (unlikely(blk_bidi_rq(rq)))
2760 bidi_bytes = blk_rq_bytes(rq->next_rq);
2761
2762 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2763 BUG_ON(pending);
2764}
Jens Axboe56ad1742009-07-28 22:11:24 +02002765EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002766
2767/**
2768 * blk_end_request_cur - Helper function to finish the current request chunk.
2769 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002770 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002771 *
2772 * Description:
2773 * Complete the current consecutively mapped chunk from @rq.
2774 *
2775 * Return:
2776 * %false - we are done with this request
2777 * %true - still buffers pending for this request
2778 */
2779bool blk_end_request_cur(struct request *rq, int error)
2780{
2781 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2782}
Jens Axboe56ad1742009-07-28 22:11:24 +02002783EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002784
2785/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002786 * blk_end_request_err - Finish a request till the next failure boundary.
2787 * @rq: the request to finish till the next failure boundary for
2788 * @error: must be negative errno
2789 *
2790 * Description:
2791 * Complete @rq till the next failure boundary.
2792 *
2793 * Return:
2794 * %false - we are done with this request
2795 * %true - still buffers pending for this request
2796 */
2797bool blk_end_request_err(struct request *rq, int error)
2798{
2799 WARN_ON(error >= 0);
2800 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2801}
2802EXPORT_SYMBOL_GPL(blk_end_request_err);
2803
2804/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002805 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002806 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002807 * @error: %0 for success, < %0 for error
2808 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002809 *
2810 * Description:
2811 * Must be called with queue lock held unlike blk_end_request().
2812 *
2813 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002814 * %false - we are done with this request
2815 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002816 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002817bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002818{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002819 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002820}
Jens Axboe56ad1742009-07-28 22:11:24 +02002821EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002822
2823/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002824 * __blk_end_request_all - Helper function for drives to finish the request.
2825 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002826 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002827 *
2828 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002829 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002830 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002831void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002832{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002833 bool pending;
2834 unsigned int bidi_bytes = 0;
2835
2836 if (unlikely(blk_bidi_rq(rq)))
2837 bidi_bytes = blk_rq_bytes(rq->next_rq);
2838
2839 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2840 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002841}
Jens Axboe56ad1742009-07-28 22:11:24 +02002842EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002843
2844/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002845 * __blk_end_request_cur - Helper function to finish the current request chunk.
2846 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002847 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002848 *
2849 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002850 * Complete the current consecutively mapped chunk from @rq. Must
2851 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002852 *
2853 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002854 * %false - we are done with this request
2855 * %true - still buffers pending for this request
2856 */
2857bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002858{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002859 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002860}
Jens Axboe56ad1742009-07-28 22:11:24 +02002861EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002862
Tejun Heo80a761f2009-07-03 17:48:17 +09002863/**
2864 * __blk_end_request_err - Finish a request till the next failure boundary.
2865 * @rq: the request to finish till the next failure boundary for
2866 * @error: must be negative errno
2867 *
2868 * Description:
2869 * Complete @rq till the next failure boundary. Must be called
2870 * with queue lock held.
2871 *
2872 * Return:
2873 * %false - we are done with this request
2874 * %true - still buffers pending for this request
2875 */
2876bool __blk_end_request_err(struct request *rq, int error)
2877{
2878 WARN_ON(error >= 0);
2879 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2880}
2881EXPORT_SYMBOL_GPL(__blk_end_request_err);
2882
Jens Axboe86db1e22008-01-29 14:53:40 +01002883void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2884 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885{
Jens Axboeb4f42e22014-04-10 09:46:28 -06002886 if (bio_has_data(bio))
David Woodhousefb2dce82008-08-05 18:01:53 +01002887 rq->nr_phys_segments = bio_phys_segments(q, bio);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002888
Kent Overstreet4f024f32013-10-11 15:44:27 -07002889 rq->__data_len = bio->bi_iter.bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
NeilBrown66846572007-08-16 13:31:28 +02002892 if (bio->bi_bdev)
2893 rq->rq_disk = bio->bi_bdev->bd_disk;
2894}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002896#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2897/**
2898 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2899 * @rq: the request to be flushed
2900 *
2901 * Description:
2902 * Flush all pages in @rq.
2903 */
2904void rq_flush_dcache_pages(struct request *rq)
2905{
2906 struct req_iterator iter;
Kent Overstreet79886132013-11-23 17:19:00 -08002907 struct bio_vec bvec;
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002908
2909 rq_for_each_segment(bvec, rq, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08002910 flush_dcache_page(bvec.bv_page);
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002911}
2912EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2913#endif
2914
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002915/**
2916 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2917 * @q : the queue of the device being checked
2918 *
2919 * Description:
2920 * Check if underlying low-level drivers of a device are busy.
2921 * If the drivers want to export their busy state, they must set own
2922 * exporting function using blk_queue_lld_busy() first.
2923 *
2924 * Basically, this function is used only by request stacking drivers
2925 * to stop dispatching requests to underlying devices when underlying
2926 * devices are busy. This behavior helps more I/O merging on the queue
2927 * of the request stacking driver and prevents I/O throughput regression
2928 * on burst I/O load.
2929 *
2930 * Return:
2931 * 0 - Not busy (The request stacking driver should dispatch request)
2932 * 1 - Busy (The request stacking driver should stop dispatching request)
2933 */
2934int blk_lld_busy(struct request_queue *q)
2935{
2936 if (q->lld_busy_fn)
2937 return q->lld_busy_fn(q);
2938
2939 return 0;
2940}
2941EXPORT_SYMBOL_GPL(blk_lld_busy);
2942
Mike Snitzer78d8e582015-06-26 10:01:13 -04002943/**
2944 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2945 * @rq: the clone request to be cleaned up
2946 *
2947 * Description:
2948 * Free all bios in @rq for a cloned request.
2949 */
2950void blk_rq_unprep_clone(struct request *rq)
2951{
2952 struct bio *bio;
2953
2954 while ((bio = rq->bio) != NULL) {
2955 rq->bio = bio->bi_next;
2956
2957 bio_put(bio);
2958 }
2959}
2960EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2961
2962/*
2963 * Copy attributes of the original request to the clone request.
2964 * The actual data parts (e.g. ->cmd, ->sense) are not copied.
2965 */
2966static void __blk_rq_prep_clone(struct request *dst, struct request *src)
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002967{
2968 dst->cpu = src->cpu;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002969 dst->__sector = blk_rq_pos(src);
2970 dst->__data_len = blk_rq_bytes(src);
2971 dst->nr_phys_segments = src->nr_phys_segments;
2972 dst->ioprio = src->ioprio;
2973 dst->extra_len = src->extra_len;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002974}
2975
2976/**
2977 * blk_rq_prep_clone - Helper function to setup clone request
2978 * @rq: the request to be setup
2979 * @rq_src: original request to be cloned
2980 * @bs: bio_set that bios for clone are allocated from
2981 * @gfp_mask: memory allocation mask for bio
2982 * @bio_ctr: setup function to be called for each clone bio.
2983 * Returns %0 for success, non %0 for failure.
2984 * @data: private data to be passed to @bio_ctr
2985 *
2986 * Description:
2987 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2988 * The actual data parts of @rq_src (e.g. ->cmd, ->sense)
2989 * are not copied, and copying such parts is the caller's responsibility.
2990 * Also, pages which the original bios are pointing to are not copied
2991 * and the cloned bios just point same pages.
2992 * So cloned bios must be completed before original bios, which means
2993 * the caller must complete @rq before @rq_src.
2994 */
2995int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2996 struct bio_set *bs, gfp_t gfp_mask,
2997 int (*bio_ctr)(struct bio *, struct bio *, void *),
2998 void *data)
2999{
3000 struct bio *bio, *bio_src;
3001
3002 if (!bs)
3003 bs = fs_bio_set;
3004
3005 __rq_for_each_bio(bio_src, rq_src) {
3006 bio = bio_clone_fast(bio_src, gfp_mask, bs);
3007 if (!bio)
3008 goto free_and_out;
3009
3010 if (bio_ctr && bio_ctr(bio, bio_src, data))
3011 goto free_and_out;
3012
3013 if (rq->bio) {
3014 rq->biotail->bi_next = bio;
3015 rq->biotail = bio;
3016 } else
3017 rq->bio = rq->biotail = bio;
3018 }
3019
3020 __blk_rq_prep_clone(rq, rq_src);
3021
3022 return 0;
3023
3024free_and_out:
3025 if (bio)
3026 bio_put(bio);
3027 blk_rq_unprep_clone(rq);
3028
3029 return -ENOMEM;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02003030}
3031EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
3032
Jens Axboe59c3d452014-04-08 09:15:35 -06003033int kblockd_schedule_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
3035 return queue_work(kblockd_workqueue, work);
3036}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037EXPORT_SYMBOL(kblockd_schedule_work);
3038
Jens Axboeee63cfa2016-08-24 15:52:48 -06003039int kblockd_schedule_work_on(int cpu, struct work_struct *work)
3040{
3041 return queue_work_on(cpu, kblockd_workqueue, work);
3042}
3043EXPORT_SYMBOL(kblockd_schedule_work_on);
3044
Jens Axboe59c3d452014-04-08 09:15:35 -06003045int kblockd_schedule_delayed_work(struct delayed_work *dwork,
3046 unsigned long delay)
Vivek Goyale43473b2010-09-15 17:06:35 -04003047{
3048 return queue_delayed_work(kblockd_workqueue, dwork, delay);
3049}
3050EXPORT_SYMBOL(kblockd_schedule_delayed_work);
3051
Jens Axboe8ab14592014-04-08 09:17:40 -06003052int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork,
3053 unsigned long delay)
3054{
3055 return queue_delayed_work_on(cpu, kblockd_workqueue, dwork, delay);
3056}
3057EXPORT_SYMBOL(kblockd_schedule_delayed_work_on);
3058
Suresh Jayaraman75df7132011-09-21 10:00:16 +02003059/**
3060 * blk_start_plug - initialize blk_plug and track it inside the task_struct
3061 * @plug: The &struct blk_plug that needs to be initialized
3062 *
3063 * Description:
3064 * Tracking blk_plug inside the task_struct will help with auto-flushing the
3065 * pending I/O should the task end up blocking between blk_start_plug() and
3066 * blk_finish_plug(). This is important from a performance perspective, but
3067 * also ensures that we don't deadlock. For instance, if the task is blocking
3068 * for a memory allocation, memory reclaim could end up wanting to free a
3069 * page belonging to that request that is currently residing in our private
3070 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
3071 * this kind of deadlock.
3072 */
Jens Axboe73c10102011-03-08 13:19:51 +01003073void blk_start_plug(struct blk_plug *plug)
3074{
3075 struct task_struct *tsk = current;
3076
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003077 /*
3078 * If this is a nested plug, don't actually assign it.
3079 */
3080 if (tsk->plug)
3081 return;
3082
Jens Axboe73c10102011-03-08 13:19:51 +01003083 INIT_LIST_HEAD(&plug->list);
Jens Axboe320ae512013-10-24 09:20:05 +01003084 INIT_LIST_HEAD(&plug->mq_list);
NeilBrown048c9372011-04-18 09:52:22 +02003085 INIT_LIST_HEAD(&plug->cb_list);
Jens Axboe73c10102011-03-08 13:19:51 +01003086 /*
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003087 * Store ordering should not be needed here, since a potential
3088 * preempt will imply a full memory barrier
Jens Axboe73c10102011-03-08 13:19:51 +01003089 */
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003090 tsk->plug = plug;
Jens Axboe73c10102011-03-08 13:19:51 +01003091}
3092EXPORT_SYMBOL(blk_start_plug);
3093
3094static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
3095{
3096 struct request *rqa = container_of(a, struct request, queuelist);
3097 struct request *rqb = container_of(b, struct request, queuelist);
3098
Jianpeng Ma975927b2012-10-25 21:58:17 +02003099 return !(rqa->q < rqb->q ||
3100 (rqa->q == rqb->q && blk_rq_pos(rqa) < blk_rq_pos(rqb)));
Jens Axboe73c10102011-03-08 13:19:51 +01003101}
3102
Jens Axboe49cac012011-04-16 13:51:05 +02003103/*
3104 * If 'from_schedule' is true, then postpone the dispatch of requests
3105 * until a safe kblockd context. We due this to avoid accidental big
3106 * additional stack usage in driver dispatch, in places where the originally
3107 * plugger did not intend it.
3108 */
Jens Axboef6603782011-04-15 15:49:07 +02003109static void queue_unplugged(struct request_queue *q, unsigned int depth,
Jens Axboe49cac012011-04-16 13:51:05 +02003110 bool from_schedule)
Jens Axboe99e22592011-04-18 09:59:55 +02003111 __releases(q->queue_lock)
Jens Axboe94b5eb22011-04-12 10:12:19 +02003112{
Jens Axboe49cac012011-04-16 13:51:05 +02003113 trace_block_unplug(q, depth, !from_schedule);
Jens Axboe99e22592011-04-18 09:59:55 +02003114
Bart Van Assche70460572012-11-28 13:45:56 +01003115 if (from_schedule)
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003116 blk_run_queue_async(q);
Bart Van Assche70460572012-11-28 13:45:56 +01003117 else
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02003118 __blk_run_queue(q);
Bart Van Assche70460572012-11-28 13:45:56 +01003119 spin_unlock(q->queue_lock);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003120}
3121
NeilBrown74018dc2012-07-31 09:08:15 +02003122static void flush_plug_callbacks(struct blk_plug *plug, bool from_schedule)
NeilBrown048c9372011-04-18 09:52:22 +02003123{
3124 LIST_HEAD(callbacks);
3125
Shaohua Li2a7d5552012-07-31 09:08:15 +02003126 while (!list_empty(&plug->cb_list)) {
3127 list_splice_init(&plug->cb_list, &callbacks);
NeilBrown048c9372011-04-18 09:52:22 +02003128
Shaohua Li2a7d5552012-07-31 09:08:15 +02003129 while (!list_empty(&callbacks)) {
3130 struct blk_plug_cb *cb = list_first_entry(&callbacks,
NeilBrown048c9372011-04-18 09:52:22 +02003131 struct blk_plug_cb,
3132 list);
Shaohua Li2a7d5552012-07-31 09:08:15 +02003133 list_del(&cb->list);
NeilBrown74018dc2012-07-31 09:08:15 +02003134 cb->callback(cb, from_schedule);
Shaohua Li2a7d5552012-07-31 09:08:15 +02003135 }
NeilBrown048c9372011-04-18 09:52:22 +02003136 }
3137}
3138
NeilBrown9cbb1752012-07-31 09:08:14 +02003139struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug, void *data,
3140 int size)
3141{
3142 struct blk_plug *plug = current->plug;
3143 struct blk_plug_cb *cb;
3144
3145 if (!plug)
3146 return NULL;
3147
3148 list_for_each_entry(cb, &plug->cb_list, list)
3149 if (cb->callback == unplug && cb->data == data)
3150 return cb;
3151
3152 /* Not currently on the callback list */
3153 BUG_ON(size < sizeof(*cb));
3154 cb = kzalloc(size, GFP_ATOMIC);
3155 if (cb) {
3156 cb->data = data;
3157 cb->callback = unplug;
3158 list_add(&cb->list, &plug->cb_list);
3159 }
3160 return cb;
3161}
3162EXPORT_SYMBOL(blk_check_plugged);
3163
Jens Axboe49cac012011-04-16 13:51:05 +02003164void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
Jens Axboe73c10102011-03-08 13:19:51 +01003165{
3166 struct request_queue *q;
3167 unsigned long flags;
3168 struct request *rq;
NeilBrown109b8122011-04-11 14:13:10 +02003169 LIST_HEAD(list);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003170 unsigned int depth;
Jens Axboe73c10102011-03-08 13:19:51 +01003171
NeilBrown74018dc2012-07-31 09:08:15 +02003172 flush_plug_callbacks(plug, from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01003173
3174 if (!list_empty(&plug->mq_list))
3175 blk_mq_flush_plug_list(plug, from_schedule);
3176
Jens Axboe73c10102011-03-08 13:19:51 +01003177 if (list_empty(&plug->list))
3178 return;
3179
NeilBrown109b8122011-04-11 14:13:10 +02003180 list_splice_init(&plug->list, &list);
3181
Jianpeng Ma422765c2013-01-11 14:46:09 +01003182 list_sort(NULL, &list, plug_rq_cmp);
Jens Axboe73c10102011-03-08 13:19:51 +01003183
3184 q = NULL;
Jens Axboe94b5eb22011-04-12 10:12:19 +02003185 depth = 0;
Jens Axboe188112722011-04-12 10:11:24 +02003186
3187 /*
3188 * Save and disable interrupts here, to avoid doing it for every
3189 * queue lock we have to take.
3190 */
Jens Axboe73c10102011-03-08 13:19:51 +01003191 local_irq_save(flags);
NeilBrown109b8122011-04-11 14:13:10 +02003192 while (!list_empty(&list)) {
3193 rq = list_entry_rq(list.next);
Jens Axboe73c10102011-03-08 13:19:51 +01003194 list_del_init(&rq->queuelist);
Jens Axboe73c10102011-03-08 13:19:51 +01003195 BUG_ON(!rq->q);
3196 if (rq->q != q) {
Jens Axboe99e22592011-04-18 09:59:55 +02003197 /*
3198 * This drops the queue lock
3199 */
3200 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02003201 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01003202 q = rq->q;
Jens Axboe94b5eb22011-04-12 10:12:19 +02003203 depth = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01003204 spin_lock(q->queue_lock);
3205 }
Tejun Heo8ba61432011-12-14 00:33:37 +01003206
3207 /*
3208 * Short-circuit if @q is dead
3209 */
Bart Van Assche3f3299d2012-11-28 13:42:38 +01003210 if (unlikely(blk_queue_dying(q))) {
Tejun Heo8ba61432011-12-14 00:33:37 +01003211 __blk_end_request_all(rq, -ENODEV);
3212 continue;
3213 }
3214
Jens Axboe73c10102011-03-08 13:19:51 +01003215 /*
3216 * rq is already accounted, so use raw insert
3217 */
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07003218 if (op_is_flush(rq->cmd_flags))
Jens Axboe401a18e2011-03-25 16:57:52 +01003219 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
3220 else
3221 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003222
3223 depth++;
Jens Axboe73c10102011-03-08 13:19:51 +01003224 }
3225
Jens Axboe99e22592011-04-18 09:59:55 +02003226 /*
3227 * This drops the queue lock
3228 */
3229 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02003230 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01003231
Jens Axboe73c10102011-03-08 13:19:51 +01003232 local_irq_restore(flags);
3233}
Jens Axboe73c10102011-03-08 13:19:51 +01003234
3235void blk_finish_plug(struct blk_plug *plug)
3236{
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003237 if (plug != current->plug)
3238 return;
Jens Axboef6603782011-04-15 15:49:07 +02003239 blk_flush_plug_list(plug, false);
Christoph Hellwig88b996c2011-04-15 15:20:10 +02003240
Shaohua Lidd6cf3e2015-05-08 10:51:28 -07003241 current->plug = NULL;
Jens Axboe73c10102011-03-08 13:19:51 +01003242}
3243EXPORT_SYMBOL(blk_finish_plug);
3244
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01003245#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +08003246/**
3247 * blk_pm_runtime_init - Block layer runtime PM initialization routine
3248 * @q: the queue of the device
3249 * @dev: the device the queue belongs to
3250 *
3251 * Description:
3252 * Initialize runtime-PM-related fields for @q and start auto suspend for
3253 * @dev. Drivers that want to take advantage of request-based runtime PM
3254 * should call this function after @dev has been initialized, and its
3255 * request queue @q has been allocated, and runtime PM for it can not happen
3256 * yet(either due to disabled/forbidden or its usage_count > 0). In most
3257 * cases, driver should call this function before any I/O has taken place.
3258 *
3259 * This function takes care of setting up using auto suspend for the device,
3260 * the autosuspend delay is set to -1 to make runtime suspend impossible
3261 * until an updated value is either set by user or by driver. Drivers do
3262 * not need to touch other autosuspend settings.
3263 *
3264 * The block layer runtime PM is request based, so only works for drivers
3265 * that use request as their IO unit instead of those directly use bio's.
3266 */
3267void blk_pm_runtime_init(struct request_queue *q, struct device *dev)
3268{
3269 q->dev = dev;
3270 q->rpm_status = RPM_ACTIVE;
3271 pm_runtime_set_autosuspend_delay(q->dev, -1);
3272 pm_runtime_use_autosuspend(q->dev);
3273}
3274EXPORT_SYMBOL(blk_pm_runtime_init);
3275
3276/**
3277 * blk_pre_runtime_suspend - Pre runtime suspend check
3278 * @q: the queue of the device
3279 *
3280 * Description:
3281 * This function will check if runtime suspend is allowed for the device
3282 * by examining if there are any requests pending in the queue. If there
3283 * are requests pending, the device can not be runtime suspended; otherwise,
3284 * the queue's status will be updated to SUSPENDING and the driver can
3285 * proceed to suspend the device.
3286 *
3287 * For the not allowed case, we mark last busy for the device so that
3288 * runtime PM core will try to autosuspend it some time later.
3289 *
3290 * This function should be called near the start of the device's
3291 * runtime_suspend callback.
3292 *
3293 * Return:
3294 * 0 - OK to runtime suspend the device
3295 * -EBUSY - Device should not be runtime suspended
3296 */
3297int blk_pre_runtime_suspend(struct request_queue *q)
3298{
3299 int ret = 0;
3300
Ken Xue4fd41a852015-12-01 14:45:46 +08003301 if (!q->dev)
3302 return ret;
3303
Lin Ming6c954662013-03-23 11:42:26 +08003304 spin_lock_irq(q->queue_lock);
3305 if (q->nr_pending) {
3306 ret = -EBUSY;
3307 pm_runtime_mark_last_busy(q->dev);
3308 } else {
3309 q->rpm_status = RPM_SUSPENDING;
3310 }
3311 spin_unlock_irq(q->queue_lock);
3312 return ret;
3313}
3314EXPORT_SYMBOL(blk_pre_runtime_suspend);
3315
3316/**
3317 * blk_post_runtime_suspend - Post runtime suspend processing
3318 * @q: the queue of the device
3319 * @err: return value of the device's runtime_suspend function
3320 *
3321 * Description:
3322 * Update the queue's runtime status according to the return value of the
3323 * device's runtime suspend function and mark last busy for the device so
3324 * that PM core will try to auto suspend the device at a later time.
3325 *
3326 * This function should be called near the end of the device's
3327 * runtime_suspend callback.
3328 */
3329void blk_post_runtime_suspend(struct request_queue *q, int err)
3330{
Ken Xue4fd41a852015-12-01 14:45:46 +08003331 if (!q->dev)
3332 return;
3333
Lin Ming6c954662013-03-23 11:42:26 +08003334 spin_lock_irq(q->queue_lock);
3335 if (!err) {
3336 q->rpm_status = RPM_SUSPENDED;
3337 } else {
3338 q->rpm_status = RPM_ACTIVE;
3339 pm_runtime_mark_last_busy(q->dev);
3340 }
3341 spin_unlock_irq(q->queue_lock);
3342}
3343EXPORT_SYMBOL(blk_post_runtime_suspend);
3344
3345/**
3346 * blk_pre_runtime_resume - Pre runtime resume processing
3347 * @q: the queue of the device
3348 *
3349 * Description:
3350 * Update the queue's runtime status to RESUMING in preparation for the
3351 * runtime resume of the device.
3352 *
3353 * This function should be called near the start of the device's
3354 * runtime_resume callback.
3355 */
3356void blk_pre_runtime_resume(struct request_queue *q)
3357{
Ken Xue4fd41a852015-12-01 14:45:46 +08003358 if (!q->dev)
3359 return;
3360
Lin Ming6c954662013-03-23 11:42:26 +08003361 spin_lock_irq(q->queue_lock);
3362 q->rpm_status = RPM_RESUMING;
3363 spin_unlock_irq(q->queue_lock);
3364}
3365EXPORT_SYMBOL(blk_pre_runtime_resume);
3366
3367/**
3368 * blk_post_runtime_resume - Post runtime resume processing
3369 * @q: the queue of the device
3370 * @err: return value of the device's runtime_resume function
3371 *
3372 * Description:
3373 * Update the queue's runtime status according to the return value of the
3374 * device's runtime_resume function. If it is successfully resumed, process
3375 * the requests that are queued into the device's queue when it is resuming
3376 * and then mark last busy and initiate autosuspend for it.
3377 *
3378 * This function should be called near the end of the device's
3379 * runtime_resume callback.
3380 */
3381void blk_post_runtime_resume(struct request_queue *q, int err)
3382{
Ken Xue4fd41a852015-12-01 14:45:46 +08003383 if (!q->dev)
3384 return;
3385
Lin Ming6c954662013-03-23 11:42:26 +08003386 spin_lock_irq(q->queue_lock);
3387 if (!err) {
3388 q->rpm_status = RPM_ACTIVE;
3389 __blk_run_queue(q);
3390 pm_runtime_mark_last_busy(q->dev);
Aaron Luc60855c2013-05-17 15:47:20 +08003391 pm_request_autosuspend(q->dev);
Lin Ming6c954662013-03-23 11:42:26 +08003392 } else {
3393 q->rpm_status = RPM_SUSPENDED;
3394 }
3395 spin_unlock_irq(q->queue_lock);
3396}
3397EXPORT_SYMBOL(blk_post_runtime_resume);
Mika Westerbergd07ab6d2016-02-18 10:54:11 +02003398
3399/**
3400 * blk_set_runtime_active - Force runtime status of the queue to be active
3401 * @q: the queue of the device
3402 *
3403 * If the device is left runtime suspended during system suspend the resume
3404 * hook typically resumes the device and corrects runtime status
3405 * accordingly. However, that does not affect the queue runtime PM status
3406 * which is still "suspended". This prevents processing requests from the
3407 * queue.
3408 *
3409 * This function can be used in driver's resume hook to correct queue
3410 * runtime PM status and re-enable peeking requests from the queue. It
3411 * should be called before first request is added to the queue.
3412 */
3413void blk_set_runtime_active(struct request_queue *q)
3414{
3415 spin_lock_irq(q->queue_lock);
3416 q->rpm_status = RPM_ACTIVE;
3417 pm_runtime_mark_last_busy(q->dev);
3418 pm_request_autosuspend(q->dev);
3419 spin_unlock_irq(q->queue_lock);
3420}
3421EXPORT_SYMBOL(blk_set_runtime_active);
Lin Ming6c954662013-03-23 11:42:26 +08003422#endif
3423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424int __init blk_dev_init(void)
3425{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06003426 BUILD_BUG_ON(REQ_OP_LAST >= (1 << REQ_OP_BITS));
3427 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
Maninder Singh0762b232015-07-07 12:41:07 +05303428 FIELD_SIZEOF(struct request, cmd_flags));
Christoph Hellwigef295ec2016-10-28 08:48:16 -06003429 BUILD_BUG_ON(REQ_OP_BITS + REQ_FLAG_BITS > 8 *
3430 FIELD_SIZEOF(struct bio, bi_opf));
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02003431
Tejun Heo89b90be2011-01-03 15:01:47 +01003432 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
3433 kblockd_workqueue = alloc_workqueue("kblockd",
Matias Bjørling28747fc2014-06-11 23:43:54 +02003434 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 if (!kblockd_workqueue)
3436 panic("Failed to create kblockd\n");
3437
3438 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09003439 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Ilya Dryomovc2789bd2015-11-20 22:16:46 +01003441 blk_requestq_cachep = kmem_cache_create("request_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02003442 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return 0;
3445}