blob: 40725b9091f15a4191e3e5fd247bcfbfa8be32bf [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 Mortonfaccbd4b2006-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>
Li Zefan55782132009-06-09 13:43:05 +080031
32#define CREATE_TRACE_POINTS
33#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jens Axboe8324aa92008-01-29 14:51:59 +010035#include "blk.h"
36
Mike Snitzerd07335e2010-11-16 12:52:38 +010037EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020038EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080039EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010040
Jens Axboe165125e2007-07-24 09:28:11 +020041static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * For the allocated request tables
45 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010046static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * For queue allocation
50 */
Jens Axboe6728cb02008-01-31 13:03:55 +010051struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * Controlling structure to kblockd
55 */
Jens Axboeff856ba2006-01-09 16:02:34 +010056static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jens Axboe26b82562008-01-29 13:54:41 +010058static void drive_stat_acct(struct request *rq, int new_io)
59{
Jens Axboe28f13702008-05-07 10:15:46 +020060 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010061 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090062 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010063
Jens Axboec2553b52009-04-24 08:10:11 +020064 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010065 return;
66
Tejun Heo074a7ac2008-08-25 19:56:14 +090067 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jerome Marchand09e099d2011-01-05 16:57:38 +010069 if (!new_io) {
70 part = rq->part;
Tejun Heo074a7ac2008-08-25 19:56:14 +090071 part_stat_inc(cpu, part, merges[rw]);
Jerome Marchand09e099d2011-01-05 16:57:38 +010072 } else {
73 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Jens Axboe6c23a962011-01-07 08:43:37 +010074 if (!hd_struct_try_get(part)) {
Jerome Marchand09e099d2011-01-05 16:57:38 +010075 /*
76 * The partition is already being removed,
77 * the request will be accounted on the disk only
78 *
79 * We take a reference on disk->part0 although that
80 * partition will never be deleted, so we can treat
81 * it as any other partition.
82 */
83 part = &rq->rq_disk->part0;
Jens Axboe6c23a962011-01-07 08:43:37 +010084 hd_struct_get(part);
Jerome Marchand09e099d2011-01-05 16:57:38 +010085 }
Tejun Heo074a7ac2008-08-25 19:56:14 +090086 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020087 part_inc_in_flight(part, rw);
Jerome Marchand09e099d2011-01-05 16:57:38 +010088 rq->part = part;
Jens Axboe26b82562008-01-29 13:54:41 +010089 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020090
Tejun Heo074a7ac2008-08-25 19:56:14 +090091 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010092}
93
Jens Axboe8324aa92008-01-29 14:51:59 +010094void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 int nr;
97
98 nr = q->nr_requests - (q->nr_requests / 8) + 1;
99 if (nr > q->nr_requests)
100 nr = q->nr_requests;
101 q->nr_congestion_on = nr;
102
103 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
104 if (nr < 1)
105 nr = 1;
106 q->nr_congestion_off = nr;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/**
110 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
111 * @bdev: device
112 *
113 * Locates the passed device's request queue and returns the address of its
114 * backing_dev_info
115 *
116 * Will return NULL if the request queue cannot be located.
117 */
118struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
119{
120 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200121 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (q)
124 ret = &q->backing_dev_info;
125 return ret;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127EXPORT_SYMBOL(blk_get_backing_dev_info);
128
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200129void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200131 memset(rq, 0, sizeof(*rq));
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700134 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200135 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100136 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900137 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200138 INIT_HLIST_NODE(&rq->hash);
139 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200140 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800141 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100142 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100143 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900144 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700145 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100146 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200148EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150static void req_bio_endio(struct request *rq, struct bio *bio,
151 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100152{
Tejun Heo143a87f2011-01-25 12:43:52 +0100153 if (error)
154 clear_bit(BIO_UPTODATE, &bio->bi_flags);
155 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
156 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100157
Tejun Heo143a87f2011-01-25 12:43:52 +0100158 if (unlikely(nbytes > bio->bi_size)) {
159 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
160 __func__, nbytes, bio->bi_size);
161 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100163
164 if (unlikely(rq->cmd_flags & REQ_QUIET))
165 set_bit(BIO_QUIET, &bio->bi_flags);
166
167 bio->bi_size -= nbytes;
168 bio->bi_sector += (nbytes >> 9);
169
170 if (bio_integrity(bio))
171 bio_integrity_advance(bio, nbytes);
172
173 /* don't actually finish bio if it's part of flush sequence */
174 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
175 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178void blk_dump_rq_flags(struct request *rq, char *msg)
179{
180 int bit;
181
Jens Axboe6728cb02008-01-31 13:03:55 +0100182 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200183 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
184 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Tejun Heo83096eb2009-05-07 22:24:39 +0900186 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
187 (unsigned long long)blk_rq_pos(rq),
188 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900189 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900190 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200192 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100193 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200194 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 printk("%02x ", rq->cmd[bit]);
196 printk("\n");
197 }
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199EXPORT_SYMBOL(blk_dump_rq_flags);
200
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500201static void blk_delay_work(struct work_struct *work)
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200202{
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500203 struct request_queue *q;
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200204
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500205 q = container_of(work, struct request_queue, delay_work.work);
206 spin_lock_irq(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200207 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500208 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/**
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500212 * blk_delay_queue - restart queueing after defined interval
213 * @q: The &struct request_queue in question
214 * @msecs: Delay in msecs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 *
216 * Description:
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500217 * Sometimes queueing needs to be postponed for a little while, to allow
218 * resources to come back. This function will make sure that queueing is
219 * restarted around the specified time.
220 */
221void blk_delay_queue(struct request_queue *q, unsigned long msecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Jens Axboe4521cc42011-04-18 11:36:39 +0200223 queue_delayed_work(kblockd_workqueue, &q->delay_work,
224 msecs_to_jiffies(msecs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500226EXPORT_SYMBOL(blk_delay_queue);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/**
229 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200230 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 *
232 * Description:
233 * blk_start_queue() will clear the stop flag on the queue, and call
234 * the request_fn for the queue if it was in a stopped state when
235 * entered. Also see blk_stop_queue(). Queue lock must be held.
236 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200237void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200239 WARN_ON(!irqs_disabled());
240
Nick Piggin75ad23b2008-04-29 14:48:33 +0200241 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200242 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244EXPORT_SYMBOL(blk_start_queue);
245
246/**
247 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200248 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
250 * Description:
251 * The Linux block layer assumes that a block driver will consume all
252 * entries on the request queue when the request_fn strategy is called.
253 * Often this will not happen, because of hardware limitations (queue
254 * depth settings). If a device driver gets a 'queue full' response,
255 * or if it simply chooses not to queue more I/O at one point, it can
256 * call this function to prevent the request_fn from being called until
257 * the driver has signalled it's ready to go again. This happens by calling
258 * blk_start_queue() to restart queue operations. Queue lock must be held.
259 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200260void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Jens Axboead3d9d72011-03-25 16:58:59 +0100262 __cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200263 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265EXPORT_SYMBOL(blk_stop_queue);
266
267/**
268 * blk_sync_queue - cancel any pending callbacks on a queue
269 * @q: the queue
270 *
271 * Description:
272 * The block layer may perform asynchronous callback activity
273 * on a queue, such as calling the unplug function after a timeout.
274 * A block device may call blk_sync_queue to ensure that any
275 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200276 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * that its ->make_request_fn will not re-add plugging prior to calling
278 * this function.
279 *
Vivek Goyalda527772011-03-02 19:05:33 -0500280 * This function does not cancel any asynchronous activity arising
281 * out of elevator or throttling code. That would require elevaotor_exit()
282 * and blk_throtl_exit() to be called with queue lock initialized.
283 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
285void blk_sync_queue(struct request_queue *q)
286{
Jens Axboe70ed28b2008-11-19 14:38:39 +0100287 del_timer_sync(&q->timeout);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500288 cancel_delayed_work_sync(&q->delay_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290EXPORT_SYMBOL(blk_sync_queue);
291
292/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200293 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * @q: The queue to run
Tejun Heo1654e742011-03-02 08:48:05 -0500295 * @force_kblockd: Don't run @q->request_fn directly. Use kblockd.
Jens Axboe80a4b582008-10-14 09:51:06 +0200296 *
297 * Description:
298 * See @blk_run_queue. This variant must be called with the queue lock
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200299 * held and interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200301void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Tejun Heoa538cd02009-04-23 11:05:17 +0900303 if (unlikely(blk_queue_stopped(q)))
304 return;
305
Jens Axboec21e6be2011-04-19 13:32:46 +0200306 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200307}
308EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200309
Nick Piggin75ad23b2008-04-29 14:48:33 +0200310/**
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200311 * blk_run_queue_async - run a single device queue in workqueue context
312 * @q: The queue to run
313 *
314 * Description:
315 * Tells kblockd to perform the equivalent of @blk_run_queue on behalf
316 * of us.
317 */
318void blk_run_queue_async(struct request_queue *q)
319{
320 if (likely(!blk_queue_stopped(q)))
321 queue_delayed_work(kblockd_workqueue, &q->delay_work, 0);
322}
Jens Axboec21e6be2011-04-19 13:32:46 +0200323EXPORT_SYMBOL(blk_run_queue_async);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200324
325/**
Nick Piggin75ad23b2008-04-29 14:48:33 +0200326 * blk_run_queue - run a single device queue
327 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200328 *
329 * Description:
330 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900331 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200332 */
333void blk_run_queue(struct request_queue *q)
334{
335 unsigned long flags;
336
337 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200338 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 spin_unlock_irqrestore(q->queue_lock, flags);
340}
341EXPORT_SYMBOL(blk_run_queue);
342
Jens Axboe165125e2007-07-24 09:28:11 +0200343void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500344{
345 kobject_put(&q->kobj);
346}
Al Viro483f4af2006-03-18 18:34:37 -0500347
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500348/*
349 * Note: If a driver supplied the queue lock, it should not zap that lock
350 * unexpectedly as some queue cleanup components like elevator_exit() and
351 * blk_throtl_exit() need queue lock.
352 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100353void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500354{
Jens Axboee3335de92008-09-18 09:22:54 -0700355 /*
356 * We know we have process context here, so we can be a little
357 * cautious and ensure that pending block actions on this device
358 * are done before moving on. Going into this function, we should
359 * not have processes doing IO to this device.
360 */
361 blk_sync_queue(q);
362
Matthew Garrett31373d02010-04-06 14:25:14 +0200363 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500364 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200365 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500366 mutex_unlock(&q->sysfs_lock);
367
368 if (q->elevator)
369 elevator_exit(q->elevator);
370
Vivek Goyalda527772011-03-02 19:05:33 -0500371 blk_throtl_exit(q);
372
Al Viro483f4af2006-03-18 18:34:37 -0500373 blk_put_queue(q);
374}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375EXPORT_SYMBOL(blk_cleanup_queue);
376
Jens Axboe165125e2007-07-24 09:28:11 +0200377static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct request_list *rl = &q->rq;
380
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400381 if (unlikely(rl->rq_pool))
382 return 0;
383
Jens Axboe1faa16d2009-04-06 14:48:01 +0200384 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
385 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200386 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200387 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
388 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Christoph Lameter19460892005-06-23 00:08:19 -0700390 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
391 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (!rl->rq_pool)
394 return -ENOMEM;
395
396 return 0;
397}
398
Jens Axboe165125e2007-07-24 09:28:11 +0200399struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Christoph Lameter19460892005-06-23 00:08:19 -0700401 return blk_alloc_queue_node(gfp_mask, -1);
402}
403EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jens Axboe165125e2007-07-24 09:28:11 +0200405struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700406{
Jens Axboe165125e2007-07-24 09:28:11 +0200407 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700408 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700409
Jens Axboe8324aa92008-01-29 14:51:59 +0100410 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700411 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (!q)
413 return NULL;
414
Jens Axboe0989a022009-06-12 14:42:56 +0200415 q->backing_dev_info.ra_pages =
416 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
417 q->backing_dev_info.state = 0;
418 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200419 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200420
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700421 err = bdi_init(&q->backing_dev_info);
422 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100423 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700424 return NULL;
425 }
426
Vivek Goyale43473b2010-09-15 17:06:35 -0400427 if (blk_throtl_init(q)) {
428 kmem_cache_free(blk_requestq_cachep, q);
429 return NULL;
430 }
431
Matthew Garrett31373d02010-04-06 14:25:14 +0200432 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
433 laptop_mode_timer_fn, (unsigned long) q);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700434 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
435 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100436 INIT_LIST_HEAD(&q->flush_queue[0]);
437 INIT_LIST_HEAD(&q->flush_queue[1]);
438 INIT_LIST_HEAD(&q->flush_data_in_flight);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500439 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500440
Jens Axboe8324aa92008-01-29 14:51:59 +0100441 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Al Viro483f4af2006-03-18 18:34:37 -0500443 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700444 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500445
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500446 /*
447 * By default initialize queue_lock to internal lock and driver can
448 * override it later if need be.
449 */
450 q->queue_lock = &q->__queue_lock;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return q;
453}
Christoph Lameter19460892005-06-23 00:08:19 -0700454EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456/**
457 * blk_init_queue - prepare a request queue for use with a block device
458 * @rfn: The function to be called to process requests that have been
459 * placed on the queue.
460 * @lock: Request queue spin lock
461 *
462 * Description:
463 * If a block device wishes to use the standard request handling procedures,
464 * which sorts requests and coalesces adjacent requests, then it must
465 * call blk_init_queue(). The function @rfn will be called when there
466 * are requests on the queue that need to be processed. If the device
467 * supports plugging, then @rfn may not be called immediately when requests
468 * are available on the queue, but may be called at some time later instead.
469 * Plugged queues are generally unplugged when a buffer belonging to one
470 * of the requests on the queue is needed, or due to memory pressure.
471 *
472 * @rfn is not required, or even expected, to remove all requests off the
473 * queue, but only as many as it can handle at a time. If it does leave
474 * requests on the queue, it is responsible for arranging that the requests
475 * get dealt with eventually.
476 *
477 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200478 * request queue; this lock will be taken also from interrupt context, so irq
479 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200481 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * it didn't succeed.
483 *
484 * Note:
485 * blk_init_queue() must be paired with a blk_cleanup_queue() call
486 * when the block device is deactivated (such as at module unload).
487 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700488
Jens Axboe165125e2007-07-24 09:28:11 +0200489struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Christoph Lameter19460892005-06-23 00:08:19 -0700491 return blk_init_queue_node(rfn, lock, -1);
492}
493EXPORT_SYMBOL(blk_init_queue);
494
Jens Axboe165125e2007-07-24 09:28:11 +0200495struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700496blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
497{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600498 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600500 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
501 if (!uninit_q)
502 return NULL;
503
504 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
505 if (!q)
506 blk_cleanup_queue(uninit_q);
507
508 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200509}
510EXPORT_SYMBOL(blk_init_queue_node);
511
512struct request_queue *
513blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
514 spinlock_t *lock)
515{
516 return blk_init_allocated_queue_node(q, rfn, lock, -1);
517}
518EXPORT_SYMBOL(blk_init_allocated_queue);
519
520struct request_queue *
521blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
522 spinlock_t *lock, int node_id)
523{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!q)
525 return NULL;
526
Christoph Lameter19460892005-06-23 00:08:19 -0700527 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600528 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500529 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900533 q->unprep_rq_fn = NULL;
Jens Axboebc58ba92009-01-23 10:54:44 +0100534 q->queue_flags = QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500535
536 /* Override internal queue lock with supplied lock pointer */
537 if (lock)
538 q->queue_lock = lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Jens Axboef3b144a2009-03-06 08:48:33 +0100540 /*
541 * This also sets hw/phys segments, boundary and size
542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Alan Stern44ec9542007-02-20 11:01:57 -0500545 q->sg_reserved_size = INT_MAX;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /*
548 * all done
549 */
550 if (!elevator_init(q, NULL)) {
551 blk_queue_congestion_threshold(q);
552 return q;
553 }
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return NULL;
556}
Mike Snitzer01effb02010-05-11 08:57:42 +0200557EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jens Axboe165125e2007-07-24 09:28:11 +0200559int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700561 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500562 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564 }
565
566 return 1;
567}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Jens Axboe165125e2007-07-24 09:28:11 +0200569static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Jens Axboe73c10102011-03-08 13:19:51 +0100571 BUG_ON(rq->cmd_flags & REQ_ON_PLUG);
572
Jens Axboe4aff5e22006-08-10 08:44:47 +0200573 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200574 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 mempool_free(rq, q->rq.rq_pool);
576}
577
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200578static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200579blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
582
583 if (!rq)
584 return NULL;
585
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200586 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200587
Jerome Marchand42dad762009-04-22 14:01:49 +0200588 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Tejun Heocb98fc82005-10-28 08:29:39 +0200590 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200591 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200592 mempool_free(rq, q->rq.rq_pool);
593 return NULL;
594 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200595 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Tejun Heocb98fc82005-10-28 08:29:39 +0200598 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/*
602 * ioc_batching returns true if the ioc is a valid batching request and
603 * should be given priority access to a request.
604 */
Jens Axboe165125e2007-07-24 09:28:11 +0200605static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
607 if (!ioc)
608 return 0;
609
610 /*
611 * Make sure the process is able to allocate at least 1 request
612 * even if the batch times out, otherwise we could theoretically
613 * lose wakeups.
614 */
615 return ioc->nr_batch_requests == q->nr_batching ||
616 (ioc->nr_batch_requests > 0
617 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
618}
619
620/*
621 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
622 * will cause the process to be a "batcher" on all queues in the system. This
623 * is the behaviour we want though - once it gets a wakeup it should be given
624 * a nice run.
625 */
Jens Axboe165125e2007-07-24 09:28:11 +0200626static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 if (!ioc || ioc_batching(q, ioc))
629 return;
630
631 ioc->nr_batch_requests = q->nr_batching;
632 ioc->last_waited = jiffies;
633}
634
Jens Axboe1faa16d2009-04-06 14:48:01 +0200635static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 struct request_list *rl = &q->rq;
638
Jens Axboe1faa16d2009-04-06 14:48:01 +0200639 if (rl->count[sync] < queue_congestion_off_threshold(q))
640 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Jens Axboe1faa16d2009-04-06 14:48:01 +0200642 if (rl->count[sync] + 1 <= q->nr_requests) {
643 if (waitqueue_active(&rl->wait[sync]))
644 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jens Axboe1faa16d2009-04-06 14:48:01 +0200646 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648}
649
650/*
651 * A request has just been released. Account for it, update the full and
652 * congestion status, wake up any waiters. Called under q->queue_lock.
653 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200654static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct request_list *rl = &q->rq;
657
Jens Axboe1faa16d2009-04-06 14:48:01 +0200658 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200659 if (priv)
660 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Jens Axboe1faa16d2009-04-06 14:48:01 +0200662 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Jens Axboe1faa16d2009-04-06 14:48:01 +0200664 if (unlikely(rl->starved[sync ^ 1]))
665 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100669 * Determine if elevator data should be initialized when allocating the
670 * request associated with @bio.
671 */
672static bool blk_rq_should_init_elevator(struct bio *bio)
673{
674 if (!bio)
675 return true;
676
677 /*
678 * Flush requests do not use the elevator so skip initialization.
679 * This allows a request to share the flush and elevator data.
680 */
681 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
682 return false;
683
684 return true;
685}
686
687/*
Nick Piggind6344532005-06-28 20:45:14 -0700688 * Get a free request, queue_lock must be held.
689 * Returns NULL on failure, with queue_lock held.
690 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
Jens Axboe165125e2007-07-24 09:28:11 +0200692static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100693 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct request *rq = NULL;
696 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100697 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200698 const bool is_sync = rw_is_sync(rw_flags) != 0;
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100699 int may_queue, priv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Jens Axboe7749a8d2006-12-13 13:02:26 +0100701 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100702 if (may_queue == ELV_MQUEUE_NO)
703 goto rq_starved;
704
Jens Axboe1faa16d2009-04-06 14:48:01 +0200705 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
706 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200707 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100708 /*
709 * The queue will fill after this allocation, so set
710 * it as full, and mark this process as "batching".
711 * This process will be allowed to complete a batch of
712 * requests, others will be blocked.
713 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200714 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100715 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200716 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100717 } else {
718 if (may_queue != ELV_MQUEUE_MUST
719 && !ioc_batching(q, ioc)) {
720 /*
721 * The queue is full and the allocating
722 * process is not a "batcher", and not
723 * exempted by the IO scheduler
724 */
725 goto out;
726 }
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200729 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
Jens Axboe082cf692005-06-28 16:35:11 +0200732 /*
733 * Only allow batching queuers to allocate up to 50% over the defined
734 * limit of requests, otherwise we could have thousands of requests
735 * allocated with any setting of ->nr_requests
736 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200737 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200738 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100739
Jens Axboe1faa16d2009-04-06 14:48:01 +0200740 rl->count[is_sync]++;
741 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200742
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100743 if (blk_rq_should_init_elevator(bio)) {
744 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
745 if (priv)
746 rl->elvpriv++;
747 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200748
Jens Axboef253b862010-10-24 22:06:02 +0200749 if (blk_queue_io_stat(q))
750 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 spin_unlock_irq(q->queue_lock);
752
Jens Axboe7749a8d2006-12-13 13:02:26 +0100753 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100754 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /*
756 * Allocation failed presumably due to memory. Undo anything
757 * we might have messed up.
758 *
759 * Allocating task should really be put onto the front of the
760 * wait queue, but this is pretty rare.
761 */
762 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200763 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /*
766 * in the very unlikely event that allocation failed and no
767 * requests for this direction was pending, mark us starved
768 * so that freeing of a request in the other direction will
769 * notice us. another possible fix would be to split the
770 * rq mempool into READ and WRITE
771 */
772rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200773 if (unlikely(rl->count[is_sync] == 0))
774 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto out;
777 }
778
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100779 /*
780 * ioc may be NULL here, and ioc_batching will be false. That's
781 * OK, if the queue is under the request limit then requests need
782 * not count toward the nr_batch_requests limit. There will always
783 * be some limit enforced by BLK_BATCH_TIME.
784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (ioc_batching(q, ioc))
786 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100787
Jens Axboe1faa16d2009-04-06 14:48:01 +0200788 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return rq;
791}
792
793/*
Jens Axboe7eaceac2011-03-10 08:52:07 +0100794 * No available requests for this queue, wait for some requests to become
795 * available.
Nick Piggind6344532005-06-28 20:45:14 -0700796 *
797 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Jens Axboe165125e2007-07-24 09:28:11 +0200799static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200800 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200802 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 struct request *rq;
804
Jens Axboe7749a8d2006-12-13 13:02:26 +0100805 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700806 while (!rq) {
807 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200808 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct request_list *rl = &q->rq;
810
Jens Axboe1faa16d2009-04-06 14:48:01 +0200811 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 TASK_UNINTERRUPTIBLE);
813
Jens Axboe1faa16d2009-04-06 14:48:01 +0200814 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200816 spin_unlock_irq(q->queue_lock);
817 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200819 /*
820 * After sleeping, we become a "batching" process and
821 * will be able to allocate at least one request, and
822 * up to a big batch of them for a small period time.
823 * See ioc_batching, ioc_set_batching
824 */
825 ioc = current_io_context(GFP_NOIO, q->node);
826 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100827
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200828 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200829 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200830
831 rq = get_request(q, rw_flags, bio, GFP_NOIO);
832 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 return rq;
835}
836
Jens Axboe165125e2007-07-24 09:28:11 +0200837struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 struct request *rq;
840
841 BUG_ON(rw != READ && rw != WRITE);
842
Nick Piggind6344532005-06-28 20:45:14 -0700843 spin_lock_irq(q->queue_lock);
844 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200845 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700846 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200847 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700848 if (!rq)
849 spin_unlock_irq(q->queue_lock);
850 }
851 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 return rq;
854}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855EXPORT_SYMBOL(blk_get_request);
856
857/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300858 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700859 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300860 * @bio: The bio describing the memory mappings that will be submitted for IO.
861 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700862 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200863 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300864 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
865 * type commands. Where the struct request needs to be farther initialized by
866 * the caller. It is passed a &struct bio, which describes the memory info of
867 * the I/O transfer.
868 *
869 * The caller of blk_make_request must make sure that bi_io_vec
870 * are set to describe the memory buffers. That bio_data_dir() will return
871 * the needed direction of the request. (And all bio's in the passed bio-chain
872 * are properly set accordingly)
873 *
874 * If called under none-sleepable conditions, mapped bio buffers must not
875 * need bouncing, by calling the appropriate masked or flagged allocator,
876 * suitable for the target device. Otherwise the call to blk_queue_bounce will
877 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200878 *
879 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
880 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
881 * anything but the first bio in the chain. Otherwise you risk waiting for IO
882 * completion of a bio that hasn't been submitted yet, thus resulting in a
883 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
884 * of bio_alloc(), as that avoids the mempool deadlock.
885 * If possible a big IO should be split into smaller parts when allocation
886 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200887 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300888struct request *blk_make_request(struct request_queue *q, struct bio *bio,
889 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200890{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300891 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
892
893 if (unlikely(!rq))
894 return ERR_PTR(-ENOMEM);
895
896 for_each_bio(bio) {
897 struct bio *bounce_bio = bio;
898 int ret;
899
900 blk_queue_bounce(q, &bounce_bio);
901 ret = blk_rq_append_bio(q, rq, bounce_bio);
902 if (unlikely(ret)) {
903 blk_put_request(rq);
904 return ERR_PTR(ret);
905 }
906 }
907
908 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200909}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300910EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200911
912/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * blk_requeue_request - put a request back on queue
914 * @q: request queue where request should be inserted
915 * @rq: request to be inserted
916 *
917 * Description:
918 * Drivers often keep queueing requests until the hardware cannot accept
919 * more, when that condition happens we need to put the request back
920 * on the queue. Must be called with queue lock held.
921 */
Jens Axboe165125e2007-07-24 09:28:11 +0200922void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700924 blk_delete_timer(rq);
925 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100926 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (blk_rq_tagged(rq))
929 blk_queue_end_tag(q, rq);
930
James Bottomleyba396a62009-05-27 14:17:08 +0200931 BUG_ON(blk_queued_rq(rq));
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 elv_requeue_request(q, rq);
934}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935EXPORT_SYMBOL(blk_requeue_request);
936
Jens Axboe73c10102011-03-08 13:19:51 +0100937static void add_acct_request(struct request_queue *q, struct request *rq,
938 int where)
939{
940 drive_stat_acct(rq, 1);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100941 __elv_add_request(q, rq, where);
Jens Axboe73c10102011-03-08 13:19:51 +0100942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200945 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * @q: request queue where request should be inserted
947 * @rq: request to be inserted
948 * @at_head: insert request at head or tail of queue
949 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 *
951 * Description:
952 * Many block devices need to execute commands asynchronously, so they don't
953 * block the whole kernel from preemption during request execution. This is
954 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200955 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
956 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 *
958 * We have the option of inserting the head or the tail of the queue.
959 * Typically we use the tail for new ioctls and so forth. We use the head
960 * of the queue for things like a QUEUE_FULL message from a device, or a
961 * host that is unable to accept a particular command.
962 */
Jens Axboe165125e2007-07-24 09:28:11 +0200963void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500964 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Tejun Heo 867d1192005-04-24 02:06:05 -0500966 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 unsigned long flags;
968
969 /*
970 * tell I/O scheduler that this isn't a regular read/write (ie it
971 * must not attempt merges on this) and that it acts as a soft
972 * barrier
973 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200974 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 rq->special = data;
977
978 spin_lock_irqsave(q->queue_lock, flags);
979
980 /*
981 * If command is tagged, release the tag
982 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500983 if (blk_rq_tagged(rq))
984 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Jens Axboe73c10102011-03-08 13:19:51 +0100986 add_acct_request(q, rq, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200987 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 spin_unlock_irqrestore(q->queue_lock, flags);
989}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990EXPORT_SYMBOL(blk_insert_request);
991
Tejun Heo074a7ac2008-08-25 19:56:14 +0900992static void part_round_stats_single(int cpu, struct hd_struct *part,
993 unsigned long now)
994{
995 if (now == part->stamp)
996 return;
997
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200998 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +0900999 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001000 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001001 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1002 }
1003 part->stamp = now;
1004}
1005
1006/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001007 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1008 * @cpu: cpu number for stats access
1009 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 *
1011 * The average IO queue length and utilisation statistics are maintained
1012 * by observing the current state of the queue length and the amount of
1013 * time it has been in this state for.
1014 *
1015 * Normally, that accounting is done on IO completion, but that can result
1016 * in more than a second's worth of IO being accounted for within any one
1017 * second, leading to >100% utilisation. To deal with that, we call this
1018 * function to do a round-off before returning the results when reading
1019 * /proc/diskstats. This accounts immediately for all queue usage up to
1020 * the current jiffies and restarts the counters again.
1021 */
Tejun Heoc9959052008-08-25 19:47:21 +09001022void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001023{
1024 unsigned long now = jiffies;
1025
Tejun Heo074a7ac2008-08-25 19:56:14 +09001026 if (part->partno)
1027 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1028 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001029}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001030EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032/*
1033 * queue lock must be held
1034 */
Jens Axboe165125e2007-07-24 09:28:11 +02001035void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (unlikely(!q))
1038 return;
1039 if (unlikely(--req->ref_count))
1040 return;
1041
Tejun Heo8922e162005-10-20 16:23:44 +02001042 elv_completed_request(q, req);
1043
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001044 /* this is a bio leak */
1045 WARN_ON(req->bio != NULL);
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /*
1048 * Request may not have originated from ll_rw_blk. if not,
1049 * it didn't come out of our reserved rq pools
1050 */
Jens Axboe49171e52006-08-10 08:59:11 +02001051 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001052 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001053 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001056 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001059 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001062EXPORT_SYMBOL_GPL(__blk_put_request);
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064void blk_put_request(struct request *req)
1065{
Tejun Heo8922e162005-10-20 16:23:44 +02001066 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001067 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001069 spin_lock_irqsave(q->queue_lock, flags);
1070 __blk_put_request(q, req);
1071 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073EXPORT_SYMBOL(blk_put_request);
1074
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001075/**
1076 * blk_add_request_payload - add a payload to a request
1077 * @rq: request to update
1078 * @page: page backing the payload
1079 * @len: length of the payload.
1080 *
1081 * This allows to later add a payload to an already submitted request by
1082 * a block driver. The driver needs to take care of freeing the payload
1083 * itself.
1084 *
1085 * Note that this is a quite horrible hack and nothing but handling of
1086 * discard requests should ever use it.
1087 */
1088void blk_add_request_payload(struct request *rq, struct page *page,
1089 unsigned int len)
1090{
1091 struct bio *bio = rq->bio;
1092
1093 bio->bi_io_vec->bv_page = page;
1094 bio->bi_io_vec->bv_offset = 0;
1095 bio->bi_io_vec->bv_len = len;
1096
1097 bio->bi_size = len;
1098 bio->bi_vcnt = 1;
1099 bio->bi_phys_segments = 1;
1100
1101 rq->__data_len = rq->resid_len = len;
1102 rq->nr_phys_segments = 1;
1103 rq->buffer = bio_data(bio);
1104}
1105EXPORT_SYMBOL_GPL(blk_add_request_payload);
1106
Jens Axboe73c10102011-03-08 13:19:51 +01001107static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1108 struct bio *bio)
1109{
1110 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1111
1112 /*
1113 * Debug stuff, kill later
1114 */
1115 if (!rq_mergeable(req)) {
1116 blk_dump_rq_flags(req, "back");
1117 return false;
1118 }
1119
1120 if (!ll_back_merge_fn(q, req, bio))
1121 return false;
1122
1123 trace_block_bio_backmerge(q, bio);
1124
1125 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1126 blk_rq_set_mixed_merge(req);
1127
1128 req->biotail->bi_next = bio;
1129 req->biotail = bio;
1130 req->__data_len += bio->bi_size;
1131 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1132
1133 drive_stat_acct(req, 0);
1134 return true;
1135}
1136
1137static bool bio_attempt_front_merge(struct request_queue *q,
1138 struct request *req, struct bio *bio)
1139{
1140 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1141 sector_t sector;
1142
1143 /*
1144 * Debug stuff, kill later
1145 */
1146 if (!rq_mergeable(req)) {
1147 blk_dump_rq_flags(req, "front");
1148 return false;
1149 }
1150
1151 if (!ll_front_merge_fn(q, req, bio))
1152 return false;
1153
1154 trace_block_bio_frontmerge(q, bio);
1155
1156 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1157 blk_rq_set_mixed_merge(req);
1158
1159 sector = bio->bi_sector;
1160
1161 bio->bi_next = req->bio;
1162 req->bio = bio;
1163
1164 /*
1165 * may not be valid. if the low level driver said
1166 * it didn't need a bounce buffer then it better
1167 * not touch req->buffer either...
1168 */
1169 req->buffer = bio_data(bio);
1170 req->__sector = bio->bi_sector;
1171 req->__data_len += bio->bi_size;
1172 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1173
1174 drive_stat_acct(req, 0);
1175 return true;
1176}
1177
1178/*
1179 * Attempts to merge with the plugged list in the current process. Returns
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001180 * true if merge was successful, otherwise false.
Jens Axboe73c10102011-03-08 13:19:51 +01001181 */
1182static bool attempt_plug_merge(struct task_struct *tsk, struct request_queue *q,
1183 struct bio *bio)
1184{
1185 struct blk_plug *plug;
1186 struct request *rq;
1187 bool ret = false;
1188
1189 plug = tsk->plug;
1190 if (!plug)
1191 goto out;
1192
1193 list_for_each_entry_reverse(rq, &plug->list, queuelist) {
1194 int el_ret;
1195
1196 if (rq->q != q)
1197 continue;
1198
1199 el_ret = elv_try_merge(rq, bio);
1200 if (el_ret == ELEVATOR_BACK_MERGE) {
1201 ret = bio_attempt_back_merge(q, rq, bio);
1202 if (ret)
1203 break;
1204 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1205 ret = bio_attempt_front_merge(q, rq, bio);
1206 if (ret)
1207 break;
1208 }
1209 }
1210out:
1211 return ret;
1212}
1213
Jens Axboe86db1e22008-01-29 14:53:40 +01001214void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001215{
Jens Axboec7c22e42008-09-13 20:26:01 +02001216 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001217 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001218
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001219 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1220 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001221 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001222
Tejun Heo52d9e672006-01-06 09:49:58 +01001223 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001224 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001225 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001226 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001227}
1228
Jens Axboe165125e2007-07-24 09:28:11 +02001229static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001231 const bool sync = !!(bio->bi_rw & REQ_SYNC);
Jens Axboe73c10102011-03-08 13:19:51 +01001232 struct blk_plug *plug;
1233 int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
1234 struct request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 /*
1237 * low level driver can indicate that it wants pages above a
1238 * certain limit bounced to low memory (ie for highmem, or even
1239 * ISA dma in theory)
1240 */
1241 blk_queue_bounce(q, &bio);
1242
Tejun Heo4fed9472010-09-03 11:56:17 +02001243 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001244 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001245 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001246 goto get_rq;
1247 }
1248
Jens Axboe73c10102011-03-08 13:19:51 +01001249 /*
1250 * Check if we can merge with the plugged list before grabbing
1251 * any locks.
1252 */
1253 if (attempt_plug_merge(current, q, bio))
1254 goto out;
1255
1256 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001259 if (el_ret == ELEVATOR_BACK_MERGE) {
1260 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1261 if (bio_attempt_back_merge(q, req, bio)) {
1262 if (!attempt_back_merge(q, req))
1263 elv_merged_request(q, req, el_ret);
1264 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001265 }
Jens Axboe73c10102011-03-08 13:19:51 +01001266 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1267 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1268 if (bio_attempt_front_merge(q, req, bio)) {
1269 if (!attempt_front_merge(q, req))
1270 elv_merged_request(q, req, el_ret);
1271 goto out_unlock;
1272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001276 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001277 * This sync check and mask will be re-done in init_request_from_bio(),
1278 * but we need to set it earlier to expose the sync flag to the
1279 * rq allocator and io schedulers.
1280 */
1281 rw_flags = bio_data_dir(bio);
1282 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001283 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001284
1285 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001286 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001287 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001288 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001289 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001290
Nick Piggin450991b2005-06-28 20:45:13 -07001291 /*
1292 * After dropping the lock and possibly sleeping here, our request
1293 * may now be mergeable after it had proven unmergeable (above).
1294 * We don't worry about that case for efficiency. It won't happen
1295 * often, and the elevators are able to handle it.
1296 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001297 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Jens Axboec7c22e42008-09-13 20:26:01 +02001299 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
Jens Axboe73c10102011-03-08 13:19:51 +01001300 bio_flagged(bio, BIO_CPU_AFFINE)) {
1301 req->cpu = blk_cpu_to_group(get_cpu());
1302 put_cpu();
1303 }
Tejun Heodd831002010-09-03 11:56:16 +02001304
Jens Axboe73c10102011-03-08 13:19:51 +01001305 plug = current->plug;
Jens Axboe721a9602011-03-09 11:56:30 +01001306 if (plug) {
Jens Axboedc6d36c2011-04-12 10:28:28 +02001307 /*
1308 * If this is the first request added after a plug, fire
1309 * of a plug trace. If others have been added before, check
1310 * if we have multiple devices in this plug. If so, make a
1311 * note to sort the list before dispatch.
1312 */
1313 if (list_empty(&plug->list))
1314 trace_block_plug(q);
1315 else if (!plug->should_sort) {
Jens Axboe73c10102011-03-08 13:19:51 +01001316 struct request *__rq;
1317
1318 __rq = list_entry_rq(plug->list.prev);
1319 if (__rq->q != q)
1320 plug->should_sort = 1;
1321 }
1322 /*
1323 * Debug flag, kill later
1324 */
1325 req->cmd_flags |= REQ_ON_PLUG;
1326 list_add_tail(&req->queuelist, &plug->list);
1327 drive_stat_acct(req, 1);
1328 } else {
1329 spin_lock_irq(q->queue_lock);
1330 add_acct_request(q, req, where);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02001331 __blk_run_queue(q);
Jens Axboe73c10102011-03-08 13:19:51 +01001332out_unlock:
1333 spin_unlock_irq(q->queue_lock);
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
1339/*
1340 * If bio->bi_dev is a partition, remap the location
1341 */
1342static inline void blk_partition_remap(struct bio *bio)
1343{
1344 struct block_device *bdev = bio->bi_bdev;
1345
Jens Axboebf2de6f2007-09-27 13:01:25 +02001346 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 bio->bi_sector += p->start_sect;
1350 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001351
Mike Snitzerd07335e2010-11-16 12:52:38 +01001352 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1353 bdev->bd_dev,
1354 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358static void handle_bad_sector(struct bio *bio)
1359{
1360 char b[BDEVNAME_SIZE];
1361
1362 printk(KERN_INFO "attempt to access beyond end of device\n");
1363 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1364 bdevname(bio->bi_bdev, b),
1365 bio->bi_rw,
1366 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001367 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 set_bit(BIO_EOF, &bio->bi_flags);
1370}
1371
Akinobu Mitac17bb492006-12-08 02:39:46 -08001372#ifdef CONFIG_FAIL_MAKE_REQUEST
1373
1374static DECLARE_FAULT_ATTR(fail_make_request);
1375
1376static int __init setup_fail_make_request(char *str)
1377{
1378 return setup_fault_attr(&fail_make_request, str);
1379}
1380__setup("fail_make_request=", setup_fail_make_request);
1381
1382static int should_fail_request(struct bio *bio)
1383{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001384 struct hd_struct *part = bio->bi_bdev->bd_part;
1385
1386 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001387 return should_fail(&fail_make_request, bio->bi_size);
1388
1389 return 0;
1390}
1391
1392static int __init fail_make_request_debugfs(void)
1393{
1394 return init_fault_attr_dentries(&fail_make_request,
1395 "fail_make_request");
1396}
1397
1398late_initcall(fail_make_request_debugfs);
1399
1400#else /* CONFIG_FAIL_MAKE_REQUEST */
1401
1402static inline int should_fail_request(struct bio *bio)
1403{
1404 return 0;
1405}
1406
1407#endif /* CONFIG_FAIL_MAKE_REQUEST */
1408
Jens Axboec07e2b42007-07-18 13:27:58 +02001409/*
1410 * Check whether this bio extends beyond the end of the device.
1411 */
1412static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1413{
1414 sector_t maxsector;
1415
1416 if (!nr_sectors)
1417 return 0;
1418
1419 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001420 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001421 if (maxsector) {
1422 sector_t sector = bio->bi_sector;
1423
1424 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1425 /*
1426 * This may well happen - the kernel calls bread()
1427 * without checking the size of the device, e.g., when
1428 * mounting a device.
1429 */
1430 handle_bad_sector(bio);
1431 return 1;
1432 }
1433 }
1434
1435 return 0;
1436}
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001439 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 * @bio: The bio describing the location in memory and on the device.
1441 *
1442 * generic_make_request() is used to make I/O requests of block
1443 * devices. It is passed a &struct bio, which describes the I/O that needs
1444 * to be done.
1445 *
1446 * generic_make_request() does not return any status. The
1447 * success/failure status of the request, along with notification of
1448 * completion, is delivered asynchronously through the bio->bi_end_io
1449 * function described (one day) else where.
1450 *
1451 * The caller of generic_make_request must make sure that bi_io_vec
1452 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1453 * set to describe the device address, and the
1454 * bi_end_io and optionally bi_private are set to describe how
1455 * completion notification should be signaled.
1456 *
1457 * generic_make_request and the drivers it calls may use bi_next if this
1458 * bio happens to be merged with someone else, and may change bi_dev and
1459 * bi_sector for remaps as it sees fit. So the values of these fields
1460 * should NOT be depended on after the call to generic_make_request.
1461 */
Neil Brownd89d8792007-05-01 09:53:42 +02001462static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Jens Axboe165125e2007-07-24 09:28:11 +02001464 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001465 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001467 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001468 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jens Axboec07e2b42007-07-18 13:27:58 +02001472 if (bio_check_eod(bio, nr_sectors))
1473 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /*
1476 * Resolve the mapping until finished. (drivers are
1477 * still free to implement/resolve their own stacking
1478 * by explicitly returning 0)
1479 *
1480 * NOTE: we don't repeat the blk_size check for each new device.
1481 * Stacking drivers are expected to know what they are doing.
1482 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001483 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001484 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 do {
1486 char b[BDEVNAME_SIZE];
1487
1488 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001489 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 printk(KERN_ERR
1491 "generic_make_request: Trying to access "
1492 "nonexistent block-device %s (%Lu)\n",
1493 bdevname(bio->bi_bdev, b),
1494 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001495 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001498 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001499 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001500 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001501 bdevname(bio->bi_bdev, b),
1502 bio_sectors(bio),
1503 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 goto end_io;
1505 }
1506
Nick Pigginfde6ad22005-06-23 00:08:53 -07001507 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 goto end_io;
1509
Akinobu Mitac17bb492006-12-08 02:39:46 -08001510 if (should_fail_request(bio))
1511 goto end_io;
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /*
1514 * If this device has partitions, remap block n
1515 * of partition p to block n+start(p) of the disk.
1516 */
1517 blk_partition_remap(bio);
1518
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001519 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1520 goto end_io;
1521
NeilBrown5ddfe962006-10-30 22:07:21 -08001522 if (old_sector != -1)
Mike Snitzerd07335e2010-11-16 12:52:38 +01001523 trace_block_bio_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001524
NeilBrown5ddfe962006-10-30 22:07:21 -08001525 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001526 old_dev = bio->bi_bdev->bd_dev;
1527
Jens Axboec07e2b42007-07-18 13:27:58 +02001528 if (bio_check_eod(bio, nr_sectors))
1529 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001530
Tejun Heo1e879012010-09-03 11:56:17 +02001531 /*
1532 * Filter flush bio's early so that make_request based
1533 * drivers without flush support don't have to worry
1534 * about them.
1535 */
1536 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1537 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1538 if (!nr_sectors) {
1539 err = 0;
1540 goto end_io;
1541 }
1542 }
1543
Adrian Hunter8d57a982010-08-11 14:17:49 -07001544 if ((bio->bi_rw & REQ_DISCARD) &&
1545 (!blk_queue_discard(q) ||
1546 ((bio->bi_rw & REQ_SECURE) &&
1547 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001548 err = -EOPNOTSUPP;
1549 goto end_io;
1550 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001551
Vivek Goyale43473b2010-09-15 17:06:35 -04001552 blk_throtl_bio(q, &bio);
1553
1554 /*
1555 * If bio = NULL, bio has been throttled and will be submitted
1556 * later.
1557 */
1558 if (!bio)
1559 break;
1560
Minchan Kim01edede2009-09-08 21:56:38 +02001561 trace_block_bio_queue(q, bio);
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 ret = q->make_request_fn(q, bio);
1564 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001565
1566 return;
1567
1568end_io:
1569 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
Neil Brownd89d8792007-05-01 09:53:42 +02001572/*
1573 * We only want one ->make_request_fn to be active at a time,
1574 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001575 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001576 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001577 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001578 * generic_make_request is currently active in this task or not.
1579 * If it is NULL, then no make_request is active. If it is non-NULL,
1580 * then a make_request is active, and new requests should be added
1581 * at the tail
1582 */
1583void generic_make_request(struct bio *bio)
1584{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001585 struct bio_list bio_list_on_stack;
1586
1587 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001588 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001589 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001590 return;
1591 }
1592 /* following loop may be a bit non-obvious, and so deserves some
1593 * explanation.
1594 * Before entering the loop, bio->bi_next is NULL (as all callers
1595 * ensure that) so we have a list with a single bio.
1596 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001597 * we assign bio_list to a pointer to the bio_list_on_stack,
1598 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001599 * added. __generic_make_request may indeed add some more bios
1600 * through a recursive call to generic_make_request. If it
1601 * did, we find a non-NULL value in bio_list and re-enter the loop
1602 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001603 * of the top of the list (no pretending) and so remove it from
1604 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001605 *
1606 * The loop was structured like this to make only one call to
1607 * __generic_make_request (which is important as it is large and
1608 * inlined) and to keep the structure simple.
1609 */
1610 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001611 bio_list_init(&bio_list_on_stack);
1612 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001613 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001614 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001615 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001616 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001617 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001618}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619EXPORT_SYMBOL(generic_make_request);
1620
1621/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001622 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1624 * @bio: The &struct bio which describes the I/O
1625 *
1626 * submit_bio() is very similar in purpose to generic_make_request(), and
1627 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001628 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 *
1630 */
1631void submit_bio(int rw, struct bio *bio)
1632{
1633 int count = bio_sectors(bio);
1634
Jens Axboe22e2c502005-06-27 10:55:12 +02001635 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Jens Axboebf2de6f2007-09-27 13:01:25 +02001637 /*
1638 * If it's a regular read/write or a barrier with data attached,
1639 * go through the normal accounting stuff before submission.
1640 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001641 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001642 if (rw & WRITE) {
1643 count_vm_events(PGPGOUT, count);
1644 } else {
1645 task_io_account_read(bio->bi_size);
1646 count_vm_events(PGPGIN, count);
1647 }
1648
1649 if (unlikely(block_dump)) {
1650 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001651 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001652 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001653 (rw & WRITE) ? "WRITE" : "READ",
1654 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001655 bdevname(bio->bi_bdev, b),
1656 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
1660 generic_make_request(bio);
1661}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662EXPORT_SYMBOL(submit_bio);
1663
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001664/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001665 * blk_rq_check_limits - Helper function to check a request for the queue limit
1666 * @q: the queue
1667 * @rq: the request being checked
1668 *
1669 * Description:
1670 * @rq may have been made based on weaker limitations of upper-level queues
1671 * in request stacking drivers, and it may violate the limitation of @q.
1672 * Since the block layer and the underlying device driver trust @rq
1673 * after it is inserted to @q, it should be checked against @q before
1674 * the insertion using this generic function.
1675 *
1676 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001677 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001678 * Request stacking drivers like request-based dm may change the queue
1679 * limits while requests are in the queue (e.g. dm's table swapping).
1680 * Such request stacking drivers should check those requests agaist
1681 * the new queue limits again when they dispatch those requests,
1682 * although such checkings are also done against the old queue limits
1683 * when submitting requests.
1684 */
1685int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1686{
ike Snitzer33839772010-08-08 12:11:33 -04001687 if (rq->cmd_flags & REQ_DISCARD)
1688 return 0;
1689
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001690 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1691 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001692 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1693 return -EIO;
1694 }
1695
1696 /*
1697 * queue's settings related to segment counting like q->bounce_pfn
1698 * may differ from that of other stacking queues.
1699 * Recalculate it to check the request correctly on this queue's
1700 * limitation.
1701 */
1702 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001703 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001704 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1705 return -EIO;
1706 }
1707
1708 return 0;
1709}
1710EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1711
1712/**
1713 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1714 * @q: the queue to submit the request
1715 * @rq: the request being queued
1716 */
1717int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1718{
1719 unsigned long flags;
1720
1721 if (blk_rq_check_limits(q, rq))
1722 return -EIO;
1723
1724#ifdef CONFIG_FAIL_MAKE_REQUEST
1725 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1726 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1727 return -EIO;
1728#endif
1729
1730 spin_lock_irqsave(q->queue_lock, flags);
1731
1732 /*
1733 * Submitting request must be dequeued before calling this function
1734 * because it will be linked to another request_queue
1735 */
1736 BUG_ON(blk_queued_rq(rq));
1737
Jens Axboe73c10102011-03-08 13:19:51 +01001738 add_acct_request(q, rq, ELEVATOR_INSERT_BACK);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001739 spin_unlock_irqrestore(q->queue_lock, flags);
1740
1741 return 0;
1742}
1743EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1744
Tejun Heo80a761f2009-07-03 17:48:17 +09001745/**
1746 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1747 * @rq: request to examine
1748 *
1749 * Description:
1750 * A request could be merge of IOs which require different failure
1751 * handling. This function determines the number of bytes which
1752 * can be failed from the beginning of the request without
1753 * crossing into area which need to be retried further.
1754 *
1755 * Return:
1756 * The number of bytes to fail.
1757 *
1758 * Context:
1759 * queue_lock must be held.
1760 */
1761unsigned int blk_rq_err_bytes(const struct request *rq)
1762{
1763 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1764 unsigned int bytes = 0;
1765 struct bio *bio;
1766
1767 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1768 return blk_rq_bytes(rq);
1769
1770 /*
1771 * Currently the only 'mixing' which can happen is between
1772 * different fastfail types. We can safely fail portions
1773 * which have all the failfast bits that the first one has -
1774 * the ones which are at least as eager to fail as the first
1775 * one.
1776 */
1777 for (bio = rq->bio; bio; bio = bio->bi_next) {
1778 if ((bio->bi_rw & ff) != ff)
1779 break;
1780 bytes += bio->bi_size;
1781 }
1782
1783 /* this could lead to infinite loop */
1784 BUG_ON(blk_rq_bytes(rq) && !bytes);
1785 return bytes;
1786}
1787EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1788
Jens Axboebc58ba92009-01-23 10:54:44 +01001789static void blk_account_io_completion(struct request *req, unsigned int bytes)
1790{
Jens Axboec2553b52009-04-24 08:10:11 +02001791 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001792 const int rw = rq_data_dir(req);
1793 struct hd_struct *part;
1794 int cpu;
1795
1796 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001797 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001798 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1799 part_stat_unlock();
1800 }
1801}
1802
1803static void blk_account_io_done(struct request *req)
1804{
Jens Axboebc58ba92009-01-23 10:54:44 +01001805 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001806 * Account IO completion. flush_rq isn't accounted as a
1807 * normal IO on queueing nor completion. Accounting the
1808 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001809 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001810 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001811 unsigned long duration = jiffies - req->start_time;
1812 const int rw = rq_data_dir(req);
1813 struct hd_struct *part;
1814 int cpu;
1815
1816 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001817 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001818
1819 part_stat_inc(cpu, part, ios[rw]);
1820 part_stat_add(cpu, part, ticks[rw], duration);
1821 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001822 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001823
Jens Axboe6c23a962011-01-07 08:43:37 +01001824 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001825 part_stat_unlock();
1826 }
1827}
1828
Tejun Heo53a08802008-12-03 12:41:26 +01001829/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001830 * blk_peek_request - peek at the top of a request queue
1831 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001832 *
1833 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001834 * Return the request at the top of @q. The returned request
1835 * should be started using blk_start_request() before LLD starts
1836 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001837 *
1838 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001839 * Pointer to the request at the top of @q if available. Null
1840 * otherwise.
1841 *
1842 * Context:
1843 * queue_lock must be held.
1844 */
1845struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001846{
1847 struct request *rq;
1848 int ret;
1849
1850 while ((rq = __elv_next_request(q)) != NULL) {
1851 if (!(rq->cmd_flags & REQ_STARTED)) {
1852 /*
1853 * This is the first time the device driver
1854 * sees this request (possibly after
1855 * requeueing). Notify IO scheduler.
1856 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001857 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001858 elv_activate_rq(q, rq);
1859
1860 /*
1861 * just mark as started even if we don't start
1862 * it, a request that has been delayed should
1863 * not be passed by new incoming requests
1864 */
1865 rq->cmd_flags |= REQ_STARTED;
1866 trace_block_rq_issue(q, rq);
1867 }
1868
1869 if (!q->boundary_rq || q->boundary_rq == rq) {
1870 q->end_sector = rq_end_sector(rq);
1871 q->boundary_rq = NULL;
1872 }
1873
1874 if (rq->cmd_flags & REQ_DONTPREP)
1875 break;
1876
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001877 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001878 /*
1879 * make sure space for the drain appears we
1880 * know we can do this because max_hw_segments
1881 * has been adjusted to be one fewer than the
1882 * device can handle
1883 */
1884 rq->nr_phys_segments++;
1885 }
1886
1887 if (!q->prep_rq_fn)
1888 break;
1889
1890 ret = q->prep_rq_fn(q, rq);
1891 if (ret == BLKPREP_OK) {
1892 break;
1893 } else if (ret == BLKPREP_DEFER) {
1894 /*
1895 * the request may have been (partially) prepped.
1896 * we need to keep this request in the front to
1897 * avoid resource deadlock. REQ_STARTED will
1898 * prevent other fs requests from passing this one.
1899 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001900 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001901 !(rq->cmd_flags & REQ_DONTPREP)) {
1902 /*
1903 * remove the space for the drain we added
1904 * so that we don't add it again
1905 */
1906 --rq->nr_phys_segments;
1907 }
1908
1909 rq = NULL;
1910 break;
1911 } else if (ret == BLKPREP_KILL) {
1912 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001913 /*
1914 * Mark this request as started so we don't trigger
1915 * any debug logic in the end I/O path.
1916 */
1917 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001918 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001919 } else {
1920 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1921 break;
1922 }
1923 }
1924
1925 return rq;
1926}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001927EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001928
Tejun Heo9934c8c2009-05-08 11:54:16 +09001929void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001930{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001931 struct request_queue *q = rq->q;
1932
Tejun Heo158dbda2009-04-23 11:05:18 +09001933 BUG_ON(list_empty(&rq->queuelist));
1934 BUG_ON(ELV_ON_HASH(rq));
1935
1936 list_del_init(&rq->queuelist);
1937
1938 /*
1939 * the time frame between a request being removed from the lists
1940 * and to it is freed is accounted as io that is in progress at
1941 * the driver side.
1942 */
Divyesh Shah91952912010-04-01 15:01:41 -07001943 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001944 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001945 set_io_start_time_ns(rq);
1946 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001947}
1948
Tejun Heo5efccd12009-04-23 11:05:18 +09001949/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001950 * blk_start_request - start request processing on the driver
1951 * @req: request to dequeue
1952 *
1953 * Description:
1954 * Dequeue @req and start timeout timer on it. This hands off the
1955 * request to the driver.
1956 *
1957 * Block internal functions which don't want to start timer should
1958 * call blk_dequeue_request().
1959 *
1960 * Context:
1961 * queue_lock must be held.
1962 */
1963void blk_start_request(struct request *req)
1964{
1965 blk_dequeue_request(req);
1966
1967 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001968 * We are now handing the request to the hardware, initialize
1969 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001970 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001971 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001972 if (unlikely(blk_bidi_rq(req)))
1973 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1974
Tejun Heo9934c8c2009-05-08 11:54:16 +09001975 blk_add_timer(req);
1976}
1977EXPORT_SYMBOL(blk_start_request);
1978
1979/**
1980 * blk_fetch_request - fetch a request from a request queue
1981 * @q: request queue to fetch a request from
1982 *
1983 * Description:
1984 * Return the request at the top of @q. The request is started on
1985 * return and LLD can start processing it immediately.
1986 *
1987 * Return:
1988 * Pointer to the request at the top of @q if available. Null
1989 * otherwise.
1990 *
1991 * Context:
1992 * queue_lock must be held.
1993 */
1994struct request *blk_fetch_request(struct request_queue *q)
1995{
1996 struct request *rq;
1997
1998 rq = blk_peek_request(q);
1999 if (rq)
2000 blk_start_request(rq);
2001 return rq;
2002}
2003EXPORT_SYMBOL(blk_fetch_request);
2004
2005/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002006 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002007 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002008 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002009 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002010 *
2011 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002012 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2013 * the request structure even if @req doesn't have leftover.
2014 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002015 *
2016 * This special helper function is only for request stacking drivers
2017 * (e.g. request-based dm) so that they can handle partial completion.
2018 * Actual device drivers should use blk_end_request instead.
2019 *
2020 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2021 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002022 *
2023 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002024 * %false - this request doesn't have any more data
2025 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002026 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002027bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002029 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 struct bio *bio;
2031
Tejun Heo2e60e022009-04-23 11:05:18 +09002032 if (!req->bio)
2033 return false;
2034
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002035 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002038 * For fs requests, rq is just carrier of independent bio's
2039 * and each partial completion should be handled separately.
2040 * Reset per-request error on each partial completion.
2041 *
2042 * TODO: tj: This is too subtle. It would be better to let
2043 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002045 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 req->errors = 0;
2047
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002048 if (error && req->cmd_type == REQ_TYPE_FS &&
2049 !(req->cmd_flags & REQ_QUIET)) {
Hannes Reinecke79775562011-01-18 10:13:13 +01002050 char *error_type;
2051
2052 switch (error) {
2053 case -ENOLINK:
2054 error_type = "recoverable transport";
2055 break;
2056 case -EREMOTEIO:
2057 error_type = "critical target";
2058 break;
2059 case -EBADE:
2060 error_type = "critical nexus";
2061 break;
2062 case -EIO:
2063 default:
2064 error_type = "I/O";
2065 break;
2066 }
2067 printk(KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
2068 error_type, req->rq_disk ? req->rq_disk->disk_name : "?",
2069 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071
Jens Axboebc58ba92009-01-23 10:54:44 +01002072 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 total_bytes = bio_nbytes = 0;
2075 while ((bio = req->bio) != NULL) {
2076 int nbytes;
2077
2078 if (nr_bytes >= bio->bi_size) {
2079 req->bio = bio->bi_next;
2080 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002081 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 next_idx = 0;
2083 bio_nbytes = 0;
2084 } else {
2085 int idx = bio->bi_idx + next_idx;
2086
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002087 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002089 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002090 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 break;
2092 }
2093
2094 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2095 BIO_BUG_ON(nbytes > bio->bi_size);
2096
2097 /*
2098 * not a complete bvec done
2099 */
2100 if (unlikely(nbytes > nr_bytes)) {
2101 bio_nbytes += nr_bytes;
2102 total_bytes += nr_bytes;
2103 break;
2104 }
2105
2106 /*
2107 * advance to the next vector
2108 */
2109 next_idx++;
2110 bio_nbytes += nbytes;
2111 }
2112
2113 total_bytes += nbytes;
2114 nr_bytes -= nbytes;
2115
Jens Axboe6728cb02008-01-31 13:03:55 +01002116 bio = req->bio;
2117 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 /*
2119 * end more in this run, or just return 'not-done'
2120 */
2121 if (unlikely(nr_bytes <= 0))
2122 break;
2123 }
2124 }
2125
2126 /*
2127 * completely done
2128 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002129 if (!req->bio) {
2130 /*
2131 * Reset counters so that the request stacking driver
2132 * can find how many bytes remain in the request
2133 * later.
2134 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002135 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002136 return false;
2137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 /*
2140 * if the request wasn't completed, update state
2141 */
2142 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002143 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 bio->bi_idx += next_idx;
2145 bio_iovec(bio)->bv_offset += nr_bytes;
2146 bio_iovec(bio)->bv_len -= nr_bytes;
2147 }
2148
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002149 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002150 req->buffer = bio_data(req->bio);
2151
2152 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002153 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002154 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002155
Tejun Heo80a761f2009-07-03 17:48:17 +09002156 /* mixed attributes always follow the first bio */
2157 if (req->cmd_flags & REQ_MIXED_MERGE) {
2158 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2159 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2160 }
2161
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002162 /*
2163 * If total number of sectors is less than the first segment
2164 * size, something has gone terribly wrong.
2165 */
2166 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
Jens Axboe81829242011-03-30 09:51:33 +02002167 blk_dump_rq_flags(req, "request botched");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002168 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002169 }
2170
2171 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002173
Tejun Heo2e60e022009-04-23 11:05:18 +09002174 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
Tejun Heo2e60e022009-04-23 11:05:18 +09002176EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Tejun Heo2e60e022009-04-23 11:05:18 +09002178static bool blk_update_bidi_request(struct request *rq, int error,
2179 unsigned int nr_bytes,
2180 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002181{
Tejun Heo2e60e022009-04-23 11:05:18 +09002182 if (blk_update_request(rq, error, nr_bytes))
2183 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002184
Tejun Heo2e60e022009-04-23 11:05:18 +09002185 /* Bidi request must be completed as a whole */
2186 if (unlikely(blk_bidi_rq(rq)) &&
2187 blk_update_request(rq->next_rq, error, bidi_bytes))
2188 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002189
Jens Axboee2e1a142010-06-09 10:42:09 +02002190 if (blk_queue_add_random(rq->q))
2191 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002192
2193 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
James Bottomley28018c22010-07-01 19:49:17 +09002196/**
2197 * blk_unprep_request - unprepare a request
2198 * @req: the request
2199 *
2200 * This function makes a request ready for complete resubmission (or
2201 * completion). It happens only after all error handling is complete,
2202 * so represents the appropriate moment to deallocate any resources
2203 * that were allocated to the request in the prep_rq_fn. The queue
2204 * lock is held when calling this.
2205 */
2206void blk_unprep_request(struct request *req)
2207{
2208 struct request_queue *q = req->q;
2209
2210 req->cmd_flags &= ~REQ_DONTPREP;
2211 if (q->unprep_rq_fn)
2212 q->unprep_rq_fn(q, req);
2213}
2214EXPORT_SYMBOL_GPL(blk_unprep_request);
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216/*
2217 * queue lock must be held
2218 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002219static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002221 if (blk_rq_tagged(req))
2222 blk_queue_end_tag(req->q, req);
2223
James Bottomleyba396a62009-05-27 14:17:08 +02002224 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002226 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002227 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Mike Andersone78042e2008-10-30 02:16:20 -07002229 blk_delete_timer(req);
2230
James Bottomley28018c22010-07-01 19:49:17 +09002231 if (req->cmd_flags & REQ_DONTPREP)
2232 blk_unprep_request(req);
2233
2234
Jens Axboebc58ba92009-01-23 10:54:44 +01002235 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002238 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002239 else {
2240 if (blk_bidi_rq(req))
2241 __blk_put_request(req->next_rq->q, req->next_rq);
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245}
2246
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002247/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002248 * blk_end_bidi_request - Complete a bidi request
2249 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002250 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002251 * @nr_bytes: number of bytes to complete @rq
2252 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002253 *
2254 * Description:
2255 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002256 * Drivers that supports bidi can safely call this member for any
2257 * type of request, bidi or uni. In the later case @bidi_bytes is
2258 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002259 *
2260 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002261 * %false - we are done with this request
2262 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002263 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002264static bool blk_end_bidi_request(struct request *rq, int error,
2265 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002266{
2267 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002268 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002269
Tejun Heo2e60e022009-04-23 11:05:18 +09002270 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2271 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002272
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002273 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002274 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002275 spin_unlock_irqrestore(q->queue_lock, flags);
2276
Tejun Heo2e60e022009-04-23 11:05:18 +09002277 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002278}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002279
2280/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002281 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2282 * @rq: the request to complete
2283 * @error: %0 for success, < %0 for error
2284 * @nr_bytes: number of bytes to complete @rq
2285 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002286 *
2287 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002288 * Identical to blk_end_bidi_request() except that queue lock is
2289 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002290 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002291 * Return:
2292 * %false - we are done with this request
2293 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002294 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002295static bool __blk_end_bidi_request(struct request *rq, int error,
2296 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002297{
Tejun Heo2e60e022009-04-23 11:05:18 +09002298 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2299 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002300
Tejun Heo2e60e022009-04-23 11:05:18 +09002301 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002302
Tejun Heo2e60e022009-04-23 11:05:18 +09002303 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002304}
2305
2306/**
2307 * blk_end_request - Helper function for drivers to complete the request.
2308 * @rq: the request being processed
2309 * @error: %0 for success, < %0 for error
2310 * @nr_bytes: number of bytes to complete
2311 *
2312 * Description:
2313 * Ends I/O on a number of bytes attached to @rq.
2314 * If @rq has leftover, sets it up for the next range of segments.
2315 *
2316 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002317 * %false - we are done with this request
2318 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002319 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002320bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002321{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002322 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002323}
Jens Axboe56ad1742009-07-28 22:11:24 +02002324EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002325
2326/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002327 * blk_end_request_all - Helper function for drives to finish the request.
2328 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002329 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002330 *
2331 * Description:
2332 * Completely finish @rq.
2333 */
2334void blk_end_request_all(struct request *rq, int error)
2335{
2336 bool pending;
2337 unsigned int bidi_bytes = 0;
2338
2339 if (unlikely(blk_bidi_rq(rq)))
2340 bidi_bytes = blk_rq_bytes(rq->next_rq);
2341
2342 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2343 BUG_ON(pending);
2344}
Jens Axboe56ad1742009-07-28 22:11:24 +02002345EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002346
2347/**
2348 * blk_end_request_cur - Helper function to finish the current request chunk.
2349 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002350 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002351 *
2352 * Description:
2353 * Complete the current consecutively mapped chunk from @rq.
2354 *
2355 * Return:
2356 * %false - we are done with this request
2357 * %true - still buffers pending for this request
2358 */
2359bool blk_end_request_cur(struct request *rq, int error)
2360{
2361 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2362}
Jens Axboe56ad1742009-07-28 22:11:24 +02002363EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002364
2365/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002366 * blk_end_request_err - Finish a request till the next failure boundary.
2367 * @rq: the request to finish till the next failure boundary for
2368 * @error: must be negative errno
2369 *
2370 * Description:
2371 * Complete @rq till the next failure boundary.
2372 *
2373 * Return:
2374 * %false - we are done with this request
2375 * %true - still buffers pending for this request
2376 */
2377bool blk_end_request_err(struct request *rq, int error)
2378{
2379 WARN_ON(error >= 0);
2380 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2381}
2382EXPORT_SYMBOL_GPL(blk_end_request_err);
2383
2384/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002385 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002386 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002387 * @error: %0 for success, < %0 for error
2388 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002389 *
2390 * Description:
2391 * Must be called with queue lock held unlike blk_end_request().
2392 *
2393 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002394 * %false - we are done with this request
2395 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002396 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002397bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002398{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002399 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002400}
Jens Axboe56ad1742009-07-28 22:11:24 +02002401EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002402
2403/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002404 * __blk_end_request_all - Helper function for drives to finish the request.
2405 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002406 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002407 *
2408 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002409 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002410 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002411void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002412{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002413 bool pending;
2414 unsigned int bidi_bytes = 0;
2415
2416 if (unlikely(blk_bidi_rq(rq)))
2417 bidi_bytes = blk_rq_bytes(rq->next_rq);
2418
2419 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2420 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002421}
Jens Axboe56ad1742009-07-28 22:11:24 +02002422EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002423
2424/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002425 * __blk_end_request_cur - Helper function to finish the current request chunk.
2426 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002427 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002428 *
2429 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002430 * Complete the current consecutively mapped chunk from @rq. Must
2431 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002432 *
2433 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002434 * %false - we are done with this request
2435 * %true - still buffers pending for this request
2436 */
2437bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002438{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002439 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002440}
Jens Axboe56ad1742009-07-28 22:11:24 +02002441EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002442
Tejun Heo80a761f2009-07-03 17:48:17 +09002443/**
2444 * __blk_end_request_err - Finish a request till the next failure boundary.
2445 * @rq: the request to finish till the next failure boundary for
2446 * @error: must be negative errno
2447 *
2448 * Description:
2449 * Complete @rq till the next failure boundary. Must be called
2450 * with queue lock held.
2451 *
2452 * Return:
2453 * %false - we are done with this request
2454 * %true - still buffers pending for this request
2455 */
2456bool __blk_end_request_err(struct request *rq, int error)
2457{
2458 WARN_ON(error >= 0);
2459 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2460}
2461EXPORT_SYMBOL_GPL(__blk_end_request_err);
2462
Jens Axboe86db1e22008-01-29 14:53:40 +01002463void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2464 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002466 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002467 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
David Woodhousefb2dce82008-08-05 18:01:53 +01002469 if (bio_has_data(bio)) {
2470 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002471 rq->buffer = bio_data(bio);
2472 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002473 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
NeilBrown66846572007-08-16 13:31:28 +02002476 if (bio->bi_bdev)
2477 rq->rq_disk = bio->bi_bdev->bd_disk;
2478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002480#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2481/**
2482 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2483 * @rq: the request to be flushed
2484 *
2485 * Description:
2486 * Flush all pages in @rq.
2487 */
2488void rq_flush_dcache_pages(struct request *rq)
2489{
2490 struct req_iterator iter;
2491 struct bio_vec *bvec;
2492
2493 rq_for_each_segment(bvec, rq, iter)
2494 flush_dcache_page(bvec->bv_page);
2495}
2496EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2497#endif
2498
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002499/**
2500 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2501 * @q : the queue of the device being checked
2502 *
2503 * Description:
2504 * Check if underlying low-level drivers of a device are busy.
2505 * If the drivers want to export their busy state, they must set own
2506 * exporting function using blk_queue_lld_busy() first.
2507 *
2508 * Basically, this function is used only by request stacking drivers
2509 * to stop dispatching requests to underlying devices when underlying
2510 * devices are busy. This behavior helps more I/O merging on the queue
2511 * of the request stacking driver and prevents I/O throughput regression
2512 * on burst I/O load.
2513 *
2514 * Return:
2515 * 0 - Not busy (The request stacking driver should dispatch request)
2516 * 1 - Busy (The request stacking driver should stop dispatching request)
2517 */
2518int blk_lld_busy(struct request_queue *q)
2519{
2520 if (q->lld_busy_fn)
2521 return q->lld_busy_fn(q);
2522
2523 return 0;
2524}
2525EXPORT_SYMBOL_GPL(blk_lld_busy);
2526
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002527/**
2528 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2529 * @rq: the clone request to be cleaned up
2530 *
2531 * Description:
2532 * Free all bios in @rq for a cloned request.
2533 */
2534void blk_rq_unprep_clone(struct request *rq)
2535{
2536 struct bio *bio;
2537
2538 while ((bio = rq->bio) != NULL) {
2539 rq->bio = bio->bi_next;
2540
2541 bio_put(bio);
2542 }
2543}
2544EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2545
2546/*
2547 * Copy attributes of the original request to the clone request.
2548 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2549 */
2550static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2551{
2552 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002553 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002554 dst->cmd_type = src->cmd_type;
2555 dst->__sector = blk_rq_pos(src);
2556 dst->__data_len = blk_rq_bytes(src);
2557 dst->nr_phys_segments = src->nr_phys_segments;
2558 dst->ioprio = src->ioprio;
2559 dst->extra_len = src->extra_len;
2560}
2561
2562/**
2563 * blk_rq_prep_clone - Helper function to setup clone request
2564 * @rq: the request to be setup
2565 * @rq_src: original request to be cloned
2566 * @bs: bio_set that bios for clone are allocated from
2567 * @gfp_mask: memory allocation mask for bio
2568 * @bio_ctr: setup function to be called for each clone bio.
2569 * Returns %0 for success, non %0 for failure.
2570 * @data: private data to be passed to @bio_ctr
2571 *
2572 * Description:
2573 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2574 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2575 * are not copied, and copying such parts is the caller's responsibility.
2576 * Also, pages which the original bios are pointing to are not copied
2577 * and the cloned bios just point same pages.
2578 * So cloned bios must be completed before original bios, which means
2579 * the caller must complete @rq before @rq_src.
2580 */
2581int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2582 struct bio_set *bs, gfp_t gfp_mask,
2583 int (*bio_ctr)(struct bio *, struct bio *, void *),
2584 void *data)
2585{
2586 struct bio *bio, *bio_src;
2587
2588 if (!bs)
2589 bs = fs_bio_set;
2590
2591 blk_rq_init(NULL, rq);
2592
2593 __rq_for_each_bio(bio_src, rq_src) {
2594 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2595 if (!bio)
2596 goto free_and_out;
2597
2598 __bio_clone(bio, bio_src);
2599
2600 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002601 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002602 goto free_and_out;
2603
2604 if (bio_ctr && bio_ctr(bio, bio_src, data))
2605 goto free_and_out;
2606
2607 if (rq->bio) {
2608 rq->biotail->bi_next = bio;
2609 rq->biotail = bio;
2610 } else
2611 rq->bio = rq->biotail = bio;
2612 }
2613
2614 __blk_rq_prep_clone(rq, rq_src);
2615
2616 return 0;
2617
2618free_and_out:
2619 if (bio)
2620 bio_free(bio, bs);
2621 blk_rq_unprep_clone(rq);
2622
2623 return -ENOMEM;
2624}
2625EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2626
Jens Axboe18887ad2008-07-28 13:08:45 +02002627int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 return queue_work(kblockd_workqueue, work);
2630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631EXPORT_SYMBOL(kblockd_schedule_work);
2632
Vivek Goyale43473b2010-09-15 17:06:35 -04002633int kblockd_schedule_delayed_work(struct request_queue *q,
2634 struct delayed_work *dwork, unsigned long delay)
2635{
2636 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2637}
2638EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2639
Jens Axboe73c10102011-03-08 13:19:51 +01002640#define PLUG_MAGIC 0x91827364
2641
2642void blk_start_plug(struct blk_plug *plug)
2643{
2644 struct task_struct *tsk = current;
2645
2646 plug->magic = PLUG_MAGIC;
2647 INIT_LIST_HEAD(&plug->list);
NeilBrown048c9372011-04-18 09:52:22 +02002648 INIT_LIST_HEAD(&plug->cb_list);
Jens Axboe73c10102011-03-08 13:19:51 +01002649 plug->should_sort = 0;
2650
2651 /*
2652 * If this is a nested plug, don't actually assign it. It will be
2653 * flushed on its own.
2654 */
2655 if (!tsk->plug) {
2656 /*
2657 * Store ordering should not be needed here, since a potential
2658 * preempt will imply a full memory barrier
2659 */
2660 tsk->plug = plug;
2661 }
2662}
2663EXPORT_SYMBOL(blk_start_plug);
2664
2665static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
2666{
2667 struct request *rqa = container_of(a, struct request, queuelist);
2668 struct request *rqb = container_of(b, struct request, queuelist);
2669
Konstantin Khlebnikovf83e8262011-04-04 00:15:02 +02002670 return !(rqa->q <= rqb->q);
Jens Axboe73c10102011-03-08 13:19:51 +01002671}
2672
Jens Axboe49cac012011-04-16 13:51:05 +02002673/*
2674 * If 'from_schedule' is true, then postpone the dispatch of requests
2675 * until a safe kblockd context. We due this to avoid accidental big
2676 * additional stack usage in driver dispatch, in places where the originally
2677 * plugger did not intend it.
2678 */
Jens Axboef6603782011-04-15 15:49:07 +02002679static void queue_unplugged(struct request_queue *q, unsigned int depth,
Jens Axboe49cac012011-04-16 13:51:05 +02002680 bool from_schedule)
Jens Axboe99e22592011-04-18 09:59:55 +02002681 __releases(q->queue_lock)
Jens Axboe94b5eb22011-04-12 10:12:19 +02002682{
Jens Axboe49cac012011-04-16 13:51:05 +02002683 trace_block_unplug(q, depth, !from_schedule);
Jens Axboe99e22592011-04-18 09:59:55 +02002684
2685 /*
2686 * If we are punting this to kblockd, then we can safely drop
2687 * the queue_lock before waking kblockd (which needs to take
2688 * this lock).
2689 */
2690 if (from_schedule) {
2691 spin_unlock(q->queue_lock);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002692 blk_run_queue_async(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002693 } else {
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +02002694 __blk_run_queue(q);
Jens Axboe99e22592011-04-18 09:59:55 +02002695 spin_unlock(q->queue_lock);
2696 }
2697
Jens Axboe94b5eb22011-04-12 10:12:19 +02002698}
2699
NeilBrown048c9372011-04-18 09:52:22 +02002700static void flush_plug_callbacks(struct blk_plug *plug)
2701{
2702 LIST_HEAD(callbacks);
2703
2704 if (list_empty(&plug->cb_list))
2705 return;
2706
2707 list_splice_init(&plug->cb_list, &callbacks);
2708
2709 while (!list_empty(&callbacks)) {
2710 struct blk_plug_cb *cb = list_first_entry(&callbacks,
2711 struct blk_plug_cb,
2712 list);
2713 list_del(&cb->list);
2714 cb->callback(cb);
2715 }
2716}
2717
Jens Axboe49cac012011-04-16 13:51:05 +02002718void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
Jens Axboe73c10102011-03-08 13:19:51 +01002719{
2720 struct request_queue *q;
2721 unsigned long flags;
2722 struct request *rq;
NeilBrown109b8122011-04-11 14:13:10 +02002723 LIST_HEAD(list);
Jens Axboe94b5eb22011-04-12 10:12:19 +02002724 unsigned int depth;
Jens Axboe73c10102011-03-08 13:19:51 +01002725
2726 BUG_ON(plug->magic != PLUG_MAGIC);
2727
NeilBrown048c9372011-04-18 09:52:22 +02002728 flush_plug_callbacks(plug);
Jens Axboe73c10102011-03-08 13:19:51 +01002729 if (list_empty(&plug->list))
2730 return;
2731
NeilBrown109b8122011-04-11 14:13:10 +02002732 list_splice_init(&plug->list, &list);
2733
2734 if (plug->should_sort) {
2735 list_sort(NULL, &list, plug_rq_cmp);
2736 plug->should_sort = 0;
2737 }
Jens Axboe73c10102011-03-08 13:19:51 +01002738
2739 q = NULL;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002740 depth = 0;
Jens Axboe18811272011-04-12 10:11:24 +02002741
2742 /*
2743 * Save and disable interrupts here, to avoid doing it for every
2744 * queue lock we have to take.
2745 */
Jens Axboe73c10102011-03-08 13:19:51 +01002746 local_irq_save(flags);
NeilBrown109b8122011-04-11 14:13:10 +02002747 while (!list_empty(&list)) {
2748 rq = list_entry_rq(list.next);
Jens Axboe73c10102011-03-08 13:19:51 +01002749 list_del_init(&rq->queuelist);
2750 BUG_ON(!(rq->cmd_flags & REQ_ON_PLUG));
2751 BUG_ON(!rq->q);
2752 if (rq->q != q) {
Jens Axboe99e22592011-04-18 09:59:55 +02002753 /*
2754 * This drops the queue lock
2755 */
2756 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02002757 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01002758 q = rq->q;
Jens Axboe94b5eb22011-04-12 10:12:19 +02002759 depth = 0;
Jens Axboe73c10102011-03-08 13:19:51 +01002760 spin_lock(q->queue_lock);
2761 }
2762 rq->cmd_flags &= ~REQ_ON_PLUG;
2763
2764 /*
2765 * rq is already accounted, so use raw insert
2766 */
Jens Axboe401a18e2011-03-25 16:57:52 +01002767 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA))
2768 __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
2769 else
2770 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
Jens Axboe94b5eb22011-04-12 10:12:19 +02002771
2772 depth++;
Jens Axboe73c10102011-03-08 13:19:51 +01002773 }
2774
Jens Axboe99e22592011-04-18 09:59:55 +02002775 /*
2776 * This drops the queue lock
2777 */
2778 if (q)
Jens Axboe49cac012011-04-16 13:51:05 +02002779 queue_unplugged(q, depth, from_schedule);
Jens Axboe73c10102011-03-08 13:19:51 +01002780
Jens Axboe73c10102011-03-08 13:19:51 +01002781 local_irq_restore(flags);
2782}
Jens Axboe73c10102011-03-08 13:19:51 +01002783
2784void blk_finish_plug(struct blk_plug *plug)
2785{
Jens Axboef6603782011-04-15 15:49:07 +02002786 blk_flush_plug_list(plug, false);
Christoph Hellwig88b996c2011-04-15 15:20:10 +02002787
2788 if (plug == current->plug)
2789 current->plug = NULL;
Jens Axboe73c10102011-03-08 13:19:51 +01002790}
2791EXPORT_SYMBOL(blk_finish_plug);
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793int __init blk_dev_init(void)
2794{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002795 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2796 sizeof(((struct request *)0)->cmd_flags));
2797
Tejun Heo89b90be2011-01-03 15:01:47 +01002798 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2799 kblockd_workqueue = alloc_workqueue("kblockd",
2800 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 if (!kblockd_workqueue)
2802 panic("Failed to create kblockd\n");
2803
2804 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002805 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Jens Axboe8324aa92008-01-29 14:51:59 +01002807 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002808 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return 0;
2811}