blob: bd50c8ebb8d1fb80b77fe3d6478b23386b6b97f0 [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>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd42006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Jens Axboe73c10102011-03-08 13:19:51 +010030#include <linux/list_sort.h>
Tejun Heoe3c78ca2011-10-19 14:32:38 +020031#include <linux/delay.h>
Asutosh Das75de0c32013-03-07 17:43:35 +053032#include <linux/ratelimit.h>
Li Zefan55782132009-06-09 13:43:05 +080033
34#define CREATE_TRACE_POINTS
35#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Jens Axboe8324aa92008-01-29 14:51:59 +010037#include "blk.h"
38
Mike Snitzerd07335e2010-11-16 12:52:38 +010039EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020040EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080041EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010042
Tejun Heoa73f7302011-12-14 00:33:37 +010043DEFINE_IDA(blk_queue_ida);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * For the allocated request tables
47 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010048static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * For queue allocation
52 */
Jens Axboe6728cb02008-01-31 13:03:55 +010053struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * Controlling structure to kblockd
57 */
Jens Axboeff856ba2006-01-09 16:02:34 +010058static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jens Axboe26b82562008-01-29 13:54:41 +010060static void drive_stat_acct(struct request *rq, int new_io)
61{
Jens Axboe28f13702008-05-07 10:15:46 +020062 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010063 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090064 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010065
Jens Axboec2553b52009-04-24 08:10:11 +020066 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010067 return;
68
Tejun Heo074a7ac2008-08-25 19:56:14 +090069 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +090070
Jerome Marchand09e099d2011-01-05 16:57:38 +010071 if (!new_io) {
72 part = rq->part;
Tejun Heo074a7ac2008-08-25 19:56:14 +090073 part_stat_inc(cpu, part, merges[rw]);
Jerome Marchand09e099d2011-01-05 16:57:38 +010074 } else {
75 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Jens Axboe6c23a962011-01-07 08:43:37 +010076 if (!hd_struct_try_get(part)) {
Jerome Marchand09e099d2011-01-05 16:57:38 +010077 /*
78 * The partition is already being removed,
79 * the request will be accounted on the disk only
80 *
81 * We take a reference on disk->part0 although that
82 * partition will never be deleted, so we can treat
83 * it as any other partition.
84 */
85 part = &rq->rq_disk->part0;
Jens Axboe6c23a962011-01-07 08:43:37 +010086 hd_struct_get(part);
Jerome Marchand09e099d2011-01-05 16:57:38 +010087 }
Tejun Heo074a7ac2008-08-25 19:56:14 +090088 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020089 part_inc_in_flight(part, rw);
Jerome Marchand09e099d2011-01-05 16:57:38 +010090 rq->part = part;
Jens Axboe26b82562008-01-29 13:54:41 +010091 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020092
Tejun Heo074a7ac2008-08-25 19:56:14 +090093 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010094}
95
Jens Axboe8324aa92008-01-29 14:51:59 +010096void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 int nr;
99
100 nr = q->nr_requests - (q->nr_requests / 8) + 1;
101 if (nr > q->nr_requests)
102 nr = q->nr_requests;
103 q->nr_congestion_on = nr;
104
105 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
106 if (nr < 1)
107 nr = 1;
108 q->nr_congestion_off = nr;
109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/**
112 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
113 * @bdev: device
114 *
115 * Locates the passed device's request queue and returns the address of its
116 * backing_dev_info
117 *
118 * Will return NULL if the request queue cannot be located.
119 */
120struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
121{
122 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200123 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (q)
126 ret = &q->backing_dev_info;
127 return ret;
128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129EXPORT_SYMBOL(blk_get_backing_dev_info);
130
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200131void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200133 memset(rq, 0, sizeof(*rq));
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700136 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200137 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100138 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900139 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200140 INIT_HLIST_NODE(&rq->hash);
141 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200142 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800143 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100144 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100145 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900146 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700147 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100148 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200150EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
NeilBrown5bb23a62007-09-27 12:46:13 +0200152static void req_bio_endio(struct request *rq, struct bio *bio,
153 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100154{
Tejun Heo143a87f2011-01-25 12:43:52 +0100155 if (error)
156 clear_bit(BIO_UPTODATE, &bio->bi_flags);
157 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
158 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100159
Tejun Heo143a87f2011-01-25 12:43:52 +0100160 if (unlikely(nbytes > bio->bi_size)) {
161 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
162 __func__, nbytes, bio->bi_size);
163 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200164 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100165
166 if (unlikely(rq->cmd_flags & REQ_QUIET))
167 set_bit(BIO_QUIET, &bio->bi_flags);
168
169 bio->bi_size -= nbytes;
170 bio->bi_sector += (nbytes >> 9);
171
172 if (bio_integrity(bio))
173 bio_integrity_advance(bio, nbytes);
174
175 /* don't actually finish bio if it's part of flush sequence */
176 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
177 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180void blk_dump_rq_flags(struct request *rq, char *msg)
181{
182 int bit;
183
Jens Axboe6728cb02008-01-31 13:03:55 +0100184 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200185 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
186 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Tejun Heo83096eb2009-05-07 22:24:39 +0900188 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
189 (unsigned long long)blk_rq_pos(rq),
190 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900191 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900192 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200194 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100195 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200196 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 printk("%02x ", rq->cmd[bit]);
198 printk("\n");
199 }
200}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201EXPORT_SYMBOL(blk_dump_rq_flags);
202
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500203static void blk_delay_work(struct work_struct *work)
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200204{
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500205 struct request_queue *q;
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200206
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500207 q = container_of(work, struct request_queue, delay_work.work);
208 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200209 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500210 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/**
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500214 * blk_delay_queue - restart queueing after defined interval
215 * @q: The &struct request_queue in question
216 * @msecs: Delay in msecs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Description:
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500219 * Sometimes queueing needs to be postponed for a little while, to allow
220 * resources to come back. This function will make sure that queueing is
221 * restarted around the specified time.
222 */
223void blk_delay_queue(struct request_queue *q, unsigned long msecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Jens Axboe4521cc42011-04-18 11:36:39 +0200225 queue_delayed_work(kblockd_workqueue, &q->delay_work,
226 msecs_to_jiffies(msecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500228EXPORT_SYMBOL(blk_delay_queue);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/**
231 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200232 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * Description:
235 * blk_start_queue() will clear the stop flag on the queue, and call
236 * the request_fn for the queue if it was in a stopped state when
237 * entered. Also see blk_stop_queue(). Queue lock must be held.
238 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200239void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200241 WARN_ON(!irqs_disabled());
242
Nick Piggin75ad23b2008-04-29 14:48:33 +0200243 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200244 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246EXPORT_SYMBOL(blk_start_queue);
247
248/**
249 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200250 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 *
252 * Description:
253 * The Linux block layer assumes that a block driver will consume all
254 * entries on the request queue when the request_fn strategy is called.
255 * Often this will not happen, because of hardware limitations (queue
256 * depth settings). If a device driver gets a 'queue full' response,
257 * or if it simply chooses not to queue more I/O at one point, it can
258 * call this function to prevent the request_fn from being called until
259 * the driver has signalled it's ready to go again. This happens by calling
260 * blk_start_queue() to restart queue operations. Queue lock must be held.
261 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200262void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Jens Axboead3d9d72011-03-25 16:58:59 +0100264 __cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200265 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267EXPORT_SYMBOL(blk_stop_queue);
268
269/**
270 * blk_sync_queue - cancel any pending callbacks on a queue
271 * @q: the queue
272 *
273 * Description:
274 * The block layer may perform asynchronous callback activity
275 * on a queue, such as calling the unplug function after a timeout.
276 * A block device may call blk_sync_queue to ensure that any
277 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200278 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * that its ->make_request_fn will not re-add plugging prior to calling
280 * this function.
281 *
Vivek Goyalda527772011-03-02 19:05:33 -0500282 * This function does not cancel any asynchronous activity arising
283 * out of elevator or throttling code. That would require elevaotor_exit()
284 * and blk_throtl_exit() to be called with queue lock initialized.
285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
287void blk_sync_queue(struct request_queue *q)
288{
Jens Axboe70ed28b2008-11-19 14:38:39 +0100289 del_timer_sync(&q->timeout);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500290 cancel_delayed_work_sync(&q->delay_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292EXPORT_SYMBOL(blk_sync_queue);
293
294/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200295 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200297 *
298 * Description:
299 * See @blk_run_queue. This variant must be called with the queue lock
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200300 * held and interrupts disabled.
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +0200301 * Device driver will be notified of an urgent request
302 * pending under the following conditions:
303 * 1. The driver and the current scheduler support urgent reques handling
304 * 2. There is an urgent request pending in the scheduler
305 * 3. There isn't already an urgent request in flight, meaning previously
306 * notified urgent request completed (!q->notified_urgent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200308void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Tejun Heoa538cd02009-04-23 11:05:17 +0900310 if (unlikely(blk_queue_stopped(q)))
311 return;
312
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +0200313 if (!q->notified_urgent &&
314 q->elevator->type->ops.elevator_is_urgent_fn &&
315 q->urgent_request_fn &&
316 q->elevator->type->ops.elevator_is_urgent_fn(q)) {
317 q->notified_urgent = true;
318 q->urgent_request_fn(q);
319 } else
320 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200321}
322EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200323
Nick Piggin75ad23b2008-04-29 14:48:33 +0200324/**
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200325 * blk_run_queue_async - run a single device queue in workqueue context
326 * @q: The queue to run
327 *
328 * Description:
329 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
330 * of us.
331 */
332void blk_run_queue_async(struct request_queue *q)
333{
Shaohua Li3ec717b2011-05-18 11:22:43 +0200334 if (likely(!blk_queue_stopped(q))) {
335 __cancel_delayed_work(&q->delay_work);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200336 queue_delayed_work(kblockd_workqueue, &q->delay_work, 0);
Shaohua Li3ec717b2011-05-18 11:22:43 +0200337 }
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200338}
Jens Axboec21e6be2011-04-19 13:32:46 +0200339EXPORT_SYMBOL(blk_run_queue_async);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200340
341/**
Nick Piggin75ad23b2008-04-29 14:48:33 +0200342 * blk_run_queue - run a single device queue
343 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200344 *
345 * Description:
346 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900347 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200348 */
349void blk_run_queue(struct request_queue *q)
350{
351 unsigned long flags;
352
353 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200354 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 spin_unlock_irqrestore(q->queue_lock, flags);
356}
357EXPORT_SYMBOL(blk_run_queue);
358
Jens Axboe165125e2007-07-24 09:28:11 +0200359void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500360{
361 kobject_put(&q->kobj);
362}
Jens Axboed86e0e82011-05-27 07:44:43 +0200363EXPORT_SYMBOL(blk_put_queue);
Al Viro483f4af2006-03-18 18:34:37 -0500364
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200365/**
366 * blk_drain_queue - drain requests from request_queue
367 * @q: queue to drain
Tejun Heoc9a929d2011-10-19 14:42:16 +0200368 * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200369 *
Tejun Heoc9a929d2011-10-19 14:42:16 +0200370 * Drain requests from @q. If @drain_all is set, all requests are drained.
371 * If not, only ELVPRIV requests are drained. The caller is responsible
372 * for ensuring that no new requests which need to be drained are queued.
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200373 */
Tejun Heoc9a929d2011-10-19 14:42:16 +0200374void blk_drain_queue(struct request_queue *q, bool drain_all)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200375{
376 while (true) {
Tejun Heo481a7d62011-12-14 00:33:37 +0100377 bool drain = false;
378 int i;
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200379
380 spin_lock_irq(q->queue_lock);
381
382 elv_drain_elevator(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200383 if (drain_all)
384 blk_throtl_drain(q);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200385
Tejun Heo4eabc942011-12-15 20:03:04 +0100386 /*
387 * This function might be called on a queue which failed
388 * driver init after queue creation. Some drivers
389 * (e.g. fd) get unhappy in such cases. Kick queue iff
390 * dispatch queue has something on it.
391 */
392 if (!list_empty(&q->queue_head))
393 __blk_run_queue(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200394
Tejun Heo481a7d62011-12-14 00:33:37 +0100395 drain |= q->rq.elvpriv;
396
397 /*
398 * Unfortunately, requests are queued at and tracked from
399 * multiple places and there's no single counter which can
400 * be drained. Check all the queues and counters.
401 */
402 if (drain_all) {
403 drain |= !list_empty(&q->queue_head);
404 for (i = 0; i < 2; i++) {
405 drain |= q->rq.count[i];
406 drain |= q->in_flight[i];
407 drain |= !list_empty(&q->flush_queue[i]);
408 }
409 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200410
411 spin_unlock_irq(q->queue_lock);
412
Tejun Heo481a7d62011-12-14 00:33:37 +0100413 if (!drain)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200414 break;
415 msleep(10);
416 }
417}
418
Tejun Heoc9a929d2011-10-19 14:42:16 +0200419/**
420 * blk_cleanup_queue - shutdown a request queue
421 * @q: request queue to shutdown
422 *
423 * Mark @q DEAD, drain all pending requests, destroy and put it. All
424 * future requests will be failed immediately with -ENODEV.
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500425 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100426void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500427{
Tejun Heoc9a929d2011-10-19 14:42:16 +0200428 spinlock_t *lock = q->queue_lock;
Jens Axboee3335de2008-09-18 09:22:54 -0700429
Tejun Heoc9a929d2011-10-19 14:42:16 +0200430 /* mark @q DEAD, no new request or merges will be allowed afterwards */
Al Viro483f4af2006-03-18 18:34:37 -0500431 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200432 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200433
434 spin_lock_irq(lock);
435 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
436 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
437 queue_flag_set(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500438
Hannes Reinecke777eb1b2011-09-28 08:07:01 -0600439 if (q->queue_lock != &q->__queue_lock)
440 q->queue_lock = &q->__queue_lock;
Vivek Goyalda527772011-03-02 19:05:33 -0500441
Tejun Heoc9a929d2011-10-19 14:42:16 +0200442 spin_unlock_irq(lock);
443 mutex_unlock(&q->sysfs_lock);
444
Tejun Heo6dd9ad72011-11-03 18:52:11 +0100445 /*
446 * Drain all requests queued before DEAD marking. The caller might
447 * be trying to tear down @q before its elevator is initialized, in
448 * which case we don't want to call into draining.
449 */
450 if (q->elevator)
451 blk_drain_queue(q, true);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200452
453 /* @q won't process any more request, flush async actions */
454 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
455 blk_sync_queue(q);
456
457 /* @q is and will stay empty, shutdown and put */
Al Viro483f4af2006-03-18 18:34:37 -0500458 blk_put_queue(q);
459}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460EXPORT_SYMBOL(blk_cleanup_queue);
461
Jens Axboe165125e2007-07-24 09:28:11 +0200462static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct request_list *rl = &q->rq;
465
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400466 if (unlikely(rl->rq_pool))
467 return 0;
468
Jens Axboe1faa16d2009-04-06 14:48:01 +0200469 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
470 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200471 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200472 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
473 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Christoph Lameter19460892005-06-23 00:08:19 -0700475 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
476 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (!rl->rq_pool)
479 return -ENOMEM;
480
481 return 0;
482}
483
Jens Axboe165125e2007-07-24 09:28:11 +0200484struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Christoph Lameter19460892005-06-23 00:08:19 -0700486 return blk_alloc_queue_node(gfp_mask, -1);
487}
488EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Jens Axboe165125e2007-07-24 09:28:11 +0200490struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700491{
Jens Axboe165125e2007-07-24 09:28:11 +0200492 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700493 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700494
Jens Axboe8324aa92008-01-29 14:51:59 +0100495 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700496 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!q)
498 return NULL;
499
Dan Carpenter00380a42012-03-23 09:58:54 +0100500 q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask);
Tejun Heoa73f7302011-12-14 00:33:37 +0100501 if (q->id < 0)
502 goto fail_q;
503
Jens Axboe0989a022009-06-12 14:42:56 +0200504 q->backing_dev_info.ra_pages =
505 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
506 q->backing_dev_info.state = 0;
507 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200508 q->backing_dev_info.name = "block";
Mike Snitzer51514122011-11-23 10:59:13 +0100509 q->node = node_id;
Jens Axboe0989a022009-06-12 14:42:56 +0200510
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700511 err = bdi_init(&q->backing_dev_info);
Tejun Heoa73f7302011-12-14 00:33:37 +0100512 if (err)
513 goto fail_id;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700514
Tejun Heoa73f7302011-12-14 00:33:37 +0100515 if (blk_throtl_init(q))
516 goto fail_id;
Vivek Goyale43473b2010-09-15 17:06:35 -0400517
Matthew Garrett31373d02010-04-06 14:25:14 +0200518 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
519 laptop_mode_timer_fn, (unsigned long) q);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700520 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
521 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +0100522 INIT_LIST_HEAD(&q->icq_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100523 INIT_LIST_HEAD(&q->flush_queue[0]);
524 INIT_LIST_HEAD(&q->flush_queue[1]);
525 INIT_LIST_HEAD(&q->flush_data_in_flight);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500526 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500527
Jens Axboe8324aa92008-01-29 14:51:59 +0100528 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Al Viro483f4af2006-03-18 18:34:37 -0500530 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700531 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500532
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500533 /*
534 * By default initialize queue_lock to internal lock and driver can
535 * override it later if need be.
536 */
537 q->queue_lock = &q->__queue_lock;
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100540
541fail_id:
542 ida_simple_remove(&blk_queue_ida, q->id);
543fail_q:
544 kmem_cache_free(blk_requestq_cachep, q);
545 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Christoph Lameter19460892005-06-23 00:08:19 -0700547EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549/**
550 * blk_init_queue - prepare a request queue for use with a block device
551 * @rfn: The function to be called to process requests that have been
552 * placed on the queue.
553 * @lock: Request queue spin lock
554 *
555 * Description:
556 * If a block device wishes to use the standard request handling procedures,
557 * which sorts requests and coalesces adjacent requests, then it must
558 * call blk_init_queue(). The function @rfn will be called when there
559 * are requests on the queue that need to be processed. If the device
560 * supports plugging, then @rfn may not be called immediately when requests
561 * are available on the queue, but may be called at some time later instead.
562 * Plugged queues are generally unplugged when a buffer belonging to one
563 * of the requests on the queue is needed, or due to memory pressure.
564 *
565 * @rfn is not required, or even expected, to remove all requests off the
566 * queue, but only as many as it can handle at a time. If it does leave
567 * requests on the queue, it is responsible for arranging that the requests
568 * get dealt with eventually.
569 *
570 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200571 * request queue; this lock will be taken also from interrupt context, so irq
572 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200574 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * it didn't succeed.
576 *
577 * Note:
578 * blk_init_queue() must be paired with a blk_cleanup_queue() call
579 * when the block device is deactivated (such as at module unload).
580 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700581
Jens Axboe165125e2007-07-24 09:28:11 +0200582struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Christoph Lameter19460892005-06-23 00:08:19 -0700584 return blk_init_queue_node(rfn, lock, -1);
585}
586EXPORT_SYMBOL(blk_init_queue);
587
Jens Axboe165125e2007-07-24 09:28:11 +0200588struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700589blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
590{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600591 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600593 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
594 if (!uninit_q)
595 return NULL;
596
Mike Snitzer51514122011-11-23 10:59:13 +0100597 q = blk_init_allocated_queue(uninit_q, rfn, lock);
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600598 if (!q)
599 blk_cleanup_queue(uninit_q);
600
601 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200602}
603EXPORT_SYMBOL(blk_init_queue_node);
604
605struct request_queue *
606blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
607 spinlock_t *lock)
608{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (!q)
610 return NULL;
611
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600612 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500613 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900617 q->unprep_rq_fn = NULL;
Jens Axboebc58ba92009-01-23 10:54:44 +0100618 q->queue_flags = QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500619
620 /* Override internal queue lock with supplied lock pointer */
621 if (lock)
622 q->queue_lock = lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jens Axboef3b144a2009-03-06 08:48:33 +0100624 /*
625 * This also sets hw/phys segments, boundary and size
626 */
Jens Axboec20e8de2011-09-12 12:03:37 +0200627 blk_queue_make_request(q, blk_queue_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Alan Stern44ec9542007-02-20 11:01:57 -0500629 q->sg_reserved_size = INT_MAX;
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
632 * all done
633 */
634 if (!elevator_init(q, NULL)) {
635 blk_queue_congestion_threshold(q);
636 return q;
637 }
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return NULL;
640}
Mike Snitzer51514122011-11-23 10:59:13 +0100641EXPORT_SYMBOL(blk_init_allocated_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Tejun Heo09ac46c2011-12-14 00:33:38 +0100643bool blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Tejun Heo34f60552011-12-14 00:33:37 +0100645 if (likely(!blk_queue_dead(q))) {
Tejun Heo09ac46c2011-12-14 00:33:38 +0100646 __blk_get_queue(q);
647 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Tejun Heo09ac46c2011-12-14 00:33:38 +0100650 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
Jens Axboed86e0e82011-05-27 07:44:43 +0200652EXPORT_SYMBOL(blk_get_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Jens Axboe165125e2007-07-24 09:28:11 +0200654static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Tejun Heof1f8cc92011-12-14 00:33:42 +0100656 if (rq->cmd_flags & REQ_ELVPRIV) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200657 elv_put_request(q, rq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100658 if (rq->elv.icq)
Tejun Heo11a31222012-02-07 07:51:30 +0100659 put_io_context(rq->elv.icq->ioc);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100660 }
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 mempool_free(rq, q->rq.rq_pool);
663}
664
Jens Axboe1ea25ec2006-07-18 22:24:11 +0200665static struct request *
Tejun Heof1f8cc92011-12-14 00:33:42 +0100666blk_alloc_request(struct request_queue *q, struct io_cq *icq,
667 unsigned int flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
670
671 if (!rq)
672 return NULL;
673
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200674 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200675
Jerome Marchand42dad762009-04-22 14:01:49 +0200676 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Tejun Heof1f8cc92011-12-14 00:33:42 +0100678 if (flags & REQ_ELVPRIV) {
679 rq->elv.icq = icq;
680 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
681 mempool_free(rq, q->rq.rq_pool);
682 return NULL;
683 }
684 /* @rq->elv.icq holds on to io_context until @rq is freed */
685 if (icq)
686 get_io_context(icq->ioc);
Tejun Heocb98fc82005-10-28 08:29:39 +0200687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Tejun Heocb98fc82005-10-28 08:29:39 +0200689 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692/*
693 * ioc_batching returns true if the ioc is a valid batching request and
694 * should be given priority access to a request.
695 */
Jens Axboe165125e2007-07-24 09:28:11 +0200696static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 if (!ioc)
699 return 0;
700
701 /*
702 * Make sure the process is able to allocate at least 1 request
703 * even if the batch times out, otherwise we could theoretically
704 * lose wakeups.
705 */
706 return ioc->nr_batch_requests == q->nr_batching ||
707 (ioc->nr_batch_requests > 0
708 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
709}
710
711/*
712 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
713 * will cause the process to be a "batcher" on all queues in the system. This
714 * is the behaviour we want though - once it gets a wakeup it should be given
715 * a nice run.
716 */
Jens Axboe165125e2007-07-24 09:28:11 +0200717static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 if (!ioc || ioc_batching(q, ioc))
720 return;
721
722 ioc->nr_batch_requests = q->nr_batching;
723 ioc->last_waited = jiffies;
724}
725
Jens Axboe1faa16d2009-04-06 14:48:01 +0200726static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct request_list *rl = &q->rq;
729
Jens Axboe1faa16d2009-04-06 14:48:01 +0200730 if (rl->count[sync] < queue_congestion_off_threshold(q))
731 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Jens Axboe1faa16d2009-04-06 14:48:01 +0200733 if (rl->count[sync] + 1 <= q->nr_requests) {
734 if (waitqueue_active(&rl->wait[sync]))
735 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jens Axboe1faa16d2009-04-06 14:48:01 +0200737 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739}
740
741/*
742 * A request has just been released. Account for it, update the full and
743 * congestion status, wake up any waiters. Called under q->queue_lock.
744 */
Tejun Heo75eb6c32011-10-19 14:31:22 +0200745static void freed_request(struct request_queue *q, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 struct request_list *rl = &q->rq;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200748 int sync = rw_is_sync(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Jens Axboe1faa16d2009-04-06 14:48:01 +0200750 rl->count[sync]--;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200751 if (flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200752 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Jens Axboe1faa16d2009-04-06 14:48:01 +0200754 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Jens Axboe1faa16d2009-04-06 14:48:01 +0200756 if (unlikely(rl->starved[sync ^ 1]))
757 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100761 * Determine if elevator data should be initialized when allocating the
762 * request associated with @bio.
763 */
764static bool blk_rq_should_init_elevator(struct bio *bio)
765{
766 if (!bio)
767 return true;
768
769 /*
770 * Flush requests do not use the elevator so skip initialization.
771 * This allows a request to share the flush and elevator data.
772 */
773 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
774 return false;
775
776 return true;
777}
778
Tejun Heoda8303c2011-10-19 14:33:05 +0200779/**
780 * get_request - get a free request
781 * @q: request_queue to allocate request from
782 * @rw_flags: RW and SYNC flags
783 * @bio: bio to allocate request for (can be %NULL)
784 * @gfp_mask: allocation mask
785 *
786 * Get a free request from @q. This function may fail under memory
787 * pressure or if @q is dead.
788 *
789 * Must be callled with @q->queue_lock held and,
790 * Returns %NULL on failure, with @q->queue_lock held.
791 * Returns !%NULL on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
Jens Axboe165125e2007-07-24 09:28:11 +0200793static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100794 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct request *rq = NULL;
797 struct request_list *rl = &q->rq;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100798 struct elevator_type *et;
Tejun Heof2dbd762011-12-14 00:33:40 +0100799 struct io_context *ioc;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100800 struct io_cq *icq = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200801 const bool is_sync = rw_is_sync(rw_flags) != 0;
Tejun Heof2dbd762011-12-14 00:33:40 +0100802 bool retried = false;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200803 int may_queue;
Tejun Heof2dbd762011-12-14 00:33:40 +0100804retry:
Tejun Heof1f8cc92011-12-14 00:33:42 +0100805 et = q->elevator->type;
Tejun Heof2dbd762011-12-14 00:33:40 +0100806 ioc = current->io_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Tejun Heo34f60552011-12-14 00:33:37 +0100808 if (unlikely(blk_queue_dead(q)))
Tejun Heoda8303c2011-10-19 14:33:05 +0200809 return NULL;
810
Jens Axboe7749a8d2006-12-13 13:02:26 +0100811 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100812 if (may_queue == ELV_MQUEUE_NO)
813 goto rq_starved;
814
Jens Axboe1faa16d2009-04-06 14:48:01 +0200815 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
816 if (rl->count[is_sync]+1 >= q->nr_requests) {
Tejun Heof2dbd762011-12-14 00:33:40 +0100817 /*
818 * We want ioc to record batching state. If it's
819 * not already there, creating a new one requires
820 * dropping queue_lock, which in turn requires
821 * retesting conditions to avoid queue hang.
822 */
823 if (!ioc && !retried) {
824 spin_unlock_irq(q->queue_lock);
825 create_io_context(current, gfp_mask, q->node);
826 spin_lock_irq(q->queue_lock);
827 retried = true;
828 goto retry;
829 }
830
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100831 /*
832 * The queue will fill after this allocation, so set
833 * it as full, and mark this process as "batching".
834 * This process will be allowed to complete a batch of
835 * requests, others will be blocked.
836 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200837 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100838 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200839 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100840 } else {
841 if (may_queue != ELV_MQUEUE_MUST
842 && !ioc_batching(q, ioc)) {
843 /*
844 * The queue is full and the allocating
845 * process is not a "batcher", and not
846 * exempted by the IO scheduler
847 */
848 goto out;
849 }
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200852 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Jens Axboe082cf692005-06-28 16:35:11 +0200855 /*
856 * Only allow batching queuers to allocate up to 50% over the defined
857 * limit of requests, otherwise we could have thousands of requests
858 * allocated with any setting of ->nr_requests
859 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200860 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200861 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100862
Jens Axboe1faa16d2009-04-06 14:48:01 +0200863 rl->count[is_sync]++;
864 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200865
Tejun Heof1f8cc92011-12-14 00:33:42 +0100866 /*
867 * Decide whether the new request will be managed by elevator. If
868 * so, mark @rw_flags and increment elvpriv. Non-zero elvpriv will
869 * prevent the current elevator from being destroyed until the new
870 * request is freed. This guarantees icq's won't be destroyed and
871 * makes creating new ones safe.
872 *
873 * Also, lookup icq while holding queue_lock. If it doesn't exist,
874 * it will be created after releasing queue_lock.
875 */
Tejun Heo75eb6c32011-10-19 14:31:22 +0200876 if (blk_rq_should_init_elevator(bio) &&
877 !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags)) {
878 rw_flags |= REQ_ELVPRIV;
879 rl->elvpriv++;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100880 if (et->icq_cache && ioc)
881 icq = ioc_lookup_icq(ioc, q);
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100882 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200883
Jens Axboef253b862010-10-24 22:06:02 +0200884 if (blk_queue_io_stat(q))
885 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 spin_unlock_irq(q->queue_lock);
887
Tejun Heof1f8cc92011-12-14 00:33:42 +0100888 /* create icq if missing */
Shaohua Li05c30b92012-01-19 09:20:10 +0100889 if ((rw_flags & REQ_ELVPRIV) && unlikely(et->icq_cache && !icq)) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100890 icq = ioc_create_icq(q, gfp_mask);
Shaohua Li05c30b92012-01-19 09:20:10 +0100891 if (!icq)
892 goto fail_icq;
893 }
Tejun Heof1f8cc92011-12-14 00:33:42 +0100894
Shaohua Li05c30b92012-01-19 09:20:10 +0100895 rq = blk_alloc_request(q, icq, rw_flags, gfp_mask);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100896
Shaohua Li05c30b92012-01-19 09:20:10 +0100897fail_icq:
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100898 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /*
900 * Allocation failed presumably due to memory. Undo anything
901 * we might have messed up.
902 *
903 * Allocating task should really be put onto the front of the
904 * wait queue, but this is pretty rare.
905 */
906 spin_lock_irq(q->queue_lock);
Tejun Heo75eb6c32011-10-19 14:31:22 +0200907 freed_request(q, rw_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /*
910 * in the very unlikely event that allocation failed and no
911 * requests for this direction was pending, mark us starved
912 * so that freeing of a request in the other direction will
913 * notice us. another possible fix would be to split the
914 * rq mempool into READ and WRITE
915 */
916rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200917 if (unlikely(rl->count[is_sync] == 0))
918 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 goto out;
921 }
922
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100923 /*
924 * ioc may be NULL here, and ioc_batching will be false. That's
925 * OK, if the queue is under the request limit then requests need
926 * not count toward the nr_batch_requests limit. There will always
927 * be some limit enforced by BLK_BATCH_TIME.
928 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (ioc_batching(q, ioc))
930 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100931
Jens Axboe1faa16d2009-04-06 14:48:01 +0200932 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return rq;
935}
936
Tejun Heoda8303c2011-10-19 14:33:05 +0200937/**
938 * get_request_wait - get a free request with retry
939 * @q: request_queue to allocate request from
940 * @rw_flags: RW and SYNC flags
941 * @bio: bio to allocate request for (can be %NULL)
Nick Piggind6344532005-06-28 20:45:14 -0700942 *
Tejun Heoda8303c2011-10-19 14:33:05 +0200943 * Get a free request from @q. This function keeps retrying under memory
944 * pressure and fails iff @q is dead.
945 *
946 * Must be callled with @q->queue_lock held and,
947 * Returns %NULL on failure, with @q->queue_lock held.
948 * Returns !%NULL on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 */
Jens Axboe165125e2007-07-24 09:28:11 +0200950static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200951 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200953 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 struct request *rq;
955
Jens Axboe7749a8d2006-12-13 13:02:26 +0100956 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700957 while (!rq) {
958 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct request_list *rl = &q->rq;
960
Tejun Heo34f60552011-12-14 00:33:37 +0100961 if (unlikely(blk_queue_dead(q)))
Tejun Heoda8303c2011-10-19 14:33:05 +0200962 return NULL;
963
Jens Axboe1faa16d2009-04-06 14:48:01 +0200964 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 TASK_UNINTERRUPTIBLE);
966
Jens Axboe1faa16d2009-04-06 14:48:01 +0200967 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200969 spin_unlock_irq(q->queue_lock);
970 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200972 /*
973 * After sleeping, we become a "batching" process and
974 * will be able to allocate at least one request, and
975 * up to a big batch of them for a small period time.
976 * See ioc_batching, ioc_set_batching
977 */
Tejun Heof2dbd762011-12-14 00:33:40 +0100978 create_io_context(current, GFP_NOIO, q->node);
979 ioc_set_batching(q, current->io_context);
Jens Axboe2056a782006-03-23 20:00:26 +0100980
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200981 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200982 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200983
984 rq = get_request(q, rw_flags, bio, GFP_NOIO);
985 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 return rq;
988}
989
Jens Axboe165125e2007-07-24 09:28:11 +0200990struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct request *rq;
993
Nick Piggind6344532005-06-28 20:45:14 -0700994 spin_lock_irq(q->queue_lock);
Tejun Heoda8303c2011-10-19 14:33:05 +0200995 if (gfp_mask & __GFP_WAIT)
Jens Axboe22e2c502005-06-27 10:55:12 +0200996 rq = get_request_wait(q, rw, NULL);
Tejun Heoda8303c2011-10-19 14:33:05 +0200997 else
Jens Axboe22e2c502005-06-27 10:55:12 +0200998 rq = get_request(q, rw, NULL, gfp_mask);
Tejun Heoda8303c2011-10-19 14:33:05 +0200999 if (!rq)
1000 spin_unlock_irq(q->queue_lock);
Nick Piggind6344532005-06-28 20:45:14 -07001001 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 return rq;
1004}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005EXPORT_SYMBOL(blk_get_request);
1006
1007/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001008 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001009 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001010 * @bio: The bio describing the memory mappings that will be submitted for IO.
1011 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001012 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +02001013 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001014 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
1015 * type commands. Where the struct request needs to be farther initialized by
1016 * the caller. It is passed a &struct bio, which describes the memory info of
1017 * the I/O transfer.
1018 *
1019 * The caller of blk_make_request must make sure that bi_io_vec
1020 * are set to describe the memory buffers. That bio_data_dir() will return
1021 * the needed direction of the request. (And all bio's in the passed bio-chain
1022 * are properly set accordingly)
1023 *
1024 * If called under none-sleepable conditions, mapped bio buffers must not
1025 * need bouncing, by calling the appropriate masked or flagged allocator,
1026 * suitable for the target device. Otherwise the call to blk_queue_bounce will
1027 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +02001028 *
1029 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
1030 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
1031 * anything but the first bio in the chain. Otherwise you risk waiting for IO
1032 * completion of a bio that hasn't been submitted yet, thus resulting in a
1033 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
1034 * of bio_alloc(), as that avoids the mempool deadlock.
1035 * If possible a big IO should be split into smaller parts when allocation
1036 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +02001037 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001038struct request *blk_make_request(struct request_queue *q, struct bio *bio,
1039 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +02001040{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001041 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
1042
1043 if (unlikely(!rq))
1044 return ERR_PTR(-ENOMEM);
1045
1046 for_each_bio(bio) {
1047 struct bio *bounce_bio = bio;
1048 int ret;
1049
1050 blk_queue_bounce(q, &bounce_bio);
1051 ret = blk_rq_append_bio(q, rq, bounce_bio);
1052 if (unlikely(ret)) {
1053 blk_put_request(rq);
1054 return ERR_PTR(ret);
1055 }
1056 }
1057
1058 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +02001059}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001060EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +02001061
1062/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 * blk_requeue_request - put a request back on queue
1064 * @q: request queue where request should be inserted
1065 * @rq: request to be inserted
1066 *
1067 * Description:
1068 * Drivers often keep queueing requests until the hardware cannot accept
1069 * more, when that condition happens we need to put the request back
1070 * on the queue. Must be called with queue lock held.
1071 */
Jens Axboe165125e2007-07-24 09:28:11 +02001072void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001074 blk_delete_timer(rq);
1075 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001076 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (blk_rq_tagged(rq))
1079 blk_queue_end_tag(q, rq);
1080
James Bottomleyba396a62009-05-27 14:17:08 +02001081 BUG_ON(blk_queued_rq(rq));
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 elv_requeue_request(q, rq);
1084}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085EXPORT_SYMBOL(blk_requeue_request);
1086
Tatyana Brokhman57d80192012-12-04 15:54:43 +02001087/**
1088 * blk_reinsert_request() - Insert a request back to the scheduler
1089 * @q: request queue
1090 * @rq: request to be inserted
1091 *
1092 * This function inserts the request back to the scheduler as if
1093 * it was never dispatched.
1094 *
1095 * Return: 0 on success, error code on fail
1096 */
1097int blk_reinsert_request(struct request_queue *q, struct request *rq)
1098{
1099 if (unlikely(!rq) || unlikely(!q))
1100 return -EIO;
1101
1102 blk_delete_timer(rq);
1103 blk_clear_rq_complete(rq);
1104 trace_block_rq_requeue(q, rq);
1105
1106 if (blk_rq_tagged(rq))
1107 blk_queue_end_tag(q, rq);
1108
1109 BUG_ON(blk_queued_rq(rq));
1110
1111 return elv_reinsert_request(q, rq);
1112}
1113EXPORT_SYMBOL(blk_reinsert_request);
1114
1115/**
1116 * blk_reinsert_req_sup() - check whether the scheduler supports
1117 * reinsertion of requests
1118 * @q: request queue
1119 *
1120 * Returns true if the current scheduler supports reinserting
1121 * request. False otherwise
1122 */
1123bool blk_reinsert_req_sup(struct request_queue *q)
1124{
1125 if (unlikely(!q))
1126 return false;
1127 return q->elevator->type->ops.elevator_reinsert_req_fn ? true : false;
1128}
1129EXPORT_SYMBOL(blk_reinsert_req_sup);
1130
Jens Axboe73c10102011-03-08 13:19:51 +01001131static void add_acct_request(struct request_queue *q, struct request *rq,
1132 int where)
1133{
1134 drive_stat_acct(rq, 1);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001135 __elv_add_request(q, rq, where);
Jens Axboe73c10102011-03-08 13:19:51 +01001136}
1137
Tejun Heo074a7ac2008-08-25 19:56:14 +09001138static void part_round_stats_single(int cpu, struct hd_struct *part,
1139 unsigned long now)
1140{
1141 if (now == part->stamp)
1142 return;
1143
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001144 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001145 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001146 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001147 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1148 }
1149 part->stamp = now;
1150}
1151
1152/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001153 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1154 * @cpu: cpu number for stats access
1155 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 *
1157 * The average IO queue length and utilisation statistics are maintained
1158 * by observing the current state of the queue length and the amount of
1159 * time it has been in this state for.
1160 *
1161 * Normally, that accounting is done on IO completion, but that can result
1162 * in more than a second's worth of IO being accounted for within any one
1163 * second, leading to >100% utilisation. To deal with that, we call this
1164 * function to do a round-off before returning the results when reading
1165 * /proc/diskstats. This accounts immediately for all queue usage up to
1166 * the current jiffies and restarts the counters again.
1167 */
Tejun Heoc9959052008-08-25 19:47:21 +09001168void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001169{
1170 unsigned long now = jiffies;
1171
Tejun Heo074a7ac2008-08-25 19:56:14 +09001172 if (part->partno)
1173 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1174 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001175}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001176EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178/*
1179 * queue lock must be held
1180 */
Jens Axboe165125e2007-07-24 09:28:11 +02001181void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (unlikely(!q))
1184 return;
1185 if (unlikely(--req->ref_count))
1186 return;
1187
Tejun Heo8922e162005-10-20 16:23:44 +02001188 elv_completed_request(q, req);
1189
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001190 /* this is a bio leak */
1191 WARN_ON(req->bio != NULL);
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /*
1194 * Request may not have originated from ll_rw_blk. if not,
1195 * it didn't come out of our reserved rq pools
1196 */
Jens Axboe49171e52006-08-10 08:59:11 +02001197 if (req->cmd_flags & REQ_ALLOCED) {
Tejun Heo75eb6c32011-10-19 14:31:22 +02001198 unsigned int flags = req->cmd_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001201 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 blk_free_request(q, req);
Tejun Heo75eb6c32011-10-19 14:31:22 +02001204 freed_request(q, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206}
Mike Christie6e39b692005-11-11 05:30:24 -06001207EXPORT_SYMBOL_GPL(__blk_put_request);
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209void blk_put_request(struct request *req)
1210{
Tejun Heo8922e162005-10-20 16:23:44 +02001211 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001212 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001214 spin_lock_irqsave(q->queue_lock, flags);
1215 __blk_put_request(q, req);
1216 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218EXPORT_SYMBOL(blk_put_request);
1219
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001220/**
1221 * blk_add_request_payload - add a payload to a request
1222 * @rq: request to update
1223 * @page: page backing the payload
1224 * @len: length of the payload.
1225 *
1226 * This allows to later add a payload to an already submitted request by
1227 * a block driver. The driver needs to take care of freeing the payload
1228 * itself.
1229 *
1230 * Note that this is a quite horrible hack and nothing but handling of
1231 * discard requests should ever use it.
1232 */
1233void blk_add_request_payload(struct request *rq, struct page *page,
1234 unsigned int len)
1235{
1236 struct bio *bio = rq->bio;
1237
1238 bio->bi_io_vec->bv_page = page;
1239 bio->bi_io_vec->bv_offset = 0;
1240 bio->bi_io_vec->bv_len = len;
1241
1242 bio->bi_size = len;
1243 bio->bi_vcnt = 1;
1244 bio->bi_phys_segments = 1;
1245
1246 rq->__data_len = rq->resid_len = len;
1247 rq->nr_phys_segments = 1;
1248 rq->buffer = bio_data(bio);
1249}
1250EXPORT_SYMBOL_GPL(blk_add_request_payload);
1251
Jens Axboe73c10102011-03-08 13:19:51 +01001252static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1253 struct bio *bio)
1254{
1255 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1256
Jens Axboe73c10102011-03-08 13:19:51 +01001257 if (!ll_back_merge_fn(q, req, bio))
1258 return false;
1259
1260 trace_block_bio_backmerge(q, bio);
1261
1262 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1263 blk_rq_set_mixed_merge(req);
1264
1265 req->biotail->bi_next = bio;
1266 req->biotail = bio;
1267 req->__data_len += bio->bi_size;
1268 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1269
1270 drive_stat_acct(req, 0);
1271 return true;
1272}
1273
1274static bool bio_attempt_front_merge(struct request_queue *q,
1275 struct request *req, struct bio *bio)
1276{
1277 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001278
Jens Axboe73c10102011-03-08 13:19:51 +01001279 if (!ll_front_merge_fn(q, req, bio))
1280 return false;
1281
1282 trace_block_bio_frontmerge(q, bio);
1283
1284 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1285 blk_rq_set_mixed_merge(req);
1286
Jens Axboe73c10102011-03-08 13:19:51 +01001287 bio->bi_next = req->bio;
1288 req->bio = bio;
1289
1290 /*
1291 * may not be valid. if the low level driver said
1292 * it didn't need a bounce buffer then it better
1293 * not touch req->buffer either...
1294 */
1295 req->buffer = bio_data(bio);
1296 req->__sector = bio->bi_sector;
1297 req->__data_len += bio->bi_size;
1298 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1299
1300 drive_stat_acct(req, 0);
1301 return true;
1302}
1303
Tejun Heobd87b582011-10-19 14:33:08 +02001304/**
1305 * attempt_plug_merge - try to merge with %current's plugged list
1306 * @q: request_queue new bio is being queued at
1307 * @bio: new bio being queued
1308 * @request_count: out parameter for number of traversed plugged requests
1309 *
1310 * Determine whether @bio being queued on @q can be merged with a request
1311 * on %current's plugged list. Returns %true if merge was successful,
1312 * otherwise %false.
1313 *
Tejun Heo07c2bd32012-02-08 09:19:42 +01001314 * Plugging coalesces IOs from the same issuer for the same purpose without
1315 * going through @q->queue_lock. As such it's more of an issuing mechanism
1316 * than scheduling, and the request, while may have elvpriv data, is not
1317 * added on the elevator at this point. In addition, we don't have
1318 * reliable access to the elevator outside queue lock. Only check basic
1319 * merging parameters without querying the elevator.
Jens Axboe73c10102011-03-08 13:19:51 +01001320 */
Tejun Heobd87b582011-10-19 14:33:08 +02001321static bool attempt_plug_merge(struct request_queue *q, struct bio *bio,
1322 unsigned int *request_count)
Jens Axboe73c10102011-03-08 13:19:51 +01001323{
1324 struct blk_plug *plug;
1325 struct request *rq;
1326 bool ret = false;
1327
Tejun Heobd87b582011-10-19 14:33:08 +02001328 plug = current->plug;
Jens Axboe73c10102011-03-08 13:19:51 +01001329 if (!plug)
1330 goto out;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001331 *request_count = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01001332
1333 list_for_each_entry_reverse(rq, &plug->list, queuelist) {
1334 int el_ret;
1335
Shaohua Li1b2e19f2012-04-06 11:37:47 -06001336 if (rq->q == q)
1337 (*request_count)++;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001338
Tejun Heo07c2bd32012-02-08 09:19:42 +01001339 if (rq->q != q || !blk_rq_merge_ok(rq, bio))
Jens Axboe73c10102011-03-08 13:19:51 +01001340 continue;
1341
Tejun Heo050c8ea2012-02-08 09:19:38 +01001342 el_ret = blk_try_merge(rq, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001343 if (el_ret == ELEVATOR_BACK_MERGE) {
1344 ret = bio_attempt_back_merge(q, rq, bio);
1345 if (ret)
1346 break;
1347 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1348 ret = bio_attempt_front_merge(q, rq, bio);
1349 if (ret)
1350 break;
1351 }
1352 }
1353out:
1354 return ret;
1355}
1356
Jens Axboe86db1e22008-01-29 14:53:40 +01001357void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001358{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001359 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001360
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001361 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1362 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001363 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001364
Tejun Heo52d9e672006-01-06 09:49:58 +01001365 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001366 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001367 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001368 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001369}
Maya Erez60181552012-06-27 11:25:26 +03001370EXPORT_SYMBOL(init_request_from_bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001371
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001372void blk_queue_bio(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001374 const bool sync = !!(bio->bi_rw & REQ_SYNC);
Jens Axboe73c10102011-03-08 13:19:51 +01001375 struct blk_plug *plug;
1376 int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
1377 struct request *req;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001378 unsigned int request_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /*
1381 * low level driver can indicate that it wants pages above a
1382 * certain limit bounced to low memory (ie for highmem, or even
1383 * ISA dma in theory)
1384 */
1385 blk_queue_bounce(q, &bio);
1386
Tejun Heo4fed9472010-09-03 11:56:17 +02001387 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001388 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001389 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001390 goto get_rq;
1391 }
1392
Jens Axboe73c10102011-03-08 13:19:51 +01001393 /*
1394 * Check if we can merge with the plugged list before grabbing
1395 * any locks.
1396 */
Tejun Heobd87b582011-10-19 14:33:08 +02001397 if (attempt_plug_merge(q, bio, &request_count))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001398 return;
Jens Axboe73c10102011-03-08 13:19:51 +01001399
1400 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001403 if (el_ret == ELEVATOR_BACK_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001404 if (bio_attempt_back_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001405 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001406 if (!attempt_back_merge(q, req))
1407 elv_merged_request(q, req, el_ret);
1408 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001409 }
Jens Axboe73c10102011-03-08 13:19:51 +01001410 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001411 if (bio_attempt_front_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001412 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001413 if (!attempt_front_merge(q, req))
1414 elv_merged_request(q, req, el_ret);
1415 goto out_unlock;
1416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001420 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001421 * This sync check and mask will be re-done in init_request_from_bio(),
1422 * but we need to set it earlier to expose the sync flag to the
1423 * rq allocator and io schedulers.
1424 */
1425 rw_flags = bio_data_dir(bio);
1426 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001427 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001428
1429 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001430 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001431 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001432 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001433 req = get_request_wait(q, rw_flags, bio);
Tejun Heoda8303c2011-10-19 14:33:05 +02001434 if (unlikely(!req)) {
1435 bio_endio(bio, -ENODEV); /* @q is dead */
1436 goto out_unlock;
1437 }
Nick Piggind6344532005-06-28 20:45:14 -07001438
Nick Piggin450991b2005-06-28 20:45:13 -07001439 /*
1440 * After dropping the lock and possibly sleeping here, our request
1441 * may now be mergeable after it had proven unmergeable (above).
1442 * We don't worry about that case for efficiency. It won't happen
1443 * often, and the elevators are able to handle it.
1444 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001445 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Tao Ma9562ad92011-10-24 16:11:30 +02001447 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
Jens Axboe11ccf112011-07-26 15:01:15 +02001448 req->cpu = raw_smp_processor_id();
Tejun Heodd831002010-09-03 11:56:16 +02001449
Jens Axboe73c10102011-03-08 13:19:51 +01001450 plug = current->plug;
Jens Axboe721a9602011-03-09 11:56:30 +01001451 if (plug) {
Jens Axboedc6d36c2011-04-12 10:28:28 +02001452 /*
1453 * If this is the first request added after a plug, fire
1454 * of a plug trace. If others have been added before, check
1455 * if we have multiple devices in this plug. If so, make a
1456 * note to sort the list before dispatch.
1457 */
1458 if (list_empty(&plug->list))
1459 trace_block_plug(q);
Shaohua Li3540d5e2011-11-16 09:21:50 +01001460 else {
1461 if (!plug->should_sort) {
1462 struct request *__rq;
Jens Axboe73c10102011-03-08 13:19:51 +01001463
Shaohua Li3540d5e2011-11-16 09:21:50 +01001464 __rq = list_entry_rq(plug->list.prev);
1465 if (__rq->q != q)
1466 plug->should_sort = 1;
1467 }
Shaohua Li019ceb72011-11-16 09:21:50 +01001468 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Shaohua Li3540d5e2011-11-16 09:21:50 +01001469 blk_flush_plug_list(plug, false);
Shaohua Li019ceb72011-11-16 09:21:50 +01001470 trace_block_plug(q);
1471 }
Jens Axboe73c10102011-03-08 13:19:51 +01001472 }
Shaohua Lia6327162011-08-24 16:04:32 +02001473 list_add_tail(&req->queuelist, &plug->list);
1474 drive_stat_acct(req, 1);
Jens Axboe73c10102011-03-08 13:19:51 +01001475 } else {
1476 spin_lock_irq(q->queue_lock);
1477 add_acct_request(q, req, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02001478 __blk_run_queue(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001479out_unlock:
1480 spin_unlock_irq(q->queue_lock);
1481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
Jens Axboec20e8de2011-09-12 12:03:37 +02001483EXPORT_SYMBOL_GPL(blk_queue_bio); /* for device mapper only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485/*
1486 * If bio->bi_dev is a partition, remap the location
1487 */
1488static inline void blk_partition_remap(struct bio *bio)
1489{
1490 struct block_device *bdev = bio->bi_bdev;
1491
Jens Axboebf2de6f2007-09-27 13:01:25 +02001492 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 bio->bi_sector += p->start_sect;
1496 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001497
Mike Snitzerd07335e2010-11-16 12:52:38 +01001498 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1499 bdev->bd_dev,
1500 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502}
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504static void handle_bad_sector(struct bio *bio)
1505{
1506 char b[BDEVNAME_SIZE];
1507
1508 printk(KERN_INFO "attempt to access beyond end of device\n");
1509 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1510 bdevname(bio->bi_bdev, b),
1511 bio->bi_rw,
1512 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001513 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 set_bit(BIO_EOF, &bio->bi_flags);
1516}
1517
Akinobu Mitac17bb492006-12-08 02:39:46 -08001518#ifdef CONFIG_FAIL_MAKE_REQUEST
1519
1520static DECLARE_FAULT_ATTR(fail_make_request);
1521
1522static int __init setup_fail_make_request(char *str)
1523{
1524 return setup_fault_attr(&fail_make_request, str);
1525}
1526__setup("fail_make_request=", setup_fail_make_request);
1527
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001528static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001529{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001530 return part->make_it_fail && should_fail(&fail_make_request, bytes);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001531}
1532
1533static int __init fail_make_request_debugfs(void)
1534{
Akinobu Mitadd48c082011-08-03 16:21:01 -07001535 struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
1536 NULL, &fail_make_request);
1537
1538 return IS_ERR(dir) ? PTR_ERR(dir) : 0;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001539}
1540
1541late_initcall(fail_make_request_debugfs);
1542
1543#else /* CONFIG_FAIL_MAKE_REQUEST */
1544
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001545static inline bool should_fail_request(struct hd_struct *part,
1546 unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001547{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001548 return false;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001549}
1550
1551#endif /* CONFIG_FAIL_MAKE_REQUEST */
1552
Jens Axboec07e2b42007-07-18 13:27:58 +02001553/*
1554 * Check whether this bio extends beyond the end of the device.
1555 */
1556static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1557{
1558 sector_t maxsector;
1559
1560 if (!nr_sectors)
1561 return 0;
1562
1563 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001564 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001565 if (maxsector) {
1566 sector_t sector = bio->bi_sector;
1567
1568 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1569 /*
1570 * This may well happen - the kernel calls bread()
1571 * without checking the size of the device, e.g., when
1572 * mounting a device.
1573 */
1574 handle_bad_sector(bio);
1575 return 1;
1576 }
1577 }
1578
1579 return 0;
1580}
1581
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001582static noinline_for_stack bool
1583generic_make_request_checks(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Jens Axboe165125e2007-07-24 09:28:11 +02001585 struct request_queue *q;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001586 int nr_sectors = bio_sectors(bio);
Jens Axboe51fd77b2007-11-02 08:49:08 +01001587 int err = -EIO;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001588 char b[BDEVNAME_SIZE];
1589 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Jens Axboec07e2b42007-07-18 13:27:58 +02001593 if (bio_check_eod(bio, nr_sectors))
1594 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001596 q = bdev_get_queue(bio->bi_bdev);
1597 if (unlikely(!q)) {
1598 printk(KERN_ERR
1599 "generic_make_request: Trying to access "
1600 "nonexistent block-device %s (%Lu)\n",
1601 bdevname(bio->bi_bdev, b),
1602 (long long) bio->bi_sector);
1603 goto end_io;
1604 }
1605
Steve Mucklef132c6c2012-06-06 18:30:57 -07001606 if (unlikely(!(bio->bi_rw & (REQ_DISCARD | REQ_SANITIZE)) &&
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001607 nr_sectors > queue_max_hw_sectors(q))) {
1608 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
1609 bdevname(bio->bi_bdev, b),
1610 bio_sectors(bio),
1611 queue_max_hw_sectors(q));
1612 goto end_io;
1613 }
1614
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001615 part = bio->bi_bdev->bd_part;
1616 if (should_fail_request(part, bio->bi_size) ||
1617 should_fail_request(&part_to_disk(part)->part0,
1618 bio->bi_size))
1619 goto end_io;
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 /*
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001622 * If this device has partitions, remap block n
1623 * of partition p to block n+start(p) of the disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001625 blk_partition_remap(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001627 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1628 goto end_io;
1629
1630 if (bio_check_eod(bio, nr_sectors))
1631 goto end_io;
1632
1633 /*
1634 * Filter flush bio's early so that make_request based
1635 * drivers without flush support don't have to worry
1636 * about them.
1637 */
1638 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1639 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1640 if (!nr_sectors) {
1641 err = 0;
Tejun Heoa7384672008-11-28 13:32:03 +09001642 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001646 if ((bio->bi_rw & REQ_DISCARD) &&
1647 (!blk_queue_discard(q) ||
1648 ((bio->bi_rw & REQ_SECURE) &&
1649 !blk_queue_secdiscard(q)))) {
1650 err = -EOPNOTSUPP;
1651 goto end_io;
1652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Steve Mucklef132c6c2012-06-06 18:30:57 -07001654 if ((bio->bi_rw & REQ_SANITIZE) &&
1655 (!blk_queue_sanitize(q))) {
1656 pr_info("%s - got a SANITIZE request but the queue "
1657 "doesn't support sanitize requests", __func__);
1658 err = -EOPNOTSUPP;
1659 goto end_io;
1660 }
1661
Tejun Heobc16a4f2011-10-19 14:33:01 +02001662 if (blk_throtl_bio(q, bio))
1663 return false; /* throttled, will be resubmitted later */
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001664
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001665 trace_block_bio_queue(q, bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001666 return true;
Tejun Heoa7384672008-11-28 13:32:03 +09001667
1668end_io:
1669 bio_endio(bio, err);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001670 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001673/**
1674 * generic_make_request - hand a buffer to its device driver for I/O
1675 * @bio: The bio describing the location in memory and on the device.
1676 *
1677 * generic_make_request() is used to make I/O requests of block
1678 * devices. It is passed a &struct bio, which describes the I/O that needs
1679 * to be done.
1680 *
1681 * generic_make_request() does not return any status. The
1682 * success/failure status of the request, along with notification of
1683 * completion, is delivered asynchronously through the bio->bi_end_io
1684 * function described (one day) else where.
1685 *
1686 * The caller of generic_make_request must make sure that bi_io_vec
1687 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1688 * set to describe the device address, and the
1689 * bi_end_io and optionally bi_private are set to describe how
1690 * completion notification should be signaled.
1691 *
1692 * generic_make_request and the drivers it calls may use bi_next if this
1693 * bio happens to be merged with someone else, and may resubmit the bio to
1694 * a lower device by calling into generic_make_request recursively, which
1695 * means the bio should NOT be touched after the call to ->make_request_fn.
Neil Brownd89d8792007-05-01 09:53:42 +02001696 */
1697void generic_make_request(struct bio *bio)
1698{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001699 struct bio_list bio_list_on_stack;
1700
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001701 if (!generic_make_request_checks(bio))
1702 return;
1703
1704 /*
1705 * We only want one ->make_request_fn to be active at a time, else
1706 * stack usage with stacked devices could be a problem. So use
1707 * current->bio_list to keep a list of requests submited by a
1708 * make_request_fn function. current->bio_list is also used as a
1709 * flag to say if generic_make_request is currently active in this
1710 * task or not. If it is NULL, then no make_request is active. If
1711 * it is non-NULL, then a make_request is active, and new requests
1712 * should be added at the tail
1713 */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001714 if (current->bio_list) {
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001715 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001716 return;
1717 }
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001718
Neil Brownd89d8792007-05-01 09:53:42 +02001719 /* following loop may be a bit non-obvious, and so deserves some
1720 * explanation.
1721 * Before entering the loop, bio->bi_next is NULL (as all callers
1722 * ensure that) so we have a list with a single bio.
1723 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001724 * we assign bio_list to a pointer to the bio_list_on_stack,
1725 * thus initialising the bio_list of new bios to be
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001726 * added. ->make_request() may indeed add some more bios
Neil Brownd89d8792007-05-01 09:53:42 +02001727 * through a recursive call to generic_make_request. If it
1728 * did, we find a non-NULL value in bio_list and re-enter the loop
1729 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001730 * of the top of the list (no pretending) and so remove it from
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001731 * bio_list, and call into ->make_request() again.
Neil Brownd89d8792007-05-01 09:53:42 +02001732 */
1733 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001734 bio_list_init(&bio_list_on_stack);
1735 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001736 do {
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001737 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
1738
1739 q->make_request_fn(q, bio);
1740
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001741 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001742 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001743 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001744}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745EXPORT_SYMBOL(generic_make_request);
1746
1747/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001748 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1750 * @bio: The &struct bio which describes the I/O
1751 *
1752 * submit_bio() is very similar in purpose to generic_make_request(), and
1753 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001754 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 *
1756 */
1757void submit_bio(int rw, struct bio *bio)
1758{
1759 int count = bio_sectors(bio);
1760
Jens Axboe22e2c502005-06-27 10:55:12 +02001761 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Jens Axboebf2de6f2007-09-27 13:01:25 +02001763 /*
1764 * If it's a regular read/write or a barrier with data attached,
1765 * go through the normal accounting stuff before submission.
1766 */
Maya Erez73937f52012-05-24 23:33:05 +03001767 if (bio_has_data(bio) &&
1768 (!(rw & (REQ_DISCARD | REQ_SANITIZE)))) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001769 if (rw & WRITE) {
1770 count_vm_events(PGPGOUT, count);
1771 } else {
1772 task_io_account_read(bio->bi_size);
1773 count_vm_events(PGPGIN, count);
1774 }
1775
1776 if (unlikely(block_dump)) {
1777 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001778 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001779 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001780 (rw & WRITE) ? "WRITE" : "READ",
1781 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001782 bdevname(bio->bi_bdev, b),
1783 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
1787 generic_make_request(bio);
1788}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789EXPORT_SYMBOL(submit_bio);
1790
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001791/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001792 * blk_rq_check_limits - Helper function to check a request for the queue limit
1793 * @q: the queue
1794 * @rq: the request being checked
1795 *
1796 * Description:
1797 * @rq may have been made based on weaker limitations of upper-level queues
1798 * in request stacking drivers, and it may violate the limitation of @q.
1799 * Since the block layer and the underlying device driver trust @rq
1800 * after it is inserted to @q, it should be checked against @q before
1801 * the insertion using this generic function.
1802 *
1803 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001804 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001805 * Request stacking drivers like request-based dm may change the queue
1806 * limits while requests are in the queue (e.g. dm's table swapping).
1807 * Such request stacking drivers should check those requests agaist
1808 * the new queue limits again when they dispatch those requests,
1809 * although such checkings are also done against the old queue limits
1810 * when submitting requests.
1811 */
1812int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1813{
Maya Erez73937f52012-05-24 23:33:05 +03001814 if (rq->cmd_flags & (REQ_DISCARD | REQ_SANITIZE))
ike Snitzer33839772010-08-08 12:11:33 -04001815 return 0;
1816
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001817 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1818 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001819 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1820 return -EIO;
1821 }
1822
1823 /*
1824 * queue's settings related to segment counting like q->bounce_pfn
1825 * may differ from that of other stacking queues.
1826 * Recalculate it to check the request correctly on this queue's
1827 * limitation.
1828 */
1829 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001830 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001831 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1832 return -EIO;
1833 }
1834
1835 return 0;
1836}
1837EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1838
1839/**
1840 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1841 * @q: the queue to submit the request
1842 * @rq: the request being queued
1843 */
1844int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1845{
1846 unsigned long flags;
Jeff Moyer4853aba2011-08-15 21:37:25 +02001847 int where = ELEVATOR_INSERT_BACK;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001848
1849 if (blk_rq_check_limits(q, rq))
1850 return -EIO;
1851
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001852 if (rq->rq_disk &&
1853 should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001854 return -EIO;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001855
1856 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo8ba61432011-12-14 00:33:37 +01001857 if (unlikely(blk_queue_dead(q))) {
1858 spin_unlock_irqrestore(q->queue_lock, flags);
1859 return -ENODEV;
1860 }
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001861
1862 /*
1863 * Submitting request must be dequeued before calling this function
1864 * because it will be linked to another request_queue
1865 */
1866 BUG_ON(blk_queued_rq(rq));
1867
Jeff Moyer4853aba2011-08-15 21:37:25 +02001868 if (rq->cmd_flags & (REQ_FLUSH|REQ_FUA))
1869 where = ELEVATOR_INSERT_FLUSH;
1870
1871 add_acct_request(q, rq, where);
Jeff Moyere67b77c2011-10-17 12:57:23 +02001872 if (where == ELEVATOR_INSERT_FLUSH)
1873 __blk_run_queue(q);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001874 spin_unlock_irqrestore(q->queue_lock, flags);
1875
1876 return 0;
1877}
1878EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1879
Tejun Heo80a761f2009-07-03 17:48:17 +09001880/**
1881 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1882 * @rq: request to examine
1883 *
1884 * Description:
1885 * A request could be merge of IOs which require different failure
1886 * handling. This function determines the number of bytes which
1887 * can be failed from the beginning of the request without
1888 * crossing into area which need to be retried further.
1889 *
1890 * Return:
1891 * The number of bytes to fail.
1892 *
1893 * Context:
1894 * queue_lock must be held.
1895 */
1896unsigned int blk_rq_err_bytes(const struct request *rq)
1897{
1898 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1899 unsigned int bytes = 0;
1900 struct bio *bio;
1901
1902 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1903 return blk_rq_bytes(rq);
1904
1905 /*
1906 * Currently the only 'mixing' which can happen is between
1907 * different fastfail types. We can safely fail portions
1908 * which have all the failfast bits that the first one has -
1909 * the ones which are at least as eager to fail as the first
1910 * one.
1911 */
1912 for (bio = rq->bio; bio; bio = bio->bi_next) {
1913 if ((bio->bi_rw & ff) != ff)
1914 break;
1915 bytes += bio->bi_size;
1916 }
1917
1918 /* this could lead to infinite loop */
1919 BUG_ON(blk_rq_bytes(rq) && !bytes);
1920 return bytes;
1921}
1922EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1923
Jens Axboebc58ba92009-01-23 10:54:44 +01001924static void blk_account_io_completion(struct request *req, unsigned int bytes)
1925{
Jens Axboec2553b52009-04-24 08:10:11 +02001926 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001927 const int rw = rq_data_dir(req);
1928 struct hd_struct *part;
1929 int cpu;
1930
1931 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001932 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001933 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1934 part_stat_unlock();
1935 }
1936}
1937
1938static void blk_account_io_done(struct request *req)
1939{
Jens Axboebc58ba92009-01-23 10:54:44 +01001940 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001941 * Account IO completion. flush_rq isn't accounted as a
1942 * normal IO on queueing nor completion. Accounting the
1943 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001944 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001945 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001946 unsigned long duration = jiffies - req->start_time;
1947 const int rw = rq_data_dir(req);
1948 struct hd_struct *part;
1949 int cpu;
1950
1951 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001952 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001953
1954 part_stat_inc(cpu, part, ios[rw]);
1955 part_stat_add(cpu, part, ticks[rw], duration);
1956 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001957 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001958
Jens Axboe6c23a962011-01-07 08:43:37 +01001959 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001960 part_stat_unlock();
1961 }
1962}
1963
Tejun Heo53a08802008-12-03 12:41:26 +01001964/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001965 * blk_peek_request - peek at the top of a request queue
1966 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001967 *
1968 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001969 * Return the request at the top of @q. The returned request
1970 * should be started using blk_start_request() before LLD starts
1971 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001972 *
1973 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001974 * Pointer to the request at the top of @q if available. Null
1975 * otherwise.
1976 *
1977 * Context:
1978 * queue_lock must be held.
1979 */
1980struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001981{
1982 struct request *rq;
1983 int ret;
1984
1985 while ((rq = __elv_next_request(q)) != NULL) {
1986 if (!(rq->cmd_flags & REQ_STARTED)) {
1987 /*
1988 * This is the first time the device driver
1989 * sees this request (possibly after
1990 * requeueing). Notify IO scheduler.
1991 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001992 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001993 elv_activate_rq(q, rq);
1994
1995 /*
1996 * just mark as started even if we don't start
1997 * it, a request that has been delayed should
1998 * not be passed by new incoming requests
1999 */
2000 rq->cmd_flags |= REQ_STARTED;
2001 trace_block_rq_issue(q, rq);
2002 }
2003
2004 if (!q->boundary_rq || q->boundary_rq == rq) {
2005 q->end_sector = rq_end_sector(rq);
2006 q->boundary_rq = NULL;
2007 }
2008
2009 if (rq->cmd_flags & REQ_DONTPREP)
2010 break;
2011
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002012 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002013 /*
2014 * make sure space for the drain appears we
2015 * know we can do this because max_hw_segments
2016 * has been adjusted to be one fewer than the
2017 * device can handle
2018 */
2019 rq->nr_phys_segments++;
2020 }
2021
2022 if (!q->prep_rq_fn)
2023 break;
2024
2025 ret = q->prep_rq_fn(q, rq);
2026 if (ret == BLKPREP_OK) {
2027 break;
2028 } else if (ret == BLKPREP_DEFER) {
2029 /*
2030 * the request may have been (partially) prepped.
2031 * we need to keep this request in the front to
2032 * avoid resource deadlock. REQ_STARTED will
2033 * prevent other fs requests from passing this one.
2034 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002035 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09002036 !(rq->cmd_flags & REQ_DONTPREP)) {
2037 /*
2038 * remove the space for the drain we added
2039 * so that we don't add it again
2040 */
2041 --rq->nr_phys_segments;
2042 }
2043
2044 rq = NULL;
2045 break;
2046 } else if (ret == BLKPREP_KILL) {
2047 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02002048 /*
2049 * Mark this request as started so we don't trigger
2050 * any debug logic in the end I/O path.
2051 */
2052 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09002053 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09002054 } else {
2055 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2056 break;
2057 }
2058 }
2059
2060 return rq;
2061}
Tejun Heo9934c8c2009-05-08 11:54:16 +09002062EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09002063
Tejun Heo9934c8c2009-05-08 11:54:16 +09002064void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09002065{
Tejun Heo9934c8c2009-05-08 11:54:16 +09002066 struct request_queue *q = rq->q;
2067
Tejun Heo158dbda2009-04-23 11:05:18 +09002068 BUG_ON(list_empty(&rq->queuelist));
2069 BUG_ON(ELV_ON_HASH(rq));
2070
2071 list_del_init(&rq->queuelist);
2072
2073 /*
2074 * the time frame between a request being removed from the lists
2075 * and to it is freed is accounted as io that is in progress at
2076 * the driver side.
2077 */
Divyesh Shah91952912010-04-01 15:01:41 -07002078 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02002079 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07002080 set_io_start_time_ns(rq);
2081 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002082}
2083
Tejun Heo5efccd12009-04-23 11:05:18 +09002084/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002085 * blk_start_request - start request processing on the driver
2086 * @req: request to dequeue
2087 *
2088 * Description:
2089 * Dequeue @req and start timeout timer on it. This hands off the
2090 * request to the driver.
2091 *
2092 * Block internal functions which don't want to start timer should
2093 * call blk_dequeue_request().
2094 *
2095 * Context:
2096 * queue_lock must be held.
2097 */
2098void blk_start_request(struct request *req)
2099{
2100 blk_dequeue_request(req);
2101
2102 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09002103 * We are now handing the request to the hardware, initialize
2104 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09002105 */
Tejun Heo5f49f632009-05-19 18:33:05 +09002106 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02002107 if (unlikely(blk_bidi_rq(req)))
2108 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
2109
Tejun Heo9934c8c2009-05-08 11:54:16 +09002110 blk_add_timer(req);
2111}
2112EXPORT_SYMBOL(blk_start_request);
2113
2114/**
2115 * blk_fetch_request - fetch a request from a request queue
2116 * @q: request queue to fetch a request from
2117 *
2118 * Description:
2119 * Return the request at the top of @q. The request is started on
2120 * return and LLD can start processing it immediately.
2121 *
2122 * Return:
2123 * Pointer to the request at the top of @q if available. Null
2124 * otherwise.
2125 *
2126 * Context:
2127 * queue_lock must be held.
2128 */
2129struct request *blk_fetch_request(struct request_queue *q)
2130{
2131 struct request *rq;
2132
2133 rq = blk_peek_request(q);
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +02002134 if (rq) {
Tatyana Brokhman2c415182013-03-12 21:02:33 +02002135 if (rq->cmd_flags & REQ_URGENT) {
2136 WARN_ON(q->dispatched_urgent);
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +02002137 q->dispatched_urgent = true;
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +02002138 }
Tejun Heo9934c8c2009-05-08 11:54:16 +09002139 blk_start_request(rq);
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +02002140 }
Tejun Heo9934c8c2009-05-08 11:54:16 +09002141 return rq;
2142}
2143EXPORT_SYMBOL(blk_fetch_request);
2144
2145/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002146 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002147 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002148 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002149 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002150 *
2151 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002152 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2153 * the request structure even if @req doesn't have leftover.
2154 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002155 *
2156 * This special helper function is only for request stacking drivers
2157 * (e.g. request-based dm) so that they can handle partial completion.
2158 * Actual device drivers should use blk_end_request instead.
2159 *
2160 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2161 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002162 *
2163 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002164 * %false - this request doesn't have any more data
2165 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002166 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002167bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002169 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct bio *bio;
2171
Tejun Heo2e60e022009-04-23 11:05:18 +09002172 if (!req->bio)
2173 return false;
2174
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002175 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002178 * For fs requests, rq is just carrier of independent bio's
2179 * and each partial completion should be handled separately.
2180 * Reset per-request error on each partial completion.
2181 *
2182 * TODO: tj: This is too subtle. It would be better to let
2183 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002185 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 req->errors = 0;
2187
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002188 if (error && req->cmd_type == REQ_TYPE_FS &&
2189 !(req->cmd_flags & REQ_QUIET)) {
Hannes Reinecke79775562011-01-18 10:13:13 +01002190 char *error_type;
2191
2192 switch (error) {
2193 case -ENOLINK:
2194 error_type = "recoverable transport";
2195 break;
2196 case -EREMOTEIO:
2197 error_type = "critical target";
2198 break;
2199 case -EBADE:
2200 error_type = "critical nexus";
2201 break;
2202 case -EIO:
2203 default:
2204 error_type = "I/O";
2205 break;
2206 }
Asutosh Das75de0c32013-03-07 17:43:35 +05302207 printk_ratelimited(
2208 KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
2209 error_type,
2210 req->rq_disk ? req->rq_disk->disk_name : "?",
2211 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213
Jens Axboebc58ba92009-01-23 10:54:44 +01002214 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 total_bytes = bio_nbytes = 0;
2217 while ((bio = req->bio) != NULL) {
2218 int nbytes;
2219
2220 if (nr_bytes >= bio->bi_size) {
2221 req->bio = bio->bi_next;
2222 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002223 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 next_idx = 0;
2225 bio_nbytes = 0;
2226 } else {
2227 int idx = bio->bi_idx + next_idx;
2228
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002229 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002231 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002232 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 break;
2234 }
2235
2236 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2237 BIO_BUG_ON(nbytes > bio->bi_size);
2238
2239 /*
2240 * not a complete bvec done
2241 */
2242 if (unlikely(nbytes > nr_bytes)) {
2243 bio_nbytes += nr_bytes;
2244 total_bytes += nr_bytes;
2245 break;
2246 }
2247
2248 /*
2249 * advance to the next vector
2250 */
2251 next_idx++;
2252 bio_nbytes += nbytes;
2253 }
2254
2255 total_bytes += nbytes;
2256 nr_bytes -= nbytes;
2257
Jens Axboe6728cb02008-01-31 13:03:55 +01002258 bio = req->bio;
2259 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 /*
2261 * end more in this run, or just return 'not-done'
2262 */
2263 if (unlikely(nr_bytes <= 0))
2264 break;
2265 }
2266 }
2267
2268 /*
2269 * completely done
2270 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002271 if (!req->bio) {
2272 /*
2273 * Reset counters so that the request stacking driver
2274 * can find how many bytes remain in the request
2275 * later.
2276 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002277 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002278 return false;
2279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 /*
2282 * if the request wasn't completed, update state
2283 */
2284 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002285 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 bio->bi_idx += next_idx;
2287 bio_iovec(bio)->bv_offset += nr_bytes;
2288 bio_iovec(bio)->bv_len -= nr_bytes;
2289 }
2290
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002291 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002292 req->buffer = bio_data(req->bio);
2293
2294 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002295 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002296 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002297
Tejun Heo80a761f2009-07-03 17:48:17 +09002298 /* mixed attributes always follow the first bio */
2299 if (req->cmd_flags & REQ_MIXED_MERGE) {
2300 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2301 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2302 }
2303
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002304 /*
2305 * If total number of sectors is less than the first segment
2306 * size, something has gone terribly wrong.
2307 */
2308 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
Jens Axboe81829242011-03-30 09:51:33 +02002309 blk_dump_rq_flags(req, "request botched");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002310 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002311 }
2312
2313 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002315
Tejun Heo2e60e022009-04-23 11:05:18 +09002316 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
Tejun Heo2e60e022009-04-23 11:05:18 +09002318EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Tejun Heo2e60e022009-04-23 11:05:18 +09002320static bool blk_update_bidi_request(struct request *rq, int error,
2321 unsigned int nr_bytes,
2322 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002323{
Tejun Heo2e60e022009-04-23 11:05:18 +09002324 if (blk_update_request(rq, error, nr_bytes))
2325 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002326
Tejun Heo2e60e022009-04-23 11:05:18 +09002327 /* Bidi request must be completed as a whole */
2328 if (unlikely(blk_bidi_rq(rq)) &&
2329 blk_update_request(rq->next_rq, error, bidi_bytes))
2330 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002331
Jens Axboee2e1a142010-06-09 10:42:09 +02002332 if (blk_queue_add_random(rq->q))
2333 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002334
2335 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
James Bottomley28018c22010-07-01 19:49:17 +09002338/**
2339 * blk_unprep_request - unprepare a request
2340 * @req: the request
2341 *
2342 * This function makes a request ready for complete resubmission (or
2343 * completion). It happens only after all error handling is complete,
2344 * so represents the appropriate moment to deallocate any resources
2345 * that were allocated to the request in the prep_rq_fn. The queue
2346 * lock is held when calling this.
2347 */
2348void blk_unprep_request(struct request *req)
2349{
2350 struct request_queue *q = req->q;
2351
2352 req->cmd_flags &= ~REQ_DONTPREP;
2353 if (q->unprep_rq_fn)
2354 q->unprep_rq_fn(q, req);
2355}
2356EXPORT_SYMBOL_GPL(blk_unprep_request);
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358/*
2359 * queue lock must be held
2360 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002361static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002363 if (blk_rq_tagged(req))
2364 blk_queue_end_tag(req->q, req);
2365
James Bottomleyba396a62009-05-27 14:17:08 +02002366 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002368 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002369 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Mike Andersone78042e2008-10-30 02:16:20 -07002371 blk_delete_timer(req);
2372
James Bottomley28018c22010-07-01 19:49:17 +09002373 if (req->cmd_flags & REQ_DONTPREP)
2374 blk_unprep_request(req);
2375
2376
Jens Axboebc58ba92009-01-23 10:54:44 +01002377 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002380 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002381 else {
2382 if (blk_bidi_rq(req))
2383 __blk_put_request(req->next_rq->q, req->next_rq);
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387}
2388
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002389/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002390 * blk_end_bidi_request - Complete a bidi request
2391 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002392 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002393 * @nr_bytes: number of bytes to complete @rq
2394 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002395 *
2396 * Description:
2397 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002398 * Drivers that supports bidi can safely call this member for any
2399 * type of request, bidi or uni. In the later case @bidi_bytes is
2400 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002401 *
2402 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002403 * %false - we are done with this request
2404 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002405 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002406static bool blk_end_bidi_request(struct request *rq, int error,
2407 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002408{
2409 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002410 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002411
Tejun Heo2e60e022009-04-23 11:05:18 +09002412 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2413 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002414
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002415 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002416 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002417 spin_unlock_irqrestore(q->queue_lock, flags);
2418
Tejun Heo2e60e022009-04-23 11:05:18 +09002419 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002420}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002421
2422/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002423 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2424 * @rq: the request to complete
2425 * @error: %0 for success, < %0 for error
2426 * @nr_bytes: number of bytes to complete @rq
2427 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002428 *
2429 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002430 * Identical to blk_end_bidi_request() except that queue lock is
2431 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002432 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002433 * Return:
2434 * %false - we are done with this request
2435 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002436 **/
Jeff Moyer4853aba2011-08-15 21:37:25 +02002437bool __blk_end_bidi_request(struct request *rq, int error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002438 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002439{
Tejun Heo2e60e022009-04-23 11:05:18 +09002440 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2441 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002442
Tejun Heo2e60e022009-04-23 11:05:18 +09002443 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002444
Tejun Heo2e60e022009-04-23 11:05:18 +09002445 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002446}
2447
2448/**
2449 * blk_end_request - Helper function for drivers to complete the request.
2450 * @rq: the request being processed
2451 * @error: %0 for success, < %0 for error
2452 * @nr_bytes: number of bytes to complete
2453 *
2454 * Description:
2455 * Ends I/O on a number of bytes attached to @rq.
2456 * If @rq has leftover, sets it up for the next range of segments.
2457 *
2458 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002459 * %false - we are done with this request
2460 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002461 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002462bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002463{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002464 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002465}
Jens Axboe56ad1742009-07-28 22:11:24 +02002466EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002467
2468/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002469 * blk_end_request_all - Helper function for drives to finish the request.
2470 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002471 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002472 *
2473 * Description:
2474 * Completely finish @rq.
2475 */
2476void blk_end_request_all(struct request *rq, int error)
2477{
2478 bool pending;
2479 unsigned int bidi_bytes = 0;
2480
2481 if (unlikely(blk_bidi_rq(rq)))
2482 bidi_bytes = blk_rq_bytes(rq->next_rq);
2483
2484 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2485 BUG_ON(pending);
2486}
Jens Axboe56ad1742009-07-28 22:11:24 +02002487EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002488
2489/**
2490 * blk_end_request_cur - Helper function to finish the current request chunk.
2491 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002492 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002493 *
2494 * Description:
2495 * Complete the current consecutively mapped chunk from @rq.
2496 *
2497 * Return:
2498 * %false - we are done with this request
2499 * %true - still buffers pending for this request
2500 */
2501bool blk_end_request_cur(struct request *rq, int error)
2502{
2503 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2504}
Jens Axboe56ad1742009-07-28 22:11:24 +02002505EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002506
2507/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002508 * blk_end_request_err - Finish a request till the next failure boundary.
2509 * @rq: the request to finish till the next failure boundary for
2510 * @error: must be negative errno
2511 *
2512 * Description:
2513 * Complete @rq till the next failure boundary.
2514 *
2515 * Return:
2516 * %false - we are done with this request
2517 * %true - still buffers pending for this request
2518 */
2519bool blk_end_request_err(struct request *rq, int error)
2520{
2521 WARN_ON(error >= 0);
2522 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2523}
2524EXPORT_SYMBOL_GPL(blk_end_request_err);
2525
2526/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002527 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002528 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002529 * @error: %0 for success, < %0 for error
2530 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002531 *
2532 * Description:
2533 * Must be called with queue lock held unlike blk_end_request().
2534 *
2535 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002536 * %false - we are done with this request
2537 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002538 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002539bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002540{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002541 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002542}
Jens Axboe56ad1742009-07-28 22:11:24 +02002543EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002544
2545/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002546 * __blk_end_request_all - Helper function for drives to finish the request.
2547 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002548 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002549 *
2550 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002551 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002552 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002553void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002554{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002555 bool pending;
2556 unsigned int bidi_bytes = 0;
2557
2558 if (unlikely(blk_bidi_rq(rq)))
2559 bidi_bytes = blk_rq_bytes(rq->next_rq);
2560
2561 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2562 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002563}
Jens Axboe56ad1742009-07-28 22:11:24 +02002564EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002565
2566/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002567 * __blk_end_request_cur - Helper function to finish the current request chunk.
2568 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002569 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002570 *
2571 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002572 * Complete the current consecutively mapped chunk from @rq. Must
2573 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002574 *
2575 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002576 * %false - we are done with this request
2577 * %true - still buffers pending for this request
2578 */
2579bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002580{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002581 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002582}
Jens Axboe56ad1742009-07-28 22:11:24 +02002583EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002584
Tejun Heo80a761f2009-07-03 17:48:17 +09002585/**
2586 * __blk_end_request_err - Finish a request till the next failure boundary.
2587 * @rq: the request to finish till the next failure boundary for
2588 * @error: must be negative errno
2589 *
2590 * Description:
2591 * Complete @rq till the next failure boundary. Must be called
2592 * with queue lock held.
2593 *
2594 * Return:
2595 * %false - we are done with this request
2596 * %true - still buffers pending for this request
2597 */
2598bool __blk_end_request_err(struct request *rq, int error)
2599{
2600 WARN_ON(error >= 0);
2601 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2602}
2603EXPORT_SYMBOL_GPL(__blk_end_request_err);
2604
Jens Axboe86db1e22008-01-29 14:53:40 +01002605void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2606 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002608 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002609 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
David Woodhousefb2dce82008-08-05 18:01:53 +01002611 if (bio_has_data(bio)) {
2612 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002613 rq->buffer = bio_data(bio);
2614 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002615 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
NeilBrown66846572007-08-16 13:31:28 +02002618 if (bio->bi_bdev)
2619 rq->rq_disk = bio->bi_bdev->bd_disk;
2620}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002622#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2623/**
2624 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2625 * @rq: the request to be flushed
2626 *
2627 * Description:
2628 * Flush all pages in @rq.
2629 */
2630void rq_flush_dcache_pages(struct request *rq)
2631{
2632 struct req_iterator iter;
2633 struct bio_vec *bvec;
2634
2635 rq_for_each_segment(bvec, rq, iter)
2636 flush_dcache_page(bvec->bv_page);
2637}
2638EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2639#endif
2640
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002641/**
2642 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2643 * @q : the queue of the device being checked
2644 *
2645 * Description:
2646 * Check if underlying low-level drivers of a device are busy.
2647 * If the drivers want to export their busy state, they must set own
2648 * exporting function using blk_queue_lld_busy() first.
2649 *
2650 * Basically, this function is used only by request stacking drivers
2651 * to stop dispatching requests to underlying devices when underlying
2652 * devices are busy. This behavior helps more I/O merging on the queue
2653 * of the request stacking driver and prevents I/O throughput regression
2654 * on burst I/O load.
2655 *
2656 * Return:
2657 * 0 - Not busy (The request stacking driver should dispatch request)
2658 * 1 - Busy (The request stacking driver should stop dispatching request)
2659 */
2660int blk_lld_busy(struct request_queue *q)
2661{
2662 if (q->lld_busy_fn)
2663 return q->lld_busy_fn(q);
2664
2665 return 0;
2666}
2667EXPORT_SYMBOL_GPL(blk_lld_busy);
2668
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002669/**
2670 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2671 * @rq: the clone request to be cleaned up
2672 *
2673 * Description:
2674 * Free all bios in @rq for a cloned request.
2675 */
2676void blk_rq_unprep_clone(struct request *rq)
2677{
2678 struct bio *bio;
2679
2680 while ((bio = rq->bio) != NULL) {
2681 rq->bio = bio->bi_next;
2682
2683 bio_put(bio);
2684 }
2685}
2686EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2687
2688/*
2689 * Copy attributes of the original request to the clone request.
2690 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2691 */
2692static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2693{
2694 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002695 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002696 dst->cmd_type = src->cmd_type;
2697 dst->__sector = blk_rq_pos(src);
2698 dst->__data_len = blk_rq_bytes(src);
2699 dst->nr_phys_segments = src->nr_phys_segments;
2700 dst->ioprio = src->ioprio;
2701 dst->extra_len = src->extra_len;
2702}
2703
2704/**
2705 * blk_rq_prep_clone - Helper function to setup clone request
2706 * @rq: the request to be setup
2707 * @rq_src: original request to be cloned
2708 * @bs: bio_set that bios for clone are allocated from
2709 * @gfp_mask: memory allocation mask for bio
2710 * @bio_ctr: setup function to be called for each clone bio.
2711 * Returns %0 for success, non %0 for failure.
2712 * @data: private data to be passed to @bio_ctr
2713 *
2714 * Description:
2715 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2716 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2717 * are not copied, and copying such parts is the caller's responsibility.
2718 * Also, pages which the original bios are pointing to are not copied
2719 * and the cloned bios just point same pages.
2720 * So cloned bios must be completed before original bios, which means
2721 * the caller must complete @rq before @rq_src.
2722 */
2723int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2724 struct bio_set *bs, gfp_t gfp_mask,
2725 int (*bio_ctr)(struct bio *, struct bio *, void *),
2726 void *data)
2727{
2728 struct bio *bio, *bio_src;
2729
2730 if (!bs)
2731 bs = fs_bio_set;
2732
2733 blk_rq_init(NULL, rq);
2734
2735 __rq_for_each_bio(bio_src, rq_src) {
2736 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2737 if (!bio)
2738 goto free_and_out;
2739
2740 __bio_clone(bio, bio_src);
2741
2742 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002743 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002744 goto free_and_out;
2745
2746 if (bio_ctr && bio_ctr(bio, bio_src, data))
2747 goto free_and_out;
2748
2749 if (rq->bio) {
2750 rq->biotail->bi_next = bio;
2751 rq->biotail = bio;
2752 } else
2753 rq->bio = rq->biotail = bio;
2754 }
2755
2756 __blk_rq_prep_clone(rq, rq_src);
2757
2758 return 0;
2759
2760free_and_out:
2761 if (bio)
2762 bio_free(bio, bs);
2763 blk_rq_unprep_clone(rq);
2764
2765 return -ENOMEM;
2766}
2767EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2768
Jens Axboe18887ad2008-07-28 13:08:45 +02002769int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770{
2771 return queue_work(kblockd_workqueue, work);
2772}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773EXPORT_SYMBOL(kblockd_schedule_work);
2774
Vivek Goyale43473b2010-09-15 17:06:35 -04002775int kblockd_schedule_delayed_work(struct request_queue *q,
2776 struct delayed_work *dwork, unsigned long delay)
2777{
2778 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2779}
2780EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2781
Jens Axboe73c10102011-03-08 13:19:51 +01002782#define PLUG_MAGIC 0x91827364
2783
Suresh Jayaraman75df7132011-09-21 10:00:16 +02002784/**
2785 * blk_start_plug - initialize blk_plug and track it inside the task_struct
2786 * @plug: The &struct blk_plug that needs to be initialized
2787 *
2788 * Description:
2789 * Tracking blk_plug inside the task_struct will help with auto-flushing the
2790 * pending I/O should the task end up blocking between blk_start_plug() and
2791 * blk_finish_plug(). This is important from a performance perspective, but
2792 * also ensures that we don't deadlock. For instance, if the task is blocking
2793 * for a memory allocation, memory reclaim could end up wanting to free a
2794 * page belonging to that request that is currently residing in our private
2795 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
2796 * this kind of deadlock.
2797 */
Jens Axboe73c10102011-03-08 13:19:51 +01002798void blk_start_plug(struct blk_plug *plug)
2799{
2800 struct task_struct *tsk = current;
2801
2802 plug->magic = PLUG_MAGIC;
2803 INIT_LIST_HEAD(&plug->list);
NeilBrown048c9372011-04-18 09:52:22 +02002804 INIT_LIST_HEAD(&plug->cb_list);
Jens Axboe73c10102011-03-08 13:19:51 +01002805 plug->should_sort = 0;
2806
2807 /*
2808 * If this is a nested plug, don't actually assign it. It will be
2809 * flushed on its own.
2810 */
2811 if (!tsk->plug) {
2812 /*
2813 * Store ordering should not be needed here, since a potential
2814 * preempt will imply a full memory barrier
2815 */
2816 tsk->plug = plug;
2817 }
2818}
2819EXPORT_SYMBOL(blk_start_plug);
2820
2821static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
2822{
2823 struct request *rqa = container_of(a, struct request, queuelist);
2824 struct request *rqb = container_of(b, struct request, queuelist);
2825
Konstantin Khlebnikovf83e8262011-04-04 00:15:02 +02002826 return !(rqa->q <= rqb->q);
Jens Axboe73c10102011-03-08 13:19:51 +01002827}
2828
Jens Axboe49cac012011-04-16 13:51:05 +02002829/*
2830 * If 'from_schedule' is true, then postpone the dispatch of requests
2831 * until a safe kblockd context. We due this to avoid accidental big
2832 * additional stack usage in driver dispatch, in places where the originally
2833 * plugger did not intend it.
2834 */
Jens Axboef6603782011-04-15 15:49:07 +02002835static void queue_unplugged(struct request_queue *q, unsigned int depth,
Jens Axboe49cac012011-04-16 13:51:05 +02002836 bool from_schedule)
Jens Axboe99e22592011-04-18 09:59:55 +02002837 __releases(q->queue_lock)
Jens Axboe94b5eb22011-04-12 10:12:19 +02002838{
Jens Axboe49cac012011-04-16 13:51:05 +02002839 trace_block_unplug(q, depth, !from_schedule);
Jens Axboe99e22592011-04-18 09:59:55 +02002840
2841 /*
Tejun Heo8ba61432011-12-14 00:33:37 +01002842 * Don't mess with dead queue.
2843 */
2844 if (unlikely(blk_queue_dead(q))) {
2845 spin_unlock(q->queue_lock);
2846 return;
2847 }
2848
2849 /*
Jens Axboe99e22592011-04-18 09:59:55 +02002850 * If we are punting this to kblockd, then we can safely drop
2851 * the queue_lock before waking kblockd (which needs to take
2852 * this lock).
2853 */
2854 if (from_schedule) {
2855 spin_unlock(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002856 blk_run_queue_async(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002857 } else {
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002858 __blk_run_queue(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002859 spin_unlock(q->queue_lock);
2860 }
2861
Jens Axboe94b5eb22011-04-12 10:12:19 +02002862}
2863
NeilBrown048c9372011-04-18 09:52:22 +02002864static void flush_plug_callbacks(struct blk_plug *plug)
2865{
2866 LIST_HEAD(callbacks);
2867
2868 if (list_empty(&plug->cb_list))
2869 return;
2870
2871 list_splice_init(&plug->cb_list, &callbacks);
2872
2873 while (!list_empty(&callbacks)) {
2874 struct blk_plug_cb *cb = list_first_entry(&callbacks,
2875 struct blk_plug_cb,
2876 list);
2877 list_del(&cb->list);
2878 cb->callback(cb);
2879 }
2880}
2881
Jens Axboe49cac012011-04-16 13:51:05 +02002882void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
Jens Axboe73c10102011-03-08 13:19:51 +01002883{
2884 struct request_queue *q;
2885 unsigned long flags;
2886 struct request *rq;
NeilBrown109b8122011-04-11 14:13:10 +02002887 LIST_HEAD(list);
Jens Axboe94b5eb22011-04-12 10:12:19 +02002888 unsigned int depth;
Jens Axboe73c10102011-03-08 13:19:51 +01002889
2890 BUG_ON(plug->magic != PLUG_MAGIC);
2891
NeilBrown048c9372011-04-18 09:52:22 +02002892 flush_plug_callbacks(plug);
Jens Axboe73c10102011-03-08 13:19:51 +01002893 if (list_empty(&plug->list))
2894 return;
2895
NeilBrown109b8122011-04-11 14:13:10 +02002896 list_splice_init(&plug->list, &list);
2897
2898 if (plug->should_sort) {
2899 list_sort(NULL, &list, plug_rq_cmp);
2900 plug->should_sort = 0;
2901 }
Jens Axboe73c10102011-03-08 13:19:51 +01002902
2903 q = NULL;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002904 depth = 0;
Jens Axboe18811272011-04-12 10:11:24 +02002905
2906 /*
2907 * Save and disable interrupts here, to avoid doing it for every
2908 * queue lock we have to take.
2909 */
Jens Axboe73c10102011-03-08 13:19:51 +01002910 local_irq_save(flags);
NeilBrown109b8122011-04-11 14:13:10 +02002911 while (!list_empty(&list)) {
2912 rq = list_entry_rq(list.next);
Jens Axboe73c10102011-03-08 13:19:51 +01002913 list_del_init(&rq->queuelist);
Jens Axboe73c10102011-03-08 13:19:51 +01002914 BUG_ON(!rq->q);
2915 if (rq->q != q) {
Jens Axboe99e22592011-04-18 09:59:55 +02002916 /*
2917 * This drops the queue lock
2918 */
2919 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02002920 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01002921 q = rq->q;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002922 depth = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01002923 spin_lock(q->queue_lock);
2924 }
Tejun Heo8ba61432011-12-14 00:33:37 +01002925
2926 /*
2927 * Short-circuit if @q is dead
2928 */
2929 if (unlikely(blk_queue_dead(q))) {
2930 __blk_end_request_all(rq, -ENODEV);
2931 continue;
2932 }
2933
Jens Axboe73c10102011-03-08 13:19:51 +01002934 /*
2935 * rq is already accounted, so use raw insert
2936 */
Jens Axboe401a18e2011-03-25 16:57:52 +01002937 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA))
2938 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
2939 else
2940 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
Jens Axboe94b5eb22011-04-12 10:12:19 +02002941
2942 depth++;
Jens Axboe73c10102011-03-08 13:19:51 +01002943 }
2944
Jens Axboe99e22592011-04-18 09:59:55 +02002945 /*
2946 * This drops the queue lock
2947 */
2948 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02002949 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01002950
Jens Axboe73c10102011-03-08 13:19:51 +01002951 local_irq_restore(flags);
2952}
Jens Axboe73c10102011-03-08 13:19:51 +01002953
2954void blk_finish_plug(struct blk_plug *plug)
2955{
Jens Axboef6603782011-04-15 15:49:07 +02002956 blk_flush_plug_list(plug, false);
Christoph Hellwig88b996c2011-04-15 15:20:10 +02002957
2958 if (plug == current->plug)
2959 current->plug = NULL;
Jens Axboe73c10102011-03-08 13:19:51 +01002960}
2961EXPORT_SYMBOL(blk_finish_plug);
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963int __init blk_dev_init(void)
2964{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002965 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2966 sizeof(((struct request *)0)->cmd_flags));
2967
Tejun Heo89b90be2011-01-03 15:01:47 +01002968 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2969 kblockd_workqueue = alloc_workqueue("kblockd",
2970 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (!kblockd_workqueue)
2972 panic("Failed to create kblockd\n");
2973
2974 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002975 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Jens Axboe8324aa92008-01-29 14:51:59 +01002977 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002978 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 return 0;
2981}