blob: 123f79a9a9ab3a229878cd28a62a5ddc709c6c43 [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>
Lin Mingff70c822013-03-23 11:42:26 +080033#include <linux/pm_runtime.h>
Li Zefan55782132009-06-09 13:43:05 +080034
35#define CREATE_TRACE_POINTS
36#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Jens Axboe8324aa92008-01-29 14:51:59 +010038#include "blk.h"
39
Mike Snitzerd07335e2010-11-16 12:52:38 +010040EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020041EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080042EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010043
Tejun Heoa73f7302011-12-14 00:33:37 +010044DEFINE_IDA(blk_queue_ida);
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
47 * For the allocated request tables
48 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010049static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
52 * For queue allocation
53 */
Jens Axboe6728cb02008-01-31 13:03:55 +010054struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Controlling structure to kblockd
58 */
Jens Axboeff856ba2006-01-09 16:02:34 +010059static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jens Axboe26b82562008-01-29 13:54:41 +010061static void drive_stat_acct(struct request *rq, int new_io)
62{
Jens Axboe28f13702008-05-07 10:15:46 +020063 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010064 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090065 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010066
Jens Axboec2553b52009-04-24 08:10:11 +020067 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010068 return;
69
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +090071
Jerome Marchand09e099d2011-01-05 16:57:38 +010072 if (!new_io) {
73 part = rq->part;
Tejun Heo074a7ac2008-08-25 19:56:14 +090074 part_stat_inc(cpu, part, merges[rw]);
Jerome Marchand09e099d2011-01-05 16:57:38 +010075 } else {
76 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Jens Axboe6c23a962011-01-07 08:43:37 +010077 if (!hd_struct_try_get(part)) {
Jerome Marchand09e099d2011-01-05 16:57:38 +010078 /*
79 * The partition is already being removed,
80 * the request will be accounted on the disk only
81 *
82 * We take a reference on disk->part0 although that
83 * partition will never be deleted, so we can treat
84 * it as any other partition.
85 */
86 part = &rq->rq_disk->part0;
Jens Axboe6c23a962011-01-07 08:43:37 +010087 hd_struct_get(part);
Jerome Marchand09e099d2011-01-05 16:57:38 +010088 }
Tejun Heo074a7ac2008-08-25 19:56:14 +090089 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020090 part_inc_in_flight(part, rw);
Jerome Marchand09e099d2011-01-05 16:57:38 +010091 rq->part = part;
Jens Axboe26b82562008-01-29 13:54:41 +010092 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020093
Tejun Heo074a7ac2008-08-25 19:56:14 +090094 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010095}
96
Jens Axboe8324aa92008-01-29 14:51:59 +010097void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 int nr;
100
101 nr = q->nr_requests - (q->nr_requests / 8) + 1;
102 if (nr > q->nr_requests)
103 nr = q->nr_requests;
104 q->nr_congestion_on = nr;
105
106 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
107 if (nr < 1)
108 nr = 1;
109 q->nr_congestion_off = nr;
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/**
113 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
114 * @bdev: device
115 *
116 * Locates the passed device's request queue and returns the address of its
117 * backing_dev_info
118 *
119 * Will return NULL if the request queue cannot be located.
120 */
121struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
122{
123 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200124 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (q)
127 ret = &q->backing_dev_info;
128 return ret;
129}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130EXPORT_SYMBOL(blk_get_backing_dev_info);
131
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200132void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200134 memset(rq, 0, sizeof(*rq));
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700137 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200138 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100139 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900140 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200141 INIT_HLIST_NODE(&rq->hash);
142 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200143 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800144 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100145 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100146 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900147 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700148 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100149 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200151EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
NeilBrown5bb23a62007-09-27 12:46:13 +0200153static void req_bio_endio(struct request *rq, struct bio *bio,
154 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100155{
Tejun Heo143a87f2011-01-25 12:43:52 +0100156 if (error)
157 clear_bit(BIO_UPTODATE, &bio->bi_flags);
158 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
159 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100160
Tejun Heo143a87f2011-01-25 12:43:52 +0100161 if (unlikely(nbytes > bio->bi_size)) {
162 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
163 __func__, nbytes, bio->bi_size);
164 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200165 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100166
167 if (unlikely(rq->cmd_flags & REQ_QUIET))
168 set_bit(BIO_QUIET, &bio->bi_flags);
169
170 bio->bi_size -= nbytes;
171 bio->bi_sector += (nbytes >> 9);
172
173 if (bio_integrity(bio))
174 bio_integrity_advance(bio, nbytes);
175
176 /* don't actually finish bio if it's part of flush sequence */
177 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
178 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100179}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181void blk_dump_rq_flags(struct request *rq, char *msg)
182{
183 int bit;
184
Jens Axboe6728cb02008-01-31 13:03:55 +0100185 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200186 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
187 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Tejun Heo83096eb2009-05-07 22:24:39 +0900189 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
190 (unsigned long long)blk_rq_pos(rq),
191 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900192 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900193 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200195 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100196 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200197 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 printk("%02x ", rq->cmd[bit]);
199 printk("\n");
200 }
201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202EXPORT_SYMBOL(blk_dump_rq_flags);
203
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500204static void blk_delay_work(struct work_struct *work)
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200205{
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500206 struct request_queue *q;
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200207
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500208 q = container_of(work, struct request_queue, delay_work.work);
209 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200210 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500211 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/**
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500215 * blk_delay_queue - restart queueing after defined interval
216 * @q: The &struct request_queue in question
217 * @msecs: Delay in msecs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *
219 * Description:
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500220 * Sometimes queueing needs to be postponed for a little while, to allow
221 * resources to come back. This function will make sure that queueing is
222 * restarted around the specified time.
223 */
224void blk_delay_queue(struct request_queue *q, unsigned long msecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Jens Axboe4521cc42011-04-18 11:36:39 +0200226 queue_delayed_work(kblockd_workqueue, &q->delay_work,
227 msecs_to_jiffies(msecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500229EXPORT_SYMBOL(blk_delay_queue);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/**
232 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200233 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
235 * Description:
236 * blk_start_queue() will clear the stop flag on the queue, and call
237 * the request_fn for the queue if it was in a stopped state when
238 * entered. Also see blk_stop_queue(). Queue lock must be held.
239 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200240void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200242 WARN_ON(!irqs_disabled());
243
Nick Piggin75ad23b2008-04-29 14:48:33 +0200244 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200245 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247EXPORT_SYMBOL(blk_start_queue);
248
249/**
250 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200251 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 *
253 * Description:
254 * The Linux block layer assumes that a block driver will consume all
255 * entries on the request queue when the request_fn strategy is called.
256 * Often this will not happen, because of hardware limitations (queue
257 * depth settings). If a device driver gets a 'queue full' response,
258 * or if it simply chooses not to queue more I/O at one point, it can
259 * call this function to prevent the request_fn from being called until
260 * the driver has signalled it's ready to go again. This happens by calling
261 * blk_start_queue() to restart queue operations. Queue lock must be held.
262 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200263void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Jens Axboead3d9d72011-03-25 16:58:59 +0100265 __cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200266 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268EXPORT_SYMBOL(blk_stop_queue);
269
270/**
271 * blk_sync_queue - cancel any pending callbacks on a queue
272 * @q: the queue
273 *
274 * Description:
275 * The block layer may perform asynchronous callback activity
276 * on a queue, such as calling the unplug function after a timeout.
277 * A block device may call blk_sync_queue to ensure that any
278 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200279 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * that its ->make_request_fn will not re-add plugging prior to calling
281 * this function.
282 *
Vivek Goyalda527772011-03-02 19:05:33 -0500283 * This function does not cancel any asynchronous activity arising
284 * out of elevator or throttling code. That would require elevaotor_exit()
285 * and blk_throtl_exit() to be called with queue lock initialized.
286 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
288void blk_sync_queue(struct request_queue *q)
289{
Jens Axboe70ed28b2008-11-19 14:38:39 +0100290 del_timer_sync(&q->timeout);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500291 cancel_delayed_work_sync(&q->delay_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293EXPORT_SYMBOL(blk_sync_queue);
294
295/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200296 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200298 *
299 * Description:
300 * See @blk_run_queue. This variant must be called with the queue lock
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200301 * held and interrupts disabled.
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +0200302 * Device driver will be notified of an urgent request
303 * pending under the following conditions:
304 * 1. The driver and the current scheduler support urgent reques handling
305 * 2. There is an urgent request pending in the scheduler
306 * 3. There isn't already an urgent request in flight, meaning previously
307 * notified urgent request completed (!q->notified_urgent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200309void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Tejun Heoa538cd02009-04-23 11:05:17 +0900311 if (unlikely(blk_queue_stopped(q)))
312 return;
313
Tatyana Brokhman88fd1b42012-12-04 16:04:15 +0200314 if (!q->notified_urgent &&
315 q->elevator->type->ops.elevator_is_urgent_fn &&
316 q->urgent_request_fn &&
317 q->elevator->type->ops.elevator_is_urgent_fn(q)) {
318 q->notified_urgent = true;
319 q->urgent_request_fn(q);
320 } else
321 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200322}
323EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200324
Nick Piggin75ad23b2008-04-29 14:48:33 +0200325/**
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200326 * blk_run_queue_async - run a single device queue in workqueue context
327 * @q: The queue to run
328 *
329 * Description:
330 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
331 * of us.
332 */
333void blk_run_queue_async(struct request_queue *q)
334{
Shaohua Li3ec717b2011-05-18 11:22:43 +0200335 if (likely(!blk_queue_stopped(q))) {
336 __cancel_delayed_work(&q->delay_work);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200337 queue_delayed_work(kblockd_workqueue, &q->delay_work, 0);
Shaohua Li3ec717b2011-05-18 11:22:43 +0200338 }
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200339}
Jens Axboec21e6be2011-04-19 13:32:46 +0200340EXPORT_SYMBOL(blk_run_queue_async);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200341
342/**
Nick Piggin75ad23b2008-04-29 14:48:33 +0200343 * blk_run_queue - run a single device queue
344 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200345 *
346 * Description:
347 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900348 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200349 */
350void blk_run_queue(struct request_queue *q)
351{
352 unsigned long flags;
353
354 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200355 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 spin_unlock_irqrestore(q->queue_lock, flags);
357}
358EXPORT_SYMBOL(blk_run_queue);
359
Jens Axboe165125e2007-07-24 09:28:11 +0200360void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500361{
362 kobject_put(&q->kobj);
363}
Jens Axboed86e0e82011-05-27 07:44:43 +0200364EXPORT_SYMBOL(blk_put_queue);
Al Viro483f4af2006-03-18 18:34:37 -0500365
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200366/**
367 * blk_drain_queue - drain requests from request_queue
368 * @q: queue to drain
Tejun Heoc9a929d2011-10-19 14:42:16 +0200369 * @drain_all: whether to drain all requests or only the ones w/ ELVPRIV
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200370 *
Tejun Heoc9a929d2011-10-19 14:42:16 +0200371 * Drain requests from @q. If @drain_all is set, all requests are drained.
372 * If not, only ELVPRIV requests are drained. The caller is responsible
373 * for ensuring that no new requests which need to be drained are queued.
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200374 */
Tejun Heoc9a929d2011-10-19 14:42:16 +0200375void blk_drain_queue(struct request_queue *q, bool drain_all)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200376{
377 while (true) {
Tejun Heo481a7d62011-12-14 00:33:37 +0100378 bool drain = false;
379 int i;
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200380
381 spin_lock_irq(q->queue_lock);
382
383 elv_drain_elevator(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200384 if (drain_all)
385 blk_throtl_drain(q);
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200386
Tejun Heo4eabc942011-12-15 20:03:04 +0100387 /*
388 * This function might be called on a queue which failed
389 * driver init after queue creation. Some drivers
390 * (e.g. fd) get unhappy in such cases. Kick queue iff
391 * dispatch queue has something on it.
392 */
393 if (!list_empty(&q->queue_head))
394 __blk_run_queue(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200395
Tejun Heo481a7d62011-12-14 00:33:37 +0100396 drain |= q->rq.elvpriv;
397
398 /*
399 * Unfortunately, requests are queued at and tracked from
400 * multiple places and there's no single counter which can
401 * be drained. Check all the queues and counters.
402 */
403 if (drain_all) {
404 drain |= !list_empty(&q->queue_head);
405 for (i = 0; i < 2; i++) {
406 drain |= q->rq.count[i];
407 drain |= q->in_flight[i];
408 drain |= !list_empty(&q->flush_queue[i]);
409 }
410 }
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200411
412 spin_unlock_irq(q->queue_lock);
413
Tejun Heo481a7d62011-12-14 00:33:37 +0100414 if (!drain)
Tejun Heoe3c78ca2011-10-19 14:32:38 +0200415 break;
416 msleep(10);
417 }
418}
419
Tejun Heoc9a929d2011-10-19 14:42:16 +0200420/**
421 * blk_cleanup_queue - shutdown a request queue
422 * @q: request queue to shutdown
423 *
424 * Mark @q DEAD, drain all pending requests, destroy and put it. All
425 * future requests will be failed immediately with -ENODEV.
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500426 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100427void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500428{
Tejun Heoc9a929d2011-10-19 14:42:16 +0200429 spinlock_t *lock = q->queue_lock;
Jens Axboee3335de2008-09-18 09:22:54 -0700430
Tejun Heoc9a929d2011-10-19 14:42:16 +0200431 /* mark @q DEAD, no new request or merges will be allowed afterwards */
Al Viro483f4af2006-03-18 18:34:37 -0500432 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200433 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200434
435 spin_lock_irq(lock);
436 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
437 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
438 queue_flag_set(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500439
Hannes Reinecke777eb1b2011-09-28 08:07:01 -0600440 if (q->queue_lock != &q->__queue_lock)
441 q->queue_lock = &q->__queue_lock;
Vivek Goyalda527772011-03-02 19:05:33 -0500442
Tejun Heoc9a929d2011-10-19 14:42:16 +0200443 spin_unlock_irq(lock);
444 mutex_unlock(&q->sysfs_lock);
445
Tejun Heo6dd9ad72011-11-03 18:52:11 +0100446 /*
447 * Drain all requests queued before DEAD marking. The caller might
448 * be trying to tear down @q before its elevator is initialized, in
449 * which case we don't want to call into draining.
450 */
451 if (q->elevator)
452 blk_drain_queue(q, true);
Tejun Heoc9a929d2011-10-19 14:42:16 +0200453
454 /* @q won't process any more request, flush async actions */
455 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
456 blk_sync_queue(q);
457
458 /* @q is and will stay empty, shutdown and put */
Al Viro483f4af2006-03-18 18:34:37 -0500459 blk_put_queue(q);
460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461EXPORT_SYMBOL(blk_cleanup_queue);
462
Jens Axboe165125e2007-07-24 09:28:11 +0200463static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 struct request_list *rl = &q->rq;
466
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400467 if (unlikely(rl->rq_pool))
468 return 0;
469
Jens Axboe1faa16d2009-04-06 14:48:01 +0200470 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
471 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200472 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200473 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
474 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Christoph Lameter19460892005-06-23 00:08:19 -0700476 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
477 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (!rl->rq_pool)
480 return -ENOMEM;
481
482 return 0;
483}
484
Jens Axboe165125e2007-07-24 09:28:11 +0200485struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Christoph Lameter19460892005-06-23 00:08:19 -0700487 return blk_alloc_queue_node(gfp_mask, -1);
488}
489EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jens Axboe165125e2007-07-24 09:28:11 +0200491struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700492{
Jens Axboe165125e2007-07-24 09:28:11 +0200493 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700494 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700495
Jens Axboe8324aa92008-01-29 14:51:59 +0100496 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700497 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!q)
499 return NULL;
500
Dan Carpenter00380a42012-03-23 09:58:54 +0100501 q->id = ida_simple_get(&blk_queue_ida, 0, 0, gfp_mask);
Tejun Heoa73f7302011-12-14 00:33:37 +0100502 if (q->id < 0)
503 goto fail_q;
504
Jens Axboe0989a022009-06-12 14:42:56 +0200505 q->backing_dev_info.ra_pages =
506 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
507 q->backing_dev_info.state = 0;
508 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200509 q->backing_dev_info.name = "block";
Mike Snitzer51514122011-11-23 10:59:13 +0100510 q->node = node_id;
Jens Axboe0989a022009-06-12 14:42:56 +0200511
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 err = bdi_init(&q->backing_dev_info);
Tejun Heoa73f7302011-12-14 00:33:37 +0100513 if (err)
514 goto fail_id;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700515
Tejun Heoa73f7302011-12-14 00:33:37 +0100516 if (blk_throtl_init(q))
517 goto fail_id;
Vivek Goyale43473b2010-09-15 17:06:35 -0400518
Matthew Garrett31373d02010-04-06 14:25:14 +0200519 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
520 laptop_mode_timer_fn, (unsigned long) q);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700521 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
522 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoa612fdd2011-12-14 00:33:41 +0100523 INIT_LIST_HEAD(&q->icq_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100524 INIT_LIST_HEAD(&q->flush_queue[0]);
525 INIT_LIST_HEAD(&q->flush_queue[1]);
526 INIT_LIST_HEAD(&q->flush_data_in_flight);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500527 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500528
Jens Axboe8324aa92008-01-29 14:51:59 +0100529 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Al Viro483f4af2006-03-18 18:34:37 -0500531 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700532 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500533
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500534 /*
535 * By default initialize queue_lock to internal lock and driver can
536 * override it later if need be.
537 */
538 q->queue_lock = &q->__queue_lock;
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return q;
Tejun Heoa73f7302011-12-14 00:33:37 +0100541
542fail_id:
543 ida_simple_remove(&blk_queue_ida, q->id);
544fail_q:
545 kmem_cache_free(blk_requestq_cachep, q);
546 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
Christoph Lameter19460892005-06-23 00:08:19 -0700548EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550/**
551 * blk_init_queue - prepare a request queue for use with a block device
552 * @rfn: The function to be called to process requests that have been
553 * placed on the queue.
554 * @lock: Request queue spin lock
555 *
556 * Description:
557 * If a block device wishes to use the standard request handling procedures,
558 * which sorts requests and coalesces adjacent requests, then it must
559 * call blk_init_queue(). The function @rfn will be called when there
560 * are requests on the queue that need to be processed. If the device
561 * supports plugging, then @rfn may not be called immediately when requests
562 * are available on the queue, but may be called at some time later instead.
563 * Plugged queues are generally unplugged when a buffer belonging to one
564 * of the requests on the queue is needed, or due to memory pressure.
565 *
566 * @rfn is not required, or even expected, to remove all requests off the
567 * queue, but only as many as it can handle at a time. If it does leave
568 * requests on the queue, it is responsible for arranging that the requests
569 * get dealt with eventually.
570 *
571 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200572 * request queue; this lock will be taken also from interrupt context, so irq
573 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200575 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * it didn't succeed.
577 *
578 * Note:
579 * blk_init_queue() must be paired with a blk_cleanup_queue() call
580 * when the block device is deactivated (such as at module unload).
581 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700582
Jens Axboe165125e2007-07-24 09:28:11 +0200583struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Christoph Lameter19460892005-06-23 00:08:19 -0700585 return blk_init_queue_node(rfn, lock, -1);
586}
587EXPORT_SYMBOL(blk_init_queue);
588
Jens Axboe165125e2007-07-24 09:28:11 +0200589struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700590blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
591{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600592 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600594 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
595 if (!uninit_q)
596 return NULL;
597
Mike Snitzer51514122011-11-23 10:59:13 +0100598 q = blk_init_allocated_queue(uninit_q, rfn, lock);
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600599 if (!q)
600 blk_cleanup_queue(uninit_q);
601
602 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200603}
604EXPORT_SYMBOL(blk_init_queue_node);
605
606struct request_queue *
607blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
608 spinlock_t *lock)
609{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (!q)
611 return NULL;
612
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600613 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500614 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900618 q->unprep_rq_fn = NULL;
Jens Axboebc58ba92009-01-23 10:54:44 +0100619 q->queue_flags = QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500620
621 /* Override internal queue lock with supplied lock pointer */
622 if (lock)
623 q->queue_lock = lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Jens Axboef3b144a2009-03-06 08:48:33 +0100625 /*
626 * This also sets hw/phys segments, boundary and size
627 */
Jens Axboec20e8de2011-09-12 12:03:37 +0200628 blk_queue_make_request(q, blk_queue_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Alan Stern44ec9542007-02-20 11:01:57 -0500630 q->sg_reserved_size = INT_MAX;
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * all done
634 */
635 if (!elevator_init(q, NULL)) {
636 blk_queue_congestion_threshold(q);
637 return q;
638 }
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return NULL;
641}
Mike Snitzer51514122011-11-23 10:59:13 +0100642EXPORT_SYMBOL(blk_init_allocated_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Tejun Heo09ac46c2011-12-14 00:33:38 +0100644bool blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Tejun Heo34f60552011-12-14 00:33:37 +0100646 if (likely(!blk_queue_dead(q))) {
Tejun Heo09ac46c2011-12-14 00:33:38 +0100647 __blk_get_queue(q);
648 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Tejun Heo09ac46c2011-12-14 00:33:38 +0100651 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
Jens Axboed86e0e82011-05-27 07:44:43 +0200653EXPORT_SYMBOL(blk_get_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Jens Axboe165125e2007-07-24 09:28:11 +0200655static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Tejun Heof1f8cc92011-12-14 00:33:42 +0100657 if (rq->cmd_flags & REQ_ELVPRIV) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200658 elv_put_request(q, rq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100659 if (rq->elv.icq)
Tejun Heo11a31222012-02-07 07:51:30 +0100660 put_io_context(rq->elv.icq->ioc);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100661 }
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 mempool_free(rq, q->rq.rq_pool);
664}
665
Jens Axboe1ea25ec2006-07-18 22:24:11 +0200666static struct request *
Tejun Heof1f8cc92011-12-14 00:33:42 +0100667blk_alloc_request(struct request_queue *q, struct io_cq *icq,
668 unsigned int flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
671
672 if (!rq)
673 return NULL;
674
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200675 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200676
Jerome Marchand42dad762009-04-22 14:01:49 +0200677 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Tejun Heof1f8cc92011-12-14 00:33:42 +0100679 if (flags & REQ_ELVPRIV) {
680 rq->elv.icq = icq;
681 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
682 mempool_free(rq, q->rq.rq_pool);
683 return NULL;
684 }
685 /* @rq->elv.icq holds on to io_context until @rq is freed */
686 if (icq)
687 get_io_context(icq->ioc);
Tejun Heocb98fc82005-10-28 08:29:39 +0200688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Tejun Heocb98fc82005-10-28 08:29:39 +0200690 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693/*
694 * ioc_batching returns true if the ioc is a valid batching request and
695 * should be given priority access to a request.
696 */
Jens Axboe165125e2007-07-24 09:28:11 +0200697static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 if (!ioc)
700 return 0;
701
702 /*
703 * Make sure the process is able to allocate at least 1 request
704 * even if the batch times out, otherwise we could theoretically
705 * lose wakeups.
706 */
707 return ioc->nr_batch_requests == q->nr_batching ||
708 (ioc->nr_batch_requests > 0
709 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
710}
711
712/*
713 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
714 * will cause the process to be a "batcher" on all queues in the system. This
715 * is the behaviour we want though - once it gets a wakeup it should be given
716 * a nice run.
717 */
Jens Axboe165125e2007-07-24 09:28:11 +0200718static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 if (!ioc || ioc_batching(q, ioc))
721 return;
722
723 ioc->nr_batch_requests = q->nr_batching;
724 ioc->last_waited = jiffies;
725}
726
Jens Axboe1faa16d2009-04-06 14:48:01 +0200727static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct request_list *rl = &q->rq;
730
Jens Axboe1faa16d2009-04-06 14:48:01 +0200731 if (rl->count[sync] < queue_congestion_off_threshold(q))
732 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jens Axboe1faa16d2009-04-06 14:48:01 +0200734 if (rl->count[sync] + 1 <= q->nr_requests) {
735 if (waitqueue_active(&rl->wait[sync]))
736 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740}
741
742/*
743 * A request has just been released. Account for it, update the full and
744 * congestion status, wake up any waiters. Called under q->queue_lock.
745 */
Tejun Heo75eb6c32011-10-19 14:31:22 +0200746static void freed_request(struct request_queue *q, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 struct request_list *rl = &q->rq;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200749 int sync = rw_is_sync(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Jens Axboe1faa16d2009-04-06 14:48:01 +0200751 rl->count[sync]--;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200752 if (flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200753 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Jens Axboe1faa16d2009-04-06 14:48:01 +0200755 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Jens Axboe1faa16d2009-04-06 14:48:01 +0200757 if (unlikely(rl->starved[sync ^ 1]))
758 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100762 * Determine if elevator data should be initialized when allocating the
763 * request associated with @bio.
764 */
765static bool blk_rq_should_init_elevator(struct bio *bio)
766{
767 if (!bio)
768 return true;
769
770 /*
771 * Flush requests do not use the elevator so skip initialization.
772 * This allows a request to share the flush and elevator data.
773 */
774 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
775 return false;
776
777 return true;
778}
779
Tejun Heoda8303c2011-10-19 14:33:05 +0200780/**
781 * get_request - get a free request
782 * @q: request_queue to allocate request from
783 * @rw_flags: RW and SYNC flags
784 * @bio: bio to allocate request for (can be %NULL)
785 * @gfp_mask: allocation mask
786 *
787 * Get a free request from @q. This function may fail under memory
788 * pressure or if @q is dead.
789 *
790 * Must be callled with @q->queue_lock held and,
791 * Returns %NULL on failure, with @q->queue_lock held.
792 * Returns !%NULL on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
Jens Axboe165125e2007-07-24 09:28:11 +0200794static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100795 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct request *rq = NULL;
798 struct request_list *rl = &q->rq;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100799 struct elevator_type *et;
Tejun Heof2dbd762011-12-14 00:33:40 +0100800 struct io_context *ioc;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100801 struct io_cq *icq = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200802 const bool is_sync = rw_is_sync(rw_flags) != 0;
Tejun Heof2dbd762011-12-14 00:33:40 +0100803 bool retried = false;
Tejun Heo75eb6c32011-10-19 14:31:22 +0200804 int may_queue;
Tejun Heof2dbd762011-12-14 00:33:40 +0100805retry:
Tejun Heof1f8cc92011-12-14 00:33:42 +0100806 et = q->elevator->type;
Tejun Heof2dbd762011-12-14 00:33:40 +0100807 ioc = current->io_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Tejun Heo34f60552011-12-14 00:33:37 +0100809 if (unlikely(blk_queue_dead(q)))
Tejun Heoda8303c2011-10-19 14:33:05 +0200810 return NULL;
811
Jens Axboe7749a8d2006-12-13 13:02:26 +0100812 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100813 if (may_queue == ELV_MQUEUE_NO)
814 goto rq_starved;
815
Jens Axboe1faa16d2009-04-06 14:48:01 +0200816 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
817 if (rl->count[is_sync]+1 >= q->nr_requests) {
Tejun Heof2dbd762011-12-14 00:33:40 +0100818 /*
819 * We want ioc to record batching state. If it's
820 * not already there, creating a new one requires
821 * dropping queue_lock, which in turn requires
822 * retesting conditions to avoid queue hang.
823 */
824 if (!ioc && !retried) {
825 spin_unlock_irq(q->queue_lock);
826 create_io_context(current, gfp_mask, q->node);
827 spin_lock_irq(q->queue_lock);
828 retried = true;
829 goto retry;
830 }
831
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100832 /*
833 * The queue will fill after this allocation, so set
834 * it as full, and mark this process as "batching".
835 * This process will be allowed to complete a batch of
836 * requests, others will be blocked.
837 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200838 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100839 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200840 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100841 } else {
842 if (may_queue != ELV_MQUEUE_MUST
843 && !ioc_batching(q, ioc)) {
844 /*
845 * The queue is full and the allocating
846 * process is not a "batcher", and not
847 * exempted by the IO scheduler
848 */
849 goto out;
850 }
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200853 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
Jens Axboe082cf692005-06-28 16:35:11 +0200856 /*
857 * Only allow batching queuers to allocate up to 50% over the defined
858 * limit of requests, otherwise we could have thousands of requests
859 * allocated with any setting of ->nr_requests
860 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200861 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200862 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100863
Jens Axboe1faa16d2009-04-06 14:48:01 +0200864 rl->count[is_sync]++;
865 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200866
Tejun Heof1f8cc92011-12-14 00:33:42 +0100867 /*
868 * Decide whether the new request will be managed by elevator. If
869 * so, mark @rw_flags and increment elvpriv. Non-zero elvpriv will
870 * prevent the current elevator from being destroyed until the new
871 * request is freed. This guarantees icq's won't be destroyed and
872 * makes creating new ones safe.
873 *
874 * Also, lookup icq while holding queue_lock. If it doesn't exist,
875 * it will be created after releasing queue_lock.
876 */
Tejun Heo75eb6c32011-10-19 14:31:22 +0200877 if (blk_rq_should_init_elevator(bio) &&
878 !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags)) {
879 rw_flags |= REQ_ELVPRIV;
880 rl->elvpriv++;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100881 if (et->icq_cache && ioc)
882 icq = ioc_lookup_icq(ioc, q);
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100883 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200884
Jens Axboef253b862010-10-24 22:06:02 +0200885 if (blk_queue_io_stat(q))
886 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 spin_unlock_irq(q->queue_lock);
888
Tejun Heof1f8cc92011-12-14 00:33:42 +0100889 /* create icq if missing */
Shaohua Li05c30b92012-01-19 09:20:10 +0100890 if ((rw_flags & REQ_ELVPRIV) && unlikely(et->icq_cache && !icq)) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100891 icq = ioc_create_icq(q, gfp_mask);
Shaohua Li05c30b92012-01-19 09:20:10 +0100892 if (!icq)
893 goto fail_icq;
894 }
Tejun Heof1f8cc92011-12-14 00:33:42 +0100895
Shaohua Li05c30b92012-01-19 09:20:10 +0100896 rq = blk_alloc_request(q, icq, rw_flags, gfp_mask);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100897
Shaohua Li05c30b92012-01-19 09:20:10 +0100898fail_icq:
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100899 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * Allocation failed presumably due to memory. Undo anything
902 * we might have messed up.
903 *
904 * Allocating task should really be put onto the front of the
905 * wait queue, but this is pretty rare.
906 */
907 spin_lock_irq(q->queue_lock);
Tejun Heo75eb6c32011-10-19 14:31:22 +0200908 freed_request(q, rw_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /*
911 * in the very unlikely event that allocation failed and no
912 * requests for this direction was pending, mark us starved
913 * so that freeing of a request in the other direction will
914 * notice us. another possible fix would be to split the
915 * rq mempool into READ and WRITE
916 */
917rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200918 if (unlikely(rl->count[is_sync] == 0))
919 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto out;
922 }
923
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100924 /*
925 * ioc may be NULL here, and ioc_batching will be false. That's
926 * OK, if the queue is under the request limit then requests need
927 * not count toward the nr_batch_requests limit. There will always
928 * be some limit enforced by BLK_BATCH_TIME.
929 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (ioc_batching(q, ioc))
931 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100932
Jens Axboe1faa16d2009-04-06 14:48:01 +0200933 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return rq;
936}
937
Tejun Heoda8303c2011-10-19 14:33:05 +0200938/**
939 * get_request_wait - get a free request with retry
940 * @q: request_queue to allocate request from
941 * @rw_flags: RW and SYNC flags
942 * @bio: bio to allocate request for (can be %NULL)
Nick Piggind6344532005-06-28 20:45:14 -0700943 *
Tejun Heoda8303c2011-10-19 14:33:05 +0200944 * Get a free request from @q. This function keeps retrying under memory
945 * pressure and fails iff @q is dead.
946 *
947 * Must be callled with @q->queue_lock held and,
948 * Returns %NULL on failure, with @q->queue_lock held.
949 * Returns !%NULL on success, with @q->queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
Jens Axboe165125e2007-07-24 09:28:11 +0200951static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200952 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200954 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct request *rq;
956
Jens Axboe7749a8d2006-12-13 13:02:26 +0100957 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700958 while (!rq) {
959 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct request_list *rl = &q->rq;
961
Tejun Heo34f60552011-12-14 00:33:37 +0100962 if (unlikely(blk_queue_dead(q)))
Tejun Heoda8303c2011-10-19 14:33:05 +0200963 return NULL;
964
Jens Axboe1faa16d2009-04-06 14:48:01 +0200965 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 TASK_UNINTERRUPTIBLE);
967
Jens Axboe1faa16d2009-04-06 14:48:01 +0200968 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200970 spin_unlock_irq(q->queue_lock);
971 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200973 /*
974 * After sleeping, we become a "batching" process and
975 * will be able to allocate at least one request, and
976 * up to a big batch of them for a small period time.
977 * See ioc_batching, ioc_set_batching
978 */
Tejun Heof2dbd762011-12-14 00:33:40 +0100979 create_io_context(current, GFP_NOIO, q->node);
980 ioc_set_batching(q, current->io_context);
Jens Axboe2056a782006-03-23 20:00:26 +0100981
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200982 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200983 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200984
985 rq = get_request(q, rw_flags, bio, GFP_NOIO);
986 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 return rq;
989}
990
Jens Axboe165125e2007-07-24 09:28:11 +0200991struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 struct request *rq;
994
Nick Piggind6344532005-06-28 20:45:14 -0700995 spin_lock_irq(q->queue_lock);
Tejun Heoda8303c2011-10-19 14:33:05 +0200996 if (gfp_mask & __GFP_WAIT)
Jens Axboe22e2c502005-06-27 10:55:12 +0200997 rq = get_request_wait(q, rw, NULL);
Tejun Heoda8303c2011-10-19 14:33:05 +0200998 else
Jens Axboe22e2c502005-06-27 10:55:12 +0200999 rq = get_request(q, rw, NULL, gfp_mask);
Tejun Heoda8303c2011-10-19 14:33:05 +02001000 if (!rq)
1001 spin_unlock_irq(q->queue_lock);
Nick Piggind6344532005-06-28 20:45:14 -07001002 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 return rq;
1005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006EXPORT_SYMBOL(blk_get_request);
1007
1008/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001009 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001010 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001011 * @bio: The bio describing the memory mappings that will be submitted for IO.
1012 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001013 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +02001014 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001015 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
1016 * type commands. Where the struct request needs to be farther initialized by
1017 * the caller. It is passed a &struct bio, which describes the memory info of
1018 * the I/O transfer.
1019 *
1020 * The caller of blk_make_request must make sure that bi_io_vec
1021 * are set to describe the memory buffers. That bio_data_dir() will return
1022 * the needed direction of the request. (And all bio's in the passed bio-chain
1023 * are properly set accordingly)
1024 *
1025 * If called under none-sleepable conditions, mapped bio buffers must not
1026 * need bouncing, by calling the appropriate masked or flagged allocator,
1027 * suitable for the target device. Otherwise the call to blk_queue_bounce will
1028 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +02001029 *
1030 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
1031 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
1032 * anything but the first bio in the chain. Otherwise you risk waiting for IO
1033 * completion of a bio that hasn't been submitted yet, thus resulting in a
1034 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
1035 * of bio_alloc(), as that avoids the mempool deadlock.
1036 * If possible a big IO should be split into smaller parts when allocation
1037 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +02001038 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001039struct request *blk_make_request(struct request_queue *q, struct bio *bio,
1040 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +02001041{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001042 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
1043
1044 if (unlikely(!rq))
1045 return ERR_PTR(-ENOMEM);
1046
1047 for_each_bio(bio) {
1048 struct bio *bounce_bio = bio;
1049 int ret;
1050
1051 blk_queue_bounce(q, &bounce_bio);
1052 ret = blk_rq_append_bio(q, rq, bounce_bio);
1053 if (unlikely(ret)) {
1054 blk_put_request(rq);
1055 return ERR_PTR(ret);
1056 }
1057 }
1058
1059 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +02001060}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001061EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +02001062
1063/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * blk_requeue_request - put a request back on queue
1065 * @q: request queue where request should be inserted
1066 * @rq: request to be inserted
1067 *
1068 * Description:
1069 * Drivers often keep queueing requests until the hardware cannot accept
1070 * more, when that condition happens we need to put the request back
1071 * on the queue. Must be called with queue lock held.
1072 */
Jens Axboe165125e2007-07-24 09:28:11 +02001073void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001075 blk_delete_timer(rq);
1076 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001077 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (blk_rq_tagged(rq))
1080 blk_queue_end_tag(q, rq);
1081
James Bottomleyba396a62009-05-27 14:17:08 +02001082 BUG_ON(blk_queued_rq(rq));
1083
Tatyana Brokhmanfd799022013-04-11 14:57:15 +03001084 if (rq->cmd_flags & REQ_URGENT) {
1085 /*
1086 * It's not compliant with the design to re-insert
1087 * urgent requests. We want to be able to track this
1088 * down.
1089 */
Tatyana Brokhman7f9b9bf2013-05-16 14:36:58 +03001090 pr_debug("%s(): requeueing an URGENT request", __func__);
Tatyana Brokhmanfd799022013-04-11 14:57:15 +03001091 WARN_ON(!q->dispatched_urgent);
1092 q->dispatched_urgent = false;
1093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 elv_requeue_request(q, rq);
1095}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096EXPORT_SYMBOL(blk_requeue_request);
1097
Tatyana Brokhman57d80192012-12-04 15:54:43 +02001098/**
1099 * blk_reinsert_request() - Insert a request back to the scheduler
1100 * @q: request queue
1101 * @rq: request to be inserted
1102 *
1103 * This function inserts the request back to the scheduler as if
1104 * it was never dispatched.
1105 *
1106 * Return: 0 on success, error code on fail
1107 */
1108int blk_reinsert_request(struct request_queue *q, struct request *rq)
1109{
1110 if (unlikely(!rq) || unlikely(!q))
1111 return -EIO;
1112
1113 blk_delete_timer(rq);
1114 blk_clear_rq_complete(rq);
1115 trace_block_rq_requeue(q, rq);
1116
1117 if (blk_rq_tagged(rq))
1118 blk_queue_end_tag(q, rq);
1119
1120 BUG_ON(blk_queued_rq(rq));
Tatyana Brokhmanfd799022013-04-11 14:57:15 +03001121 if (rq->cmd_flags & REQ_URGENT) {
1122 /*
1123 * It's not compliant with the design to re-insert
1124 * urgent requests. We want to be able to track this
1125 * down.
1126 */
Tatyana Brokhman7f9b9bf2013-05-16 14:36:58 +03001127 pr_debug("%s(): reinserting an URGENT request", __func__);
Tatyana Brokhmanfd799022013-04-11 14:57:15 +03001128 WARN_ON(!q->dispatched_urgent);
1129 q->dispatched_urgent = false;
1130 }
Tatyana Brokhman57d80192012-12-04 15:54:43 +02001131
1132 return elv_reinsert_request(q, rq);
1133}
1134EXPORT_SYMBOL(blk_reinsert_request);
1135
1136/**
1137 * blk_reinsert_req_sup() - check whether the scheduler supports
1138 * reinsertion of requests
1139 * @q: request queue
1140 *
1141 * Returns true if the current scheduler supports reinserting
1142 * request. False otherwise
1143 */
1144bool blk_reinsert_req_sup(struct request_queue *q)
1145{
1146 if (unlikely(!q))
1147 return false;
1148 return q->elevator->type->ops.elevator_reinsert_req_fn ? true : false;
1149}
1150EXPORT_SYMBOL(blk_reinsert_req_sup);
1151
Jens Axboe73c10102011-03-08 13:19:51 +01001152static void add_acct_request(struct request_queue *q, struct request *rq,
1153 int where)
1154{
1155 drive_stat_acct(rq, 1);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001156 __elv_add_request(q, rq, where);
Jens Axboe73c10102011-03-08 13:19:51 +01001157}
1158
Tejun Heo074a7ac2008-08-25 19:56:14 +09001159static void part_round_stats_single(int cpu, struct hd_struct *part,
1160 unsigned long now)
1161{
1162 if (now == part->stamp)
1163 return;
1164
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001165 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001166 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001167 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001168 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1169 }
1170 part->stamp = now;
1171}
1172
1173/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001174 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1175 * @cpu: cpu number for stats access
1176 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 *
1178 * The average IO queue length and utilisation statistics are maintained
1179 * by observing the current state of the queue length and the amount of
1180 * time it has been in this state for.
1181 *
1182 * Normally, that accounting is done on IO completion, but that can result
1183 * in more than a second's worth of IO being accounted for within any one
1184 * second, leading to >100% utilisation. To deal with that, we call this
1185 * function to do a round-off before returning the results when reading
1186 * /proc/diskstats. This accounts immediately for all queue usage up to
1187 * the current jiffies and restarts the counters again.
1188 */
Tejun Heoc9959052008-08-25 19:47:21 +09001189void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001190{
1191 unsigned long now = jiffies;
1192
Tejun Heo074a7ac2008-08-25 19:56:14 +09001193 if (part->partno)
1194 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1195 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001196}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001197EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001198
Lin Ming0fb59e52013-03-23 11:42:27 +08001199#ifdef CONFIG_PM_RUNTIME
1200static void blk_pm_put_request(struct request *rq)
1201{
1202 if (rq->q->dev && !(rq->cmd_flags & REQ_PM) && !--rq->q->nr_pending)
1203 pm_runtime_mark_last_busy(rq->q->dev);
1204}
1205#else
1206static inline void blk_pm_put_request(struct request *rq) {}
1207#endif
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209/*
1210 * queue lock must be held
1211 */
Jens Axboe165125e2007-07-24 09:28:11 +02001212void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (unlikely(!q))
1215 return;
1216 if (unlikely(--req->ref_count))
1217 return;
1218
Lin Ming0fb59e52013-03-23 11:42:27 +08001219 blk_pm_put_request(req);
1220
Tejun Heo8922e162005-10-20 16:23:44 +02001221 elv_completed_request(q, req);
1222
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001223 /* this is a bio leak */
1224 WARN_ON(req->bio != NULL);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /*
1227 * Request may not have originated from ll_rw_blk. if not,
1228 * it didn't come out of our reserved rq pools
1229 */
Jens Axboe49171e52006-08-10 08:59:11 +02001230 if (req->cmd_flags & REQ_ALLOCED) {
Tejun Heo75eb6c32011-10-19 14:31:22 +02001231 unsigned int flags = req->cmd_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001234 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 blk_free_request(q, req);
Tejun Heo75eb6c32011-10-19 14:31:22 +02001237 freed_request(q, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239}
Mike Christie6e39b692005-11-11 05:30:24 -06001240EXPORT_SYMBOL_GPL(__blk_put_request);
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242void blk_put_request(struct request *req)
1243{
Tejun Heo8922e162005-10-20 16:23:44 +02001244 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001245 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001247 spin_lock_irqsave(q->queue_lock, flags);
1248 __blk_put_request(q, req);
1249 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251EXPORT_SYMBOL(blk_put_request);
1252
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001253/**
1254 * blk_add_request_payload - add a payload to a request
1255 * @rq: request to update
1256 * @page: page backing the payload
1257 * @len: length of the payload.
1258 *
1259 * This allows to later add a payload to an already submitted request by
1260 * a block driver. The driver needs to take care of freeing the payload
1261 * itself.
1262 *
1263 * Note that this is a quite horrible hack and nothing but handling of
1264 * discard requests should ever use it.
1265 */
1266void blk_add_request_payload(struct request *rq, struct page *page,
1267 unsigned int len)
1268{
1269 struct bio *bio = rq->bio;
1270
1271 bio->bi_io_vec->bv_page = page;
1272 bio->bi_io_vec->bv_offset = 0;
1273 bio->bi_io_vec->bv_len = len;
1274
1275 bio->bi_size = len;
1276 bio->bi_vcnt = 1;
1277 bio->bi_phys_segments = 1;
1278
1279 rq->__data_len = rq->resid_len = len;
1280 rq->nr_phys_segments = 1;
1281 rq->buffer = bio_data(bio);
1282}
1283EXPORT_SYMBOL_GPL(blk_add_request_payload);
1284
Jens Axboe73c10102011-03-08 13:19:51 +01001285static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1286 struct bio *bio)
1287{
1288 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1289
Jens Axboe73c10102011-03-08 13:19:51 +01001290 if (!ll_back_merge_fn(q, req, bio))
1291 return false;
1292
1293 trace_block_bio_backmerge(q, bio);
1294
1295 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1296 blk_rq_set_mixed_merge(req);
1297
1298 req->biotail->bi_next = bio;
1299 req->biotail = bio;
1300 req->__data_len += bio->bi_size;
1301 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1302
1303 drive_stat_acct(req, 0);
1304 return true;
1305}
1306
1307static bool bio_attempt_front_merge(struct request_queue *q,
1308 struct request *req, struct bio *bio)
1309{
1310 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
Jens Axboe73c10102011-03-08 13:19:51 +01001311
Jens Axboe73c10102011-03-08 13:19:51 +01001312 if (!ll_front_merge_fn(q, req, bio))
1313 return false;
1314
1315 trace_block_bio_frontmerge(q, bio);
1316
1317 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1318 blk_rq_set_mixed_merge(req);
1319
Jens Axboe73c10102011-03-08 13:19:51 +01001320 bio->bi_next = req->bio;
1321 req->bio = bio;
1322
1323 /*
1324 * may not be valid. if the low level driver said
1325 * it didn't need a bounce buffer then it better
1326 * not touch req->buffer either...
1327 */
1328 req->buffer = bio_data(bio);
1329 req->__sector = bio->bi_sector;
1330 req->__data_len += bio->bi_size;
1331 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1332
1333 drive_stat_acct(req, 0);
1334 return true;
1335}
1336
Tejun Heobd87b582011-10-19 14:33:08 +02001337/**
1338 * attempt_plug_merge - try to merge with %current's plugged list
1339 * @q: request_queue new bio is being queued at
1340 * @bio: new bio being queued
1341 * @request_count: out parameter for number of traversed plugged requests
1342 *
1343 * Determine whether @bio being queued on @q can be merged with a request
1344 * on %current's plugged list. Returns %true if merge was successful,
1345 * otherwise %false.
1346 *
Tejun Heo07c2bd32012-02-08 09:19:42 +01001347 * Plugging coalesces IOs from the same issuer for the same purpose without
1348 * going through @q->queue_lock. As such it's more of an issuing mechanism
1349 * than scheduling, and the request, while may have elvpriv data, is not
1350 * added on the elevator at this point. In addition, we don't have
1351 * reliable access to the elevator outside queue lock. Only check basic
1352 * merging parameters without querying the elevator.
Jens Axboe73c10102011-03-08 13:19:51 +01001353 */
Tejun Heobd87b582011-10-19 14:33:08 +02001354static bool attempt_plug_merge(struct request_queue *q, struct bio *bio,
1355 unsigned int *request_count)
Jens Axboe73c10102011-03-08 13:19:51 +01001356{
1357 struct blk_plug *plug;
1358 struct request *rq;
1359 bool ret = false;
1360
Tejun Heobd87b582011-10-19 14:33:08 +02001361 plug = current->plug;
Jens Axboe73c10102011-03-08 13:19:51 +01001362 if (!plug)
1363 goto out;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001364 *request_count = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01001365
1366 list_for_each_entry_reverse(rq, &plug->list, queuelist) {
1367 int el_ret;
1368
Shaohua Li1b2e19f2012-04-06 11:37:47 -06001369 if (rq->q == q)
1370 (*request_count)++;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001371
Tejun Heo07c2bd32012-02-08 09:19:42 +01001372 if (rq->q != q || !blk_rq_merge_ok(rq, bio))
Jens Axboe73c10102011-03-08 13:19:51 +01001373 continue;
1374
Tejun Heo050c8ea2012-02-08 09:19:38 +01001375 el_ret = blk_try_merge(rq, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001376 if (el_ret == ELEVATOR_BACK_MERGE) {
1377 ret = bio_attempt_back_merge(q, rq, bio);
1378 if (ret)
1379 break;
1380 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1381 ret = bio_attempt_front_merge(q, rq, bio);
1382 if (ret)
1383 break;
1384 }
1385 }
1386out:
1387 return ret;
1388}
1389
Jens Axboe86db1e22008-01-29 14:53:40 +01001390void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001391{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001392 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001393
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001394 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1395 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001396 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001397
Tejun Heo52d9e672006-01-06 09:49:58 +01001398 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001399 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001400 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001401 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001402}
Maya Erez60181552012-06-27 11:25:26 +03001403EXPORT_SYMBOL(init_request_from_bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001404
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001405void blk_queue_bio(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001407 const bool sync = !!(bio->bi_rw & REQ_SYNC);
Jens Axboe73c10102011-03-08 13:19:51 +01001408 struct blk_plug *plug;
1409 int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
1410 struct request *req;
Shaohua Li56ebdaf2011-08-24 16:04:34 +02001411 unsigned int request_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /*
1414 * low level driver can indicate that it wants pages above a
1415 * certain limit bounced to low memory (ie for highmem, or even
1416 * ISA dma in theory)
1417 */
1418 blk_queue_bounce(q, &bio);
1419
Tejun Heo4fed9472010-09-03 11:56:17 +02001420 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001421 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001422 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001423 goto get_rq;
1424 }
1425
Jens Axboe73c10102011-03-08 13:19:51 +01001426 /*
1427 * Check if we can merge with the plugged list before grabbing
1428 * any locks.
1429 */
Tejun Heobd87b582011-10-19 14:33:08 +02001430 if (attempt_plug_merge(q, bio, &request_count))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001431 return;
Jens Axboe73c10102011-03-08 13:19:51 +01001432
1433 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001436 if (el_ret == ELEVATOR_BACK_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001437 if (bio_attempt_back_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001438 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001439 if (!attempt_back_merge(q, req))
1440 elv_merged_request(q, req, el_ret);
1441 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001442 }
Jens Axboe73c10102011-03-08 13:19:51 +01001443 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
Jens Axboe73c10102011-03-08 13:19:51 +01001444 if (bio_attempt_front_merge(q, req, bio)) {
Tejun Heo07c2bd32012-02-08 09:19:42 +01001445 elv_bio_merged(q, req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001446 if (!attempt_front_merge(q, req))
1447 elv_merged_request(q, req, el_ret);
1448 goto out_unlock;
1449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001453 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001454 * This sync check and mask will be re-done in init_request_from_bio(),
1455 * but we need to set it earlier to expose the sync flag to the
1456 * rq allocator and io schedulers.
1457 */
1458 rw_flags = bio_data_dir(bio);
1459 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001460 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001461
1462 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001463 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001464 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001465 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001466 req = get_request_wait(q, rw_flags, bio);
Tejun Heoda8303c2011-10-19 14:33:05 +02001467 if (unlikely(!req)) {
1468 bio_endio(bio, -ENODEV); /* @q is dead */
1469 goto out_unlock;
1470 }
Nick Piggind6344532005-06-28 20:45:14 -07001471
Nick Piggin450991b2005-06-28 20:45:13 -07001472 /*
1473 * After dropping the lock and possibly sleeping here, our request
1474 * may now be mergeable after it had proven unmergeable (above).
1475 * We don't worry about that case for efficiency. It won't happen
1476 * often, and the elevators are able to handle it.
1477 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001478 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Tao Ma9562ad92011-10-24 16:11:30 +02001480 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags))
Jens Axboe11ccf112011-07-26 15:01:15 +02001481 req->cpu = raw_smp_processor_id();
Tejun Heodd831002010-09-03 11:56:16 +02001482
Jens Axboe73c10102011-03-08 13:19:51 +01001483 plug = current->plug;
Jens Axboe721a9602011-03-09 11:56:30 +01001484 if (plug) {
Jens Axboedc6d36c2011-04-12 10:28:28 +02001485 /*
1486 * If this is the first request added after a plug, fire
1487 * of a plug trace. If others have been added before, check
1488 * if we have multiple devices in this plug. If so, make a
1489 * note to sort the list before dispatch.
1490 */
1491 if (list_empty(&plug->list))
1492 trace_block_plug(q);
Shaohua Li3540d5e2011-11-16 09:21:50 +01001493 else {
1494 if (!plug->should_sort) {
1495 struct request *__rq;
Jens Axboe73c10102011-03-08 13:19:51 +01001496
Shaohua Li3540d5e2011-11-16 09:21:50 +01001497 __rq = list_entry_rq(plug->list.prev);
1498 if (__rq->q != q)
1499 plug->should_sort = 1;
1500 }
Shaohua Li019ceb72011-11-16 09:21:50 +01001501 if (request_count >= BLK_MAX_REQUEST_COUNT) {
Shaohua Li3540d5e2011-11-16 09:21:50 +01001502 blk_flush_plug_list(plug, false);
Shaohua Li019ceb72011-11-16 09:21:50 +01001503 trace_block_plug(q);
1504 }
Jens Axboe73c10102011-03-08 13:19:51 +01001505 }
Shaohua Lia6327162011-08-24 16:04:32 +02001506 list_add_tail(&req->queuelist, &plug->list);
1507 drive_stat_acct(req, 1);
Jens Axboe73c10102011-03-08 13:19:51 +01001508 } else {
1509 spin_lock_irq(q->queue_lock);
1510 add_acct_request(q, req, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02001511 __blk_run_queue(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001512out_unlock:
1513 spin_unlock_irq(q->queue_lock);
1514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
Jens Axboec20e8de2011-09-12 12:03:37 +02001516EXPORT_SYMBOL_GPL(blk_queue_bio); /* for device mapper only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518/*
1519 * If bio->bi_dev is a partition, remap the location
1520 */
1521static inline void blk_partition_remap(struct bio *bio)
1522{
1523 struct block_device *bdev = bio->bi_bdev;
1524
Jens Axboebf2de6f2007-09-27 13:01:25 +02001525 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 bio->bi_sector += p->start_sect;
1529 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001530
Mike Snitzerd07335e2010-11-16 12:52:38 +01001531 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1532 bdev->bd_dev,
1533 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535}
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537static void handle_bad_sector(struct bio *bio)
1538{
1539 char b[BDEVNAME_SIZE];
1540
1541 printk(KERN_INFO "attempt to access beyond end of device\n");
1542 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1543 bdevname(bio->bi_bdev, b),
1544 bio->bi_rw,
1545 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001546 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 set_bit(BIO_EOF, &bio->bi_flags);
1549}
1550
Akinobu Mitac17bb492006-12-08 02:39:46 -08001551#ifdef CONFIG_FAIL_MAKE_REQUEST
1552
1553static DECLARE_FAULT_ATTR(fail_make_request);
1554
1555static int __init setup_fail_make_request(char *str)
1556{
1557 return setup_fault_attr(&fail_make_request, str);
1558}
1559__setup("fail_make_request=", setup_fail_make_request);
1560
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001561static bool should_fail_request(struct hd_struct *part, unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001562{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001563 return part->make_it_fail && should_fail(&fail_make_request, bytes);
Akinobu Mitac17bb492006-12-08 02:39:46 -08001564}
1565
1566static int __init fail_make_request_debugfs(void)
1567{
Akinobu Mitadd48c082011-08-03 16:21:01 -07001568 struct dentry *dir = fault_create_debugfs_attr("fail_make_request",
1569 NULL, &fail_make_request);
1570
1571 return IS_ERR(dir) ? PTR_ERR(dir) : 0;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001572}
1573
1574late_initcall(fail_make_request_debugfs);
1575
1576#else /* CONFIG_FAIL_MAKE_REQUEST */
1577
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001578static inline bool should_fail_request(struct hd_struct *part,
1579 unsigned int bytes)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001580{
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001581 return false;
Akinobu Mitac17bb492006-12-08 02:39:46 -08001582}
1583
1584#endif /* CONFIG_FAIL_MAKE_REQUEST */
1585
Jens Axboec07e2b42007-07-18 13:27:58 +02001586/*
1587 * Check whether this bio extends beyond the end of the device.
1588 */
1589static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1590{
1591 sector_t maxsector;
1592
1593 if (!nr_sectors)
1594 return 0;
1595
1596 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001597 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001598 if (maxsector) {
1599 sector_t sector = bio->bi_sector;
1600
1601 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1602 /*
1603 * This may well happen - the kernel calls bread()
1604 * without checking the size of the device, e.g., when
1605 * mounting a device.
1606 */
1607 handle_bad_sector(bio);
1608 return 1;
1609 }
1610 }
1611
1612 return 0;
1613}
1614
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001615static noinline_for_stack bool
1616generic_make_request_checks(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Jens Axboe165125e2007-07-24 09:28:11 +02001618 struct request_queue *q;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001619 int nr_sectors = bio_sectors(bio);
Jens Axboe51fd77b2007-11-02 08:49:08 +01001620 int err = -EIO;
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001621 char b[BDEVNAME_SIZE];
1622 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Jens Axboec07e2b42007-07-18 13:27:58 +02001626 if (bio_check_eod(bio, nr_sectors))
1627 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001629 q = bdev_get_queue(bio->bi_bdev);
1630 if (unlikely(!q)) {
1631 printk(KERN_ERR
1632 "generic_make_request: Trying to access "
1633 "nonexistent block-device %s (%Lu)\n",
1634 bdevname(bio->bi_bdev, b),
1635 (long long) bio->bi_sector);
1636 goto end_io;
1637 }
1638
Steve Mucklef132c6c2012-06-06 18:30:57 -07001639 if (unlikely(!(bio->bi_rw & (REQ_DISCARD | REQ_SANITIZE)) &&
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001640 nr_sectors > queue_max_hw_sectors(q))) {
1641 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
1642 bdevname(bio->bi_bdev, b),
1643 bio_sectors(bio),
1644 queue_max_hw_sectors(q));
1645 goto end_io;
1646 }
1647
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001648 part = bio->bi_bdev->bd_part;
1649 if (should_fail_request(part, bio->bi_size) ||
1650 should_fail_request(&part_to_disk(part)->part0,
1651 bio->bi_size))
1652 goto end_io;
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 /*
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001655 * If this device has partitions, remap block n
1656 * of partition p to block n+start(p) of the disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001658 blk_partition_remap(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001660 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1661 goto end_io;
1662
1663 if (bio_check_eod(bio, nr_sectors))
1664 goto end_io;
1665
1666 /*
1667 * Filter flush bio's early so that make_request based
1668 * drivers without flush support don't have to worry
1669 * about them.
1670 */
1671 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1672 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1673 if (!nr_sectors) {
1674 err = 0;
Tejun Heoa7384672008-11-28 13:32:03 +09001675 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001679 if ((bio->bi_rw & REQ_DISCARD) &&
1680 (!blk_queue_discard(q) ||
1681 ((bio->bi_rw & REQ_SECURE) &&
1682 !blk_queue_secdiscard(q)))) {
1683 err = -EOPNOTSUPP;
1684 goto end_io;
1685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Steve Mucklef132c6c2012-06-06 18:30:57 -07001687 if ((bio->bi_rw & REQ_SANITIZE) &&
1688 (!blk_queue_sanitize(q))) {
1689 pr_info("%s - got a SANITIZE request but the queue "
1690 "doesn't support sanitize requests", __func__);
1691 err = -EOPNOTSUPP;
1692 goto end_io;
1693 }
1694
Tejun Heobc16a4f2011-10-19 14:33:01 +02001695 if (blk_throtl_bio(q, bio))
1696 return false; /* throttled, will be resubmitted later */
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001697
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001698 trace_block_bio_queue(q, bio);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001699 return true;
Tejun Heoa7384672008-11-28 13:32:03 +09001700
1701end_io:
1702 bio_endio(bio, err);
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001703 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001706/**
1707 * generic_make_request - hand a buffer to its device driver for I/O
1708 * @bio: The bio describing the location in memory and on the device.
1709 *
1710 * generic_make_request() is used to make I/O requests of block
1711 * devices. It is passed a &struct bio, which describes the I/O that needs
1712 * to be done.
1713 *
1714 * generic_make_request() does not return any status. The
1715 * success/failure status of the request, along with notification of
1716 * completion, is delivered asynchronously through the bio->bi_end_io
1717 * function described (one day) else where.
1718 *
1719 * The caller of generic_make_request must make sure that bi_io_vec
1720 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1721 * set to describe the device address, and the
1722 * bi_end_io and optionally bi_private are set to describe how
1723 * completion notification should be signaled.
1724 *
1725 * generic_make_request and the drivers it calls may use bi_next if this
1726 * bio happens to be merged with someone else, and may resubmit the bio to
1727 * a lower device by calling into generic_make_request recursively, which
1728 * means the bio should NOT be touched after the call to ->make_request_fn.
Neil Brownd89d8792007-05-01 09:53:42 +02001729 */
1730void generic_make_request(struct bio *bio)
1731{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001732 struct bio_list bio_list_on_stack;
1733
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001734 if (!generic_make_request_checks(bio))
1735 return;
1736
1737 /*
1738 * We only want one ->make_request_fn to be active at a time, else
1739 * stack usage with stacked devices could be a problem. So use
1740 * current->bio_list to keep a list of requests submited by a
1741 * make_request_fn function. current->bio_list is also used as a
1742 * flag to say if generic_make_request is currently active in this
1743 * task or not. If it is NULL, then no make_request is active. If
1744 * it is non-NULL, then a make_request is active, and new requests
1745 * should be added at the tail
1746 */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001747 if (current->bio_list) {
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001748 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001749 return;
1750 }
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001751
Neil Brownd89d8792007-05-01 09:53:42 +02001752 /* following loop may be a bit non-obvious, and so deserves some
1753 * explanation.
1754 * Before entering the loop, bio->bi_next is NULL (as all callers
1755 * ensure that) so we have a list with a single bio.
1756 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001757 * we assign bio_list to a pointer to the bio_list_on_stack,
1758 * thus initialising the bio_list of new bios to be
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001759 * added. ->make_request() may indeed add some more bios
Neil Brownd89d8792007-05-01 09:53:42 +02001760 * through a recursive call to generic_make_request. If it
1761 * did, we find a non-NULL value in bio_list and re-enter the loop
1762 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001763 * of the top of the list (no pretending) and so remove it from
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001764 * bio_list, and call into ->make_request() again.
Neil Brownd89d8792007-05-01 09:53:42 +02001765 */
1766 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001767 bio_list_init(&bio_list_on_stack);
1768 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001769 do {
Christoph Hellwig27a84d52011-09-15 14:01:40 +02001770 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
1771
1772 q->make_request_fn(q, bio);
1773
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001774 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001775 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001776 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001777}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778EXPORT_SYMBOL(generic_make_request);
1779
1780/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001781 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1783 * @bio: The &struct bio which describes the I/O
1784 *
1785 * submit_bio() is very similar in purpose to generic_make_request(), and
1786 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001787 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 *
1789 */
1790void submit_bio(int rw, struct bio *bio)
1791{
1792 int count = bio_sectors(bio);
1793
Jens Axboe22e2c502005-06-27 10:55:12 +02001794 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Jens Axboebf2de6f2007-09-27 13:01:25 +02001796 /*
1797 * If it's a regular read/write or a barrier with data attached,
1798 * go through the normal accounting stuff before submission.
1799 */
Maya Erez73937f52012-05-24 23:33:05 +03001800 if (bio_has_data(bio) &&
1801 (!(rw & (REQ_DISCARD | REQ_SANITIZE)))) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001802 if (rw & WRITE) {
1803 count_vm_events(PGPGOUT, count);
1804 } else {
1805 task_io_account_read(bio->bi_size);
1806 count_vm_events(PGPGIN, count);
1807 }
1808
1809 if (unlikely(block_dump)) {
1810 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001811 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001812 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001813 (rw & WRITE) ? "WRITE" : "READ",
1814 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001815 bdevname(bio->bi_bdev, b),
1816 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819
1820 generic_make_request(bio);
1821}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822EXPORT_SYMBOL(submit_bio);
1823
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001824/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001825 * blk_rq_check_limits - Helper function to check a request for the queue limit
1826 * @q: the queue
1827 * @rq: the request being checked
1828 *
1829 * Description:
1830 * @rq may have been made based on weaker limitations of upper-level queues
1831 * in request stacking drivers, and it may violate the limitation of @q.
1832 * Since the block layer and the underlying device driver trust @rq
1833 * after it is inserted to @q, it should be checked against @q before
1834 * the insertion using this generic function.
1835 *
1836 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001837 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001838 * Request stacking drivers like request-based dm may change the queue
1839 * limits while requests are in the queue (e.g. dm's table swapping).
1840 * Such request stacking drivers should check those requests agaist
1841 * the new queue limits again when they dispatch those requests,
1842 * although such checkings are also done against the old queue limits
1843 * when submitting requests.
1844 */
1845int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1846{
Maya Erez73937f52012-05-24 23:33:05 +03001847 if (rq->cmd_flags & (REQ_DISCARD | REQ_SANITIZE))
ike Snitzer33839772010-08-08 12:11:33 -04001848 return 0;
1849
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001850 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1851 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001852 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1853 return -EIO;
1854 }
1855
1856 /*
1857 * queue's settings related to segment counting like q->bounce_pfn
1858 * may differ from that of other stacking queues.
1859 * Recalculate it to check the request correctly on this queue's
1860 * limitation.
1861 */
1862 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001863 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001864 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1865 return -EIO;
1866 }
1867
1868 return 0;
1869}
1870EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1871
1872/**
1873 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1874 * @q: the queue to submit the request
1875 * @rq: the request being queued
1876 */
1877int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1878{
1879 unsigned long flags;
Jeff Moyer4853aba2011-08-15 21:37:25 +02001880 int where = ELEVATOR_INSERT_BACK;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001881
1882 if (blk_rq_check_limits(q, rq))
1883 return -EIO;
1884
Akinobu Mitab2c9cd32011-07-26 16:09:03 -07001885 if (rq->rq_disk &&
1886 should_fail_request(&rq->rq_disk->part0, blk_rq_bytes(rq)))
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001887 return -EIO;
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001888
1889 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo8ba61432011-12-14 00:33:37 +01001890 if (unlikely(blk_queue_dead(q))) {
1891 spin_unlock_irqrestore(q->queue_lock, flags);
1892 return -ENODEV;
1893 }
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001894
1895 /*
1896 * Submitting request must be dequeued before calling this function
1897 * because it will be linked to another request_queue
1898 */
1899 BUG_ON(blk_queued_rq(rq));
1900
Jeff Moyer4853aba2011-08-15 21:37:25 +02001901 if (rq->cmd_flags & (REQ_FLUSH|REQ_FUA))
1902 where = ELEVATOR_INSERT_FLUSH;
1903
1904 add_acct_request(q, rq, where);
Jeff Moyere67b77c2011-10-17 12:57:23 +02001905 if (where == ELEVATOR_INSERT_FLUSH)
1906 __blk_run_queue(q);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001907 spin_unlock_irqrestore(q->queue_lock, flags);
1908
1909 return 0;
1910}
1911EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1912
Tejun Heo80a761f2009-07-03 17:48:17 +09001913/**
1914 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1915 * @rq: request to examine
1916 *
1917 * Description:
1918 * A request could be merge of IOs which require different failure
1919 * handling. This function determines the number of bytes which
1920 * can be failed from the beginning of the request without
1921 * crossing into area which need to be retried further.
1922 *
1923 * Return:
1924 * The number of bytes to fail.
1925 *
1926 * Context:
1927 * queue_lock must be held.
1928 */
1929unsigned int blk_rq_err_bytes(const struct request *rq)
1930{
1931 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1932 unsigned int bytes = 0;
1933 struct bio *bio;
1934
1935 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1936 return blk_rq_bytes(rq);
1937
1938 /*
1939 * Currently the only 'mixing' which can happen is between
1940 * different fastfail types. We can safely fail portions
1941 * which have all the failfast bits that the first one has -
1942 * the ones which are at least as eager to fail as the first
1943 * one.
1944 */
1945 for (bio = rq->bio; bio; bio = bio->bi_next) {
1946 if ((bio->bi_rw & ff) != ff)
1947 break;
1948 bytes += bio->bi_size;
1949 }
1950
1951 /* this could lead to infinite loop */
1952 BUG_ON(blk_rq_bytes(rq) && !bytes);
1953 return bytes;
1954}
1955EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1956
Jens Axboebc58ba92009-01-23 10:54:44 +01001957static void blk_account_io_completion(struct request *req, unsigned int bytes)
1958{
Jens Axboec2553b52009-04-24 08:10:11 +02001959 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001960 const int rw = rq_data_dir(req);
1961 struct hd_struct *part;
1962 int cpu;
1963
1964 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001965 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001966 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1967 part_stat_unlock();
1968 }
1969}
1970
1971static void blk_account_io_done(struct request *req)
1972{
Jens Axboebc58ba92009-01-23 10:54:44 +01001973 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001974 * Account IO completion. flush_rq isn't accounted as a
1975 * normal IO on queueing nor completion. Accounting the
1976 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001977 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001978 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001979 unsigned long duration = jiffies - req->start_time;
1980 const int rw = rq_data_dir(req);
1981 struct hd_struct *part;
1982 int cpu;
1983
1984 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001985 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001986
1987 part_stat_inc(cpu, part, ios[rw]);
1988 part_stat_add(cpu, part, ticks[rw], duration);
1989 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001990 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001991
Jens Axboe6c23a962011-01-07 08:43:37 +01001992 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001993 part_stat_unlock();
1994 }
1995}
1996
Lin Ming0fb59e52013-03-23 11:42:27 +08001997#ifdef CONFIG_PM_RUNTIME
1998/*
1999 * Don't process normal requests when queue is suspended
2000 * or in the process of suspending/resuming
2001 */
2002static struct request *blk_pm_peek_request(struct request_queue *q,
2003 struct request *rq)
2004{
2005 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
2006 (q->rpm_status != RPM_ACTIVE && !(rq->cmd_flags & REQ_PM))))
2007 return NULL;
2008 else
2009 return rq;
2010}
2011#else
2012static inline struct request *blk_pm_peek_request(struct request_queue *q,
2013 struct request *rq)
2014{
2015 return rq;
2016}
2017#endif
2018
Tejun Heo53a08802008-12-03 12:41:26 +01002019/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002020 * blk_peek_request - peek at the top of a request queue
2021 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002022 *
2023 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002024 * Return the request at the top of @q. The returned request
2025 * should be started using blk_start_request() before LLD starts
2026 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002027 *
2028 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09002029 * Pointer to the request at the top of @q if available. Null
2030 * otherwise.
2031 *
2032 * Context:
2033 * queue_lock must be held.
2034 */
2035struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09002036{
2037 struct request *rq;
2038 int ret;
2039
2040 while ((rq = __elv_next_request(q)) != NULL) {
Lin Ming0fb59e52013-03-23 11:42:27 +08002041
2042 rq = blk_pm_peek_request(q, rq);
2043 if (!rq)
2044 break;
2045
Tejun Heo158dbda2009-04-23 11:05:18 +09002046 if (!(rq->cmd_flags & REQ_STARTED)) {
2047 /*
2048 * This is the first time the device driver
2049 * sees this request (possibly after
2050 * requeueing). Notify IO scheduler.
2051 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002052 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09002053 elv_activate_rq(q, rq);
2054
2055 /*
2056 * just mark as started even if we don't start
2057 * it, a request that has been delayed should
2058 * not be passed by new incoming requests
2059 */
2060 rq->cmd_flags |= REQ_STARTED;
Tatyana Brokhman2dd5b262013-05-01 14:35:20 +03002061 if (rq->cmd_flags & REQ_URGENT) {
2062 WARN_ON(q->dispatched_urgent);
2063 q->dispatched_urgent = true;
2064 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002065 trace_block_rq_issue(q, rq);
2066 }
2067
2068 if (!q->boundary_rq || q->boundary_rq == rq) {
2069 q->end_sector = rq_end_sector(rq);
2070 q->boundary_rq = NULL;
2071 }
2072
2073 if (rq->cmd_flags & REQ_DONTPREP)
2074 break;
2075
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002076 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09002077 /*
2078 * make sure space for the drain appears we
2079 * know we can do this because max_hw_segments
2080 * has been adjusted to be one fewer than the
2081 * device can handle
2082 */
2083 rq->nr_phys_segments++;
2084 }
2085
2086 if (!q->prep_rq_fn)
2087 break;
2088
2089 ret = q->prep_rq_fn(q, rq);
2090 if (ret == BLKPREP_OK) {
2091 break;
2092 } else if (ret == BLKPREP_DEFER) {
2093 /*
2094 * the request may have been (partially) prepped.
2095 * we need to keep this request in the front to
2096 * avoid resource deadlock. REQ_STARTED will
2097 * prevent other fs requests from passing this one.
2098 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002099 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09002100 !(rq->cmd_flags & REQ_DONTPREP)) {
2101 /*
2102 * remove the space for the drain we added
2103 * so that we don't add it again
2104 */
2105 --rq->nr_phys_segments;
2106 }
2107
2108 rq = NULL;
2109 break;
2110 } else if (ret == BLKPREP_KILL) {
2111 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02002112 /*
2113 * Mark this request as started so we don't trigger
2114 * any debug logic in the end I/O path.
2115 */
2116 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09002117 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09002118 } else {
2119 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2120 break;
2121 }
2122 }
2123
2124 return rq;
2125}
Tejun Heo9934c8c2009-05-08 11:54:16 +09002126EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09002127
Tejun Heo9934c8c2009-05-08 11:54:16 +09002128void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09002129{
Tejun Heo9934c8c2009-05-08 11:54:16 +09002130 struct request_queue *q = rq->q;
2131
Tejun Heo158dbda2009-04-23 11:05:18 +09002132 BUG_ON(list_empty(&rq->queuelist));
2133 BUG_ON(ELV_ON_HASH(rq));
2134
2135 list_del_init(&rq->queuelist);
2136
2137 /*
2138 * the time frame between a request being removed from the lists
2139 * and to it is freed is accounted as io that is in progress at
2140 * the driver side.
2141 */
Divyesh Shah91952912010-04-01 15:01:41 -07002142 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02002143 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07002144 set_io_start_time_ns(rq);
2145 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002146}
2147
Tejun Heo5efccd12009-04-23 11:05:18 +09002148/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002149 * blk_start_request - start request processing on the driver
2150 * @req: request to dequeue
2151 *
2152 * Description:
2153 * Dequeue @req and start timeout timer on it. This hands off the
2154 * request to the driver.
2155 *
2156 * Block internal functions which don't want to start timer should
2157 * call blk_dequeue_request().
2158 *
2159 * Context:
2160 * queue_lock must be held.
2161 */
2162void blk_start_request(struct request *req)
2163{
2164 blk_dequeue_request(req);
2165
2166 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09002167 * We are now handing the request to the hardware, initialize
2168 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09002169 */
Tejun Heo5f49f632009-05-19 18:33:05 +09002170 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02002171 if (unlikely(blk_bidi_rq(req)))
2172 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
2173
Tejun Heo9934c8c2009-05-08 11:54:16 +09002174 blk_add_timer(req);
2175}
2176EXPORT_SYMBOL(blk_start_request);
2177
2178/**
2179 * blk_fetch_request - fetch a request from a request queue
2180 * @q: request queue to fetch a request from
2181 *
2182 * Description:
2183 * Return the request at the top of @q. The request is started on
2184 * return and LLD can start processing it immediately.
2185 *
2186 * Return:
2187 * Pointer to the request at the top of @q if available. Null
2188 * otherwise.
2189 *
2190 * Context:
2191 * queue_lock must be held.
2192 */
2193struct request *blk_fetch_request(struct request_queue *q)
2194{
2195 struct request *rq;
2196
2197 rq = blk_peek_request(q);
Tatyana Brokhman2dd5b262013-05-01 14:35:20 +03002198 if (rq)
Tejun Heo9934c8c2009-05-08 11:54:16 +09002199 blk_start_request(rq);
2200 return rq;
2201}
2202EXPORT_SYMBOL(blk_fetch_request);
2203
2204/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002205 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002206 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002207 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002208 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002209 *
2210 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002211 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2212 * the request structure even if @req doesn't have leftover.
2213 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002214 *
2215 * This special helper function is only for request stacking drivers
2216 * (e.g. request-based dm) so that they can handle partial completion.
2217 * Actual device drivers should use blk_end_request instead.
2218 *
2219 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2220 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002221 *
2222 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002223 * %false - this request doesn't have any more data
2224 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002225 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002226bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002228 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 struct bio *bio;
2230
Tejun Heo2e60e022009-04-23 11:05:18 +09002231 if (!req->bio)
2232 return false;
2233
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002234 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002237 * For fs requests, rq is just carrier of independent bio's
2238 * and each partial completion should be handled separately.
2239 * Reset per-request error on each partial completion.
2240 *
2241 * TODO: tj: This is too subtle. It would be better to let
2242 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002244 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 req->errors = 0;
2246
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002247 if (error && req->cmd_type == REQ_TYPE_FS &&
2248 !(req->cmd_flags & REQ_QUIET)) {
Hannes Reinecke79775562011-01-18 10:13:13 +01002249 char *error_type;
2250
2251 switch (error) {
2252 case -ENOLINK:
2253 error_type = "recoverable transport";
2254 break;
2255 case -EREMOTEIO:
2256 error_type = "critical target";
2257 break;
2258 case -EBADE:
2259 error_type = "critical nexus";
2260 break;
2261 case -EIO:
2262 default:
2263 error_type = "I/O";
2264 break;
2265 }
Asutosh Das75de0c32013-03-07 17:43:35 +05302266 printk_ratelimited(
2267 KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
2268 error_type,
2269 req->rq_disk ? req->rq_disk->disk_name : "?",
2270 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272
Jens Axboebc58ba92009-01-23 10:54:44 +01002273 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 total_bytes = bio_nbytes = 0;
2276 while ((bio = req->bio) != NULL) {
2277 int nbytes;
2278
2279 if (nr_bytes >= bio->bi_size) {
2280 req->bio = bio->bi_next;
2281 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002282 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 next_idx = 0;
2284 bio_nbytes = 0;
2285 } else {
2286 int idx = bio->bi_idx + next_idx;
2287
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002288 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002290 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002291 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 break;
2293 }
2294
2295 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2296 BIO_BUG_ON(nbytes > bio->bi_size);
2297
2298 /*
2299 * not a complete bvec done
2300 */
2301 if (unlikely(nbytes > nr_bytes)) {
2302 bio_nbytes += nr_bytes;
2303 total_bytes += nr_bytes;
2304 break;
2305 }
2306
2307 /*
2308 * advance to the next vector
2309 */
2310 next_idx++;
2311 bio_nbytes += nbytes;
2312 }
2313
2314 total_bytes += nbytes;
2315 nr_bytes -= nbytes;
2316
Jens Axboe6728cb02008-01-31 13:03:55 +01002317 bio = req->bio;
2318 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 /*
2320 * end more in this run, or just return 'not-done'
2321 */
2322 if (unlikely(nr_bytes <= 0))
2323 break;
2324 }
2325 }
2326
2327 /*
2328 * completely done
2329 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002330 if (!req->bio) {
2331 /*
2332 * Reset counters so that the request stacking driver
2333 * can find how many bytes remain in the request
2334 * later.
2335 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002336 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002337 return false;
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 /*
2341 * if the request wasn't completed, update state
2342 */
2343 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002344 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 bio->bi_idx += next_idx;
2346 bio_iovec(bio)->bv_offset += nr_bytes;
2347 bio_iovec(bio)->bv_len -= nr_bytes;
2348 }
2349
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002350 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002351 req->buffer = bio_data(req->bio);
2352
2353 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002354 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002355 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002356
Tejun Heo80a761f2009-07-03 17:48:17 +09002357 /* mixed attributes always follow the first bio */
2358 if (req->cmd_flags & REQ_MIXED_MERGE) {
2359 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2360 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2361 }
2362
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002363 /*
2364 * If total number of sectors is less than the first segment
2365 * size, something has gone terribly wrong.
2366 */
2367 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
Jens Axboe81829242011-03-30 09:51:33 +02002368 blk_dump_rq_flags(req, "request botched");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002369 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002370 }
2371
2372 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002374
Tejun Heo2e60e022009-04-23 11:05:18 +09002375 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
Tejun Heo2e60e022009-04-23 11:05:18 +09002377EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Tejun Heo2e60e022009-04-23 11:05:18 +09002379static bool blk_update_bidi_request(struct request *rq, int error,
2380 unsigned int nr_bytes,
2381 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002382{
Tejun Heo2e60e022009-04-23 11:05:18 +09002383 if (blk_update_request(rq, error, nr_bytes))
2384 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002385
Tejun Heo2e60e022009-04-23 11:05:18 +09002386 /* Bidi request must be completed as a whole */
2387 if (unlikely(blk_bidi_rq(rq)) &&
2388 blk_update_request(rq->next_rq, error, bidi_bytes))
2389 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002390
Jens Axboee2e1a142010-06-09 10:42:09 +02002391 if (blk_queue_add_random(rq->q))
2392 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002393
2394 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
James Bottomley28018c22010-07-01 19:49:17 +09002397/**
2398 * blk_unprep_request - unprepare a request
2399 * @req: the request
2400 *
2401 * This function makes a request ready for complete resubmission (or
2402 * completion). It happens only after all error handling is complete,
2403 * so represents the appropriate moment to deallocate any resources
2404 * that were allocated to the request in the prep_rq_fn. The queue
2405 * lock is held when calling this.
2406 */
2407void blk_unprep_request(struct request *req)
2408{
2409 struct request_queue *q = req->q;
2410
2411 req->cmd_flags &= ~REQ_DONTPREP;
2412 if (q->unprep_rq_fn)
2413 q->unprep_rq_fn(q, req);
2414}
2415EXPORT_SYMBOL_GPL(blk_unprep_request);
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417/*
2418 * queue lock must be held
2419 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002420static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002422 if (blk_rq_tagged(req))
2423 blk_queue_end_tag(req->q, req);
2424
James Bottomleyba396a62009-05-27 14:17:08 +02002425 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002427 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002428 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Mike Andersone78042e2008-10-30 02:16:20 -07002430 blk_delete_timer(req);
2431
James Bottomley28018c22010-07-01 19:49:17 +09002432 if (req->cmd_flags & REQ_DONTPREP)
2433 blk_unprep_request(req);
2434
2435
Jens Axboebc58ba92009-01-23 10:54:44 +01002436 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002439 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002440 else {
2441 if (blk_bidi_rq(req))
2442 __blk_put_request(req->next_rq->q, req->next_rq);
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 }
2446}
2447
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002448/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002449 * blk_end_bidi_request - Complete a bidi request
2450 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002451 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002452 * @nr_bytes: number of bytes to complete @rq
2453 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002454 *
2455 * Description:
2456 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002457 * Drivers that supports bidi can safely call this member for any
2458 * type of request, bidi or uni. In the later case @bidi_bytes is
2459 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002460 *
2461 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002462 * %false - we are done with this request
2463 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002464 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002465static bool blk_end_bidi_request(struct request *rq, int error,
2466 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002467{
2468 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002469 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002470
Tejun Heo2e60e022009-04-23 11:05:18 +09002471 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2472 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002473
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002474 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002475 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002476 spin_unlock_irqrestore(q->queue_lock, flags);
2477
Tejun Heo2e60e022009-04-23 11:05:18 +09002478 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002479}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002480
2481/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002482 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2483 * @rq: the request to complete
2484 * @error: %0 for success, < %0 for error
2485 * @nr_bytes: number of bytes to complete @rq
2486 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002487 *
2488 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002489 * Identical to blk_end_bidi_request() except that queue lock is
2490 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002491 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002492 * Return:
2493 * %false - we are done with this request
2494 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002495 **/
Jeff Moyer4853aba2011-08-15 21:37:25 +02002496bool __blk_end_bidi_request(struct request *rq, int error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002497 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002498{
Tejun Heo2e60e022009-04-23 11:05:18 +09002499 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2500 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002501
Tejun Heo2e60e022009-04-23 11:05:18 +09002502 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002503
Tejun Heo2e60e022009-04-23 11:05:18 +09002504 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002505}
2506
2507/**
2508 * blk_end_request - Helper function for drivers to complete the request.
2509 * @rq: the request being processed
2510 * @error: %0 for success, < %0 for error
2511 * @nr_bytes: number of bytes to complete
2512 *
2513 * Description:
2514 * Ends I/O on a number of bytes attached to @rq.
2515 * If @rq has leftover, sets it up for the next range of segments.
2516 *
2517 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002518 * %false - we are done with this request
2519 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002520 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002521bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002522{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002523 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002524}
Jens Axboe56ad1742009-07-28 22:11:24 +02002525EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002526
2527/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002528 * blk_end_request_all - Helper function for drives to finish the request.
2529 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002530 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002531 *
2532 * Description:
2533 * Completely finish @rq.
2534 */
2535void blk_end_request_all(struct request *rq, int error)
2536{
2537 bool pending;
2538 unsigned int bidi_bytes = 0;
2539
2540 if (unlikely(blk_bidi_rq(rq)))
2541 bidi_bytes = blk_rq_bytes(rq->next_rq);
2542
2543 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2544 BUG_ON(pending);
2545}
Jens Axboe56ad1742009-07-28 22:11:24 +02002546EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002547
2548/**
2549 * blk_end_request_cur - Helper function to finish the current request chunk.
2550 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002551 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002552 *
2553 * Description:
2554 * Complete the current consecutively mapped chunk from @rq.
2555 *
2556 * Return:
2557 * %false - we are done with this request
2558 * %true - still buffers pending for this request
2559 */
2560bool blk_end_request_cur(struct request *rq, int error)
2561{
2562 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2563}
Jens Axboe56ad1742009-07-28 22:11:24 +02002564EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002565
2566/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002567 * blk_end_request_err - Finish a request till the next failure boundary.
2568 * @rq: the request to finish till the next failure boundary for
2569 * @error: must be negative errno
2570 *
2571 * Description:
2572 * Complete @rq till the next failure boundary.
2573 *
2574 * Return:
2575 * %false - we are done with this request
2576 * %true - still buffers pending for this request
2577 */
2578bool blk_end_request_err(struct request *rq, int error)
2579{
2580 WARN_ON(error >= 0);
2581 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2582}
2583EXPORT_SYMBOL_GPL(blk_end_request_err);
2584
2585/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002586 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002587 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002588 * @error: %0 for success, < %0 for error
2589 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002590 *
2591 * Description:
2592 * Must be called with queue lock held unlike blk_end_request().
2593 *
2594 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002595 * %false - we are done with this request
2596 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002597 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002598bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002599{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002600 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002601}
Jens Axboe56ad1742009-07-28 22:11:24 +02002602EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002603
2604/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002605 * __blk_end_request_all - Helper function for drives to finish the request.
2606 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002607 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002608 *
2609 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002610 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002611 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002612void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002613{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002614 bool pending;
2615 unsigned int bidi_bytes = 0;
2616
2617 if (unlikely(blk_bidi_rq(rq)))
2618 bidi_bytes = blk_rq_bytes(rq->next_rq);
2619
2620 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2621 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002622}
Jens Axboe56ad1742009-07-28 22:11:24 +02002623EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002624
2625/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002626 * __blk_end_request_cur - Helper function to finish the current request chunk.
2627 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002628 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002629 *
2630 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002631 * Complete the current consecutively mapped chunk from @rq. Must
2632 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002633 *
2634 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002635 * %false - we are done with this request
2636 * %true - still buffers pending for this request
2637 */
2638bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002639{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002640 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002641}
Jens Axboe56ad1742009-07-28 22:11:24 +02002642EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002643
Tejun Heo80a761f2009-07-03 17:48:17 +09002644/**
2645 * __blk_end_request_err - Finish a request till the next failure boundary.
2646 * @rq: the request to finish till the next failure boundary for
2647 * @error: must be negative errno
2648 *
2649 * Description:
2650 * Complete @rq till the next failure boundary. Must be called
2651 * with queue lock held.
2652 *
2653 * Return:
2654 * %false - we are done with this request
2655 * %true - still buffers pending for this request
2656 */
2657bool __blk_end_request_err(struct request *rq, int error)
2658{
2659 WARN_ON(error >= 0);
2660 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2661}
2662EXPORT_SYMBOL_GPL(__blk_end_request_err);
2663
Jens Axboe86db1e22008-01-29 14:53:40 +01002664void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2665 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002667 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002668 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
David Woodhousefb2dce82008-08-05 18:01:53 +01002670 if (bio_has_data(bio)) {
2671 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002672 rq->buffer = bio_data(bio);
2673 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002674 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
NeilBrown66846572007-08-16 13:31:28 +02002677 if (bio->bi_bdev)
2678 rq->rq_disk = bio->bi_bdev->bd_disk;
2679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002681#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2682/**
2683 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2684 * @rq: the request to be flushed
2685 *
2686 * Description:
2687 * Flush all pages in @rq.
2688 */
2689void rq_flush_dcache_pages(struct request *rq)
2690{
2691 struct req_iterator iter;
2692 struct bio_vec *bvec;
2693
2694 rq_for_each_segment(bvec, rq, iter)
2695 flush_dcache_page(bvec->bv_page);
2696}
2697EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2698#endif
2699
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002700/**
2701 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2702 * @q : the queue of the device being checked
2703 *
2704 * Description:
2705 * Check if underlying low-level drivers of a device are busy.
2706 * If the drivers want to export their busy state, they must set own
2707 * exporting function using blk_queue_lld_busy() first.
2708 *
2709 * Basically, this function is used only by request stacking drivers
2710 * to stop dispatching requests to underlying devices when underlying
2711 * devices are busy. This behavior helps more I/O merging on the queue
2712 * of the request stacking driver and prevents I/O throughput regression
2713 * on burst I/O load.
2714 *
2715 * Return:
2716 * 0 - Not busy (The request stacking driver should dispatch request)
2717 * 1 - Busy (The request stacking driver should stop dispatching request)
2718 */
2719int blk_lld_busy(struct request_queue *q)
2720{
2721 if (q->lld_busy_fn)
2722 return q->lld_busy_fn(q);
2723
2724 return 0;
2725}
2726EXPORT_SYMBOL_GPL(blk_lld_busy);
2727
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002728/**
2729 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2730 * @rq: the clone request to be cleaned up
2731 *
2732 * Description:
2733 * Free all bios in @rq for a cloned request.
2734 */
2735void blk_rq_unprep_clone(struct request *rq)
2736{
2737 struct bio *bio;
2738
2739 while ((bio = rq->bio) != NULL) {
2740 rq->bio = bio->bi_next;
2741
2742 bio_put(bio);
2743 }
2744}
2745EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2746
2747/*
2748 * Copy attributes of the original request to the clone request.
2749 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2750 */
2751static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2752{
2753 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002754 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002755 dst->cmd_type = src->cmd_type;
2756 dst->__sector = blk_rq_pos(src);
2757 dst->__data_len = blk_rq_bytes(src);
2758 dst->nr_phys_segments = src->nr_phys_segments;
2759 dst->ioprio = src->ioprio;
2760 dst->extra_len = src->extra_len;
2761}
2762
2763/**
2764 * blk_rq_prep_clone - Helper function to setup clone request
2765 * @rq: the request to be setup
2766 * @rq_src: original request to be cloned
2767 * @bs: bio_set that bios for clone are allocated from
2768 * @gfp_mask: memory allocation mask for bio
2769 * @bio_ctr: setup function to be called for each clone bio.
2770 * Returns %0 for success, non %0 for failure.
2771 * @data: private data to be passed to @bio_ctr
2772 *
2773 * Description:
2774 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2775 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2776 * are not copied, and copying such parts is the caller's responsibility.
2777 * Also, pages which the original bios are pointing to are not copied
2778 * and the cloned bios just point same pages.
2779 * So cloned bios must be completed before original bios, which means
2780 * the caller must complete @rq before @rq_src.
2781 */
2782int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2783 struct bio_set *bs, gfp_t gfp_mask,
2784 int (*bio_ctr)(struct bio *, struct bio *, void *),
2785 void *data)
2786{
2787 struct bio *bio, *bio_src;
2788
2789 if (!bs)
2790 bs = fs_bio_set;
2791
2792 blk_rq_init(NULL, rq);
2793
2794 __rq_for_each_bio(bio_src, rq_src) {
2795 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2796 if (!bio)
2797 goto free_and_out;
2798
2799 __bio_clone(bio, bio_src);
2800
2801 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002802 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002803 goto free_and_out;
2804
2805 if (bio_ctr && bio_ctr(bio, bio_src, data))
2806 goto free_and_out;
2807
2808 if (rq->bio) {
2809 rq->biotail->bi_next = bio;
2810 rq->biotail = bio;
2811 } else
2812 rq->bio = rq->biotail = bio;
2813 }
2814
2815 __blk_rq_prep_clone(rq, rq_src);
2816
2817 return 0;
2818
2819free_and_out:
2820 if (bio)
2821 bio_free(bio, bs);
2822 blk_rq_unprep_clone(rq);
2823
2824 return -ENOMEM;
2825}
2826EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2827
Jens Axboe18887ad2008-07-28 13:08:45 +02002828int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
2830 return queue_work(kblockd_workqueue, work);
2831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832EXPORT_SYMBOL(kblockd_schedule_work);
2833
Vivek Goyale43473b2010-09-15 17:06:35 -04002834int kblockd_schedule_delayed_work(struct request_queue *q,
2835 struct delayed_work *dwork, unsigned long delay)
2836{
2837 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2838}
2839EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2840
Jens Axboe73c10102011-03-08 13:19:51 +01002841#define PLUG_MAGIC 0x91827364
2842
Suresh Jayaraman75df7132011-09-21 10:00:16 +02002843/**
2844 * blk_start_plug - initialize blk_plug and track it inside the task_struct
2845 * @plug: The &struct blk_plug that needs to be initialized
2846 *
2847 * Description:
2848 * Tracking blk_plug inside the task_struct will help with auto-flushing the
2849 * pending I/O should the task end up blocking between blk_start_plug() and
2850 * blk_finish_plug(). This is important from a performance perspective, but
2851 * also ensures that we don't deadlock. For instance, if the task is blocking
2852 * for a memory allocation, memory reclaim could end up wanting to free a
2853 * page belonging to that request that is currently residing in our private
2854 * plug. By flushing the pending I/O when the process goes to sleep, we avoid
2855 * this kind of deadlock.
2856 */
Jens Axboe73c10102011-03-08 13:19:51 +01002857void blk_start_plug(struct blk_plug *plug)
2858{
2859 struct task_struct *tsk = current;
2860
2861 plug->magic = PLUG_MAGIC;
2862 INIT_LIST_HEAD(&plug->list);
NeilBrown048c9372011-04-18 09:52:22 +02002863 INIT_LIST_HEAD(&plug->cb_list);
Jens Axboe73c10102011-03-08 13:19:51 +01002864 plug->should_sort = 0;
2865
2866 /*
2867 * If this is a nested plug, don't actually assign it. It will be
2868 * flushed on its own.
2869 */
2870 if (!tsk->plug) {
2871 /*
2872 * Store ordering should not be needed here, since a potential
2873 * preempt will imply a full memory barrier
2874 */
2875 tsk->plug = plug;
2876 }
2877}
2878EXPORT_SYMBOL(blk_start_plug);
2879
2880static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
2881{
2882 struct request *rqa = container_of(a, struct request, queuelist);
2883 struct request *rqb = container_of(b, struct request, queuelist);
2884
Konstantin Khlebnikovf83e8262011-04-04 00:15:02 +02002885 return !(rqa->q <= rqb->q);
Jens Axboe73c10102011-03-08 13:19:51 +01002886}
2887
Jens Axboe49cac012011-04-16 13:51:05 +02002888/*
2889 * If 'from_schedule' is true, then postpone the dispatch of requests
2890 * until a safe kblockd context. We due this to avoid accidental big
2891 * additional stack usage in driver dispatch, in places where the originally
2892 * plugger did not intend it.
2893 */
Jens Axboef6603782011-04-15 15:49:07 +02002894static void queue_unplugged(struct request_queue *q, unsigned int depth,
Jens Axboe49cac012011-04-16 13:51:05 +02002895 bool from_schedule)
Jens Axboe99e22592011-04-18 09:59:55 +02002896 __releases(q->queue_lock)
Jens Axboe94b5eb22011-04-12 10:12:19 +02002897{
Jens Axboe49cac012011-04-16 13:51:05 +02002898 trace_block_unplug(q, depth, !from_schedule);
Jens Axboe99e22592011-04-18 09:59:55 +02002899
2900 /*
Tejun Heo8ba61432011-12-14 00:33:37 +01002901 * Don't mess with dead queue.
2902 */
2903 if (unlikely(blk_queue_dead(q))) {
2904 spin_unlock(q->queue_lock);
2905 return;
2906 }
2907
2908 /*
Jens Axboe99e22592011-04-18 09:59:55 +02002909 * If we are punting this to kblockd, then we can safely drop
2910 * the queue_lock before waking kblockd (which needs to take
2911 * this lock).
2912 */
2913 if (from_schedule) {
2914 spin_unlock(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002915 blk_run_queue_async(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002916 } else {
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002917 __blk_run_queue(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002918 spin_unlock(q->queue_lock);
2919 }
2920
Jens Axboe94b5eb22011-04-12 10:12:19 +02002921}
2922
NeilBrown048c9372011-04-18 09:52:22 +02002923static void flush_plug_callbacks(struct blk_plug *plug)
2924{
2925 LIST_HEAD(callbacks);
2926
2927 if (list_empty(&plug->cb_list))
2928 return;
2929
2930 list_splice_init(&plug->cb_list, &callbacks);
2931
2932 while (!list_empty(&callbacks)) {
2933 struct blk_plug_cb *cb = list_first_entry(&callbacks,
2934 struct blk_plug_cb,
2935 list);
2936 list_del(&cb->list);
2937 cb->callback(cb);
2938 }
2939}
2940
Jens Axboe49cac012011-04-16 13:51:05 +02002941void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
Jens Axboe73c10102011-03-08 13:19:51 +01002942{
2943 struct request_queue *q;
2944 unsigned long flags;
2945 struct request *rq;
NeilBrown109b8122011-04-11 14:13:10 +02002946 LIST_HEAD(list);
Jens Axboe94b5eb22011-04-12 10:12:19 +02002947 unsigned int depth;
Jens Axboe73c10102011-03-08 13:19:51 +01002948
2949 BUG_ON(plug->magic != PLUG_MAGIC);
2950
NeilBrown048c9372011-04-18 09:52:22 +02002951 flush_plug_callbacks(plug);
Jens Axboe73c10102011-03-08 13:19:51 +01002952 if (list_empty(&plug->list))
2953 return;
2954
NeilBrown109b8122011-04-11 14:13:10 +02002955 list_splice_init(&plug->list, &list);
2956
2957 if (plug->should_sort) {
2958 list_sort(NULL, &list, plug_rq_cmp);
2959 plug->should_sort = 0;
2960 }
Jens Axboe73c10102011-03-08 13:19:51 +01002961
2962 q = NULL;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002963 depth = 0;
Jens Axboe18811272011-04-12 10:11:24 +02002964
2965 /*
2966 * Save and disable interrupts here, to avoid doing it for every
2967 * queue lock we have to take.
2968 */
Jens Axboe73c10102011-03-08 13:19:51 +01002969 local_irq_save(flags);
NeilBrown109b8122011-04-11 14:13:10 +02002970 while (!list_empty(&list)) {
2971 rq = list_entry_rq(list.next);
Jens Axboe73c10102011-03-08 13:19:51 +01002972 list_del_init(&rq->queuelist);
Jens Axboe73c10102011-03-08 13:19:51 +01002973 BUG_ON(!rq->q);
2974 if (rq->q != q) {
Jens Axboe99e22592011-04-18 09:59:55 +02002975 /*
2976 * This drops the queue lock
2977 */
2978 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02002979 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01002980 q = rq->q;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002981 depth = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01002982 spin_lock(q->queue_lock);
2983 }
Tejun Heo8ba61432011-12-14 00:33:37 +01002984
2985 /*
2986 * Short-circuit if @q is dead
2987 */
2988 if (unlikely(blk_queue_dead(q))) {
2989 __blk_end_request_all(rq, -ENODEV);
2990 continue;
2991 }
2992
Jens Axboe73c10102011-03-08 13:19:51 +01002993 /*
2994 * rq is already accounted, so use raw insert
2995 */
Jens Axboe401a18e2011-03-25 16:57:52 +01002996 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA))
2997 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
2998 else
2999 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
Jens Axboe94b5eb22011-04-12 10:12:19 +02003000
3001 depth++;
Jens Axboe73c10102011-03-08 13:19:51 +01003002 }
3003
Jens Axboe99e22592011-04-18 09:59:55 +02003004 /*
3005 * This drops the queue lock
3006 */
3007 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02003008 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01003009
Jens Axboe73c10102011-03-08 13:19:51 +01003010 local_irq_restore(flags);
3011}
Jens Axboe73c10102011-03-08 13:19:51 +01003012
3013void blk_finish_plug(struct blk_plug *plug)
3014{
Jens Axboef6603782011-04-15 15:49:07 +02003015 blk_flush_plug_list(plug, false);
Christoph Hellwig88b996c2011-04-15 15:20:10 +02003016
3017 if (plug == current->plug)
3018 current->plug = NULL;
Jens Axboe73c10102011-03-08 13:19:51 +01003019}
3020EXPORT_SYMBOL(blk_finish_plug);
3021
Lin Mingff70c822013-03-23 11:42:26 +08003022#ifdef CONFIG_PM_RUNTIME
3023/**
3024 * blk_pm_runtime_init - Block layer runtime PM initialization routine
3025 * @q: the queue of the device
3026 * @dev: the device the queue belongs to
3027 *
3028 * Description:
3029 * Initialize runtime-PM-related fields for @q and start auto suspend for
3030 * @dev. Drivers that want to take advantage of request-based runtime PM
3031 * should call this function after @dev has been initialized, and its
3032 * request queue @q has been allocated, and runtime PM for it can not happen
3033 * yet(either due to disabled/forbidden or its usage_count > 0). In most
3034 * cases, driver should call this function before any I/O has taken place.
3035 *
3036 * This function takes care of setting up using auto suspend for the device,
3037 * the autosuspend delay is set to -1 to make runtime suspend impossible
3038 * until an updated value is either set by user or by driver. Drivers do
3039 * not need to touch other autosuspend settings.
3040 *
3041 * The block layer runtime PM is request based, so only works for drivers
3042 * that use request as their IO unit instead of those directly use bio's.
3043 */
3044void blk_pm_runtime_init(struct request_queue *q, struct device *dev)
3045{
3046 q->dev = dev;
3047 q->rpm_status = RPM_ACTIVE;
3048 pm_runtime_set_autosuspend_delay(q->dev, -1);
3049 pm_runtime_use_autosuspend(q->dev);
3050}
3051EXPORT_SYMBOL(blk_pm_runtime_init);
3052
3053/**
3054 * blk_pre_runtime_suspend - Pre runtime suspend check
3055 * @q: the queue of the device
3056 *
3057 * Description:
3058 * This function will check if runtime suspend is allowed for the device
3059 * by examining if there are any requests pending in the queue. If there
3060 * are requests pending, the device can not be runtime suspended; otherwise,
3061 * the queue's status will be updated to SUSPENDING and the driver can
3062 * proceed to suspend the device.
3063 *
3064 * For the not allowed case, we mark last busy for the device so that
3065 * runtime PM core will try to autosuspend it some time later.
3066 *
3067 * This function should be called near the start of the device's
3068 * runtime_suspend callback.
3069 *
3070 * Return:
3071 * 0 - OK to runtime suspend the device
3072 * -EBUSY - Device should not be runtime suspended
3073 */
3074int blk_pre_runtime_suspend(struct request_queue *q)
3075{
3076 int ret = 0;
3077
3078 spin_lock_irq(q->queue_lock);
3079 if (q->nr_pending) {
3080 ret = -EBUSY;
3081 pm_runtime_mark_last_busy(q->dev);
3082 } else {
3083 q->rpm_status = RPM_SUSPENDING;
3084 }
3085 spin_unlock_irq(q->queue_lock);
3086 return ret;
3087}
3088EXPORT_SYMBOL(blk_pre_runtime_suspend);
3089
3090/**
3091 * blk_post_runtime_suspend - Post runtime suspend processing
3092 * @q: the queue of the device
3093 * @err: return value of the device's runtime_suspend function
3094 *
3095 * Description:
3096 * Update the queue's runtime status according to the return value of the
3097 * device's runtime suspend function and mark last busy for the device so
3098 * that PM core will try to auto suspend the device at a later time.
3099 *
3100 * This function should be called near the end of the device's
3101 * runtime_suspend callback.
3102 */
3103void blk_post_runtime_suspend(struct request_queue *q, int err)
3104{
3105 spin_lock_irq(q->queue_lock);
3106 if (!err) {
3107 q->rpm_status = RPM_SUSPENDED;
3108 } else {
3109 q->rpm_status = RPM_ACTIVE;
3110 pm_runtime_mark_last_busy(q->dev);
3111 }
3112 spin_unlock_irq(q->queue_lock);
3113}
3114EXPORT_SYMBOL(blk_post_runtime_suspend);
3115
3116/**
3117 * blk_pre_runtime_resume - Pre runtime resume processing
3118 * @q: the queue of the device
3119 *
3120 * Description:
3121 * Update the queue's runtime status to RESUMING in preparation for the
3122 * runtime resume of the device.
3123 *
3124 * This function should be called near the start of the device's
3125 * runtime_resume callback.
3126 */
3127void blk_pre_runtime_resume(struct request_queue *q)
3128{
3129 spin_lock_irq(q->queue_lock);
3130 q->rpm_status = RPM_RESUMING;
3131 spin_unlock_irq(q->queue_lock);
3132}
3133EXPORT_SYMBOL(blk_pre_runtime_resume);
3134
3135/**
3136 * blk_post_runtime_resume - Post runtime resume processing
3137 * @q: the queue of the device
3138 * @err: return value of the device's runtime_resume function
3139 *
3140 * Description:
3141 * Update the queue's runtime status according to the return value of the
3142 * device's runtime_resume function. If it is successfully resumed, process
3143 * the requests that are queued into the device's queue when it is resuming
3144 * and then mark last busy and initiate autosuspend for it.
3145 *
3146 * This function should be called near the end of the device's
3147 * runtime_resume callback.
3148 */
3149void blk_post_runtime_resume(struct request_queue *q, int err)
3150{
3151 spin_lock_irq(q->queue_lock);
3152 if (!err) {
3153 q->rpm_status = RPM_ACTIVE;
3154 __blk_run_queue(q);
3155 pm_runtime_mark_last_busy(q->dev);
Aaron Lu0ed75912013-05-17 15:47:20 +08003156 pm_request_autosuspend(q->dev);
Lin Mingff70c822013-03-23 11:42:26 +08003157 } else {
3158 q->rpm_status = RPM_SUSPENDED;
3159 }
3160 spin_unlock_irq(q->queue_lock);
3161}
3162EXPORT_SYMBOL(blk_post_runtime_resume);
3163#endif
3164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165int __init blk_dev_init(void)
3166{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02003167 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
3168 sizeof(((struct request *)0)->cmd_flags));
3169
Tejun Heo89b90be2011-01-03 15:01:47 +01003170 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
3171 kblockd_workqueue = alloc_workqueue("kblockd",
3172 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 if (!kblockd_workqueue)
3174 panic("Failed to create kblockd\n");
3175
3176 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09003177 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Jens Axboe8324aa92008-01-29 14:51:59 +01003179 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02003180 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 return 0;
3183}