blob: 05746093b45e86b4205210a215b35010fa350665 [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>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Ingo Molnar0bfc2452008-11-26 11:59:56 +010036EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020037EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080038EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010039
Jens Axboe165125e2007-07-24 09:28:11 +020040static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For the allocated request tables
44 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010045static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * For queue allocation
49 */
Jens Axboe6728cb02008-01-31 13:03:55 +010050struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Controlling structure to kblockd
54 */
Jens Axboeff856ba2006-01-09 16:02:34 +010055static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jens Axboe26b82562008-01-29 13:54:41 +010057static void drive_stat_acct(struct request *rq, int new_io)
58{
Jens Axboe28f13702008-05-07 10:15:46 +020059 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010060 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090061 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010062
Jens Axboec2553b52009-04-24 08:10:11 +020063 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010064 return;
65
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +020067 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jens Axboef253b862010-10-24 22:06:02 +020069 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_inc(cpu, part, merges[rw]);
Jens Axboef253b862010-10-24 22:06:02 +020071 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090072 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020073 part_inc_in_flight(part, rw);
Jens Axboe26b82562008-01-29 13:54:41 +010074 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075
Tejun Heo074a7ac2008-08-25 19:56:14 +090076 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010077}
78
Jens Axboe8324aa92008-01-29 14:51:59 +010079void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int nr;
82
83 nr = q->nr_requests - (q->nr_requests / 8) + 1;
84 if (nr > q->nr_requests)
85 nr = q->nr_requests;
86 q->nr_congestion_on = nr;
87
88 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
89 if (nr < 1)
90 nr = 1;
91 q->nr_congestion_off = nr;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/**
95 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
96 * @bdev: device
97 *
98 * Locates the passed device's request queue and returns the address of its
99 * backing_dev_info
100 *
101 * Will return NULL if the request queue cannot be located.
102 */
103struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
104{
105 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200106 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (q)
109 ret = &q->backing_dev_info;
110 return ret;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(blk_get_backing_dev_info);
113
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200114void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200116 memset(rq, 0, sizeof(*rq));
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700119 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200120 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900122 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200123 INIT_HLIST_NODE(&rq->hash);
124 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200125 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800126 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100128 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900129 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700130 set_start_time_ns(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200132EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
NeilBrown5bb23a62007-09-27 12:46:13 +0200134static void req_bio_endio(struct request *rq, struct bio *bio,
135 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100136{
Tejun Heo143a87f2011-01-25 12:43:52 +0100137 if (error)
138 clear_bit(BIO_UPTODATE, &bio->bi_flags);
139 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
140 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100141
Tejun Heo143a87f2011-01-25 12:43:52 +0100142 if (unlikely(nbytes > bio->bi_size)) {
143 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
144 __func__, nbytes, bio->bi_size);
145 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200146 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100147
148 if (unlikely(rq->cmd_flags & REQ_QUIET))
149 set_bit(BIO_QUIET, &bio->bi_flags);
150
151 bio->bi_size -= nbytes;
152 bio->bi_sector += (nbytes >> 9);
153
154 if (bio_integrity(bio))
155 bio_integrity_advance(bio, nbytes);
156
157 /* don't actually finish bio if it's part of flush sequence */
158 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
159 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162void blk_dump_rq_flags(struct request *rq, char *msg)
163{
164 int bit;
165
Jens Axboe6728cb02008-01-31 13:03:55 +0100166 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200167 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
168 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Tejun Heo83096eb2009-05-07 22:24:39 +0900170 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
171 (unsigned long long)blk_rq_pos(rq),
172 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900173 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900174 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200176 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100177 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200178 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 printk("%02x ", rq->cmd[bit]);
180 printk("\n");
181 }
182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183EXPORT_SYMBOL(blk_dump_rq_flags);
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
186 * "plug" the device if there are no outstanding requests: this will
187 * force the transfer to start only after we have put all the requests
188 * on the list.
189 *
190 * This is called with interrupts off and no requests on the queue and
191 * with the queue lock held.
192 */
Jens Axboe165125e2007-07-24 09:28:11 +0200193void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 WARN_ON(!irqs_disabled());
196
197 /*
198 * don't plug a stopped queue, it must be paired with blk_start_queue()
199 * which will restart the queueing
200 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200201 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return;
203
Jens Axboee48ec692008-07-03 13:18:54 +0200204 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100206 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209EXPORT_SYMBOL(blk_plug_device);
210
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200211/**
212 * blk_plug_device_unlocked - plug a device without queue lock held
213 * @q: The &struct request_queue to plug
214 *
215 * Description:
216 * Like @blk_plug_device(), but grabs the queue lock and disables
217 * interrupts.
218 **/
219void blk_plug_device_unlocked(struct request_queue *q)
220{
221 unsigned long flags;
222
223 spin_lock_irqsave(q->queue_lock, flags);
224 blk_plug_device(q);
225 spin_unlock_irqrestore(q->queue_lock, flags);
226}
227EXPORT_SYMBOL(blk_plug_device_unlocked);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 * remove the queue from the plugged list, if present. called with
231 * queue lock held and interrupts disabled.
232 */
Jens Axboe165125e2007-07-24 09:28:11 +0200233int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 WARN_ON(!irqs_disabled());
236
Jens Axboee48ec692008-07-03 13:18:54 +0200237 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239
240 del_timer(&q->unplug_timer);
241 return 1;
242}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243EXPORT_SYMBOL(blk_remove_plug);
244
245/*
246 * remove the plug and let it rip..
247 */
Jens Axboe165125e2007-07-24 09:28:11 +0200248void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200250 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200252 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return;
254
Jens Axboe22e2c502005-06-27 10:55:12 +0200255 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/**
259 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200260 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
262 * Description:
263 * Linux uses plugging to build bigger requests queues before letting
264 * the device have at them. If a queue is plugged, the I/O scheduler
265 * is still adding and merging requests on the queue. Once the queue
266 * gets unplugged, the request_fn defined for the queue is invoked and
267 * transfers started.
268 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200269void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200271 if (blk_queue_plugged(q)) {
272 spin_lock_irq(q->queue_lock);
273 __generic_unplug_device(q);
274 spin_unlock_irq(q->queue_lock);
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277EXPORT_SYMBOL(generic_unplug_device);
278
279static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
280 struct page *page)
281{
Jens Axboe165125e2007-07-24 09:28:11 +0200282 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500284 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Jens Axboe86db1e22008-01-29 14:53:40 +0100287void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Jens Axboe165125e2007-07-24 09:28:11 +0200289 struct request_queue *q =
290 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100292 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 q->unplug_fn(q);
294}
295
Jens Axboe86db1e22008-01-29 14:53:40 +0100296void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Jens Axboe165125e2007-07-24 09:28:11 +0200298 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100300 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200301 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500304void blk_unplug(struct request_queue *q)
305{
306 /*
307 * devices don't necessarily have an ->unplug_fn defined
308 */
309 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100310 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500311 q->unplug_fn(q);
312 }
313}
314EXPORT_SYMBOL(blk_unplug);
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/**
317 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200318 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
320 * Description:
321 * blk_start_queue() will clear the stop flag on the queue, and call
322 * the request_fn for the queue if it was in a stopped state when
323 * entered. Also see blk_stop_queue(). Queue lock must be held.
324 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200325void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200327 WARN_ON(!irqs_disabled());
328
Nick Piggin75ad23b2008-04-29 14:48:33 +0200329 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900330 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332EXPORT_SYMBOL(blk_start_queue);
333
334/**
335 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200336 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *
338 * Description:
339 * The Linux block layer assumes that a block driver will consume all
340 * entries on the request queue when the request_fn strategy is called.
341 * Often this will not happen, because of hardware limitations (queue
342 * depth settings). If a device driver gets a 'queue full' response,
343 * or if it simply chooses not to queue more I/O at one point, it can
344 * call this function to prevent the request_fn from being called until
345 * the driver has signalled it's ready to go again. This happens by calling
346 * blk_start_queue() to restart queue operations. Queue lock must be held.
347 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200348void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200351 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353EXPORT_SYMBOL(blk_stop_queue);
354
355/**
356 * blk_sync_queue - cancel any pending callbacks on a queue
357 * @q: the queue
358 *
359 * Description:
360 * The block layer may perform asynchronous callback activity
361 * on a queue, such as calling the unplug function after a timeout.
362 * A block device may call blk_sync_queue to ensure that any
363 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200364 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * that its ->make_request_fn will not re-add plugging prior to calling
366 * this function.
367 *
368 */
369void blk_sync_queue(struct request_queue *q)
370{
371 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100372 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100373 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400374 throtl_shutdown_timer_wq(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376EXPORT_SYMBOL(blk_sync_queue);
377
378/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200379 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200381 *
382 * Description:
383 * See @blk_run_queue. This variant must be called with the queue lock
384 * held and interrupts disabled.
385 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200387void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200390
Tejun Heoa538cd02009-04-23 11:05:17 +0900391 if (unlikely(blk_queue_stopped(q)))
392 return;
393
394 if (elv_queue_empty(q))
395 return;
396
Jens Axboedac07ec2006-05-11 08:20:16 +0200397 /*
398 * Only recurse once to avoid overrunning the stack, let the unplug
399 * handling reinvoke the handler shortly if we already got there.
400 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900401 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
402 q->request_fn(q);
403 queue_flag_clear(QUEUE_FLAG_REENTER, q);
404 } else {
405 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
406 kblockd_schedule_work(q, &q->unplug_work);
407 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200408}
409EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200410
Nick Piggin75ad23b2008-04-29 14:48:33 +0200411/**
412 * blk_run_queue - run a single device queue
413 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200414 *
415 * Description:
416 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900417 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200418 */
419void blk_run_queue(struct request_queue *q)
420{
421 unsigned long flags;
422
423 spin_lock_irqsave(q->queue_lock, flags);
424 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 spin_unlock_irqrestore(q->queue_lock, flags);
426}
427EXPORT_SYMBOL(blk_run_queue);
428
Jens Axboe165125e2007-07-24 09:28:11 +0200429void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500430{
431 kobject_put(&q->kobj);
432}
Al Viro483f4af2006-03-18 18:34:37 -0500433
Jens Axboe6728cb02008-01-31 13:03:55 +0100434void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500435{
Jens Axboee3335de92008-09-18 09:22:54 -0700436 /*
437 * We know we have process context here, so we can be a little
438 * cautious and ensure that pending block actions on this device
439 * are done before moving on. Going into this function, we should
440 * not have processes doing IO to this device.
441 */
442 blk_sync_queue(q);
443
Matthew Garrett31373d02010-04-06 14:25:14 +0200444 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500445 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200446 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500447 mutex_unlock(&q->sysfs_lock);
448
449 if (q->elevator)
450 elevator_exit(q->elevator);
451
452 blk_put_queue(q);
453}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454EXPORT_SYMBOL(blk_cleanup_queue);
455
Jens Axboe165125e2007-07-24 09:28:11 +0200456static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct request_list *rl = &q->rq;
459
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400460 if (unlikely(rl->rq_pool))
461 return 0;
462
Jens Axboe1faa16d2009-04-06 14:48:01 +0200463 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
464 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200465 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200466 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
467 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Christoph Lameter19460892005-06-23 00:08:19 -0700469 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
470 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (!rl->rq_pool)
473 return -ENOMEM;
474
475 return 0;
476}
477
Jens Axboe165125e2007-07-24 09:28:11 +0200478struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Christoph Lameter19460892005-06-23 00:08:19 -0700480 return blk_alloc_queue_node(gfp_mask, -1);
481}
482EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Jens Axboe165125e2007-07-24 09:28:11 +0200484struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700485{
Jens Axboe165125e2007-07-24 09:28:11 +0200486 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700487 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700488
Jens Axboe8324aa92008-01-29 14:51:59 +0100489 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700490 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (!q)
492 return NULL;
493
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700494 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
495 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200496 q->backing_dev_info.ra_pages =
497 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
498 q->backing_dev_info.state = 0;
499 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200500 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200501
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700502 err = bdi_init(&q->backing_dev_info);
503 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100504 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700505 return NULL;
506 }
507
Vivek Goyale43473b2010-09-15 17:06:35 -0400508 if (blk_throtl_init(q)) {
509 kmem_cache_free(blk_requestq_cachep, q);
510 return NULL;
511 }
512
Matthew Garrett31373d02010-04-06 14:25:14 +0200513 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
514 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700516 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
517 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100518 INIT_LIST_HEAD(&q->flush_queue[0]);
519 INIT_LIST_HEAD(&q->flush_queue[1]);
520 INIT_LIST_HEAD(&q->flush_data_in_flight);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200521 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500522
Jens Axboe8324aa92008-01-29 14:51:59 +0100523 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Al Viro483f4af2006-03-18 18:34:37 -0500525 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700526 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return q;
529}
Christoph Lameter19460892005-06-23 00:08:19 -0700530EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532/**
533 * blk_init_queue - prepare a request queue for use with a block device
534 * @rfn: The function to be called to process requests that have been
535 * placed on the queue.
536 * @lock: Request queue spin lock
537 *
538 * Description:
539 * If a block device wishes to use the standard request handling procedures,
540 * which sorts requests and coalesces adjacent requests, then it must
541 * call blk_init_queue(). The function @rfn will be called when there
542 * are requests on the queue that need to be processed. If the device
543 * supports plugging, then @rfn may not be called immediately when requests
544 * are available on the queue, but may be called at some time later instead.
545 * Plugged queues are generally unplugged when a buffer belonging to one
546 * of the requests on the queue is needed, or due to memory pressure.
547 *
548 * @rfn is not required, or even expected, to remove all requests off the
549 * queue, but only as many as it can handle at a time. If it does leave
550 * requests on the queue, it is responsible for arranging that the requests
551 * get dealt with eventually.
552 *
553 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200554 * request queue; this lock will be taken also from interrupt context, so irq
555 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200557 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * it didn't succeed.
559 *
560 * Note:
561 * blk_init_queue() must be paired with a blk_cleanup_queue() call
562 * when the block device is deactivated (such as at module unload).
563 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700564
Jens Axboe165125e2007-07-24 09:28:11 +0200565struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Christoph Lameter19460892005-06-23 00:08:19 -0700567 return blk_init_queue_node(rfn, lock, -1);
568}
569EXPORT_SYMBOL(blk_init_queue);
570
Jens Axboe165125e2007-07-24 09:28:11 +0200571struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700572blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
573{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600574 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600576 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
577 if (!uninit_q)
578 return NULL;
579
580 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
581 if (!q)
582 blk_cleanup_queue(uninit_q);
583
584 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200585}
586EXPORT_SYMBOL(blk_init_queue_node);
587
588struct request_queue *
589blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
590 spinlock_t *lock)
591{
592 return blk_init_allocated_queue_node(q, rfn, lock, -1);
593}
594EXPORT_SYMBOL(blk_init_allocated_queue);
595
596struct request_queue *
597blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
598 spinlock_t *lock, int node_id)
599{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!q)
601 return NULL;
602
Christoph Lameter19460892005-06-23 00:08:19 -0700603 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600604 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500605 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900609 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100611 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 q->queue_lock = lock;
613
Jens Axboef3b144a2009-03-06 08:48:33 +0100614 /*
615 * This also sets hw/phys segments, boundary and size
616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alan Stern44ec9542007-02-20 11:01:57 -0500619 q->sg_reserved_size = INT_MAX;
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /*
622 * all done
623 */
624 if (!elevator_init(q, NULL)) {
625 blk_queue_congestion_threshold(q);
626 return q;
627 }
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return NULL;
630}
Mike Snitzer01effb02010-05-11 08:57:42 +0200631EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Jens Axboe165125e2007-07-24 09:28:11 +0200633int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700635 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500636 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638 }
639
640 return 1;
641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Jens Axboe165125e2007-07-24 09:28:11 +0200643static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200645 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200646 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 mempool_free(rq, q->rq.rq_pool);
648}
649
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200650static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200651blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
654
655 if (!rq)
656 return NULL;
657
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200658 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200659
Jerome Marchand42dad762009-04-22 14:01:49 +0200660 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Tejun Heocb98fc82005-10-28 08:29:39 +0200662 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200663 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200664 mempool_free(rq, q->rq.rq_pool);
665 return NULL;
666 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200667 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Tejun Heocb98fc82005-10-28 08:29:39 +0200670 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673/*
674 * ioc_batching returns true if the ioc is a valid batching request and
675 * should be given priority access to a request.
676 */
Jens Axboe165125e2007-07-24 09:28:11 +0200677static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 if (!ioc)
680 return 0;
681
682 /*
683 * Make sure the process is able to allocate at least 1 request
684 * even if the batch times out, otherwise we could theoretically
685 * lose wakeups.
686 */
687 return ioc->nr_batch_requests == q->nr_batching ||
688 (ioc->nr_batch_requests > 0
689 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
690}
691
692/*
693 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
694 * will cause the process to be a "batcher" on all queues in the system. This
695 * is the behaviour we want though - once it gets a wakeup it should be given
696 * a nice run.
697 */
Jens Axboe165125e2007-07-24 09:28:11 +0200698static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 if (!ioc || ioc_batching(q, ioc))
701 return;
702
703 ioc->nr_batch_requests = q->nr_batching;
704 ioc->last_waited = jiffies;
705}
706
Jens Axboe1faa16d2009-04-06 14:48:01 +0200707static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
709 struct request_list *rl = &q->rq;
710
Jens Axboe1faa16d2009-04-06 14:48:01 +0200711 if (rl->count[sync] < queue_congestion_off_threshold(q))
712 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jens Axboe1faa16d2009-04-06 14:48:01 +0200714 if (rl->count[sync] + 1 <= q->nr_requests) {
715 if (waitqueue_active(&rl->wait[sync]))
716 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jens Axboe1faa16d2009-04-06 14:48:01 +0200718 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720}
721
722/*
723 * A request has just been released. Account for it, update the full and
724 * congestion status, wake up any waiters. Called under q->queue_lock.
725 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200726static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct request_list *rl = &q->rq;
729
Jens Axboe1faa16d2009-04-06 14:48:01 +0200730 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200731 if (priv)
732 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jens Axboe1faa16d2009-04-06 14:48:01 +0200734 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Jens Axboe1faa16d2009-04-06 14:48:01 +0200736 if (unlikely(rl->starved[sync ^ 1]))
737 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/*
Nick Piggind6344532005-06-28 20:45:14 -0700741 * Get a free request, queue_lock must be held.
742 * Returns NULL on failure, with queue_lock held.
743 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 */
Jens Axboe165125e2007-07-24 09:28:11 +0200745static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100746 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 struct request *rq = NULL;
749 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100750 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200751 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100752 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Jens Axboe7749a8d2006-12-13 13:02:26 +0100754 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100755 if (may_queue == ELV_MQUEUE_NO)
756 goto rq_starved;
757
Jens Axboe1faa16d2009-04-06 14:48:01 +0200758 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
759 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200760 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100761 /*
762 * The queue will fill after this allocation, so set
763 * it as full, and mark this process as "batching".
764 * This process will be allowed to complete a batch of
765 * requests, others will be blocked.
766 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200767 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100768 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200769 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100770 } else {
771 if (may_queue != ELV_MQUEUE_MUST
772 && !ioc_batching(q, ioc)) {
773 /*
774 * The queue is full and the allocating
775 * process is not a "batcher", and not
776 * exempted by the IO scheduler
777 */
778 goto out;
779 }
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200782 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
Jens Axboe082cf692005-06-28 16:35:11 +0200785 /*
786 * Only allow batching queuers to allocate up to 50% over the defined
787 * limit of requests, otherwise we could have thousands of requests
788 * allocated with any setting of ->nr_requests
789 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200790 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200791 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100792
Jens Axboe1faa16d2009-04-06 14:48:01 +0200793 rl->count[is_sync]++;
794 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200795
Jens Axboe64521d12005-10-28 08:30:39 +0200796 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Jens Axboef253b862010-10-24 22:06:02 +0200797 if (priv)
Tejun Heocb98fc82005-10-28 08:29:39 +0200798 rl->elvpriv++;
799
Jens Axboef253b862010-10-24 22:06:02 +0200800 if (blk_queue_io_stat(q))
801 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 spin_unlock_irq(q->queue_lock);
803
Jens Axboe7749a8d2006-12-13 13:02:26 +0100804 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100805 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /*
807 * Allocation failed presumably due to memory. Undo anything
808 * we might have messed up.
809 *
810 * Allocating task should really be put onto the front of the
811 * wait queue, but this is pretty rare.
812 */
813 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200814 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /*
817 * in the very unlikely event that allocation failed and no
818 * requests for this direction was pending, mark us starved
819 * so that freeing of a request in the other direction will
820 * notice us. another possible fix would be to split the
821 * rq mempool into READ and WRITE
822 */
823rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200824 if (unlikely(rl->count[is_sync] == 0))
825 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto out;
828 }
829
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100830 /*
831 * ioc may be NULL here, and ioc_batching will be false. That's
832 * OK, if the queue is under the request limit then requests need
833 * not count toward the nr_batch_requests limit. There will always
834 * be some limit enforced by BLK_BATCH_TIME.
835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (ioc_batching(q, ioc))
837 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100838
Jens Axboe1faa16d2009-04-06 14:48:01 +0200839 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return rq;
842}
843
844/*
845 * No available requests for this queue, unplug the device and wait for some
846 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700847 *
848 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
Jens Axboe165125e2007-07-24 09:28:11 +0200850static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200851 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200853 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct request *rq;
855
Jens Axboe7749a8d2006-12-13 13:02:26 +0100856 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700857 while (!rq) {
858 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200859 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct request_list *rl = &q->rq;
861
Jens Axboe1faa16d2009-04-06 14:48:01 +0200862 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 TASK_UNINTERRUPTIBLE);
864
Jens Axboe1faa16d2009-04-06 14:48:01 +0200865 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200867 __generic_unplug_device(q);
868 spin_unlock_irq(q->queue_lock);
869 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200871 /*
872 * After sleeping, we become a "batching" process and
873 * will be able to allocate at least one request, and
874 * up to a big batch of them for a small period time.
875 * See ioc_batching, ioc_set_batching
876 */
877 ioc = current_io_context(GFP_NOIO, q->node);
878 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100879
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200880 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200881 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200882
883 rq = get_request(q, rw_flags, bio, GFP_NOIO);
884 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 return rq;
887}
888
Jens Axboe165125e2007-07-24 09:28:11 +0200889struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 struct request *rq;
892
893 BUG_ON(rw != READ && rw != WRITE);
894
Nick Piggind6344532005-06-28 20:45:14 -0700895 spin_lock_irq(q->queue_lock);
896 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200897 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700898 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200899 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700900 if (!rq)
901 spin_unlock_irq(q->queue_lock);
902 }
903 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 return rq;
906}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907EXPORT_SYMBOL(blk_get_request);
908
909/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300910 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700911 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300912 * @bio: The bio describing the memory mappings that will be submitted for IO.
913 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700914 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200915 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300916 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
917 * type commands. Where the struct request needs to be farther initialized by
918 * the caller. It is passed a &struct bio, which describes the memory info of
919 * the I/O transfer.
920 *
921 * The caller of blk_make_request must make sure that bi_io_vec
922 * are set to describe the memory buffers. That bio_data_dir() will return
923 * the needed direction of the request. (And all bio's in the passed bio-chain
924 * are properly set accordingly)
925 *
926 * If called under none-sleepable conditions, mapped bio buffers must not
927 * need bouncing, by calling the appropriate masked or flagged allocator,
928 * suitable for the target device. Otherwise the call to blk_queue_bounce will
929 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200930 *
931 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
932 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
933 * anything but the first bio in the chain. Otherwise you risk waiting for IO
934 * completion of a bio that hasn't been submitted yet, thus resulting in a
935 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
936 * of bio_alloc(), as that avoids the mempool deadlock.
937 * If possible a big IO should be split into smaller parts when allocation
938 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200939 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300940struct request *blk_make_request(struct request_queue *q, struct bio *bio,
941 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200942{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300943 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
944
945 if (unlikely(!rq))
946 return ERR_PTR(-ENOMEM);
947
948 for_each_bio(bio) {
949 struct bio *bounce_bio = bio;
950 int ret;
951
952 blk_queue_bounce(q, &bounce_bio);
953 ret = blk_rq_append_bio(q, rq, bounce_bio);
954 if (unlikely(ret)) {
955 blk_put_request(rq);
956 return ERR_PTR(ret);
957 }
958 }
959
960 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200961}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300962EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200963
964/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * blk_requeue_request - put a request back on queue
966 * @q: request queue where request should be inserted
967 * @rq: request to be inserted
968 *
969 * Description:
970 * Drivers often keep queueing requests until the hardware cannot accept
971 * more, when that condition happens we need to put the request back
972 * on the queue. Must be called with queue lock held.
973 */
Jens Axboe165125e2007-07-24 09:28:11 +0200974void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700976 blk_delete_timer(rq);
977 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100978 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (blk_rq_tagged(rq))
981 blk_queue_end_tag(q, rq);
982
James Bottomleyba396a62009-05-27 14:17:08 +0200983 BUG_ON(blk_queued_rq(rq));
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 elv_requeue_request(q, rq);
986}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987EXPORT_SYMBOL(blk_requeue_request);
988
989/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200990 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 * @q: request queue where request should be inserted
992 * @rq: request to be inserted
993 * @at_head: insert request at head or tail of queue
994 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 *
996 * Description:
997 * Many block devices need to execute commands asynchronously, so they don't
998 * block the whole kernel from preemption during request execution. This is
999 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001000 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1001 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 *
1003 * We have the option of inserting the head or the tail of the queue.
1004 * Typically we use the tail for new ioctls and so forth. We use the head
1005 * of the queue for things like a QUEUE_FULL message from a device, or a
1006 * host that is unable to accept a particular command.
1007 */
Jens Axboe165125e2007-07-24 09:28:11 +02001008void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001009 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Tejun Heo 867d1192005-04-24 02:06:05 -05001011 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 unsigned long flags;
1013
1014 /*
1015 * tell I/O scheduler that this isn't a regular read/write (ie it
1016 * must not attempt merges on this) and that it acts as a soft
1017 * barrier
1018 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001019 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 rq->special = data;
1022
1023 spin_lock_irqsave(q->queue_lock, flags);
1024
1025 /*
1026 * If command is tagged, release the tag
1027 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001028 if (blk_rq_tagged(rq))
1029 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001031 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001032 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001033 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 spin_unlock_irqrestore(q->queue_lock, flags);
1035}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036EXPORT_SYMBOL(blk_insert_request);
1037
Tejun Heo074a7ac2008-08-25 19:56:14 +09001038static void part_round_stats_single(int cpu, struct hd_struct *part,
1039 unsigned long now)
1040{
1041 if (now == part->stamp)
1042 return;
1043
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001044 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001045 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001046 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001047 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1048 }
1049 part->stamp = now;
1050}
1051
1052/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001053 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1054 * @cpu: cpu number for stats access
1055 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 *
1057 * The average IO queue length and utilisation statistics are maintained
1058 * by observing the current state of the queue length and the amount of
1059 * time it has been in this state for.
1060 *
1061 * Normally, that accounting is done on IO completion, but that can result
1062 * in more than a second's worth of IO being accounted for within any one
1063 * second, leading to >100% utilisation. To deal with that, we call this
1064 * function to do a round-off before returning the results when reading
1065 * /proc/diskstats. This accounts immediately for all queue usage up to
1066 * the current jiffies and restarts the counters again.
1067 */
Tejun Heoc9959052008-08-25 19:47:21 +09001068void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001069{
1070 unsigned long now = jiffies;
1071
Tejun Heo074a7ac2008-08-25 19:56:14 +09001072 if (part->partno)
1073 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1074 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001075}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001076EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078/*
1079 * queue lock must be held
1080 */
Jens Axboe165125e2007-07-24 09:28:11 +02001081void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (unlikely(!q))
1084 return;
1085 if (unlikely(--req->ref_count))
1086 return;
1087
Tejun Heo8922e162005-10-20 16:23:44 +02001088 elv_completed_request(q, req);
1089
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001090 /* this is a bio leak */
1091 WARN_ON(req->bio != NULL);
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /*
1094 * Request may not have originated from ll_rw_blk. if not,
1095 * it didn't come out of our reserved rq pools
1096 */
Jens Axboe49171e52006-08-10 08:59:11 +02001097 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001098 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001099 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001102 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001105 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001108EXPORT_SYMBOL_GPL(__blk_put_request);
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110void blk_put_request(struct request *req)
1111{
Tejun Heo8922e162005-10-20 16:23:44 +02001112 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001113 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001115 spin_lock_irqsave(q->queue_lock, flags);
1116 __blk_put_request(q, req);
1117 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119EXPORT_SYMBOL(blk_put_request);
1120
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001121/**
1122 * blk_add_request_payload - add a payload to a request
1123 * @rq: request to update
1124 * @page: page backing the payload
1125 * @len: length of the payload.
1126 *
1127 * This allows to later add a payload to an already submitted request by
1128 * a block driver. The driver needs to take care of freeing the payload
1129 * itself.
1130 *
1131 * Note that this is a quite horrible hack and nothing but handling of
1132 * discard requests should ever use it.
1133 */
1134void blk_add_request_payload(struct request *rq, struct page *page,
1135 unsigned int len)
1136{
1137 struct bio *bio = rq->bio;
1138
1139 bio->bi_io_vec->bv_page = page;
1140 bio->bi_io_vec->bv_offset = 0;
1141 bio->bi_io_vec->bv_len = len;
1142
1143 bio->bi_size = len;
1144 bio->bi_vcnt = 1;
1145 bio->bi_phys_segments = 1;
1146
1147 rq->__data_len = rq->resid_len = len;
1148 rq->nr_phys_segments = 1;
1149 rq->buffer = bio_data(bio);
1150}
1151EXPORT_SYMBOL_GPL(blk_add_request_payload);
1152
Jens Axboe86db1e22008-01-29 14:53:40 +01001153void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001154{
Jens Axboec7c22e42008-09-13 20:26:01 +02001155 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001156 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001157
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001158 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1159 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001160 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001161
Tejun Heo52d9e672006-01-06 09:49:58 +01001162 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001163 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001164 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001165 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001166}
1167
Jens Axboe644b2d92009-04-06 14:48:06 +02001168/*
1169 * Only disabling plugging for non-rotational devices if it does tagging
1170 * as well, otherwise we do need the proper merging
1171 */
1172static inline bool queue_should_plug(struct request_queue *q)
1173{
Jens Axboe79da06442010-02-23 08:40:43 +01001174 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001175}
1176
Jens Axboe165125e2007-07-24 09:28:11 +02001177static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Nick Piggin450991b2005-06-28 20:45:13 -07001179 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001180 int el_ret;
1181 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001182 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001183 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1184 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1185 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001186 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001187 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
1190 * low level driver can indicate that it wants pages above a
1191 * certain limit bounced to low memory (ie for highmem, or even
1192 * ISA dma in theory)
1193 */
1194 blk_queue_bounce(q, &bio);
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 spin_lock_irq(q->queue_lock);
1197
Tejun Heo4fed9472010-09-03 11:56:17 +02001198 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heoae1b1532011-01-25 12:43:54 +01001199 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001200 goto get_rq;
1201 }
1202
1203 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 goto get_rq;
1205
1206 el_ret = elv_merge(q, &req, bio);
1207 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001208 case ELEVATOR_BACK_MERGE:
1209 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Jens Axboe6728cb02008-01-31 13:03:55 +01001211 if (!ll_back_merge_fn(q, req, bio))
1212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001214 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001215
Tejun Heo80a761f2009-07-03 17:48:17 +09001216 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1217 blk_rq_set_mixed_merge(req);
1218
Jens Axboe6728cb02008-01-31 13:03:55 +01001219 req->biotail->bi_next = bio;
1220 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001221 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001222 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001223 if (!blk_rq_cpu_valid(req))
1224 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001225 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001226 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001227 if (!attempt_back_merge(q, req))
1228 elv_merged_request(q, req, el_ret);
1229 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Jens Axboe6728cb02008-01-31 13:03:55 +01001231 case ELEVATOR_FRONT_MERGE:
1232 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Jens Axboe6728cb02008-01-31 13:03:55 +01001234 if (!ll_front_merge_fn(q, req, bio))
1235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001237 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001238
Tejun Heo80a761f2009-07-03 17:48:17 +09001239 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1240 blk_rq_set_mixed_merge(req);
1241 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1242 req->cmd_flags |= ff;
1243 }
1244
Jens Axboe6728cb02008-01-31 13:03:55 +01001245 bio->bi_next = req->bio;
1246 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Jens Axboe6728cb02008-01-31 13:03:55 +01001248 /*
1249 * may not be valid. if the low level driver said
1250 * it didn't need a bounce buffer then it better
1251 * not touch req->buffer either...
1252 */
1253 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001254 req->__sector = bio->bi_sector;
1255 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001256 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001257 if (!blk_rq_cpu_valid(req))
1258 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001259 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001260 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001261 if (!attempt_front_merge(q, req))
1262 elv_merged_request(q, req, el_ret);
1263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Jens Axboe6728cb02008-01-31 13:03:55 +01001265 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1266 default:
1267 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001271 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001272 * This sync check and mask will be re-done in init_request_from_bio(),
1273 * but we need to set it earlier to expose the sync flag to the
1274 * rq allocator and io schedulers.
1275 */
1276 rw_flags = bio_data_dir(bio);
1277 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001278 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001279
1280 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001281 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001282 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001283 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001284 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001285
Nick Piggin450991b2005-06-28 20:45:13 -07001286 /*
1287 * After dropping the lock and possibly sleeping here, our request
1288 * may now be mergeable after it had proven unmergeable (above).
1289 * We don't worry about that case for efficiency. It won't happen
1290 * often, and the elevators are able to handle it.
1291 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001292 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Nick Piggin450991b2005-06-28 20:45:13 -07001294 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001295 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1296 bio_flagged(bio, BIO_CPU_AFFINE))
1297 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001298 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001299 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001300
1301 /* insert the request into the elevator */
1302 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001303 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001305 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 spin_unlock_irq(q->queue_lock);
1308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311/*
1312 * If bio->bi_dev is a partition, remap the location
1313 */
1314static inline void blk_partition_remap(struct bio *bio)
1315{
1316 struct block_device *bdev = bio->bi_bdev;
1317
Jens Axboebf2de6f2007-09-27 13:01:25 +02001318 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 bio->bi_sector += p->start_sect;
1322 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001323
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001324 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001325 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001326 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330static void handle_bad_sector(struct bio *bio)
1331{
1332 char b[BDEVNAME_SIZE];
1333
1334 printk(KERN_INFO "attempt to access beyond end of device\n");
1335 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1336 bdevname(bio->bi_bdev, b),
1337 bio->bi_rw,
1338 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001339 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 set_bit(BIO_EOF, &bio->bi_flags);
1342}
1343
Akinobu Mitac17bb492006-12-08 02:39:46 -08001344#ifdef CONFIG_FAIL_MAKE_REQUEST
1345
1346static DECLARE_FAULT_ATTR(fail_make_request);
1347
1348static int __init setup_fail_make_request(char *str)
1349{
1350 return setup_fault_attr(&fail_make_request, str);
1351}
1352__setup("fail_make_request=", setup_fail_make_request);
1353
1354static int should_fail_request(struct bio *bio)
1355{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001356 struct hd_struct *part = bio->bi_bdev->bd_part;
1357
1358 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001359 return should_fail(&fail_make_request, bio->bi_size);
1360
1361 return 0;
1362}
1363
1364static int __init fail_make_request_debugfs(void)
1365{
1366 return init_fault_attr_dentries(&fail_make_request,
1367 "fail_make_request");
1368}
1369
1370late_initcall(fail_make_request_debugfs);
1371
1372#else /* CONFIG_FAIL_MAKE_REQUEST */
1373
1374static inline int should_fail_request(struct bio *bio)
1375{
1376 return 0;
1377}
1378
1379#endif /* CONFIG_FAIL_MAKE_REQUEST */
1380
Jens Axboec07e2b42007-07-18 13:27:58 +02001381/*
1382 * Check whether this bio extends beyond the end of the device.
1383 */
1384static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1385{
1386 sector_t maxsector;
1387
1388 if (!nr_sectors)
1389 return 0;
1390
1391 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001392 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001393 if (maxsector) {
1394 sector_t sector = bio->bi_sector;
1395
1396 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1397 /*
1398 * This may well happen - the kernel calls bread()
1399 * without checking the size of the device, e.g., when
1400 * mounting a device.
1401 */
1402 handle_bad_sector(bio);
1403 return 1;
1404 }
1405 }
1406
1407 return 0;
1408}
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001411 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 * @bio: The bio describing the location in memory and on the device.
1413 *
1414 * generic_make_request() is used to make I/O requests of block
1415 * devices. It is passed a &struct bio, which describes the I/O that needs
1416 * to be done.
1417 *
1418 * generic_make_request() does not return any status. The
1419 * success/failure status of the request, along with notification of
1420 * completion, is delivered asynchronously through the bio->bi_end_io
1421 * function described (one day) else where.
1422 *
1423 * The caller of generic_make_request must make sure that bi_io_vec
1424 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1425 * set to describe the device address, and the
1426 * bi_end_io and optionally bi_private are set to describe how
1427 * completion notification should be signaled.
1428 *
1429 * generic_make_request and the drivers it calls may use bi_next if this
1430 * bio happens to be merged with someone else, and may change bi_dev and
1431 * bi_sector for remaps as it sees fit. So the values of these fields
1432 * should NOT be depended on after the call to generic_make_request.
1433 */
Neil Brownd89d8792007-05-01 09:53:42 +02001434static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Jens Axboe165125e2007-07-24 09:28:11 +02001436 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001437 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001439 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001440 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Jens Axboec07e2b42007-07-18 13:27:58 +02001444 if (bio_check_eod(bio, nr_sectors))
1445 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 /*
1448 * Resolve the mapping until finished. (drivers are
1449 * still free to implement/resolve their own stacking
1450 * by explicitly returning 0)
1451 *
1452 * NOTE: we don't repeat the blk_size check for each new device.
1453 * Stacking drivers are expected to know what they are doing.
1454 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001455 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001456 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 do {
1458 char b[BDEVNAME_SIZE];
1459
1460 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001461 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 printk(KERN_ERR
1463 "generic_make_request: Trying to access "
1464 "nonexistent block-device %s (%Lu)\n",
1465 bdevname(bio->bi_bdev, b),
1466 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001467 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001470 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001471 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001472 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001473 bdevname(bio->bi_bdev, b),
1474 bio_sectors(bio),
1475 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto end_io;
1477 }
1478
Nick Pigginfde6ad22005-06-23 00:08:53 -07001479 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 goto end_io;
1481
Akinobu Mitac17bb492006-12-08 02:39:46 -08001482 if (should_fail_request(bio))
1483 goto end_io;
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 /*
1486 * If this device has partitions, remap block n
1487 * of partition p to block n+start(p) of the disk.
1488 */
1489 blk_partition_remap(bio);
1490
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001491 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1492 goto end_io;
1493
NeilBrown5ddfe962006-10-30 22:07:21 -08001494 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001495 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001496
NeilBrown5ddfe962006-10-30 22:07:21 -08001497 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001498 old_dev = bio->bi_bdev->bd_dev;
1499
Jens Axboec07e2b42007-07-18 13:27:58 +02001500 if (bio_check_eod(bio, nr_sectors))
1501 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001502
Tejun Heo1e879012010-09-03 11:56:17 +02001503 /*
1504 * Filter flush bio's early so that make_request based
1505 * drivers without flush support don't have to worry
1506 * about them.
1507 */
1508 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1509 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1510 if (!nr_sectors) {
1511 err = 0;
1512 goto end_io;
1513 }
1514 }
1515
Adrian Hunter8d57a982010-08-11 14:17:49 -07001516 if ((bio->bi_rw & REQ_DISCARD) &&
1517 (!blk_queue_discard(q) ||
1518 ((bio->bi_rw & REQ_SECURE) &&
1519 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001520 err = -EOPNOTSUPP;
1521 goto end_io;
1522 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001523
Vivek Goyale43473b2010-09-15 17:06:35 -04001524 blk_throtl_bio(q, &bio);
1525
1526 /*
1527 * If bio = NULL, bio has been throttled and will be submitted
1528 * later.
1529 */
1530 if (!bio)
1531 break;
1532
Minchan Kim01edede2009-09-08 21:56:38 +02001533 trace_block_bio_queue(q, bio);
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 ret = q->make_request_fn(q, bio);
1536 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001537
1538 return;
1539
1540end_io:
1541 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Neil Brownd89d8792007-05-01 09:53:42 +02001544/*
1545 * We only want one ->make_request_fn to be active at a time,
1546 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001547 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001548 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001549 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001550 * generic_make_request is currently active in this task or not.
1551 * If it is NULL, then no make_request is active. If it is non-NULL,
1552 * then a make_request is active, and new requests should be added
1553 * at the tail
1554 */
1555void generic_make_request(struct bio *bio)
1556{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001557 struct bio_list bio_list_on_stack;
1558
1559 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001560 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001561 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001562 return;
1563 }
1564 /* following loop may be a bit non-obvious, and so deserves some
1565 * explanation.
1566 * Before entering the loop, bio->bi_next is NULL (as all callers
1567 * ensure that) so we have a list with a single bio.
1568 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001569 * we assign bio_list to a pointer to the bio_list_on_stack,
1570 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001571 * added. __generic_make_request may indeed add some more bios
1572 * through a recursive call to generic_make_request. If it
1573 * did, we find a non-NULL value in bio_list and re-enter the loop
1574 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001575 * of the top of the list (no pretending) and so remove it from
1576 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001577 *
1578 * The loop was structured like this to make only one call to
1579 * __generic_make_request (which is important as it is large and
1580 * inlined) and to keep the structure simple.
1581 */
1582 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001583 bio_list_init(&bio_list_on_stack);
1584 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001585 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001586 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001587 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001588 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001589 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001590}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591EXPORT_SYMBOL(generic_make_request);
1592
1593/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001594 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1596 * @bio: The &struct bio which describes the I/O
1597 *
1598 * submit_bio() is very similar in purpose to generic_make_request(), and
1599 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001600 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 *
1602 */
1603void submit_bio(int rw, struct bio *bio)
1604{
1605 int count = bio_sectors(bio);
1606
Jens Axboe22e2c502005-06-27 10:55:12 +02001607 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Jens Axboebf2de6f2007-09-27 13:01:25 +02001609 /*
1610 * If it's a regular read/write or a barrier with data attached,
1611 * go through the normal accounting stuff before submission.
1612 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001613 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001614 if (rw & WRITE) {
1615 count_vm_events(PGPGOUT, count);
1616 } else {
1617 task_io_account_read(bio->bi_size);
1618 count_vm_events(PGPGIN, count);
1619 }
1620
1621 if (unlikely(block_dump)) {
1622 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001623 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001624 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001625 (rw & WRITE) ? "WRITE" : "READ",
1626 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001627 bdevname(bio->bi_bdev, b),
1628 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631
1632 generic_make_request(bio);
1633}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634EXPORT_SYMBOL(submit_bio);
1635
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001636/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001637 * blk_rq_check_limits - Helper function to check a request for the queue limit
1638 * @q: the queue
1639 * @rq: the request being checked
1640 *
1641 * Description:
1642 * @rq may have been made based on weaker limitations of upper-level queues
1643 * in request stacking drivers, and it may violate the limitation of @q.
1644 * Since the block layer and the underlying device driver trust @rq
1645 * after it is inserted to @q, it should be checked against @q before
1646 * the insertion using this generic function.
1647 *
1648 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001649 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001650 * Request stacking drivers like request-based dm may change the queue
1651 * limits while requests are in the queue (e.g. dm's table swapping).
1652 * Such request stacking drivers should check those requests agaist
1653 * the new queue limits again when they dispatch those requests,
1654 * although such checkings are also done against the old queue limits
1655 * when submitting requests.
1656 */
1657int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1658{
ike Snitzer33839772010-08-08 12:11:33 -04001659 if (rq->cmd_flags & REQ_DISCARD)
1660 return 0;
1661
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001662 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1663 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001664 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1665 return -EIO;
1666 }
1667
1668 /*
1669 * queue's settings related to segment counting like q->bounce_pfn
1670 * may differ from that of other stacking queues.
1671 * Recalculate it to check the request correctly on this queue's
1672 * limitation.
1673 */
1674 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001675 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001676 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1677 return -EIO;
1678 }
1679
1680 return 0;
1681}
1682EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1683
1684/**
1685 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1686 * @q: the queue to submit the request
1687 * @rq: the request being queued
1688 */
1689int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1690{
1691 unsigned long flags;
1692
1693 if (blk_rq_check_limits(q, rq))
1694 return -EIO;
1695
1696#ifdef CONFIG_FAIL_MAKE_REQUEST
1697 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1698 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1699 return -EIO;
1700#endif
1701
1702 spin_lock_irqsave(q->queue_lock, flags);
1703
1704 /*
1705 * Submitting request must be dequeued before calling this function
1706 * because it will be linked to another request_queue
1707 */
1708 BUG_ON(blk_queued_rq(rq));
1709
1710 drive_stat_acct(rq, 1);
1711 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1712
1713 spin_unlock_irqrestore(q->queue_lock, flags);
1714
1715 return 0;
1716}
1717EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1718
Tejun Heo80a761f2009-07-03 17:48:17 +09001719/**
1720 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1721 * @rq: request to examine
1722 *
1723 * Description:
1724 * A request could be merge of IOs which require different failure
1725 * handling. This function determines the number of bytes which
1726 * can be failed from the beginning of the request without
1727 * crossing into area which need to be retried further.
1728 *
1729 * Return:
1730 * The number of bytes to fail.
1731 *
1732 * Context:
1733 * queue_lock must be held.
1734 */
1735unsigned int blk_rq_err_bytes(const struct request *rq)
1736{
1737 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1738 unsigned int bytes = 0;
1739 struct bio *bio;
1740
1741 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1742 return blk_rq_bytes(rq);
1743
1744 /*
1745 * Currently the only 'mixing' which can happen is between
1746 * different fastfail types. We can safely fail portions
1747 * which have all the failfast bits that the first one has -
1748 * the ones which are at least as eager to fail as the first
1749 * one.
1750 */
1751 for (bio = rq->bio; bio; bio = bio->bi_next) {
1752 if ((bio->bi_rw & ff) != ff)
1753 break;
1754 bytes += bio->bi_size;
1755 }
1756
1757 /* this could lead to infinite loop */
1758 BUG_ON(blk_rq_bytes(rq) && !bytes);
1759 return bytes;
1760}
1761EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1762
Jens Axboebc58ba92009-01-23 10:54:44 +01001763static void blk_account_io_completion(struct request *req, unsigned int bytes)
1764{
Jens Axboec2553b52009-04-24 08:10:11 +02001765 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001766 const int rw = rq_data_dir(req);
1767 struct hd_struct *part;
1768 int cpu;
1769
1770 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001771 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001772 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1773 part_stat_unlock();
1774 }
1775}
1776
1777static void blk_account_io_done(struct request *req)
1778{
Jens Axboebc58ba92009-01-23 10:54:44 +01001779 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001780 * Account IO completion. flush_rq isn't accounted as a
1781 * normal IO on queueing nor completion. Accounting the
1782 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001783 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001784 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001785 unsigned long duration = jiffies - req->start_time;
1786 const int rw = rq_data_dir(req);
1787 struct hd_struct *part;
1788 int cpu;
1789
1790 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001791 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001792
1793 part_stat_inc(cpu, part, ios[rw]);
1794 part_stat_add(cpu, part, ticks[rw], duration);
1795 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001796 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001797
1798 part_stat_unlock();
1799 }
1800}
1801
Tejun Heo53a08802008-12-03 12:41:26 +01001802/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001803 * blk_peek_request - peek at the top of a request queue
1804 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001805 *
1806 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001807 * Return the request at the top of @q. The returned request
1808 * should be started using blk_start_request() before LLD starts
1809 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001810 *
1811 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001812 * Pointer to the request at the top of @q if available. Null
1813 * otherwise.
1814 *
1815 * Context:
1816 * queue_lock must be held.
1817 */
1818struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001819{
1820 struct request *rq;
1821 int ret;
1822
1823 while ((rq = __elv_next_request(q)) != NULL) {
1824 if (!(rq->cmd_flags & REQ_STARTED)) {
1825 /*
1826 * This is the first time the device driver
1827 * sees this request (possibly after
1828 * requeueing). Notify IO scheduler.
1829 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001830 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001831 elv_activate_rq(q, rq);
1832
1833 /*
1834 * just mark as started even if we don't start
1835 * it, a request that has been delayed should
1836 * not be passed by new incoming requests
1837 */
1838 rq->cmd_flags |= REQ_STARTED;
1839 trace_block_rq_issue(q, rq);
1840 }
1841
1842 if (!q->boundary_rq || q->boundary_rq == rq) {
1843 q->end_sector = rq_end_sector(rq);
1844 q->boundary_rq = NULL;
1845 }
1846
1847 if (rq->cmd_flags & REQ_DONTPREP)
1848 break;
1849
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001850 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001851 /*
1852 * make sure space for the drain appears we
1853 * know we can do this because max_hw_segments
1854 * has been adjusted to be one fewer than the
1855 * device can handle
1856 */
1857 rq->nr_phys_segments++;
1858 }
1859
1860 if (!q->prep_rq_fn)
1861 break;
1862
1863 ret = q->prep_rq_fn(q, rq);
1864 if (ret == BLKPREP_OK) {
1865 break;
1866 } else if (ret == BLKPREP_DEFER) {
1867 /*
1868 * the request may have been (partially) prepped.
1869 * we need to keep this request in the front to
1870 * avoid resource deadlock. REQ_STARTED will
1871 * prevent other fs requests from passing this one.
1872 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001873 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001874 !(rq->cmd_flags & REQ_DONTPREP)) {
1875 /*
1876 * remove the space for the drain we added
1877 * so that we don't add it again
1878 */
1879 --rq->nr_phys_segments;
1880 }
1881
1882 rq = NULL;
1883 break;
1884 } else if (ret == BLKPREP_KILL) {
1885 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001886 /*
1887 * Mark this request as started so we don't trigger
1888 * any debug logic in the end I/O path.
1889 */
1890 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001891 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001892 } else {
1893 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1894 break;
1895 }
1896 }
1897
1898 return rq;
1899}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001900EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001901
Tejun Heo9934c8c2009-05-08 11:54:16 +09001902void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001903{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001904 struct request_queue *q = rq->q;
1905
Tejun Heo158dbda2009-04-23 11:05:18 +09001906 BUG_ON(list_empty(&rq->queuelist));
1907 BUG_ON(ELV_ON_HASH(rq));
1908
1909 list_del_init(&rq->queuelist);
1910
1911 /*
1912 * the time frame between a request being removed from the lists
1913 * and to it is freed is accounted as io that is in progress at
1914 * the driver side.
1915 */
Divyesh Shah91952912010-04-01 15:01:41 -07001916 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001917 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001918 set_io_start_time_ns(rq);
1919 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001920}
1921
Tejun Heo5efccd12009-04-23 11:05:18 +09001922/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001923 * blk_start_request - start request processing on the driver
1924 * @req: request to dequeue
1925 *
1926 * Description:
1927 * Dequeue @req and start timeout timer on it. This hands off the
1928 * request to the driver.
1929 *
1930 * Block internal functions which don't want to start timer should
1931 * call blk_dequeue_request().
1932 *
1933 * Context:
1934 * queue_lock must be held.
1935 */
1936void blk_start_request(struct request *req)
1937{
1938 blk_dequeue_request(req);
1939
1940 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001941 * We are now handing the request to the hardware, initialize
1942 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001943 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001944 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001945 if (unlikely(blk_bidi_rq(req)))
1946 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1947
Tejun Heo9934c8c2009-05-08 11:54:16 +09001948 blk_add_timer(req);
1949}
1950EXPORT_SYMBOL(blk_start_request);
1951
1952/**
1953 * blk_fetch_request - fetch a request from a request queue
1954 * @q: request queue to fetch a request from
1955 *
1956 * Description:
1957 * Return the request at the top of @q. The request is started on
1958 * return and LLD can start processing it immediately.
1959 *
1960 * Return:
1961 * Pointer to the request at the top of @q if available. Null
1962 * otherwise.
1963 *
1964 * Context:
1965 * queue_lock must be held.
1966 */
1967struct request *blk_fetch_request(struct request_queue *q)
1968{
1969 struct request *rq;
1970
1971 rq = blk_peek_request(q);
1972 if (rq)
1973 blk_start_request(rq);
1974 return rq;
1975}
1976EXPORT_SYMBOL(blk_fetch_request);
1977
1978/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001979 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001980 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001981 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001982 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001983 *
1984 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001985 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1986 * the request structure even if @req doesn't have leftover.
1987 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001988 *
1989 * This special helper function is only for request stacking drivers
1990 * (e.g. request-based dm) so that they can handle partial completion.
1991 * Actual device drivers should use blk_end_request instead.
1992 *
1993 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1994 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001995 *
1996 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001997 * %false - this request doesn't have any more data
1998 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001999 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002000bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002002 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 struct bio *bio;
2004
Tejun Heo2e60e022009-04-23 11:05:18 +09002005 if (!req->bio)
2006 return false;
2007
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002008 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002011 * For fs requests, rq is just carrier of independent bio's
2012 * and each partial completion should be handled separately.
2013 * Reset per-request error on each partial completion.
2014 *
2015 * TODO: tj: This is too subtle. It would be better to let
2016 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002018 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 req->errors = 0;
2020
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002021 if (error && req->cmd_type == REQ_TYPE_FS &&
2022 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002023 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002025 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027
Jens Axboebc58ba92009-01-23 10:54:44 +01002028 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 total_bytes = bio_nbytes = 0;
2031 while ((bio = req->bio) != NULL) {
2032 int nbytes;
2033
2034 if (nr_bytes >= bio->bi_size) {
2035 req->bio = bio->bi_next;
2036 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002037 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 next_idx = 0;
2039 bio_nbytes = 0;
2040 } else {
2041 int idx = bio->bi_idx + next_idx;
2042
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002043 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002045 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002046 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 break;
2048 }
2049
2050 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2051 BIO_BUG_ON(nbytes > bio->bi_size);
2052
2053 /*
2054 * not a complete bvec done
2055 */
2056 if (unlikely(nbytes > nr_bytes)) {
2057 bio_nbytes += nr_bytes;
2058 total_bytes += nr_bytes;
2059 break;
2060 }
2061
2062 /*
2063 * advance to the next vector
2064 */
2065 next_idx++;
2066 bio_nbytes += nbytes;
2067 }
2068
2069 total_bytes += nbytes;
2070 nr_bytes -= nbytes;
2071
Jens Axboe6728cb02008-01-31 13:03:55 +01002072 bio = req->bio;
2073 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /*
2075 * end more in this run, or just return 'not-done'
2076 */
2077 if (unlikely(nr_bytes <= 0))
2078 break;
2079 }
2080 }
2081
2082 /*
2083 * completely done
2084 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002085 if (!req->bio) {
2086 /*
2087 * Reset counters so that the request stacking driver
2088 * can find how many bytes remain in the request
2089 * later.
2090 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002091 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002092 return false;
2093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 /*
2096 * if the request wasn't completed, update state
2097 */
2098 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002099 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 bio->bi_idx += next_idx;
2101 bio_iovec(bio)->bv_offset += nr_bytes;
2102 bio_iovec(bio)->bv_len -= nr_bytes;
2103 }
2104
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002105 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002106 req->buffer = bio_data(req->bio);
2107
2108 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002109 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002110 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002111
Tejun Heo80a761f2009-07-03 17:48:17 +09002112 /* mixed attributes always follow the first bio */
2113 if (req->cmd_flags & REQ_MIXED_MERGE) {
2114 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2115 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2116 }
2117
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002118 /*
2119 * If total number of sectors is less than the first segment
2120 * size, something has gone terribly wrong.
2121 */
2122 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2123 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002124 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002125 }
2126
2127 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002129
Tejun Heo2e60e022009-04-23 11:05:18 +09002130 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
Tejun Heo2e60e022009-04-23 11:05:18 +09002132EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Tejun Heo2e60e022009-04-23 11:05:18 +09002134static bool blk_update_bidi_request(struct request *rq, int error,
2135 unsigned int nr_bytes,
2136 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002137{
Tejun Heo2e60e022009-04-23 11:05:18 +09002138 if (blk_update_request(rq, error, nr_bytes))
2139 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002140
Tejun Heo2e60e022009-04-23 11:05:18 +09002141 /* Bidi request must be completed as a whole */
2142 if (unlikely(blk_bidi_rq(rq)) &&
2143 blk_update_request(rq->next_rq, error, bidi_bytes))
2144 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002145
Jens Axboee2e1a142010-06-09 10:42:09 +02002146 if (blk_queue_add_random(rq->q))
2147 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002148
2149 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
2151
James Bottomley28018c22010-07-01 19:49:17 +09002152/**
2153 * blk_unprep_request - unprepare a request
2154 * @req: the request
2155 *
2156 * This function makes a request ready for complete resubmission (or
2157 * completion). It happens only after all error handling is complete,
2158 * so represents the appropriate moment to deallocate any resources
2159 * that were allocated to the request in the prep_rq_fn. The queue
2160 * lock is held when calling this.
2161 */
2162void blk_unprep_request(struct request *req)
2163{
2164 struct request_queue *q = req->q;
2165
2166 req->cmd_flags &= ~REQ_DONTPREP;
2167 if (q->unprep_rq_fn)
2168 q->unprep_rq_fn(q, req);
2169}
2170EXPORT_SYMBOL_GPL(blk_unprep_request);
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172/*
2173 * queue lock must be held
2174 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002175static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002177 if (blk_rq_tagged(req))
2178 blk_queue_end_tag(req->q, req);
2179
James Bottomleyba396a62009-05-27 14:17:08 +02002180 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002182 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002183 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Mike Andersone78042e2008-10-30 02:16:20 -07002185 blk_delete_timer(req);
2186
James Bottomley28018c22010-07-01 19:49:17 +09002187 if (req->cmd_flags & REQ_DONTPREP)
2188 blk_unprep_request(req);
2189
2190
Jens Axboebc58ba92009-01-23 10:54:44 +01002191 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002194 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002195 else {
2196 if (blk_bidi_rq(req))
2197 __blk_put_request(req->next_rq->q, req->next_rq);
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201}
2202
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002203/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002204 * blk_end_bidi_request - Complete a bidi request
2205 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002206 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002207 * @nr_bytes: number of bytes to complete @rq
2208 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002209 *
2210 * Description:
2211 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002212 * Drivers that supports bidi can safely call this member for any
2213 * type of request, bidi or uni. In the later case @bidi_bytes is
2214 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002215 *
2216 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002217 * %false - we are done with this request
2218 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002219 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002220static bool blk_end_bidi_request(struct request *rq, int error,
2221 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002222{
2223 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002224 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002225
Tejun Heo2e60e022009-04-23 11:05:18 +09002226 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2227 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002228
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002229 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002230 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002231 spin_unlock_irqrestore(q->queue_lock, flags);
2232
Tejun Heo2e60e022009-04-23 11:05:18 +09002233 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002234}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002235
2236/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002237 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2238 * @rq: the request to complete
2239 * @error: %0 for success, < %0 for error
2240 * @nr_bytes: number of bytes to complete @rq
2241 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002242 *
2243 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002244 * Identical to blk_end_bidi_request() except that queue lock is
2245 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002246 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002247 * Return:
2248 * %false - we are done with this request
2249 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002250 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002251static bool __blk_end_bidi_request(struct request *rq, int error,
2252 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002253{
Tejun Heo2e60e022009-04-23 11:05:18 +09002254 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2255 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002256
Tejun Heo2e60e022009-04-23 11:05:18 +09002257 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002258
Tejun Heo2e60e022009-04-23 11:05:18 +09002259 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002260}
2261
2262/**
2263 * blk_end_request - Helper function for drivers to complete the request.
2264 * @rq: the request being processed
2265 * @error: %0 for success, < %0 for error
2266 * @nr_bytes: number of bytes to complete
2267 *
2268 * Description:
2269 * Ends I/O on a number of bytes attached to @rq.
2270 * If @rq has leftover, sets it up for the next range of segments.
2271 *
2272 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002273 * %false - we are done with this request
2274 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002275 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002276bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002277{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002278 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002279}
Jens Axboe56ad1742009-07-28 22:11:24 +02002280EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002281
2282/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002283 * blk_end_request_all - Helper function for drives to finish the request.
2284 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002285 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002286 *
2287 * Description:
2288 * Completely finish @rq.
2289 */
2290void blk_end_request_all(struct request *rq, int error)
2291{
2292 bool pending;
2293 unsigned int bidi_bytes = 0;
2294
2295 if (unlikely(blk_bidi_rq(rq)))
2296 bidi_bytes = blk_rq_bytes(rq->next_rq);
2297
2298 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2299 BUG_ON(pending);
2300}
Jens Axboe56ad1742009-07-28 22:11:24 +02002301EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002302
2303/**
2304 * blk_end_request_cur - Helper function to finish the current request chunk.
2305 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002306 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002307 *
2308 * Description:
2309 * Complete the current consecutively mapped chunk from @rq.
2310 *
2311 * Return:
2312 * %false - we are done with this request
2313 * %true - still buffers pending for this request
2314 */
2315bool blk_end_request_cur(struct request *rq, int error)
2316{
2317 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2318}
Jens Axboe56ad1742009-07-28 22:11:24 +02002319EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002320
2321/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002322 * blk_end_request_err - Finish a request till the next failure boundary.
2323 * @rq: the request to finish till the next failure boundary for
2324 * @error: must be negative errno
2325 *
2326 * Description:
2327 * Complete @rq till the next failure boundary.
2328 *
2329 * Return:
2330 * %false - we are done with this request
2331 * %true - still buffers pending for this request
2332 */
2333bool blk_end_request_err(struct request *rq, int error)
2334{
2335 WARN_ON(error >= 0);
2336 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2337}
2338EXPORT_SYMBOL_GPL(blk_end_request_err);
2339
2340/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002341 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002342 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002343 * @error: %0 for success, < %0 for error
2344 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002345 *
2346 * Description:
2347 * Must be called with queue lock held unlike blk_end_request().
2348 *
2349 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002350 * %false - we are done with this request
2351 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002352 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002353bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002354{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002355 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002356}
Jens Axboe56ad1742009-07-28 22:11:24 +02002357EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002358
2359/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002360 * __blk_end_request_all - Helper function for drives to finish the request.
2361 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002362 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002363 *
2364 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002365 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002366 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002367void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002368{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002369 bool pending;
2370 unsigned int bidi_bytes = 0;
2371
2372 if (unlikely(blk_bidi_rq(rq)))
2373 bidi_bytes = blk_rq_bytes(rq->next_rq);
2374
2375 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2376 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002377}
Jens Axboe56ad1742009-07-28 22:11:24 +02002378EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002379
2380/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002381 * __blk_end_request_cur - Helper function to finish the current request chunk.
2382 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002383 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002384 *
2385 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002386 * Complete the current consecutively mapped chunk from @rq. Must
2387 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002388 *
2389 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002390 * %false - we are done with this request
2391 * %true - still buffers pending for this request
2392 */
2393bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002394{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002395 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002396}
Jens Axboe56ad1742009-07-28 22:11:24 +02002397EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002398
Tejun Heo80a761f2009-07-03 17:48:17 +09002399/**
2400 * __blk_end_request_err - Finish a request till the next failure boundary.
2401 * @rq: the request to finish till the next failure boundary for
2402 * @error: must be negative errno
2403 *
2404 * Description:
2405 * Complete @rq till the next failure boundary. Must be called
2406 * with queue lock held.
2407 *
2408 * Return:
2409 * %false - we are done with this request
2410 * %true - still buffers pending for this request
2411 */
2412bool __blk_end_request_err(struct request *rq, int error)
2413{
2414 WARN_ON(error >= 0);
2415 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2416}
2417EXPORT_SYMBOL_GPL(__blk_end_request_err);
2418
Jens Axboe86db1e22008-01-29 14:53:40 +01002419void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2420 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002422 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002423 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
David Woodhousefb2dce82008-08-05 18:01:53 +01002425 if (bio_has_data(bio)) {
2426 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002427 rq->buffer = bio_data(bio);
2428 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002429 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
NeilBrown66846572007-08-16 13:31:28 +02002432 if (bio->bi_bdev)
2433 rq->rq_disk = bio->bi_bdev->bd_disk;
2434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002436#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2437/**
2438 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2439 * @rq: the request to be flushed
2440 *
2441 * Description:
2442 * Flush all pages in @rq.
2443 */
2444void rq_flush_dcache_pages(struct request *rq)
2445{
2446 struct req_iterator iter;
2447 struct bio_vec *bvec;
2448
2449 rq_for_each_segment(bvec, rq, iter)
2450 flush_dcache_page(bvec->bv_page);
2451}
2452EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2453#endif
2454
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002455/**
2456 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2457 * @q : the queue of the device being checked
2458 *
2459 * Description:
2460 * Check if underlying low-level drivers of a device are busy.
2461 * If the drivers want to export their busy state, they must set own
2462 * exporting function using blk_queue_lld_busy() first.
2463 *
2464 * Basically, this function is used only by request stacking drivers
2465 * to stop dispatching requests to underlying devices when underlying
2466 * devices are busy. This behavior helps more I/O merging on the queue
2467 * of the request stacking driver and prevents I/O throughput regression
2468 * on burst I/O load.
2469 *
2470 * Return:
2471 * 0 - Not busy (The request stacking driver should dispatch request)
2472 * 1 - Busy (The request stacking driver should stop dispatching request)
2473 */
2474int blk_lld_busy(struct request_queue *q)
2475{
2476 if (q->lld_busy_fn)
2477 return q->lld_busy_fn(q);
2478
2479 return 0;
2480}
2481EXPORT_SYMBOL_GPL(blk_lld_busy);
2482
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002483/**
2484 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2485 * @rq: the clone request to be cleaned up
2486 *
2487 * Description:
2488 * Free all bios in @rq for a cloned request.
2489 */
2490void blk_rq_unprep_clone(struct request *rq)
2491{
2492 struct bio *bio;
2493
2494 while ((bio = rq->bio) != NULL) {
2495 rq->bio = bio->bi_next;
2496
2497 bio_put(bio);
2498 }
2499}
2500EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2501
2502/*
2503 * Copy attributes of the original request to the clone request.
2504 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2505 */
2506static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2507{
2508 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002509 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002510 dst->cmd_type = src->cmd_type;
2511 dst->__sector = blk_rq_pos(src);
2512 dst->__data_len = blk_rq_bytes(src);
2513 dst->nr_phys_segments = src->nr_phys_segments;
2514 dst->ioprio = src->ioprio;
2515 dst->extra_len = src->extra_len;
2516}
2517
2518/**
2519 * blk_rq_prep_clone - Helper function to setup clone request
2520 * @rq: the request to be setup
2521 * @rq_src: original request to be cloned
2522 * @bs: bio_set that bios for clone are allocated from
2523 * @gfp_mask: memory allocation mask for bio
2524 * @bio_ctr: setup function to be called for each clone bio.
2525 * Returns %0 for success, non %0 for failure.
2526 * @data: private data to be passed to @bio_ctr
2527 *
2528 * Description:
2529 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2530 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2531 * are not copied, and copying such parts is the caller's responsibility.
2532 * Also, pages which the original bios are pointing to are not copied
2533 * and the cloned bios just point same pages.
2534 * So cloned bios must be completed before original bios, which means
2535 * the caller must complete @rq before @rq_src.
2536 */
2537int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2538 struct bio_set *bs, gfp_t gfp_mask,
2539 int (*bio_ctr)(struct bio *, struct bio *, void *),
2540 void *data)
2541{
2542 struct bio *bio, *bio_src;
2543
2544 if (!bs)
2545 bs = fs_bio_set;
2546
2547 blk_rq_init(NULL, rq);
2548
2549 __rq_for_each_bio(bio_src, rq_src) {
2550 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2551 if (!bio)
2552 goto free_and_out;
2553
2554 __bio_clone(bio, bio_src);
2555
2556 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002557 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002558 goto free_and_out;
2559
2560 if (bio_ctr && bio_ctr(bio, bio_src, data))
2561 goto free_and_out;
2562
2563 if (rq->bio) {
2564 rq->biotail->bi_next = bio;
2565 rq->biotail = bio;
2566 } else
2567 rq->bio = rq->biotail = bio;
2568 }
2569
2570 __blk_rq_prep_clone(rq, rq_src);
2571
2572 return 0;
2573
2574free_and_out:
2575 if (bio)
2576 bio_free(bio, bs);
2577 blk_rq_unprep_clone(rq);
2578
2579 return -ENOMEM;
2580}
2581EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2582
Jens Axboe18887ad2008-07-28 13:08:45 +02002583int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
2585 return queue_work(kblockd_workqueue, work);
2586}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587EXPORT_SYMBOL(kblockd_schedule_work);
2588
Vivek Goyale43473b2010-09-15 17:06:35 -04002589int kblockd_schedule_delayed_work(struct request_queue *q,
2590 struct delayed_work *dwork, unsigned long delay)
2591{
2592 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2593}
2594EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596int __init blk_dev_init(void)
2597{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002598 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2599 sizeof(((struct request *)0)->cmd_flags));
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 kblockd_workqueue = create_workqueue("kblockd");
2602 if (!kblockd_workqueue)
2603 panic("Failed to create kblockd\n");
2604
2605 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002606 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Jens Axboe8324aa92008-01-29 14:51:59 +01002608 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002609 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return 0;
2612}