blob: 617bb9e40927dd4e669f576d0b4b0cd52d067022 [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{
Jens Axboe165125e2007-07-24 09:28:11 +0200137 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100138
Tejun Heo143a87f2011-01-25 12:43:52 +0100139 if (error)
140 clear_bit(BIO_UPTODATE, &bio->bi_flags);
141 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
142 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100143
Tejun Heo143a87f2011-01-25 12:43:52 +0100144 if (unlikely(nbytes > bio->bi_size)) {
145 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
146 __func__, nbytes, bio->bi_size);
147 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200148 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100149
150 if (unlikely(rq->cmd_flags & REQ_QUIET))
151 set_bit(BIO_QUIET, &bio->bi_flags);
152
153 bio->bi_size -= nbytes;
154 bio->bi_sector += (nbytes >> 9);
155
156 if (bio_integrity(bio))
157 bio_integrity_advance(bio, nbytes);
158
159 /* don't actually finish bio if it's part of flush sequence */
160 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
161 bio_endio(bio, error);
162 else if (error && !q->flush_err)
163 q->flush_err = error;
Tejun Heo797e7db2006-01-06 09:51:03 +0100164}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166void blk_dump_rq_flags(struct request *rq, char *msg)
167{
168 int bit;
169
Jens Axboe6728cb02008-01-31 13:03:55 +0100170 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200171 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
172 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Tejun Heo83096eb2009-05-07 22:24:39 +0900174 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
175 (unsigned long long)blk_rq_pos(rq),
176 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900177 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900178 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200180 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100181 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200182 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 printk("%02x ", rq->cmd[bit]);
184 printk("\n");
185 }
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187EXPORT_SYMBOL(blk_dump_rq_flags);
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
190 * "plug" the device if there are no outstanding requests: this will
191 * force the transfer to start only after we have put all the requests
192 * on the list.
193 *
194 * This is called with interrupts off and no requests on the queue and
195 * with the queue lock held.
196 */
Jens Axboe165125e2007-07-24 09:28:11 +0200197void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 WARN_ON(!irqs_disabled());
200
201 /*
202 * don't plug a stopped queue, it must be paired with blk_start_queue()
203 * which will restart the queueing
204 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200205 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return;
207
Jens Axboee48ec692008-07-03 13:18:54 +0200208 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100210 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213EXPORT_SYMBOL(blk_plug_device);
214
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200215/**
216 * blk_plug_device_unlocked - plug a device without queue lock held
217 * @q: The &struct request_queue to plug
218 *
219 * Description:
220 * Like @blk_plug_device(), but grabs the queue lock and disables
221 * interrupts.
222 **/
223void blk_plug_device_unlocked(struct request_queue *q)
224{
225 unsigned long flags;
226
227 spin_lock_irqsave(q->queue_lock, flags);
228 blk_plug_device(q);
229 spin_unlock_irqrestore(q->queue_lock, flags);
230}
231EXPORT_SYMBOL(blk_plug_device_unlocked);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/*
234 * remove the queue from the plugged list, if present. called with
235 * queue lock held and interrupts disabled.
236 */
Jens Axboe165125e2007-07-24 09:28:11 +0200237int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 WARN_ON(!irqs_disabled());
240
Jens Axboee48ec692008-07-03 13:18:54 +0200241 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243
244 del_timer(&q->unplug_timer);
245 return 1;
246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247EXPORT_SYMBOL(blk_remove_plug);
248
249/*
250 * remove the plug and let it rip..
251 */
Jens Axboe165125e2007-07-24 09:28:11 +0200252void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200254 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200256 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return;
258
Jens Axboe22e2c502005-06-27 10:55:12 +0200259 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262/**
263 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200264 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
266 * Description:
267 * Linux uses plugging to build bigger requests queues before letting
268 * the device have at them. If a queue is plugged, the I/O scheduler
269 * is still adding and merging requests on the queue. Once the queue
270 * gets unplugged, the request_fn defined for the queue is invoked and
271 * transfers started.
272 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200273void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200275 if (blk_queue_plugged(q)) {
276 spin_lock_irq(q->queue_lock);
277 __generic_unplug_device(q);
278 spin_unlock_irq(q->queue_lock);
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281EXPORT_SYMBOL(generic_unplug_device);
282
283static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
284 struct page *page)
285{
Jens Axboe165125e2007-07-24 09:28:11 +0200286 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500288 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Jens Axboe86db1e22008-01-29 14:53:40 +0100291void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Jens Axboe165125e2007-07-24 09:28:11 +0200293 struct request_queue *q =
294 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100296 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 q->unplug_fn(q);
298}
299
Jens Axboe86db1e22008-01-29 14:53:40 +0100300void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Jens Axboe165125e2007-07-24 09:28:11 +0200302 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100304 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200305 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500308void blk_unplug(struct request_queue *q)
309{
310 /*
311 * devices don't necessarily have an ->unplug_fn defined
312 */
313 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100314 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500315 q->unplug_fn(q);
316 }
317}
318EXPORT_SYMBOL(blk_unplug);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/**
321 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200322 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 *
324 * Description:
325 * blk_start_queue() will clear the stop flag on the queue, and call
326 * the request_fn for the queue if it was in a stopped state when
327 * entered. Also see blk_stop_queue(). Queue lock must be held.
328 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200329void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200331 WARN_ON(!irqs_disabled());
332
Nick Piggin75ad23b2008-04-29 14:48:33 +0200333 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900334 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336EXPORT_SYMBOL(blk_start_queue);
337
338/**
339 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200340 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 *
342 * Description:
343 * The Linux block layer assumes that a block driver will consume all
344 * entries on the request queue when the request_fn strategy is called.
345 * Often this will not happen, because of hardware limitations (queue
346 * depth settings). If a device driver gets a 'queue full' response,
347 * or if it simply chooses not to queue more I/O at one point, it can
348 * call this function to prevent the request_fn from being called until
349 * the driver has signalled it's ready to go again. This happens by calling
350 * blk_start_queue() to restart queue operations. Queue lock must be held.
351 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200352void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200355 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357EXPORT_SYMBOL(blk_stop_queue);
358
359/**
360 * blk_sync_queue - cancel any pending callbacks on a queue
361 * @q: the queue
362 *
363 * Description:
364 * The block layer may perform asynchronous callback activity
365 * on a queue, such as calling the unplug function after a timeout.
366 * A block device may call blk_sync_queue to ensure that any
367 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200368 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * that its ->make_request_fn will not re-add plugging prior to calling
370 * this function.
371 *
372 */
373void blk_sync_queue(struct request_queue *q)
374{
375 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100376 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100377 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400378 throtl_shutdown_timer_wq(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380EXPORT_SYMBOL(blk_sync_queue);
381
382/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200383 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200385 *
386 * Description:
387 * See @blk_run_queue. This variant must be called with the queue lock
388 * held and interrupts disabled.
389 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200391void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200394
Tejun Heoa538cd02009-04-23 11:05:17 +0900395 if (unlikely(blk_queue_stopped(q)))
396 return;
397
398 if (elv_queue_empty(q))
399 return;
400
Jens Axboedac07ec2006-05-11 08:20:16 +0200401 /*
402 * Only recurse once to avoid overrunning the stack, let the unplug
403 * handling reinvoke the handler shortly if we already got there.
404 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900405 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
406 q->request_fn(q);
407 queue_flag_clear(QUEUE_FLAG_REENTER, q);
408 } else {
409 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
410 kblockd_schedule_work(q, &q->unplug_work);
411 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200412}
413EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200414
Nick Piggin75ad23b2008-04-29 14:48:33 +0200415/**
416 * blk_run_queue - run a single device queue
417 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200418 *
419 * Description:
420 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900421 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200422 */
423void blk_run_queue(struct request_queue *q)
424{
425 unsigned long flags;
426
427 spin_lock_irqsave(q->queue_lock, flags);
428 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 spin_unlock_irqrestore(q->queue_lock, flags);
430}
431EXPORT_SYMBOL(blk_run_queue);
432
Jens Axboe165125e2007-07-24 09:28:11 +0200433void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500434{
435 kobject_put(&q->kobj);
436}
Al Viro483f4af2006-03-18 18:34:37 -0500437
Jens Axboe6728cb02008-01-31 13:03:55 +0100438void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500439{
Jens Axboee3335de92008-09-18 09:22:54 -0700440 /*
441 * We know we have process context here, so we can be a little
442 * cautious and ensure that pending block actions on this device
443 * are done before moving on. Going into this function, we should
444 * not have processes doing IO to this device.
445 */
446 blk_sync_queue(q);
447
Matthew Garrett31373d02010-04-06 14:25:14 +0200448 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500449 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200450 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500451 mutex_unlock(&q->sysfs_lock);
452
453 if (q->elevator)
454 elevator_exit(q->elevator);
455
456 blk_put_queue(q);
457}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458EXPORT_SYMBOL(blk_cleanup_queue);
459
Jens Axboe165125e2007-07-24 09:28:11 +0200460static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct request_list *rl = &q->rq;
463
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400464 if (unlikely(rl->rq_pool))
465 return 0;
466
Jens Axboe1faa16d2009-04-06 14:48:01 +0200467 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
468 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200469 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200470 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
471 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Christoph Lameter19460892005-06-23 00:08:19 -0700473 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
474 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (!rl->rq_pool)
477 return -ENOMEM;
478
479 return 0;
480}
481
Jens Axboe165125e2007-07-24 09:28:11 +0200482struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christoph Lameter19460892005-06-23 00:08:19 -0700484 return blk_alloc_queue_node(gfp_mask, -1);
485}
486EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jens Axboe165125e2007-07-24 09:28:11 +0200488struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700489{
Jens Axboe165125e2007-07-24 09:28:11 +0200490 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700491 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700492
Jens Axboe8324aa92008-01-29 14:51:59 +0100493 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700494 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (!q)
496 return NULL;
497
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700498 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
499 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200500 q->backing_dev_info.ra_pages =
501 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
502 q->backing_dev_info.state = 0;
503 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200504 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200505
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700506 err = bdi_init(&q->backing_dev_info);
507 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100508 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700509 return NULL;
510 }
511
Vivek Goyale43473b2010-09-15 17:06:35 -0400512 if (blk_throtl_init(q)) {
513 kmem_cache_free(blk_requestq_cachep, q);
514 return NULL;
515 }
516
Matthew Garrett31373d02010-04-06 14:25:14 +0200517 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
518 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700520 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
521 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heodd4c1332010-09-03 11:56:16 +0200522 INIT_LIST_HEAD(&q->pending_flushes);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200523 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500524
Jens Axboe8324aa92008-01-29 14:51:59 +0100525 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Al Viro483f4af2006-03-18 18:34:37 -0500527 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700528 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return q;
531}
Christoph Lameter19460892005-06-23 00:08:19 -0700532EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534/**
535 * blk_init_queue - prepare a request queue for use with a block device
536 * @rfn: The function to be called to process requests that have been
537 * placed on the queue.
538 * @lock: Request queue spin lock
539 *
540 * Description:
541 * If a block device wishes to use the standard request handling procedures,
542 * which sorts requests and coalesces adjacent requests, then it must
543 * call blk_init_queue(). The function @rfn will be called when there
544 * are requests on the queue that need to be processed. If the device
545 * supports plugging, then @rfn may not be called immediately when requests
546 * are available on the queue, but may be called at some time later instead.
547 * Plugged queues are generally unplugged when a buffer belonging to one
548 * of the requests on the queue is needed, or due to memory pressure.
549 *
550 * @rfn is not required, or even expected, to remove all requests off the
551 * queue, but only as many as it can handle at a time. If it does leave
552 * requests on the queue, it is responsible for arranging that the requests
553 * get dealt with eventually.
554 *
555 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200556 * request queue; this lock will be taken also from interrupt context, so irq
557 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200559 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * it didn't succeed.
561 *
562 * Note:
563 * blk_init_queue() must be paired with a blk_cleanup_queue() call
564 * when the block device is deactivated (such as at module unload).
565 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700566
Jens Axboe165125e2007-07-24 09:28:11 +0200567struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Christoph Lameter19460892005-06-23 00:08:19 -0700569 return blk_init_queue_node(rfn, lock, -1);
570}
571EXPORT_SYMBOL(blk_init_queue);
572
Jens Axboe165125e2007-07-24 09:28:11 +0200573struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700574blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
575{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600576 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600578 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
579 if (!uninit_q)
580 return NULL;
581
582 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
583 if (!q)
584 blk_cleanup_queue(uninit_q);
585
586 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200587}
588EXPORT_SYMBOL(blk_init_queue_node);
589
590struct request_queue *
591blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
592 spinlock_t *lock)
593{
594 return blk_init_allocated_queue_node(q, rfn, lock, -1);
595}
596EXPORT_SYMBOL(blk_init_allocated_queue);
597
598struct request_queue *
599blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
600 spinlock_t *lock, int node_id)
601{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!q)
603 return NULL;
604
Christoph Lameter19460892005-06-23 00:08:19 -0700605 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600606 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500607 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900611 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100613 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 q->queue_lock = lock;
615
Jens Axboef3b144a2009-03-06 08:48:33 +0100616 /*
617 * This also sets hw/phys segments, boundary and size
618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Alan Stern44ec9542007-02-20 11:01:57 -0500621 q->sg_reserved_size = INT_MAX;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /*
624 * all done
625 */
626 if (!elevator_init(q, NULL)) {
627 blk_queue_congestion_threshold(q);
628 return q;
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return NULL;
632}
Mike Snitzer01effb02010-05-11 08:57:42 +0200633EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Jens Axboe165125e2007-07-24 09:28:11 +0200635int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700637 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500638 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640 }
641
642 return 1;
643}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jens Axboe165125e2007-07-24 09:28:11 +0200645static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200647 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200648 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 mempool_free(rq, q->rq.rq_pool);
650}
651
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200652static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200653blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
656
657 if (!rq)
658 return NULL;
659
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200660 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200661
Jerome Marchand42dad762009-04-22 14:01:49 +0200662 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Tejun Heocb98fc82005-10-28 08:29:39 +0200664 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200665 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200666 mempool_free(rq, q->rq.rq_pool);
667 return NULL;
668 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200669 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Tejun Heocb98fc82005-10-28 08:29:39 +0200672 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/*
676 * ioc_batching returns true if the ioc is a valid batching request and
677 * should be given priority access to a request.
678 */
Jens Axboe165125e2007-07-24 09:28:11 +0200679static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 if (!ioc)
682 return 0;
683
684 /*
685 * Make sure the process is able to allocate at least 1 request
686 * even if the batch times out, otherwise we could theoretically
687 * lose wakeups.
688 */
689 return ioc->nr_batch_requests == q->nr_batching ||
690 (ioc->nr_batch_requests > 0
691 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
692}
693
694/*
695 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
696 * will cause the process to be a "batcher" on all queues in the system. This
697 * is the behaviour we want though - once it gets a wakeup it should be given
698 * a nice run.
699 */
Jens Axboe165125e2007-07-24 09:28:11 +0200700static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 if (!ioc || ioc_batching(q, ioc))
703 return;
704
705 ioc->nr_batch_requests = q->nr_batching;
706 ioc->last_waited = jiffies;
707}
708
Jens Axboe1faa16d2009-04-06 14:48:01 +0200709static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 struct request_list *rl = &q->rq;
712
Jens Axboe1faa16d2009-04-06 14:48:01 +0200713 if (rl->count[sync] < queue_congestion_off_threshold(q))
714 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Jens Axboe1faa16d2009-04-06 14:48:01 +0200716 if (rl->count[sync] + 1 <= q->nr_requests) {
717 if (waitqueue_active(&rl->wait[sync]))
718 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Jens Axboe1faa16d2009-04-06 14:48:01 +0200720 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722}
723
724/*
725 * A request has just been released. Account for it, update the full and
726 * congestion status, wake up any waiters. Called under q->queue_lock.
727 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200728static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct request_list *rl = &q->rq;
731
Jens Axboe1faa16d2009-04-06 14:48:01 +0200732 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200733 if (priv)
734 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Jens Axboe1faa16d2009-04-06 14:48:01 +0200736 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 if (unlikely(rl->starved[sync ^ 1]))
739 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742/*
Nick Piggind6344532005-06-28 20:45:14 -0700743 * Get a free request, queue_lock must be held.
744 * Returns NULL on failure, with queue_lock held.
745 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
Jens Axboe165125e2007-07-24 09:28:11 +0200747static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100748 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 struct request *rq = NULL;
751 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100752 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200753 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100754 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Jens Axboe7749a8d2006-12-13 13:02:26 +0100756 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100757 if (may_queue == ELV_MQUEUE_NO)
758 goto rq_starved;
759
Jens Axboe1faa16d2009-04-06 14:48:01 +0200760 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
761 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200762 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100763 /*
764 * The queue will fill after this allocation, so set
765 * it as full, and mark this process as "batching".
766 * This process will be allowed to complete a batch of
767 * requests, others will be blocked.
768 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200769 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100770 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200771 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100772 } else {
773 if (may_queue != ELV_MQUEUE_MUST
774 && !ioc_batching(q, ioc)) {
775 /*
776 * The queue is full and the allocating
777 * process is not a "batcher", and not
778 * exempted by the IO scheduler
779 */
780 goto out;
781 }
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200784 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Jens Axboe082cf692005-06-28 16:35:11 +0200787 /*
788 * Only allow batching queuers to allocate up to 50% over the defined
789 * limit of requests, otherwise we could have thousands of requests
790 * allocated with any setting of ->nr_requests
791 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200792 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200793 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100794
Jens Axboe1faa16d2009-04-06 14:48:01 +0200795 rl->count[is_sync]++;
796 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200797
Jens Axboe64521d12005-10-28 08:30:39 +0200798 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Jens Axboef253b862010-10-24 22:06:02 +0200799 if (priv)
Tejun Heocb98fc82005-10-28 08:29:39 +0200800 rl->elvpriv++;
801
Jens Axboef253b862010-10-24 22:06:02 +0200802 if (blk_queue_io_stat(q))
803 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 spin_unlock_irq(q->queue_lock);
805
Jens Axboe7749a8d2006-12-13 13:02:26 +0100806 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100807 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Allocation failed presumably due to memory. Undo anything
810 * we might have messed up.
811 *
812 * Allocating task should really be put onto the front of the
813 * wait queue, but this is pretty rare.
814 */
815 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200816 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 /*
819 * in the very unlikely event that allocation failed and no
820 * requests for this direction was pending, mark us starved
821 * so that freeing of a request in the other direction will
822 * notice us. another possible fix would be to split the
823 * rq mempool into READ and WRITE
824 */
825rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200826 if (unlikely(rl->count[is_sync] == 0))
827 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
830 }
831
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100832 /*
833 * ioc may be NULL here, and ioc_batching will be false. That's
834 * OK, if the queue is under the request limit then requests need
835 * not count toward the nr_batch_requests limit. There will always
836 * be some limit enforced by BLK_BATCH_TIME.
837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (ioc_batching(q, ioc))
839 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100840
Jens Axboe1faa16d2009-04-06 14:48:01 +0200841 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return rq;
844}
845
846/*
847 * No available requests for this queue, unplug the device and wait for some
848 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700849 *
850 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 */
Jens Axboe165125e2007-07-24 09:28:11 +0200852static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200853 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200855 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct request *rq;
857
Jens Axboe7749a8d2006-12-13 13:02:26 +0100858 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700859 while (!rq) {
860 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200861 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct request_list *rl = &q->rq;
863
Jens Axboe1faa16d2009-04-06 14:48:01 +0200864 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 TASK_UNINTERRUPTIBLE);
866
Jens Axboe1faa16d2009-04-06 14:48:01 +0200867 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200869 __generic_unplug_device(q);
870 spin_unlock_irq(q->queue_lock);
871 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200873 /*
874 * After sleeping, we become a "batching" process and
875 * will be able to allocate at least one request, and
876 * up to a big batch of them for a small period time.
877 * See ioc_batching, ioc_set_batching
878 */
879 ioc = current_io_context(GFP_NOIO, q->node);
880 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100881
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200882 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200883 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200884
885 rq = get_request(q, rw_flags, bio, GFP_NOIO);
886 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 return rq;
889}
890
Jens Axboe165125e2007-07-24 09:28:11 +0200891struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 struct request *rq;
894
895 BUG_ON(rw != READ && rw != WRITE);
896
Nick Piggind6344532005-06-28 20:45:14 -0700897 spin_lock_irq(q->queue_lock);
898 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200899 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700900 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200901 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700902 if (!rq)
903 spin_unlock_irq(q->queue_lock);
904 }
905 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 return rq;
908}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909EXPORT_SYMBOL(blk_get_request);
910
911/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300912 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700913 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300914 * @bio: The bio describing the memory mappings that will be submitted for IO.
915 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700916 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200917 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300918 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
919 * type commands. Where the struct request needs to be farther initialized by
920 * the caller. It is passed a &struct bio, which describes the memory info of
921 * the I/O transfer.
922 *
923 * The caller of blk_make_request must make sure that bi_io_vec
924 * are set to describe the memory buffers. That bio_data_dir() will return
925 * the needed direction of the request. (And all bio's in the passed bio-chain
926 * are properly set accordingly)
927 *
928 * If called under none-sleepable conditions, mapped bio buffers must not
929 * need bouncing, by calling the appropriate masked or flagged allocator,
930 * suitable for the target device. Otherwise the call to blk_queue_bounce will
931 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200932 *
933 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
934 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
935 * anything but the first bio in the chain. Otherwise you risk waiting for IO
936 * completion of a bio that hasn't been submitted yet, thus resulting in a
937 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
938 * of bio_alloc(), as that avoids the mempool deadlock.
939 * If possible a big IO should be split into smaller parts when allocation
940 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200941 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300942struct request *blk_make_request(struct request_queue *q, struct bio *bio,
943 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200944{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300945 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
946
947 if (unlikely(!rq))
948 return ERR_PTR(-ENOMEM);
949
950 for_each_bio(bio) {
951 struct bio *bounce_bio = bio;
952 int ret;
953
954 blk_queue_bounce(q, &bounce_bio);
955 ret = blk_rq_append_bio(q, rq, bounce_bio);
956 if (unlikely(ret)) {
957 blk_put_request(rq);
958 return ERR_PTR(ret);
959 }
960 }
961
962 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200963}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300964EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200965
966/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * blk_requeue_request - put a request back on queue
968 * @q: request queue where request should be inserted
969 * @rq: request to be inserted
970 *
971 * Description:
972 * Drivers often keep queueing requests until the hardware cannot accept
973 * more, when that condition happens we need to put the request back
974 * on the queue. Must be called with queue lock held.
975 */
Jens Axboe165125e2007-07-24 09:28:11 +0200976void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700978 blk_delete_timer(rq);
979 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100980 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (blk_rq_tagged(rq))
983 blk_queue_end_tag(q, rq);
984
James Bottomleyba396a62009-05-27 14:17:08 +0200985 BUG_ON(blk_queued_rq(rq));
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 elv_requeue_request(q, rq);
988}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989EXPORT_SYMBOL(blk_requeue_request);
990
991/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200992 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 * @q: request queue where request should be inserted
994 * @rq: request to be inserted
995 * @at_head: insert request at head or tail of queue
996 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *
998 * Description:
999 * Many block devices need to execute commands asynchronously, so they don't
1000 * block the whole kernel from preemption during request execution. This is
1001 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001002 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1003 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 *
1005 * We have the option of inserting the head or the tail of the queue.
1006 * Typically we use the tail for new ioctls and so forth. We use the head
1007 * of the queue for things like a QUEUE_FULL message from a device, or a
1008 * host that is unable to accept a particular command.
1009 */
Jens Axboe165125e2007-07-24 09:28:11 +02001010void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001011 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Tejun Heo 867d1192005-04-24 02:06:05 -05001013 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 unsigned long flags;
1015
1016 /*
1017 * tell I/O scheduler that this isn't a regular read/write (ie it
1018 * must not attempt merges on this) and that it acts as a soft
1019 * barrier
1020 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001021 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 rq->special = data;
1024
1025 spin_lock_irqsave(q->queue_lock, flags);
1026
1027 /*
1028 * If command is tagged, release the tag
1029 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001030 if (blk_rq_tagged(rq))
1031 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001033 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001034 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001035 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 spin_unlock_irqrestore(q->queue_lock, flags);
1037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038EXPORT_SYMBOL(blk_insert_request);
1039
Tejun Heo074a7ac2008-08-25 19:56:14 +09001040static void part_round_stats_single(int cpu, struct hd_struct *part,
1041 unsigned long now)
1042{
1043 if (now == part->stamp)
1044 return;
1045
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001046 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001047 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001048 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001049 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1050 }
1051 part->stamp = now;
1052}
1053
1054/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001055 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1056 * @cpu: cpu number for stats access
1057 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 *
1059 * The average IO queue length and utilisation statistics are maintained
1060 * by observing the current state of the queue length and the amount of
1061 * time it has been in this state for.
1062 *
1063 * Normally, that accounting is done on IO completion, but that can result
1064 * in more than a second's worth of IO being accounted for within any one
1065 * second, leading to >100% utilisation. To deal with that, we call this
1066 * function to do a round-off before returning the results when reading
1067 * /proc/diskstats. This accounts immediately for all queue usage up to
1068 * the current jiffies and restarts the counters again.
1069 */
Tejun Heoc9959052008-08-25 19:47:21 +09001070void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001071{
1072 unsigned long now = jiffies;
1073
Tejun Heo074a7ac2008-08-25 19:56:14 +09001074 if (part->partno)
1075 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1076 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001077}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001078EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/*
1081 * queue lock must be held
1082 */
Jens Axboe165125e2007-07-24 09:28:11 +02001083void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (unlikely(!q))
1086 return;
1087 if (unlikely(--req->ref_count))
1088 return;
1089
Tejun Heo8922e162005-10-20 16:23:44 +02001090 elv_completed_request(q, req);
1091
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001092 /* this is a bio leak */
1093 WARN_ON(req->bio != NULL);
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /*
1096 * Request may not have originated from ll_rw_blk. if not,
1097 * it didn't come out of our reserved rq pools
1098 */
Jens Axboe49171e52006-08-10 08:59:11 +02001099 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001100 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001101 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001104 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001107 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001110EXPORT_SYMBOL_GPL(__blk_put_request);
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112void blk_put_request(struct request *req)
1113{
Tejun Heo8922e162005-10-20 16:23:44 +02001114 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001115 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001117 spin_lock_irqsave(q->queue_lock, flags);
1118 __blk_put_request(q, req);
1119 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121EXPORT_SYMBOL(blk_put_request);
1122
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001123/**
1124 * blk_add_request_payload - add a payload to a request
1125 * @rq: request to update
1126 * @page: page backing the payload
1127 * @len: length of the payload.
1128 *
1129 * This allows to later add a payload to an already submitted request by
1130 * a block driver. The driver needs to take care of freeing the payload
1131 * itself.
1132 *
1133 * Note that this is a quite horrible hack and nothing but handling of
1134 * discard requests should ever use it.
1135 */
1136void blk_add_request_payload(struct request *rq, struct page *page,
1137 unsigned int len)
1138{
1139 struct bio *bio = rq->bio;
1140
1141 bio->bi_io_vec->bv_page = page;
1142 bio->bi_io_vec->bv_offset = 0;
1143 bio->bi_io_vec->bv_len = len;
1144
1145 bio->bi_size = len;
1146 bio->bi_vcnt = 1;
1147 bio->bi_phys_segments = 1;
1148
1149 rq->__data_len = rq->resid_len = len;
1150 rq->nr_phys_segments = 1;
1151 rq->buffer = bio_data(bio);
1152}
1153EXPORT_SYMBOL_GPL(blk_add_request_payload);
1154
Jens Axboe86db1e22008-01-29 14:53:40 +01001155void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001156{
Jens Axboec7c22e42008-09-13 20:26:01 +02001157 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001158 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001159
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001160 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1161 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001162 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001163
Tejun Heo52d9e672006-01-06 09:49:58 +01001164 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001165 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001166 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001167 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001168}
1169
Jens Axboe644b2d92009-04-06 14:48:06 +02001170/*
1171 * Only disabling plugging for non-rotational devices if it does tagging
1172 * as well, otherwise we do need the proper merging
1173 */
1174static inline bool queue_should_plug(struct request_queue *q)
1175{
Jens Axboe79da06442010-02-23 08:40:43 +01001176 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001177}
1178
Jens Axboe165125e2007-07-24 09:28:11 +02001179static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Nick Piggin450991b2005-06-28 20:45:13 -07001181 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001182 int el_ret;
1183 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001184 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001185 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1186 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1187 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001188 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001189 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 /*
1192 * low level driver can indicate that it wants pages above a
1193 * certain limit bounced to low memory (ie for highmem, or even
1194 * ISA dma in theory)
1195 */
1196 blk_queue_bounce(q, &bio);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 spin_lock_irq(q->queue_lock);
1199
Tejun Heo4fed9472010-09-03 11:56:17 +02001200 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heo28e7d182010-09-03 11:56:16 +02001201 where = ELEVATOR_INSERT_FRONT;
1202 goto get_rq;
1203 }
1204
1205 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 goto get_rq;
1207
1208 el_ret = elv_merge(q, &req, bio);
1209 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001210 case ELEVATOR_BACK_MERGE:
1211 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Jens Axboe6728cb02008-01-31 13:03:55 +01001213 if (!ll_back_merge_fn(q, req, bio))
1214 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001216 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001217
Tejun Heo80a761f2009-07-03 17:48:17 +09001218 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1219 blk_rq_set_mixed_merge(req);
1220
Jens Axboe6728cb02008-01-31 13:03:55 +01001221 req->biotail->bi_next = bio;
1222 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001223 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001224 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001225 if (!blk_rq_cpu_valid(req))
1226 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001227 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001228 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001229 if (!attempt_back_merge(q, req))
1230 elv_merged_request(q, req, el_ret);
1231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Jens Axboe6728cb02008-01-31 13:03:55 +01001233 case ELEVATOR_FRONT_MERGE:
1234 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jens Axboe6728cb02008-01-31 13:03:55 +01001236 if (!ll_front_merge_fn(q, req, bio))
1237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001239 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001240
Tejun Heo80a761f2009-07-03 17:48:17 +09001241 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1242 blk_rq_set_mixed_merge(req);
1243 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1244 req->cmd_flags |= ff;
1245 }
1246
Jens Axboe6728cb02008-01-31 13:03:55 +01001247 bio->bi_next = req->bio;
1248 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Jens Axboe6728cb02008-01-31 13:03:55 +01001250 /*
1251 * may not be valid. if the low level driver said
1252 * it didn't need a bounce buffer then it better
1253 * not touch req->buffer either...
1254 */
1255 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001256 req->__sector = bio->bi_sector;
1257 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001258 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001259 if (!blk_rq_cpu_valid(req))
1260 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001261 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001262 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001263 if (!attempt_front_merge(q, req))
1264 elv_merged_request(q, req, el_ret);
1265 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Jens Axboe6728cb02008-01-31 13:03:55 +01001267 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1268 default:
1269 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001273 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001274 * This sync check and mask will be re-done in init_request_from_bio(),
1275 * but we need to set it earlier to expose the sync flag to the
1276 * rq allocator and io schedulers.
1277 */
1278 rw_flags = bio_data_dir(bio);
1279 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001280 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001281
1282 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001283 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001284 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001285 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001286 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001287
Nick Piggin450991b2005-06-28 20:45:13 -07001288 /*
1289 * After dropping the lock and possibly sleeping here, our request
1290 * may now be mergeable after it had proven unmergeable (above).
1291 * We don't worry about that case for efficiency. It won't happen
1292 * often, and the elevators are able to handle it.
1293 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001294 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Nick Piggin450991b2005-06-28 20:45:13 -07001296 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001297 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1298 bio_flagged(bio, BIO_CPU_AFFINE))
1299 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001300 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001301 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001302
1303 /* insert the request into the elevator */
1304 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001305 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001307 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 spin_unlock_irq(q->queue_lock);
1310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313/*
1314 * If bio->bi_dev is a partition, remap the location
1315 */
1316static inline void blk_partition_remap(struct bio *bio)
1317{
1318 struct block_device *bdev = bio->bi_bdev;
1319
Jens Axboebf2de6f2007-09-27 13:01:25 +02001320 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 bio->bi_sector += p->start_sect;
1324 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001325
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001326 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001327 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001328 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static void handle_bad_sector(struct bio *bio)
1333{
1334 char b[BDEVNAME_SIZE];
1335
1336 printk(KERN_INFO "attempt to access beyond end of device\n");
1337 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1338 bdevname(bio->bi_bdev, b),
1339 bio->bi_rw,
1340 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001341 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 set_bit(BIO_EOF, &bio->bi_flags);
1344}
1345
Akinobu Mitac17bb492006-12-08 02:39:46 -08001346#ifdef CONFIG_FAIL_MAKE_REQUEST
1347
1348static DECLARE_FAULT_ATTR(fail_make_request);
1349
1350static int __init setup_fail_make_request(char *str)
1351{
1352 return setup_fault_attr(&fail_make_request, str);
1353}
1354__setup("fail_make_request=", setup_fail_make_request);
1355
1356static int should_fail_request(struct bio *bio)
1357{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001358 struct hd_struct *part = bio->bi_bdev->bd_part;
1359
1360 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001361 return should_fail(&fail_make_request, bio->bi_size);
1362
1363 return 0;
1364}
1365
1366static int __init fail_make_request_debugfs(void)
1367{
1368 return init_fault_attr_dentries(&fail_make_request,
1369 "fail_make_request");
1370}
1371
1372late_initcall(fail_make_request_debugfs);
1373
1374#else /* CONFIG_FAIL_MAKE_REQUEST */
1375
1376static inline int should_fail_request(struct bio *bio)
1377{
1378 return 0;
1379}
1380
1381#endif /* CONFIG_FAIL_MAKE_REQUEST */
1382
Jens Axboec07e2b42007-07-18 13:27:58 +02001383/*
1384 * Check whether this bio extends beyond the end of the device.
1385 */
1386static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1387{
1388 sector_t maxsector;
1389
1390 if (!nr_sectors)
1391 return 0;
1392
1393 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001394 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001395 if (maxsector) {
1396 sector_t sector = bio->bi_sector;
1397
1398 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1399 /*
1400 * This may well happen - the kernel calls bread()
1401 * without checking the size of the device, e.g., when
1402 * mounting a device.
1403 */
1404 handle_bad_sector(bio);
1405 return 1;
1406 }
1407 }
1408
1409 return 0;
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001413 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * @bio: The bio describing the location in memory and on the device.
1415 *
1416 * generic_make_request() is used to make I/O requests of block
1417 * devices. It is passed a &struct bio, which describes the I/O that needs
1418 * to be done.
1419 *
1420 * generic_make_request() does not return any status. The
1421 * success/failure status of the request, along with notification of
1422 * completion, is delivered asynchronously through the bio->bi_end_io
1423 * function described (one day) else where.
1424 *
1425 * The caller of generic_make_request must make sure that bi_io_vec
1426 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1427 * set to describe the device address, and the
1428 * bi_end_io and optionally bi_private are set to describe how
1429 * completion notification should be signaled.
1430 *
1431 * generic_make_request and the drivers it calls may use bi_next if this
1432 * bio happens to be merged with someone else, and may change bi_dev and
1433 * bi_sector for remaps as it sees fit. So the values of these fields
1434 * should NOT be depended on after the call to generic_make_request.
1435 */
Neil Brownd89d8792007-05-01 09:53:42 +02001436static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Jens Axboe165125e2007-07-24 09:28:11 +02001438 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001439 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001441 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001442 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Jens Axboec07e2b42007-07-18 13:27:58 +02001446 if (bio_check_eod(bio, nr_sectors))
1447 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 /*
1450 * Resolve the mapping until finished. (drivers are
1451 * still free to implement/resolve their own stacking
1452 * by explicitly returning 0)
1453 *
1454 * NOTE: we don't repeat the blk_size check for each new device.
1455 * Stacking drivers are expected to know what they are doing.
1456 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001457 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001458 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 do {
1460 char b[BDEVNAME_SIZE];
1461
1462 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001463 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 printk(KERN_ERR
1465 "generic_make_request: Trying to access "
1466 "nonexistent block-device %s (%Lu)\n",
1467 bdevname(bio->bi_bdev, b),
1468 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001469 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001472 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001473 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001474 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001475 bdevname(bio->bi_bdev, b),
1476 bio_sectors(bio),
1477 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto end_io;
1479 }
1480
Nick Pigginfde6ad22005-06-23 00:08:53 -07001481 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 goto end_io;
1483
Akinobu Mitac17bb492006-12-08 02:39:46 -08001484 if (should_fail_request(bio))
1485 goto end_io;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 /*
1488 * If this device has partitions, remap block n
1489 * of partition p to block n+start(p) of the disk.
1490 */
1491 blk_partition_remap(bio);
1492
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001493 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1494 goto end_io;
1495
NeilBrown5ddfe962006-10-30 22:07:21 -08001496 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001497 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001498
NeilBrown5ddfe962006-10-30 22:07:21 -08001499 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001500 old_dev = bio->bi_bdev->bd_dev;
1501
Jens Axboec07e2b42007-07-18 13:27:58 +02001502 if (bio_check_eod(bio, nr_sectors))
1503 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001504
Tejun Heo1e879012010-09-03 11:56:17 +02001505 /*
1506 * Filter flush bio's early so that make_request based
1507 * drivers without flush support don't have to worry
1508 * about them.
1509 */
1510 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1511 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1512 if (!nr_sectors) {
1513 err = 0;
1514 goto end_io;
1515 }
1516 }
1517
Adrian Hunter8d57a982010-08-11 14:17:49 -07001518 if ((bio->bi_rw & REQ_DISCARD) &&
1519 (!blk_queue_discard(q) ||
1520 ((bio->bi_rw & REQ_SECURE) &&
1521 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001522 err = -EOPNOTSUPP;
1523 goto end_io;
1524 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001525
Vivek Goyale43473b2010-09-15 17:06:35 -04001526 blk_throtl_bio(q, &bio);
1527
1528 /*
1529 * If bio = NULL, bio has been throttled and will be submitted
1530 * later.
1531 */
1532 if (!bio)
1533 break;
1534
Minchan Kim01edede2009-09-08 21:56:38 +02001535 trace_block_bio_queue(q, bio);
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 ret = q->make_request_fn(q, bio);
1538 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001539
1540 return;
1541
1542end_io:
1543 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Neil Brownd89d8792007-05-01 09:53:42 +02001546/*
1547 * We only want one ->make_request_fn to be active at a time,
1548 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001549 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001550 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001551 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001552 * generic_make_request is currently active in this task or not.
1553 * If it is NULL, then no make_request is active. If it is non-NULL,
1554 * then a make_request is active, and new requests should be added
1555 * at the tail
1556 */
1557void generic_make_request(struct bio *bio)
1558{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001559 struct bio_list bio_list_on_stack;
1560
1561 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001562 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001563 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001564 return;
1565 }
1566 /* following loop may be a bit non-obvious, and so deserves some
1567 * explanation.
1568 * Before entering the loop, bio->bi_next is NULL (as all callers
1569 * ensure that) so we have a list with a single bio.
1570 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001571 * we assign bio_list to a pointer to the bio_list_on_stack,
1572 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001573 * added. __generic_make_request may indeed add some more bios
1574 * through a recursive call to generic_make_request. If it
1575 * did, we find a non-NULL value in bio_list and re-enter the loop
1576 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001577 * of the top of the list (no pretending) and so remove it from
1578 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001579 *
1580 * The loop was structured like this to make only one call to
1581 * __generic_make_request (which is important as it is large and
1582 * inlined) and to keep the structure simple.
1583 */
1584 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001585 bio_list_init(&bio_list_on_stack);
1586 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001587 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001588 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001589 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001590 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001591 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593EXPORT_SYMBOL(generic_make_request);
1594
1595/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001596 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1598 * @bio: The &struct bio which describes the I/O
1599 *
1600 * submit_bio() is very similar in purpose to generic_make_request(), and
1601 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001602 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 *
1604 */
1605void submit_bio(int rw, struct bio *bio)
1606{
1607 int count = bio_sectors(bio);
1608
Jens Axboe22e2c502005-06-27 10:55:12 +02001609 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Jens Axboebf2de6f2007-09-27 13:01:25 +02001611 /*
1612 * If it's a regular read/write or a barrier with data attached,
1613 * go through the normal accounting stuff before submission.
1614 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001615 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001616 if (rw & WRITE) {
1617 count_vm_events(PGPGOUT, count);
1618 } else {
1619 task_io_account_read(bio->bi_size);
1620 count_vm_events(PGPGIN, count);
1621 }
1622
1623 if (unlikely(block_dump)) {
1624 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001625 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001626 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001627 (rw & WRITE) ? "WRITE" : "READ",
1628 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001629 bdevname(bio->bi_bdev, b),
1630 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
1633
1634 generic_make_request(bio);
1635}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636EXPORT_SYMBOL(submit_bio);
1637
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001638/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001639 * blk_rq_check_limits - Helper function to check a request for the queue limit
1640 * @q: the queue
1641 * @rq: the request being checked
1642 *
1643 * Description:
1644 * @rq may have been made based on weaker limitations of upper-level queues
1645 * in request stacking drivers, and it may violate the limitation of @q.
1646 * Since the block layer and the underlying device driver trust @rq
1647 * after it is inserted to @q, it should be checked against @q before
1648 * the insertion using this generic function.
1649 *
1650 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001651 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001652 * Request stacking drivers like request-based dm may change the queue
1653 * limits while requests are in the queue (e.g. dm's table swapping).
1654 * Such request stacking drivers should check those requests agaist
1655 * the new queue limits again when they dispatch those requests,
1656 * although such checkings are also done against the old queue limits
1657 * when submitting requests.
1658 */
1659int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1660{
ike Snitzer33839772010-08-08 12:11:33 -04001661 if (rq->cmd_flags & REQ_DISCARD)
1662 return 0;
1663
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001664 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1665 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001666 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1667 return -EIO;
1668 }
1669
1670 /*
1671 * queue's settings related to segment counting like q->bounce_pfn
1672 * may differ from that of other stacking queues.
1673 * Recalculate it to check the request correctly on this queue's
1674 * limitation.
1675 */
1676 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001677 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001678 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1679 return -EIO;
1680 }
1681
1682 return 0;
1683}
1684EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1685
1686/**
1687 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1688 * @q: the queue to submit the request
1689 * @rq: the request being queued
1690 */
1691int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1692{
1693 unsigned long flags;
1694
1695 if (blk_rq_check_limits(q, rq))
1696 return -EIO;
1697
1698#ifdef CONFIG_FAIL_MAKE_REQUEST
1699 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1700 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1701 return -EIO;
1702#endif
1703
1704 spin_lock_irqsave(q->queue_lock, flags);
1705
1706 /*
1707 * Submitting request must be dequeued before calling this function
1708 * because it will be linked to another request_queue
1709 */
1710 BUG_ON(blk_queued_rq(rq));
1711
1712 drive_stat_acct(rq, 1);
1713 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1714
1715 spin_unlock_irqrestore(q->queue_lock, flags);
1716
1717 return 0;
1718}
1719EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1720
Tejun Heo80a761f2009-07-03 17:48:17 +09001721/**
1722 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1723 * @rq: request to examine
1724 *
1725 * Description:
1726 * A request could be merge of IOs which require different failure
1727 * handling. This function determines the number of bytes which
1728 * can be failed from the beginning of the request without
1729 * crossing into area which need to be retried further.
1730 *
1731 * Return:
1732 * The number of bytes to fail.
1733 *
1734 * Context:
1735 * queue_lock must be held.
1736 */
1737unsigned int blk_rq_err_bytes(const struct request *rq)
1738{
1739 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1740 unsigned int bytes = 0;
1741 struct bio *bio;
1742
1743 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1744 return blk_rq_bytes(rq);
1745
1746 /*
1747 * Currently the only 'mixing' which can happen is between
1748 * different fastfail types. We can safely fail portions
1749 * which have all the failfast bits that the first one has -
1750 * the ones which are at least as eager to fail as the first
1751 * one.
1752 */
1753 for (bio = rq->bio; bio; bio = bio->bi_next) {
1754 if ((bio->bi_rw & ff) != ff)
1755 break;
1756 bytes += bio->bi_size;
1757 }
1758
1759 /* this could lead to infinite loop */
1760 BUG_ON(blk_rq_bytes(rq) && !bytes);
1761 return bytes;
1762}
1763EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1764
Jens Axboebc58ba92009-01-23 10:54:44 +01001765static void blk_account_io_completion(struct request *req, unsigned int bytes)
1766{
Jens Axboec2553b52009-04-24 08:10:11 +02001767 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001768 const int rw = rq_data_dir(req);
1769 struct hd_struct *part;
1770 int cpu;
1771
1772 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001773 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001774 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1775 part_stat_unlock();
1776 }
1777}
1778
1779static void blk_account_io_done(struct request *req)
1780{
Jens Axboebc58ba92009-01-23 10:54:44 +01001781 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001782 * Account IO completion. flush_rq isn't accounted as a
1783 * normal IO on queueing nor completion. Accounting the
1784 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001785 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001786 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001787 unsigned long duration = jiffies - req->start_time;
1788 const int rw = rq_data_dir(req);
1789 struct hd_struct *part;
1790 int cpu;
1791
1792 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001793 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001794
1795 part_stat_inc(cpu, part, ios[rw]);
1796 part_stat_add(cpu, part, ticks[rw], duration);
1797 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001798 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001799
1800 part_stat_unlock();
1801 }
1802}
1803
Tejun Heo53a08802008-12-03 12:41:26 +01001804/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001805 * blk_peek_request - peek at the top of a request queue
1806 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001807 *
1808 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001809 * Return the request at the top of @q. The returned request
1810 * should be started using blk_start_request() before LLD starts
1811 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001812 *
1813 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001814 * Pointer to the request at the top of @q if available. Null
1815 * otherwise.
1816 *
1817 * Context:
1818 * queue_lock must be held.
1819 */
1820struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001821{
1822 struct request *rq;
1823 int ret;
1824
1825 while ((rq = __elv_next_request(q)) != NULL) {
1826 if (!(rq->cmd_flags & REQ_STARTED)) {
1827 /*
1828 * This is the first time the device driver
1829 * sees this request (possibly after
1830 * requeueing). Notify IO scheduler.
1831 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001832 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001833 elv_activate_rq(q, rq);
1834
1835 /*
1836 * just mark as started even if we don't start
1837 * it, a request that has been delayed should
1838 * not be passed by new incoming requests
1839 */
1840 rq->cmd_flags |= REQ_STARTED;
1841 trace_block_rq_issue(q, rq);
1842 }
1843
1844 if (!q->boundary_rq || q->boundary_rq == rq) {
1845 q->end_sector = rq_end_sector(rq);
1846 q->boundary_rq = NULL;
1847 }
1848
1849 if (rq->cmd_flags & REQ_DONTPREP)
1850 break;
1851
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001852 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001853 /*
1854 * make sure space for the drain appears we
1855 * know we can do this because max_hw_segments
1856 * has been adjusted to be one fewer than the
1857 * device can handle
1858 */
1859 rq->nr_phys_segments++;
1860 }
1861
1862 if (!q->prep_rq_fn)
1863 break;
1864
1865 ret = q->prep_rq_fn(q, rq);
1866 if (ret == BLKPREP_OK) {
1867 break;
1868 } else if (ret == BLKPREP_DEFER) {
1869 /*
1870 * the request may have been (partially) prepped.
1871 * we need to keep this request in the front to
1872 * avoid resource deadlock. REQ_STARTED will
1873 * prevent other fs requests from passing this one.
1874 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001875 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001876 !(rq->cmd_flags & REQ_DONTPREP)) {
1877 /*
1878 * remove the space for the drain we added
1879 * so that we don't add it again
1880 */
1881 --rq->nr_phys_segments;
1882 }
1883
1884 rq = NULL;
1885 break;
1886 } else if (ret == BLKPREP_KILL) {
1887 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001888 /*
1889 * Mark this request as started so we don't trigger
1890 * any debug logic in the end I/O path.
1891 */
1892 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001893 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001894 } else {
1895 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1896 break;
1897 }
1898 }
1899
1900 return rq;
1901}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001902EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001903
Tejun Heo9934c8c2009-05-08 11:54:16 +09001904void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001905{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001906 struct request_queue *q = rq->q;
1907
Tejun Heo158dbda2009-04-23 11:05:18 +09001908 BUG_ON(list_empty(&rq->queuelist));
1909 BUG_ON(ELV_ON_HASH(rq));
1910
1911 list_del_init(&rq->queuelist);
1912
1913 /*
1914 * the time frame between a request being removed from the lists
1915 * and to it is freed is accounted as io that is in progress at
1916 * the driver side.
1917 */
Divyesh Shah91952912010-04-01 15:01:41 -07001918 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001919 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001920 set_io_start_time_ns(rq);
1921 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001922}
1923
Tejun Heo5efccd12009-04-23 11:05:18 +09001924/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001925 * blk_start_request - start request processing on the driver
1926 * @req: request to dequeue
1927 *
1928 * Description:
1929 * Dequeue @req and start timeout timer on it. This hands off the
1930 * request to the driver.
1931 *
1932 * Block internal functions which don't want to start timer should
1933 * call blk_dequeue_request().
1934 *
1935 * Context:
1936 * queue_lock must be held.
1937 */
1938void blk_start_request(struct request *req)
1939{
1940 blk_dequeue_request(req);
1941
1942 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001943 * We are now handing the request to the hardware, initialize
1944 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001945 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001946 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001947 if (unlikely(blk_bidi_rq(req)))
1948 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1949
Tejun Heo9934c8c2009-05-08 11:54:16 +09001950 blk_add_timer(req);
1951}
1952EXPORT_SYMBOL(blk_start_request);
1953
1954/**
1955 * blk_fetch_request - fetch a request from a request queue
1956 * @q: request queue to fetch a request from
1957 *
1958 * Description:
1959 * Return the request at the top of @q. The request is started on
1960 * return and LLD can start processing it immediately.
1961 *
1962 * Return:
1963 * Pointer to the request at the top of @q if available. Null
1964 * otherwise.
1965 *
1966 * Context:
1967 * queue_lock must be held.
1968 */
1969struct request *blk_fetch_request(struct request_queue *q)
1970{
1971 struct request *rq;
1972
1973 rq = blk_peek_request(q);
1974 if (rq)
1975 blk_start_request(rq);
1976 return rq;
1977}
1978EXPORT_SYMBOL(blk_fetch_request);
1979
1980/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001981 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001982 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001983 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001984 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001985 *
1986 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001987 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1988 * the request structure even if @req doesn't have leftover.
1989 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001990 *
1991 * This special helper function is only for request stacking drivers
1992 * (e.g. request-based dm) so that they can handle partial completion.
1993 * Actual device drivers should use blk_end_request instead.
1994 *
1995 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1996 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001997 *
1998 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001999 * %false - this request doesn't have any more data
2000 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002001 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002002bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002004 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 struct bio *bio;
2006
Tejun Heo2e60e022009-04-23 11:05:18 +09002007 if (!req->bio)
2008 return false;
2009
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002010 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002013 * For fs requests, rq is just carrier of independent bio's
2014 * and each partial completion should be handled separately.
2015 * Reset per-request error on each partial completion.
2016 *
2017 * TODO: tj: This is too subtle. It would be better to let
2018 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002020 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 req->errors = 0;
2022
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002023 if (error && req->cmd_type == REQ_TYPE_FS &&
2024 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002025 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002027 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029
Jens Axboebc58ba92009-01-23 10:54:44 +01002030 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 total_bytes = bio_nbytes = 0;
2033 while ((bio = req->bio) != NULL) {
2034 int nbytes;
2035
2036 if (nr_bytes >= bio->bi_size) {
2037 req->bio = bio->bi_next;
2038 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002039 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 next_idx = 0;
2041 bio_nbytes = 0;
2042 } else {
2043 int idx = bio->bi_idx + next_idx;
2044
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002045 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002047 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002048 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
2050 }
2051
2052 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2053 BIO_BUG_ON(nbytes > bio->bi_size);
2054
2055 /*
2056 * not a complete bvec done
2057 */
2058 if (unlikely(nbytes > nr_bytes)) {
2059 bio_nbytes += nr_bytes;
2060 total_bytes += nr_bytes;
2061 break;
2062 }
2063
2064 /*
2065 * advance to the next vector
2066 */
2067 next_idx++;
2068 bio_nbytes += nbytes;
2069 }
2070
2071 total_bytes += nbytes;
2072 nr_bytes -= nbytes;
2073
Jens Axboe6728cb02008-01-31 13:03:55 +01002074 bio = req->bio;
2075 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 /*
2077 * end more in this run, or just return 'not-done'
2078 */
2079 if (unlikely(nr_bytes <= 0))
2080 break;
2081 }
2082 }
2083
2084 /*
2085 * completely done
2086 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002087 if (!req->bio) {
2088 /*
2089 * Reset counters so that the request stacking driver
2090 * can find how many bytes remain in the request
2091 * later.
2092 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002093 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002094 return false;
2095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 /*
2098 * if the request wasn't completed, update state
2099 */
2100 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002101 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 bio->bi_idx += next_idx;
2103 bio_iovec(bio)->bv_offset += nr_bytes;
2104 bio_iovec(bio)->bv_len -= nr_bytes;
2105 }
2106
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002107 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002108 req->buffer = bio_data(req->bio);
2109
2110 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002111 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002112 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002113
Tejun Heo80a761f2009-07-03 17:48:17 +09002114 /* mixed attributes always follow the first bio */
2115 if (req->cmd_flags & REQ_MIXED_MERGE) {
2116 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2117 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2118 }
2119
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002120 /*
2121 * If total number of sectors is less than the first segment
2122 * size, something has gone terribly wrong.
2123 */
2124 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2125 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002126 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002127 }
2128
2129 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002131
Tejun Heo2e60e022009-04-23 11:05:18 +09002132 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
Tejun Heo2e60e022009-04-23 11:05:18 +09002134EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Tejun Heo2e60e022009-04-23 11:05:18 +09002136static bool blk_update_bidi_request(struct request *rq, int error,
2137 unsigned int nr_bytes,
2138 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002139{
Tejun Heo2e60e022009-04-23 11:05:18 +09002140 if (blk_update_request(rq, error, nr_bytes))
2141 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002142
Tejun Heo2e60e022009-04-23 11:05:18 +09002143 /* Bidi request must be completed as a whole */
2144 if (unlikely(blk_bidi_rq(rq)) &&
2145 blk_update_request(rq->next_rq, error, bidi_bytes))
2146 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002147
Jens Axboee2e1a142010-06-09 10:42:09 +02002148 if (blk_queue_add_random(rq->q))
2149 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002150
2151 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152}
2153
James Bottomley28018c22010-07-01 19:49:17 +09002154/**
2155 * blk_unprep_request - unprepare a request
2156 * @req: the request
2157 *
2158 * This function makes a request ready for complete resubmission (or
2159 * completion). It happens only after all error handling is complete,
2160 * so represents the appropriate moment to deallocate any resources
2161 * that were allocated to the request in the prep_rq_fn. The queue
2162 * lock is held when calling this.
2163 */
2164void blk_unprep_request(struct request *req)
2165{
2166 struct request_queue *q = req->q;
2167
2168 req->cmd_flags &= ~REQ_DONTPREP;
2169 if (q->unprep_rq_fn)
2170 q->unprep_rq_fn(q, req);
2171}
2172EXPORT_SYMBOL_GPL(blk_unprep_request);
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174/*
2175 * queue lock must be held
2176 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002177static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002179 if (blk_rq_tagged(req))
2180 blk_queue_end_tag(req->q, req);
2181
James Bottomleyba396a62009-05-27 14:17:08 +02002182 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002184 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002185 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Mike Andersone78042e2008-10-30 02:16:20 -07002187 blk_delete_timer(req);
2188
James Bottomley28018c22010-07-01 19:49:17 +09002189 if (req->cmd_flags & REQ_DONTPREP)
2190 blk_unprep_request(req);
2191
2192
Jens Axboebc58ba92009-01-23 10:54:44 +01002193 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002196 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002197 else {
2198 if (blk_bidi_rq(req))
2199 __blk_put_request(req->next_rq->q, req->next_rq);
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203}
2204
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002205/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002206 * blk_end_bidi_request - Complete a bidi request
2207 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002208 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002209 * @nr_bytes: number of bytes to complete @rq
2210 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002211 *
2212 * Description:
2213 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002214 * Drivers that supports bidi can safely call this member for any
2215 * type of request, bidi or uni. In the later case @bidi_bytes is
2216 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002217 *
2218 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002219 * %false - we are done with this request
2220 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002221 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002222static bool blk_end_bidi_request(struct request *rq, int error,
2223 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002224{
2225 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002226 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002227
Tejun Heo2e60e022009-04-23 11:05:18 +09002228 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2229 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002230
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002231 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002232 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002233 spin_unlock_irqrestore(q->queue_lock, flags);
2234
Tejun Heo2e60e022009-04-23 11:05:18 +09002235 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002236}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002237
2238/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002239 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2240 * @rq: the request to complete
2241 * @error: %0 for success, < %0 for error
2242 * @nr_bytes: number of bytes to complete @rq
2243 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002244 *
2245 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002246 * Identical to blk_end_bidi_request() except that queue lock is
2247 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002248 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002249 * Return:
2250 * %false - we are done with this request
2251 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002252 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002253static bool __blk_end_bidi_request(struct request *rq, int error,
2254 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002255{
Tejun Heo2e60e022009-04-23 11:05:18 +09002256 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2257 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002258
Tejun Heo2e60e022009-04-23 11:05:18 +09002259 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002260
Tejun Heo2e60e022009-04-23 11:05:18 +09002261 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002262}
2263
2264/**
2265 * blk_end_request - Helper function for drivers to complete the request.
2266 * @rq: the request being processed
2267 * @error: %0 for success, < %0 for error
2268 * @nr_bytes: number of bytes to complete
2269 *
2270 * Description:
2271 * Ends I/O on a number of bytes attached to @rq.
2272 * If @rq has leftover, sets it up for the next range of segments.
2273 *
2274 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002275 * %false - we are done with this request
2276 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002277 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002278bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002279{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002280 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002281}
Jens Axboe56ad1742009-07-28 22:11:24 +02002282EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002283
2284/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002285 * blk_end_request_all - Helper function for drives to finish the request.
2286 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002287 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002288 *
2289 * Description:
2290 * Completely finish @rq.
2291 */
2292void blk_end_request_all(struct request *rq, int error)
2293{
2294 bool pending;
2295 unsigned int bidi_bytes = 0;
2296
2297 if (unlikely(blk_bidi_rq(rq)))
2298 bidi_bytes = blk_rq_bytes(rq->next_rq);
2299
2300 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2301 BUG_ON(pending);
2302}
Jens Axboe56ad1742009-07-28 22:11:24 +02002303EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002304
2305/**
2306 * blk_end_request_cur - Helper function to finish the current request chunk.
2307 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002308 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002309 *
2310 * Description:
2311 * Complete the current consecutively mapped chunk from @rq.
2312 *
2313 * Return:
2314 * %false - we are done with this request
2315 * %true - still buffers pending for this request
2316 */
2317bool blk_end_request_cur(struct request *rq, int error)
2318{
2319 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2320}
Jens Axboe56ad1742009-07-28 22:11:24 +02002321EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002322
2323/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002324 * blk_end_request_err - Finish a request till the next failure boundary.
2325 * @rq: the request to finish till the next failure boundary for
2326 * @error: must be negative errno
2327 *
2328 * Description:
2329 * Complete @rq till the next failure boundary.
2330 *
2331 * Return:
2332 * %false - we are done with this request
2333 * %true - still buffers pending for this request
2334 */
2335bool blk_end_request_err(struct request *rq, int error)
2336{
2337 WARN_ON(error >= 0);
2338 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2339}
2340EXPORT_SYMBOL_GPL(blk_end_request_err);
2341
2342/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002343 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002344 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002345 * @error: %0 for success, < %0 for error
2346 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002347 *
2348 * Description:
2349 * Must be called with queue lock held unlike blk_end_request().
2350 *
2351 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002352 * %false - we are done with this request
2353 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002354 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002355bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002356{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002357 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002358}
Jens Axboe56ad1742009-07-28 22:11:24 +02002359EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002360
2361/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002362 * __blk_end_request_all - Helper function for drives to finish the request.
2363 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002364 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002365 *
2366 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002367 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002368 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002369void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002370{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002371 bool pending;
2372 unsigned int bidi_bytes = 0;
2373
2374 if (unlikely(blk_bidi_rq(rq)))
2375 bidi_bytes = blk_rq_bytes(rq->next_rq);
2376
2377 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2378 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002379}
Jens Axboe56ad1742009-07-28 22:11:24 +02002380EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002381
2382/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002383 * __blk_end_request_cur - Helper function to finish the current request chunk.
2384 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002385 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002386 *
2387 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002388 * Complete the current consecutively mapped chunk from @rq. Must
2389 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002390 *
2391 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002392 * %false - we are done with this request
2393 * %true - still buffers pending for this request
2394 */
2395bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002396{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002397 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002398}
Jens Axboe56ad1742009-07-28 22:11:24 +02002399EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002400
Tejun Heo80a761f2009-07-03 17:48:17 +09002401/**
2402 * __blk_end_request_err - Finish a request till the next failure boundary.
2403 * @rq: the request to finish till the next failure boundary for
2404 * @error: must be negative errno
2405 *
2406 * Description:
2407 * Complete @rq till the next failure boundary. Must be called
2408 * with queue lock held.
2409 *
2410 * Return:
2411 * %false - we are done with this request
2412 * %true - still buffers pending for this request
2413 */
2414bool __blk_end_request_err(struct request *rq, int error)
2415{
2416 WARN_ON(error >= 0);
2417 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2418}
2419EXPORT_SYMBOL_GPL(__blk_end_request_err);
2420
Jens Axboe86db1e22008-01-29 14:53:40 +01002421void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2422 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002424 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002425 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
David Woodhousefb2dce82008-08-05 18:01:53 +01002427 if (bio_has_data(bio)) {
2428 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002429 rq->buffer = bio_data(bio);
2430 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002431 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
NeilBrown66846572007-08-16 13:31:28 +02002434 if (bio->bi_bdev)
2435 rq->rq_disk = bio->bi_bdev->bd_disk;
2436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002438#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2439/**
2440 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2441 * @rq: the request to be flushed
2442 *
2443 * Description:
2444 * Flush all pages in @rq.
2445 */
2446void rq_flush_dcache_pages(struct request *rq)
2447{
2448 struct req_iterator iter;
2449 struct bio_vec *bvec;
2450
2451 rq_for_each_segment(bvec, rq, iter)
2452 flush_dcache_page(bvec->bv_page);
2453}
2454EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2455#endif
2456
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002457/**
2458 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2459 * @q : the queue of the device being checked
2460 *
2461 * Description:
2462 * Check if underlying low-level drivers of a device are busy.
2463 * If the drivers want to export their busy state, they must set own
2464 * exporting function using blk_queue_lld_busy() first.
2465 *
2466 * Basically, this function is used only by request stacking drivers
2467 * to stop dispatching requests to underlying devices when underlying
2468 * devices are busy. This behavior helps more I/O merging on the queue
2469 * of the request stacking driver and prevents I/O throughput regression
2470 * on burst I/O load.
2471 *
2472 * Return:
2473 * 0 - Not busy (The request stacking driver should dispatch request)
2474 * 1 - Busy (The request stacking driver should stop dispatching request)
2475 */
2476int blk_lld_busy(struct request_queue *q)
2477{
2478 if (q->lld_busy_fn)
2479 return q->lld_busy_fn(q);
2480
2481 return 0;
2482}
2483EXPORT_SYMBOL_GPL(blk_lld_busy);
2484
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002485/**
2486 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2487 * @rq: the clone request to be cleaned up
2488 *
2489 * Description:
2490 * Free all bios in @rq for a cloned request.
2491 */
2492void blk_rq_unprep_clone(struct request *rq)
2493{
2494 struct bio *bio;
2495
2496 while ((bio = rq->bio) != NULL) {
2497 rq->bio = bio->bi_next;
2498
2499 bio_put(bio);
2500 }
2501}
2502EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2503
2504/*
2505 * Copy attributes of the original request to the clone request.
2506 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2507 */
2508static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2509{
2510 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002511 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002512 dst->cmd_type = src->cmd_type;
2513 dst->__sector = blk_rq_pos(src);
2514 dst->__data_len = blk_rq_bytes(src);
2515 dst->nr_phys_segments = src->nr_phys_segments;
2516 dst->ioprio = src->ioprio;
2517 dst->extra_len = src->extra_len;
2518}
2519
2520/**
2521 * blk_rq_prep_clone - Helper function to setup clone request
2522 * @rq: the request to be setup
2523 * @rq_src: original request to be cloned
2524 * @bs: bio_set that bios for clone are allocated from
2525 * @gfp_mask: memory allocation mask for bio
2526 * @bio_ctr: setup function to be called for each clone bio.
2527 * Returns %0 for success, non %0 for failure.
2528 * @data: private data to be passed to @bio_ctr
2529 *
2530 * Description:
2531 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2532 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2533 * are not copied, and copying such parts is the caller's responsibility.
2534 * Also, pages which the original bios are pointing to are not copied
2535 * and the cloned bios just point same pages.
2536 * So cloned bios must be completed before original bios, which means
2537 * the caller must complete @rq before @rq_src.
2538 */
2539int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2540 struct bio_set *bs, gfp_t gfp_mask,
2541 int (*bio_ctr)(struct bio *, struct bio *, void *),
2542 void *data)
2543{
2544 struct bio *bio, *bio_src;
2545
2546 if (!bs)
2547 bs = fs_bio_set;
2548
2549 blk_rq_init(NULL, rq);
2550
2551 __rq_for_each_bio(bio_src, rq_src) {
2552 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2553 if (!bio)
2554 goto free_and_out;
2555
2556 __bio_clone(bio, bio_src);
2557
2558 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002559 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002560 goto free_and_out;
2561
2562 if (bio_ctr && bio_ctr(bio, bio_src, data))
2563 goto free_and_out;
2564
2565 if (rq->bio) {
2566 rq->biotail->bi_next = bio;
2567 rq->biotail = bio;
2568 } else
2569 rq->bio = rq->biotail = bio;
2570 }
2571
2572 __blk_rq_prep_clone(rq, rq_src);
2573
2574 return 0;
2575
2576free_and_out:
2577 if (bio)
2578 bio_free(bio, bs);
2579 blk_rq_unprep_clone(rq);
2580
2581 return -ENOMEM;
2582}
2583EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2584
Jens Axboe18887ad2008-07-28 13:08:45 +02002585int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
2587 return queue_work(kblockd_workqueue, work);
2588}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589EXPORT_SYMBOL(kblockd_schedule_work);
2590
Vivek Goyale43473b2010-09-15 17:06:35 -04002591int kblockd_schedule_delayed_work(struct request_queue *q,
2592 struct delayed_work *dwork, unsigned long delay)
2593{
2594 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2595}
2596EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598int __init blk_dev_init(void)
2599{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002600 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2601 sizeof(((struct request *)0)->cmd_flags));
2602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 kblockd_workqueue = create_workqueue("kblockd");
2604 if (!kblockd_workqueue)
2605 panic("Failed to create kblockd\n");
2606
2607 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002608 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Jens Axboe8324aa92008-01-29 14:51:59 +01002610 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002611 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 return 0;
2614}