blob: 6efb55cc5af069e273e7ca8e011e8f1d8aa4f641 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Jens Axboe73c10102011-03-08 13:19:51 +010030#include <linux/list_sort.h>
Li Zefan55782132009-06-09 13:43:05 +080031
32#define CREATE_TRACE_POINTS
33#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jens Axboe8324aa92008-01-29 14:51:59 +010035#include "blk.h"
36
Mike Snitzerd07335e2010-11-16 12:52:38 +010037EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020038EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080039EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010040
Jens Axboe165125e2007-07-24 09:28:11 +020041static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * For the allocated request tables
45 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010046static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * For queue allocation
50 */
Jens Axboe6728cb02008-01-31 13:03:55 +010051struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * Controlling structure to kblockd
55 */
Jens Axboeff856ba2006-01-09 16:02:34 +010056static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jens Axboe26b82562008-01-29 13:54:41 +010058static void drive_stat_acct(struct request *rq, int new_io)
59{
Jens Axboe28f13702008-05-07 10:15:46 +020060 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010061 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090062 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010063
Jens Axboec2553b52009-04-24 08:10:11 +020064 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010065 return;
66
Tejun Heo074a7ac2008-08-25 19:56:14 +090067 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jerome Marchand09e099d2011-01-05 16:57:38 +010069 if (!new_io) {
70 part = rq->part;
Tejun Heo074a7ac2008-08-25 19:56:14 +090071 part_stat_inc(cpu, part, merges[rw]);
Jerome Marchand09e099d2011-01-05 16:57:38 +010072 } else {
73 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Jens Axboe6c23a962011-01-07 08:43:37 +010074 if (!hd_struct_try_get(part)) {
Jerome Marchand09e099d2011-01-05 16:57:38 +010075 /*
76 * The partition is already being removed,
77 * the request will be accounted on the disk only
78 *
79 * We take a reference on disk->part0 although that
80 * partition will never be deleted, so we can treat
81 * it as any other partition.
82 */
83 part = &rq->rq_disk->part0;
Jens Axboe6c23a962011-01-07 08:43:37 +010084 hd_struct_get(part);
Jerome Marchand09e099d2011-01-05 16:57:38 +010085 }
Tejun Heo074a7ac2008-08-25 19:56:14 +090086 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020087 part_inc_in_flight(part, rw);
Jerome Marchand09e099d2011-01-05 16:57:38 +010088 rq->part = part;
Jens Axboe26b82562008-01-29 13:54:41 +010089 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020090
Tejun Heo074a7ac2008-08-25 19:56:14 +090091 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010092}
93
Jens Axboe8324aa92008-01-29 14:51:59 +010094void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 int nr;
97
98 nr = q->nr_requests - (q->nr_requests / 8) + 1;
99 if (nr > q->nr_requests)
100 nr = q->nr_requests;
101 q->nr_congestion_on = nr;
102
103 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
104 if (nr < 1)
105 nr = 1;
106 q->nr_congestion_off = nr;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/**
110 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
111 * @bdev: device
112 *
113 * Locates the passed device's request queue and returns the address of its
114 * backing_dev_info
115 *
116 * Will return NULL if the request queue cannot be located.
117 */
118struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
119{
120 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200121 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (q)
124 ret = &q->backing_dev_info;
125 return ret;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127EXPORT_SYMBOL(blk_get_backing_dev_info);
128
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200129void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200131 memset(rq, 0, sizeof(*rq));
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700134 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200135 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100136 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900137 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200138 INIT_HLIST_NODE(&rq->hash);
139 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200140 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800141 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100142 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100143 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900144 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700145 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100146 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200148EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150static void req_bio_endio(struct request *rq, struct bio *bio,
151 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100152{
Tejun Heo143a87f2011-01-25 12:43:52 +0100153 if (error)
154 clear_bit(BIO_UPTODATE, &bio->bi_flags);
155 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
156 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100157
Tejun Heo143a87f2011-01-25 12:43:52 +0100158 if (unlikely(nbytes > bio->bi_size)) {
159 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
160 __func__, nbytes, bio->bi_size);
161 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100163
164 if (unlikely(rq->cmd_flags & REQ_QUIET))
165 set_bit(BIO_QUIET, &bio->bi_flags);
166
167 bio->bi_size -= nbytes;
168 bio->bi_sector += (nbytes >> 9);
169
170 if (bio_integrity(bio))
171 bio_integrity_advance(bio, nbytes);
172
173 /* don't actually finish bio if it's part of flush sequence */
174 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
175 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178void blk_dump_rq_flags(struct request *rq, char *msg)
179{
180 int bit;
181
Jens Axboe6728cb02008-01-31 13:03:55 +0100182 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200183 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
184 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Tejun Heo83096eb2009-05-07 22:24:39 +0900186 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
187 (unsigned long long)blk_rq_pos(rq),
188 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900189 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900190 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200192 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100193 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200194 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 printk("%02x ", rq->cmd[bit]);
196 printk("\n");
197 }
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199EXPORT_SYMBOL(blk_dump_rq_flags);
200
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500201static void blk_delay_work(struct work_struct *work)
202{
203 struct request_queue *q;
204
205 q = container_of(work, struct request_queue, delay_work.work);
206 spin_lock_irq(q->queue_lock);
Jens Axboe73c10102011-03-08 13:19:51 +0100207 __blk_run_queue(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500208 spin_unlock_irq(q->queue_lock);
209}
210
211/**
212 * blk_delay_queue - restart queueing after defined interval
213 * @q: The &struct request_queue in question
214 * @msecs: Delay in msecs
215 *
216 * Description:
217 * Sometimes queueing needs to be postponed for a little while, to allow
218 * resources to come back. This function will make sure that queueing is
219 * restarted around the specified time.
220 */
221void blk_delay_queue(struct request_queue *q, unsigned long msecs)
222{
223 schedule_delayed_work(&q->delay_work, msecs_to_jiffies(msecs));
224}
225EXPORT_SYMBOL(blk_delay_queue);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*
228 * "plug" the device if there are no outstanding requests: this will
229 * force the transfer to start only after we have put all the requests
230 * on the list.
231 *
232 * This is called with interrupts off and no requests on the queue and
233 * with the queue lock held.
234 */
Jens Axboe165125e2007-07-24 09:28:11 +0200235void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 WARN_ON(!irqs_disabled());
238
239 /*
240 * don't plug a stopped queue, it must be paired with blk_start_queue()
241 * which will restart the queueing
242 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200243 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return;
245
Jens Axboee48ec692008-07-03 13:18:54 +0200246 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100248 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251EXPORT_SYMBOL(blk_plug_device);
252
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200253/**
254 * blk_plug_device_unlocked - plug a device without queue lock held
255 * @q: The &struct request_queue to plug
256 *
257 * Description:
258 * Like @blk_plug_device(), but grabs the queue lock and disables
259 * interrupts.
260 **/
261void blk_plug_device_unlocked(struct request_queue *q)
262{
263 unsigned long flags;
264
265 spin_lock_irqsave(q->queue_lock, flags);
266 blk_plug_device(q);
267 spin_unlock_irqrestore(q->queue_lock, flags);
268}
269EXPORT_SYMBOL(blk_plug_device_unlocked);
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
272 * remove the queue from the plugged list, if present. called with
273 * queue lock held and interrupts disabled.
274 */
Jens Axboe165125e2007-07-24 09:28:11 +0200275int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 WARN_ON(!irqs_disabled());
278
Jens Axboee48ec692008-07-03 13:18:54 +0200279 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 0;
281
282 del_timer(&q->unplug_timer);
283 return 1;
284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285EXPORT_SYMBOL(blk_remove_plug);
286
287/*
288 * remove the plug and let it rip..
289 */
Jens Axboe165125e2007-07-24 09:28:11 +0200290void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200292 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200294 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return;
296
Jens Axboe22e2c502005-06-27 10:55:12 +0200297 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/**
301 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200302 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 *
304 * Description:
305 * Linux uses plugging to build bigger requests queues before letting
306 * the device have at them. If a queue is plugged, the I/O scheduler
307 * is still adding and merging requests on the queue. Once the queue
308 * gets unplugged, the request_fn defined for the queue is invoked and
309 * transfers started.
310 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200311void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200313 if (blk_queue_plugged(q)) {
314 spin_lock_irq(q->queue_lock);
315 __generic_unplug_device(q);
316 spin_unlock_irq(q->queue_lock);
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319EXPORT_SYMBOL(generic_unplug_device);
320
321static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
322 struct page *page)
323{
Jens Axboe165125e2007-07-24 09:28:11 +0200324 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500326 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Jens Axboe86db1e22008-01-29 14:53:40 +0100329void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Jens Axboe165125e2007-07-24 09:28:11 +0200331 struct request_queue *q =
332 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100334 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 q->unplug_fn(q);
336}
337
Jens Axboe86db1e22008-01-29 14:53:40 +0100338void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Jens Axboe165125e2007-07-24 09:28:11 +0200340 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100342 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200343 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500346void blk_unplug(struct request_queue *q)
347{
348 /*
349 * devices don't necessarily have an ->unplug_fn defined
350 */
351 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100352 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500353 q->unplug_fn(q);
354 }
355}
356EXPORT_SYMBOL(blk_unplug);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/**
359 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200360 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 *
362 * Description:
363 * blk_start_queue() will clear the stop flag on the queue, and call
364 * the request_fn for the queue if it was in a stopped state when
365 * entered. Also see blk_stop_queue(). Queue lock must be held.
366 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200367void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200369 WARN_ON(!irqs_disabled());
370
Nick Piggin75ad23b2008-04-29 14:48:33 +0200371 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900372 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374EXPORT_SYMBOL(blk_start_queue);
375
376/**
377 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200378 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *
380 * Description:
381 * The Linux block layer assumes that a block driver will consume all
382 * entries on the request queue when the request_fn strategy is called.
383 * Often this will not happen, because of hardware limitations (queue
384 * depth settings). If a device driver gets a 'queue full' response,
385 * or if it simply chooses not to queue more I/O at one point, it can
386 * call this function to prevent the request_fn from being called until
387 * the driver has signalled it's ready to go again. This happens by calling
388 * blk_start_queue() to restart queue operations. Queue lock must be held.
389 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200390void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 blk_remove_plug(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500393 cancel_delayed_work(&q->delay_work);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200394 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396EXPORT_SYMBOL(blk_stop_queue);
397
398/**
399 * blk_sync_queue - cancel any pending callbacks on a queue
400 * @q: the queue
401 *
402 * Description:
403 * The block layer may perform asynchronous callback activity
404 * on a queue, such as calling the unplug function after a timeout.
405 * A block device may call blk_sync_queue to ensure that any
406 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200407 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * that its ->make_request_fn will not re-add plugging prior to calling
409 * this function.
410 *
411 */
412void blk_sync_queue(struct request_queue *q)
413{
414 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100415 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100416 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400417 throtl_shutdown_timer_wq(q);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500418 cancel_delayed_work_sync(&q->delay_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420EXPORT_SYMBOL(blk_sync_queue);
421
422/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200423 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200425 *
426 * Description:
427 * See @blk_run_queue. This variant must be called with the queue lock
428 * held and interrupts disabled.
429 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200431void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200434
Tejun Heoa538cd02009-04-23 11:05:17 +0900435 if (unlikely(blk_queue_stopped(q)))
436 return;
437
438 if (elv_queue_empty(q))
439 return;
440
Jens Axboedac07ec2006-05-11 08:20:16 +0200441 /*
442 * Only recurse once to avoid overrunning the stack, let the unplug
443 * handling reinvoke the handler shortly if we already got there.
444 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900445 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
446 q->request_fn(q);
447 queue_flag_clear(QUEUE_FLAG_REENTER, q);
448 } else {
449 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
450 kblockd_schedule_work(q, &q->unplug_work);
451 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200452}
453EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200454
Nick Piggin75ad23b2008-04-29 14:48:33 +0200455/**
456 * blk_run_queue - run a single device queue
457 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200458 *
459 * Description:
460 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900461 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200462 */
463void blk_run_queue(struct request_queue *q)
464{
465 unsigned long flags;
466
467 spin_lock_irqsave(q->queue_lock, flags);
468 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 spin_unlock_irqrestore(q->queue_lock, flags);
470}
471EXPORT_SYMBOL(blk_run_queue);
472
Jens Axboe165125e2007-07-24 09:28:11 +0200473void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500474{
475 kobject_put(&q->kobj);
476}
Al Viro483f4af2006-03-18 18:34:37 -0500477
Jens Axboe6728cb02008-01-31 13:03:55 +0100478void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500479{
Jens Axboee3335de92008-09-18 09:22:54 -0700480 /*
481 * We know we have process context here, so we can be a little
482 * cautious and ensure that pending block actions on this device
483 * are done before moving on. Going into this function, we should
484 * not have processes doing IO to this device.
485 */
486 blk_sync_queue(q);
487
Matthew Garrett31373d02010-04-06 14:25:14 +0200488 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500489 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200490 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500491 mutex_unlock(&q->sysfs_lock);
492
493 if (q->elevator)
494 elevator_exit(q->elevator);
495
496 blk_put_queue(q);
497}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498EXPORT_SYMBOL(blk_cleanup_queue);
499
Jens Axboe165125e2007-07-24 09:28:11 +0200500static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct request_list *rl = &q->rq;
503
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400504 if (unlikely(rl->rq_pool))
505 return 0;
506
Jens Axboe1faa16d2009-04-06 14:48:01 +0200507 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
508 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200509 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200510 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
511 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Christoph Lameter19460892005-06-23 00:08:19 -0700513 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
514 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (!rl->rq_pool)
517 return -ENOMEM;
518
519 return 0;
520}
521
Jens Axboe165125e2007-07-24 09:28:11 +0200522struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Christoph Lameter19460892005-06-23 00:08:19 -0700524 return blk_alloc_queue_node(gfp_mask, -1);
525}
526EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Jens Axboe165125e2007-07-24 09:28:11 +0200528struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700529{
Jens Axboe165125e2007-07-24 09:28:11 +0200530 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700531 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700532
Jens Axboe8324aa92008-01-29 14:51:59 +0100533 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700534 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!q)
536 return NULL;
537
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700538 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
539 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200540 q->backing_dev_info.ra_pages =
541 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
542 q->backing_dev_info.state = 0;
543 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200544 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200545
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700546 err = bdi_init(&q->backing_dev_info);
547 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100548 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700549 return NULL;
550 }
551
Vivek Goyale43473b2010-09-15 17:06:35 -0400552 if (blk_throtl_init(q)) {
553 kmem_cache_free(blk_requestq_cachep, q);
554 return NULL;
555 }
556
Matthew Garrett31373d02010-04-06 14:25:14 +0200557 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
558 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700560 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
561 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100562 INIT_LIST_HEAD(&q->flush_queue[0]);
563 INIT_LIST_HEAD(&q->flush_queue[1]);
564 INIT_LIST_HEAD(&q->flush_data_in_flight);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200565 INIT_WORK(&q->unplug_work, blk_unplug_work);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500566 INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
Al Viro483f4af2006-03-18 18:34:37 -0500567
Jens Axboe8324aa92008-01-29 14:51:59 +0100568 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Al Viro483f4af2006-03-18 18:34:37 -0500570 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700571 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return q;
574}
Christoph Lameter19460892005-06-23 00:08:19 -0700575EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577/**
578 * blk_init_queue - prepare a request queue for use with a block device
579 * @rfn: The function to be called to process requests that have been
580 * placed on the queue.
581 * @lock: Request queue spin lock
582 *
583 * Description:
584 * If a block device wishes to use the standard request handling procedures,
585 * which sorts requests and coalesces adjacent requests, then it must
586 * call blk_init_queue(). The function @rfn will be called when there
587 * are requests on the queue that need to be processed. If the device
588 * supports plugging, then @rfn may not be called immediately when requests
589 * are available on the queue, but may be called at some time later instead.
590 * Plugged queues are generally unplugged when a buffer belonging to one
591 * of the requests on the queue is needed, or due to memory pressure.
592 *
593 * @rfn is not required, or even expected, to remove all requests off the
594 * queue, but only as many as it can handle at a time. If it does leave
595 * requests on the queue, it is responsible for arranging that the requests
596 * get dealt with eventually.
597 *
598 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200599 * request queue; this lock will be taken also from interrupt context, so irq
600 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200602 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * it didn't succeed.
604 *
605 * Note:
606 * blk_init_queue() must be paired with a blk_cleanup_queue() call
607 * when the block device is deactivated (such as at module unload).
608 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700609
Jens Axboe165125e2007-07-24 09:28:11 +0200610struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Christoph Lameter19460892005-06-23 00:08:19 -0700612 return blk_init_queue_node(rfn, lock, -1);
613}
614EXPORT_SYMBOL(blk_init_queue);
615
Jens Axboe165125e2007-07-24 09:28:11 +0200616struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700617blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
618{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600619 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600621 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
622 if (!uninit_q)
623 return NULL;
624
625 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
626 if (!q)
627 blk_cleanup_queue(uninit_q);
628
629 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200630}
631EXPORT_SYMBOL(blk_init_queue_node);
632
633struct request_queue *
634blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
635 spinlock_t *lock)
636{
637 return blk_init_allocated_queue_node(q, rfn, lock, -1);
638}
639EXPORT_SYMBOL(blk_init_allocated_queue);
640
641struct request_queue *
642blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
643 spinlock_t *lock, int node_id)
644{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!q)
646 return NULL;
647
Christoph Lameter19460892005-06-23 00:08:19 -0700648 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600649 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500650 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900654 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100656 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 q->queue_lock = lock;
658
Jens Axboef3b144a2009-03-06 08:48:33 +0100659 /*
660 * This also sets hw/phys segments, boundary and size
661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Alan Stern44ec9542007-02-20 11:01:57 -0500664 q->sg_reserved_size = INT_MAX;
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
667 * all done
668 */
669 if (!elevator_init(q, NULL)) {
670 blk_queue_congestion_threshold(q);
671 return q;
672 }
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return NULL;
675}
Mike Snitzer01effb02010-05-11 08:57:42 +0200676EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Jens Axboe165125e2007-07-24 09:28:11 +0200678int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700680 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500681 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
683 }
684
685 return 1;
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jens Axboe165125e2007-07-24 09:28:11 +0200688static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Jens Axboe73c10102011-03-08 13:19:51 +0100690 BUG_ON(rq->cmd_flags & REQ_ON_PLUG);
691
Jens Axboe4aff5e22006-08-10 08:44:47 +0200692 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200693 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 mempool_free(rq, q->rq.rq_pool);
695}
696
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200697static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200698blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
701
702 if (!rq)
703 return NULL;
704
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200705 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200706
Jerome Marchand42dad762009-04-22 14:01:49 +0200707 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Tejun Heocb98fc82005-10-28 08:29:39 +0200709 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200710 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200711 mempool_free(rq, q->rq.rq_pool);
712 return NULL;
713 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200714 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Tejun Heocb98fc82005-10-28 08:29:39 +0200717 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720/*
721 * ioc_batching returns true if the ioc is a valid batching request and
722 * should be given priority access to a request.
723 */
Jens Axboe165125e2007-07-24 09:28:11 +0200724static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 if (!ioc)
727 return 0;
728
729 /*
730 * Make sure the process is able to allocate at least 1 request
731 * even if the batch times out, otherwise we could theoretically
732 * lose wakeups.
733 */
734 return ioc->nr_batch_requests == q->nr_batching ||
735 (ioc->nr_batch_requests > 0
736 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
737}
738
739/*
740 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
741 * will cause the process to be a "batcher" on all queues in the system. This
742 * is the behaviour we want though - once it gets a wakeup it should be given
743 * a nice run.
744 */
Jens Axboe165125e2007-07-24 09:28:11 +0200745static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 if (!ioc || ioc_batching(q, ioc))
748 return;
749
750 ioc->nr_batch_requests = q->nr_batching;
751 ioc->last_waited = jiffies;
752}
753
Jens Axboe1faa16d2009-04-06 14:48:01 +0200754static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 struct request_list *rl = &q->rq;
757
Jens Axboe1faa16d2009-04-06 14:48:01 +0200758 if (rl->count[sync] < queue_congestion_off_threshold(q))
759 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Jens Axboe1faa16d2009-04-06 14:48:01 +0200761 if (rl->count[sync] + 1 <= q->nr_requests) {
762 if (waitqueue_active(&rl->wait[sync]))
763 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Jens Axboe1faa16d2009-04-06 14:48:01 +0200765 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767}
768
769/*
770 * A request has just been released. Account for it, update the full and
771 * congestion status, wake up any waiters. Called under q->queue_lock.
772 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200773static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 struct request_list *rl = &q->rq;
776
Jens Axboe1faa16d2009-04-06 14:48:01 +0200777 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200778 if (priv)
779 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Jens Axboe1faa16d2009-04-06 14:48:01 +0200781 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Jens Axboe1faa16d2009-04-06 14:48:01 +0200783 if (unlikely(rl->starved[sync ^ 1]))
784 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100788 * Determine if elevator data should be initialized when allocating the
789 * request associated with @bio.
790 */
791static bool blk_rq_should_init_elevator(struct bio *bio)
792{
793 if (!bio)
794 return true;
795
796 /*
797 * Flush requests do not use the elevator so skip initialization.
798 * This allows a request to share the flush and elevator data.
799 */
800 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
801 return false;
802
803 return true;
804}
805
806/*
Nick Piggind6344532005-06-28 20:45:14 -0700807 * Get a free request, queue_lock must be held.
808 * Returns NULL on failure, with queue_lock held.
809 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 */
Jens Axboe165125e2007-07-24 09:28:11 +0200811static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100812 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 struct request *rq = NULL;
815 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100816 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200817 const bool is_sync = rw_is_sync(rw_flags) != 0;
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100818 int may_queue, priv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jens Axboe7749a8d2006-12-13 13:02:26 +0100820 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100821 if (may_queue == ELV_MQUEUE_NO)
822 goto rq_starved;
823
Jens Axboe1faa16d2009-04-06 14:48:01 +0200824 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
825 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200826 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100827 /*
828 * The queue will fill after this allocation, so set
829 * it as full, and mark this process as "batching".
830 * This process will be allowed to complete a batch of
831 * requests, others will be blocked.
832 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200833 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100834 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200835 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100836 } else {
837 if (may_queue != ELV_MQUEUE_MUST
838 && !ioc_batching(q, ioc)) {
839 /*
840 * The queue is full and the allocating
841 * process is not a "batcher", and not
842 * exempted by the IO scheduler
843 */
844 goto out;
845 }
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200848 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Jens Axboe082cf692005-06-28 16:35:11 +0200851 /*
852 * Only allow batching queuers to allocate up to 50% over the defined
853 * limit of requests, otherwise we could have thousands of requests
854 * allocated with any setting of ->nr_requests
855 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200856 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200857 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100858
Jens Axboe1faa16d2009-04-06 14:48:01 +0200859 rl->count[is_sync]++;
860 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200861
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100862 if (blk_rq_should_init_elevator(bio)) {
863 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
864 if (priv)
865 rl->elvpriv++;
866 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200867
Jens Axboef253b862010-10-24 22:06:02 +0200868 if (blk_queue_io_stat(q))
869 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 spin_unlock_irq(q->queue_lock);
871
Jens Axboe7749a8d2006-12-13 13:02:26 +0100872 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100873 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /*
875 * Allocation failed presumably due to memory. Undo anything
876 * we might have messed up.
877 *
878 * Allocating task should really be put onto the front of the
879 * wait queue, but this is pretty rare.
880 */
881 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200882 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 /*
885 * in the very unlikely event that allocation failed and no
886 * requests for this direction was pending, mark us starved
887 * so that freeing of a request in the other direction will
888 * notice us. another possible fix would be to split the
889 * rq mempool into READ and WRITE
890 */
891rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200892 if (unlikely(rl->count[is_sync] == 0))
893 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 goto out;
896 }
897
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100898 /*
899 * ioc may be NULL here, and ioc_batching will be false. That's
900 * OK, if the queue is under the request limit then requests need
901 * not count toward the nr_batch_requests limit. There will always
902 * be some limit enforced by BLK_BATCH_TIME.
903 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (ioc_batching(q, ioc))
905 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100906
Jens Axboe1faa16d2009-04-06 14:48:01 +0200907 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return rq;
910}
911
912/*
913 * No available requests for this queue, unplug the device and wait for some
914 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700915 *
916 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
Jens Axboe165125e2007-07-24 09:28:11 +0200918static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200919 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200921 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct request *rq;
923
Jens Axboe7749a8d2006-12-13 13:02:26 +0100924 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700925 while (!rq) {
926 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200927 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct request_list *rl = &q->rq;
929
Jens Axboe1faa16d2009-04-06 14:48:01 +0200930 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 TASK_UNINTERRUPTIBLE);
932
Jens Axboe1faa16d2009-04-06 14:48:01 +0200933 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200935 __generic_unplug_device(q);
936 spin_unlock_irq(q->queue_lock);
937 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200939 /*
940 * After sleeping, we become a "batching" process and
941 * will be able to allocate at least one request, and
942 * up to a big batch of them for a small period time.
943 * See ioc_batching, ioc_set_batching
944 */
945 ioc = current_io_context(GFP_NOIO, q->node);
946 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100947
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200948 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200949 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200950
951 rq = get_request(q, rw_flags, bio, GFP_NOIO);
952 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 return rq;
955}
956
Jens Axboe165125e2007-07-24 09:28:11 +0200957struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 struct request *rq;
960
961 BUG_ON(rw != READ && rw != WRITE);
962
Nick Piggind6344532005-06-28 20:45:14 -0700963 spin_lock_irq(q->queue_lock);
964 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200965 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700966 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200967 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700968 if (!rq)
969 spin_unlock_irq(q->queue_lock);
970 }
971 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 return rq;
974}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975EXPORT_SYMBOL(blk_get_request);
976
977/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300978 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700979 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300980 * @bio: The bio describing the memory mappings that will be submitted for IO.
981 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700982 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200983 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300984 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
985 * type commands. Where the struct request needs to be farther initialized by
986 * the caller. It is passed a &struct bio, which describes the memory info of
987 * the I/O transfer.
988 *
989 * The caller of blk_make_request must make sure that bi_io_vec
990 * are set to describe the memory buffers. That bio_data_dir() will return
991 * the needed direction of the request. (And all bio's in the passed bio-chain
992 * are properly set accordingly)
993 *
994 * If called under none-sleepable conditions, mapped bio buffers must not
995 * need bouncing, by calling the appropriate masked or flagged allocator,
996 * suitable for the target device. Otherwise the call to blk_queue_bounce will
997 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200998 *
999 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
1000 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
1001 * anything but the first bio in the chain. Otherwise you risk waiting for IO
1002 * completion of a bio that hasn't been submitted yet, thus resulting in a
1003 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
1004 * of bio_alloc(), as that avoids the mempool deadlock.
1005 * If possible a big IO should be split into smaller parts when allocation
1006 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +02001007 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001008struct request *blk_make_request(struct request_queue *q, struct bio *bio,
1009 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +02001010{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001011 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
1012
1013 if (unlikely(!rq))
1014 return ERR_PTR(-ENOMEM);
1015
1016 for_each_bio(bio) {
1017 struct bio *bounce_bio = bio;
1018 int ret;
1019
1020 blk_queue_bounce(q, &bounce_bio);
1021 ret = blk_rq_append_bio(q, rq, bounce_bio);
1022 if (unlikely(ret)) {
1023 blk_put_request(rq);
1024 return ERR_PTR(ret);
1025 }
1026 }
1027
1028 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +02001029}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001030EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +02001031
1032/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * blk_requeue_request - put a request back on queue
1034 * @q: request queue where request should be inserted
1035 * @rq: request to be inserted
1036 *
1037 * Description:
1038 * Drivers often keep queueing requests until the hardware cannot accept
1039 * more, when that condition happens we need to put the request back
1040 * on the queue. Must be called with queue lock held.
1041 */
Jens Axboe165125e2007-07-24 09:28:11 +02001042void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001044 blk_delete_timer(rq);
1045 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001046 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (blk_rq_tagged(rq))
1049 blk_queue_end_tag(q, rq);
1050
James Bottomleyba396a62009-05-27 14:17:08 +02001051 BUG_ON(blk_queued_rq(rq));
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 elv_requeue_request(q, rq);
1054}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055EXPORT_SYMBOL(blk_requeue_request);
1056
Jens Axboe73c10102011-03-08 13:19:51 +01001057static void add_acct_request(struct request_queue *q, struct request *rq,
1058 int where)
1059{
1060 drive_stat_acct(rq, 1);
1061 __elv_add_request(q, rq, where, 0);
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001065 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 * @q: request queue where request should be inserted
1067 * @rq: request to be inserted
1068 * @at_head: insert request at head or tail of queue
1069 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 *
1071 * Description:
1072 * Many block devices need to execute commands asynchronously, so they don't
1073 * block the whole kernel from preemption during request execution. This is
1074 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001075 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1076 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 *
1078 * We have the option of inserting the head or the tail of the queue.
1079 * Typically we use the tail for new ioctls and so forth. We use the head
1080 * of the queue for things like a QUEUE_FULL message from a device, or a
1081 * host that is unable to accept a particular command.
1082 */
Jens Axboe165125e2007-07-24 09:28:11 +02001083void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001084 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Tejun Heo 867d1192005-04-24 02:06:05 -05001086 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 unsigned long flags;
1088
1089 /*
1090 * tell I/O scheduler that this isn't a regular read/write (ie it
1091 * must not attempt merges on this) and that it acts as a soft
1092 * barrier
1093 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001094 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 rq->special = data;
1097
1098 spin_lock_irqsave(q->queue_lock, flags);
1099
1100 /*
1101 * If command is tagged, release the tag
1102 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001103 if (blk_rq_tagged(rq))
1104 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Jens Axboe73c10102011-03-08 13:19:51 +01001106 add_acct_request(q, rq, where);
Tejun Heoa7f55792009-04-23 11:05:17 +09001107 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 spin_unlock_irqrestore(q->queue_lock, flags);
1109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110EXPORT_SYMBOL(blk_insert_request);
1111
Tejun Heo074a7ac2008-08-25 19:56:14 +09001112static void part_round_stats_single(int cpu, struct hd_struct *part,
1113 unsigned long now)
1114{
1115 if (now == part->stamp)
1116 return;
1117
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001118 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001119 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001120 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001121 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1122 }
1123 part->stamp = now;
1124}
1125
1126/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001127 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1128 * @cpu: cpu number for stats access
1129 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 *
1131 * The average IO queue length and utilisation statistics are maintained
1132 * by observing the current state of the queue length and the amount of
1133 * time it has been in this state for.
1134 *
1135 * Normally, that accounting is done on IO completion, but that can result
1136 * in more than a second's worth of IO being accounted for within any one
1137 * second, leading to >100% utilisation. To deal with that, we call this
1138 * function to do a round-off before returning the results when reading
1139 * /proc/diskstats. This accounts immediately for all queue usage up to
1140 * the current jiffies and restarts the counters again.
1141 */
Tejun Heoc9959052008-08-25 19:47:21 +09001142void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001143{
1144 unsigned long now = jiffies;
1145
Tejun Heo074a7ac2008-08-25 19:56:14 +09001146 if (part->partno)
1147 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1148 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001149}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001150EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152/*
1153 * queue lock must be held
1154 */
Jens Axboe165125e2007-07-24 09:28:11 +02001155void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (unlikely(!q))
1158 return;
1159 if (unlikely(--req->ref_count))
1160 return;
1161
Tejun Heo8922e162005-10-20 16:23:44 +02001162 elv_completed_request(q, req);
1163
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001164 /* this is a bio leak */
1165 WARN_ON(req->bio != NULL);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * Request may not have originated from ll_rw_blk. if not,
1169 * it didn't come out of our reserved rq pools
1170 */
Jens Axboe49171e52006-08-10 08:59:11 +02001171 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001172 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001173 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001176 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001179 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001182EXPORT_SYMBOL_GPL(__blk_put_request);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184void blk_put_request(struct request *req)
1185{
Tejun Heo8922e162005-10-20 16:23:44 +02001186 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001187 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001189 spin_lock_irqsave(q->queue_lock, flags);
1190 __blk_put_request(q, req);
1191 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193EXPORT_SYMBOL(blk_put_request);
1194
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001195/**
1196 * blk_add_request_payload - add a payload to a request
1197 * @rq: request to update
1198 * @page: page backing the payload
1199 * @len: length of the payload.
1200 *
1201 * This allows to later add a payload to an already submitted request by
1202 * a block driver. The driver needs to take care of freeing the payload
1203 * itself.
1204 *
1205 * Note that this is a quite horrible hack and nothing but handling of
1206 * discard requests should ever use it.
1207 */
1208void blk_add_request_payload(struct request *rq, struct page *page,
1209 unsigned int len)
1210{
1211 struct bio *bio = rq->bio;
1212
1213 bio->bi_io_vec->bv_page = page;
1214 bio->bi_io_vec->bv_offset = 0;
1215 bio->bi_io_vec->bv_len = len;
1216
1217 bio->bi_size = len;
1218 bio->bi_vcnt = 1;
1219 bio->bi_phys_segments = 1;
1220
1221 rq->__data_len = rq->resid_len = len;
1222 rq->nr_phys_segments = 1;
1223 rq->buffer = bio_data(bio);
1224}
1225EXPORT_SYMBOL_GPL(blk_add_request_payload);
1226
Jens Axboe73c10102011-03-08 13:19:51 +01001227static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1228 struct bio *bio)
1229{
1230 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1231
1232 /*
1233 * Debug stuff, kill later
1234 */
1235 if (!rq_mergeable(req)) {
1236 blk_dump_rq_flags(req, "back");
1237 return false;
1238 }
1239
1240 if (!ll_back_merge_fn(q, req, bio))
1241 return false;
1242
1243 trace_block_bio_backmerge(q, bio);
1244
1245 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1246 blk_rq_set_mixed_merge(req);
1247
1248 req->biotail->bi_next = bio;
1249 req->biotail = bio;
1250 req->__data_len += bio->bi_size;
1251 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1252
1253 drive_stat_acct(req, 0);
1254 return true;
1255}
1256
1257static bool bio_attempt_front_merge(struct request_queue *q,
1258 struct request *req, struct bio *bio)
1259{
1260 const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1261 sector_t sector;
1262
1263 /*
1264 * Debug stuff, kill later
1265 */
1266 if (!rq_mergeable(req)) {
1267 blk_dump_rq_flags(req, "front");
1268 return false;
1269 }
1270
1271 if (!ll_front_merge_fn(q, req, bio))
1272 return false;
1273
1274 trace_block_bio_frontmerge(q, bio);
1275
1276 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1277 blk_rq_set_mixed_merge(req);
1278
1279 sector = bio->bi_sector;
1280
1281 bio->bi_next = req->bio;
1282 req->bio = bio;
1283
1284 /*
1285 * may not be valid. if the low level driver said
1286 * it didn't need a bounce buffer then it better
1287 * not touch req->buffer either...
1288 */
1289 req->buffer = bio_data(bio);
1290 req->__sector = bio->bi_sector;
1291 req->__data_len += bio->bi_size;
1292 req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1293
1294 drive_stat_acct(req, 0);
1295 return true;
1296}
1297
1298/*
1299 * Attempts to merge with the plugged list in the current process. Returns
1300 * true if merge was succesful, otherwise false.
1301 */
1302static bool attempt_plug_merge(struct task_struct *tsk, struct request_queue *q,
1303 struct bio *bio)
1304{
1305 struct blk_plug *plug;
1306 struct request *rq;
1307 bool ret = false;
1308
1309 plug = tsk->plug;
1310 if (!plug)
1311 goto out;
1312
1313 list_for_each_entry_reverse(rq, &plug->list, queuelist) {
1314 int el_ret;
1315
1316 if (rq->q != q)
1317 continue;
1318
1319 el_ret = elv_try_merge(rq, bio);
1320 if (el_ret == ELEVATOR_BACK_MERGE) {
1321 ret = bio_attempt_back_merge(q, rq, bio);
1322 if (ret)
1323 break;
1324 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1325 ret = bio_attempt_front_merge(q, rq, bio);
1326 if (ret)
1327 break;
1328 }
1329 }
1330out:
1331 return ret;
1332}
1333
Jens Axboe86db1e22008-01-29 14:53:40 +01001334void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001335{
Jens Axboec7c22e42008-09-13 20:26:01 +02001336 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001337 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001338
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001339 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1340 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001341 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001342
Tejun Heo52d9e672006-01-06 09:49:58 +01001343 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001344 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001345 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001346 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001347}
1348
Jens Axboe165125e2007-07-24 09:28:11 +02001349static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001351 const bool sync = !!(bio->bi_rw & REQ_SYNC);
Jens Axboe73c10102011-03-08 13:19:51 +01001352 struct blk_plug *plug;
1353 int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
1354 struct request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 /*
1357 * low level driver can indicate that it wants pages above a
1358 * certain limit bounced to low memory (ie for highmem, or even
1359 * ISA dma in theory)
1360 */
1361 blk_queue_bounce(q, &bio);
1362
Tejun Heo4fed9472010-09-03 11:56:17 +02001363 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Jens Axboe73c10102011-03-08 13:19:51 +01001364 spin_lock_irq(q->queue_lock);
Tejun Heoae1b1532011-01-25 12:43:54 +01001365 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001366 goto get_rq;
1367 }
1368
Jens Axboe73c10102011-03-08 13:19:51 +01001369 /*
1370 * Check if we can merge with the plugged list before grabbing
1371 * any locks.
1372 */
1373 if (attempt_plug_merge(current, q, bio))
1374 goto out;
1375
1376 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 el_ret = elv_merge(q, &req, bio);
Jens Axboe73c10102011-03-08 13:19:51 +01001379 if (el_ret == ELEVATOR_BACK_MERGE) {
1380 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1381 if (bio_attempt_back_merge(q, req, bio)) {
1382 if (!attempt_back_merge(q, req))
1383 elv_merged_request(q, req, el_ret);
1384 goto out_unlock;
Tejun Heo80a761f2009-07-03 17:48:17 +09001385 }
Jens Axboe73c10102011-03-08 13:19:51 +01001386 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1387 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1388 if (bio_attempt_front_merge(q, req, bio)) {
1389 if (!attempt_front_merge(q, req))
1390 elv_merged_request(q, req, el_ret);
1391 goto out_unlock;
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001396 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001397 * This sync check and mask will be re-done in init_request_from_bio(),
1398 * but we need to set it earlier to expose the sync flag to the
1399 * rq allocator and io schedulers.
1400 */
1401 rw_flags = bio_data_dir(bio);
1402 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001403 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001404
1405 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001406 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001407 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001408 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001409 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001410
Nick Piggin450991b2005-06-28 20:45:13 -07001411 /*
1412 * After dropping the lock and possibly sleeping here, our request
1413 * may now be mergeable after it had proven unmergeable (above).
1414 * We don't worry about that case for efficiency. It won't happen
1415 * often, and the elevators are able to handle it.
1416 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001417 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Jens Axboec7c22e42008-09-13 20:26:01 +02001419 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
Jens Axboe73c10102011-03-08 13:19:51 +01001420 bio_flagged(bio, BIO_CPU_AFFINE)) {
1421 req->cpu = blk_cpu_to_group(get_cpu());
1422 put_cpu();
1423 }
Tejun Heodd831002010-09-03 11:56:16 +02001424
Jens Axboe73c10102011-03-08 13:19:51 +01001425 plug = current->plug;
1426 if (plug && !sync) {
1427 if (!plug->should_sort && !list_empty(&plug->list)) {
1428 struct request *__rq;
1429
1430 __rq = list_entry_rq(plug->list.prev);
1431 if (__rq->q != q)
1432 plug->should_sort = 1;
1433 }
1434 /*
1435 * Debug flag, kill later
1436 */
1437 req->cmd_flags |= REQ_ON_PLUG;
1438 list_add_tail(&req->queuelist, &plug->list);
1439 drive_stat_acct(req, 1);
1440 } else {
1441 spin_lock_irq(q->queue_lock);
1442 add_acct_request(q, req, where);
1443 __blk_run_queue(q);
1444out_unlock:
1445 spin_unlock_irq(q->queue_lock);
1446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
1451/*
1452 * If bio->bi_dev is a partition, remap the location
1453 */
1454static inline void blk_partition_remap(struct bio *bio)
1455{
1456 struct block_device *bdev = bio->bi_bdev;
1457
Jens Axboebf2de6f2007-09-27 13:01:25 +02001458 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 bio->bi_sector += p->start_sect;
1462 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001463
Mike Snitzerd07335e2010-11-16 12:52:38 +01001464 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1465 bdev->bd_dev,
1466 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470static void handle_bad_sector(struct bio *bio)
1471{
1472 char b[BDEVNAME_SIZE];
1473
1474 printk(KERN_INFO "attempt to access beyond end of device\n");
1475 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1476 bdevname(bio->bi_bdev, b),
1477 bio->bi_rw,
1478 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001479 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 set_bit(BIO_EOF, &bio->bi_flags);
1482}
1483
Akinobu Mitac17bb492006-12-08 02:39:46 -08001484#ifdef CONFIG_FAIL_MAKE_REQUEST
1485
1486static DECLARE_FAULT_ATTR(fail_make_request);
1487
1488static int __init setup_fail_make_request(char *str)
1489{
1490 return setup_fault_attr(&fail_make_request, str);
1491}
1492__setup("fail_make_request=", setup_fail_make_request);
1493
1494static int should_fail_request(struct bio *bio)
1495{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001496 struct hd_struct *part = bio->bi_bdev->bd_part;
1497
1498 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001499 return should_fail(&fail_make_request, bio->bi_size);
1500
1501 return 0;
1502}
1503
1504static int __init fail_make_request_debugfs(void)
1505{
1506 return init_fault_attr_dentries(&fail_make_request,
1507 "fail_make_request");
1508}
1509
1510late_initcall(fail_make_request_debugfs);
1511
1512#else /* CONFIG_FAIL_MAKE_REQUEST */
1513
1514static inline int should_fail_request(struct bio *bio)
1515{
1516 return 0;
1517}
1518
1519#endif /* CONFIG_FAIL_MAKE_REQUEST */
1520
Jens Axboec07e2b42007-07-18 13:27:58 +02001521/*
1522 * Check whether this bio extends beyond the end of the device.
1523 */
1524static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1525{
1526 sector_t maxsector;
1527
1528 if (!nr_sectors)
1529 return 0;
1530
1531 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001532 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001533 if (maxsector) {
1534 sector_t sector = bio->bi_sector;
1535
1536 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1537 /*
1538 * This may well happen - the kernel calls bread()
1539 * without checking the size of the device, e.g., when
1540 * mounting a device.
1541 */
1542 handle_bad_sector(bio);
1543 return 1;
1544 }
1545 }
1546
1547 return 0;
1548}
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001551 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 * @bio: The bio describing the location in memory and on the device.
1553 *
1554 * generic_make_request() is used to make I/O requests of block
1555 * devices. It is passed a &struct bio, which describes the I/O that needs
1556 * to be done.
1557 *
1558 * generic_make_request() does not return any status. The
1559 * success/failure status of the request, along with notification of
1560 * completion, is delivered asynchronously through the bio->bi_end_io
1561 * function described (one day) else where.
1562 *
1563 * The caller of generic_make_request must make sure that bi_io_vec
1564 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1565 * set to describe the device address, and the
1566 * bi_end_io and optionally bi_private are set to describe how
1567 * completion notification should be signaled.
1568 *
1569 * generic_make_request and the drivers it calls may use bi_next if this
1570 * bio happens to be merged with someone else, and may change bi_dev and
1571 * bi_sector for remaps as it sees fit. So the values of these fields
1572 * should NOT be depended on after the call to generic_make_request.
1573 */
Neil Brownd89d8792007-05-01 09:53:42 +02001574static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Jens Axboe165125e2007-07-24 09:28:11 +02001576 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001577 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001579 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001580 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Jens Axboec07e2b42007-07-18 13:27:58 +02001584 if (bio_check_eod(bio, nr_sectors))
1585 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /*
1588 * Resolve the mapping until finished. (drivers are
1589 * still free to implement/resolve their own stacking
1590 * by explicitly returning 0)
1591 *
1592 * NOTE: we don't repeat the blk_size check for each new device.
1593 * Stacking drivers are expected to know what they are doing.
1594 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001595 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001596 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 do {
1598 char b[BDEVNAME_SIZE];
1599
1600 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001601 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 printk(KERN_ERR
1603 "generic_make_request: Trying to access "
1604 "nonexistent block-device %s (%Lu)\n",
1605 bdevname(bio->bi_bdev, b),
1606 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001607 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
1609
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001610 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001611 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001612 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001613 bdevname(bio->bi_bdev, b),
1614 bio_sectors(bio),
1615 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto end_io;
1617 }
1618
Nick Pigginfde6ad22005-06-23 00:08:53 -07001619 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 goto end_io;
1621
Akinobu Mitac17bb492006-12-08 02:39:46 -08001622 if (should_fail_request(bio))
1623 goto end_io;
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 /*
1626 * If this device has partitions, remap block n
1627 * of partition p to block n+start(p) of the disk.
1628 */
1629 blk_partition_remap(bio);
1630
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001631 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1632 goto end_io;
1633
NeilBrown5ddfe962006-10-30 22:07:21 -08001634 if (old_sector != -1)
Mike Snitzerd07335e2010-11-16 12:52:38 +01001635 trace_block_bio_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001636
NeilBrown5ddfe962006-10-30 22:07:21 -08001637 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001638 old_dev = bio->bi_bdev->bd_dev;
1639
Jens Axboec07e2b42007-07-18 13:27:58 +02001640 if (bio_check_eod(bio, nr_sectors))
1641 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001642
Tejun Heo1e879012010-09-03 11:56:17 +02001643 /*
1644 * Filter flush bio's early so that make_request based
1645 * drivers without flush support don't have to worry
1646 * about them.
1647 */
1648 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1649 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1650 if (!nr_sectors) {
1651 err = 0;
1652 goto end_io;
1653 }
1654 }
1655
Adrian Hunter8d57a982010-08-11 14:17:49 -07001656 if ((bio->bi_rw & REQ_DISCARD) &&
1657 (!blk_queue_discard(q) ||
1658 ((bio->bi_rw & REQ_SECURE) &&
1659 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001660 err = -EOPNOTSUPP;
1661 goto end_io;
1662 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001663
Vivek Goyale43473b2010-09-15 17:06:35 -04001664 blk_throtl_bio(q, &bio);
1665
1666 /*
1667 * If bio = NULL, bio has been throttled and will be submitted
1668 * later.
1669 */
1670 if (!bio)
1671 break;
1672
Minchan Kim01edede2009-09-08 21:56:38 +02001673 trace_block_bio_queue(q, bio);
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 ret = q->make_request_fn(q, bio);
1676 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001677
1678 return;
1679
1680end_io:
1681 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Neil Brownd89d8792007-05-01 09:53:42 +02001684/*
1685 * We only want one ->make_request_fn to be active at a time,
1686 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001687 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001688 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001689 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001690 * generic_make_request is currently active in this task or not.
1691 * If it is NULL, then no make_request is active. If it is non-NULL,
1692 * then a make_request is active, and new requests should be added
1693 * at the tail
1694 */
1695void generic_make_request(struct bio *bio)
1696{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001697 struct bio_list bio_list_on_stack;
1698
1699 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001700 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001701 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001702 return;
1703 }
1704 /* following loop may be a bit non-obvious, and so deserves some
1705 * explanation.
1706 * Before entering the loop, bio->bi_next is NULL (as all callers
1707 * ensure that) so we have a list with a single bio.
1708 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001709 * we assign bio_list to a pointer to the bio_list_on_stack,
1710 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001711 * added. __generic_make_request may indeed add some more bios
1712 * through a recursive call to generic_make_request. If it
1713 * did, we find a non-NULL value in bio_list and re-enter the loop
1714 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001715 * of the top of the list (no pretending) and so remove it from
1716 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001717 *
1718 * The loop was structured like this to make only one call to
1719 * __generic_make_request (which is important as it is large and
1720 * inlined) and to keep the structure simple.
1721 */
1722 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001723 bio_list_init(&bio_list_on_stack);
1724 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001725 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001726 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001727 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001728 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001729 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001730}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731EXPORT_SYMBOL(generic_make_request);
1732
1733/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001734 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1736 * @bio: The &struct bio which describes the I/O
1737 *
1738 * submit_bio() is very similar in purpose to generic_make_request(), and
1739 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001740 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 *
1742 */
1743void submit_bio(int rw, struct bio *bio)
1744{
1745 int count = bio_sectors(bio);
1746
Jens Axboe22e2c502005-06-27 10:55:12 +02001747 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Jens Axboebf2de6f2007-09-27 13:01:25 +02001749 /*
1750 * If it's a regular read/write or a barrier with data attached,
1751 * go through the normal accounting stuff before submission.
1752 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001753 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001754 if (rw & WRITE) {
1755 count_vm_events(PGPGOUT, count);
1756 } else {
1757 task_io_account_read(bio->bi_size);
1758 count_vm_events(PGPGIN, count);
1759 }
1760
1761 if (unlikely(block_dump)) {
1762 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001763 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001764 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001765 (rw & WRITE) ? "WRITE" : "READ",
1766 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001767 bdevname(bio->bi_bdev, b),
1768 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
1772 generic_make_request(bio);
1773}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774EXPORT_SYMBOL(submit_bio);
1775
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001776/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001777 * blk_rq_check_limits - Helper function to check a request for the queue limit
1778 * @q: the queue
1779 * @rq: the request being checked
1780 *
1781 * Description:
1782 * @rq may have been made based on weaker limitations of upper-level queues
1783 * in request stacking drivers, and it may violate the limitation of @q.
1784 * Since the block layer and the underlying device driver trust @rq
1785 * after it is inserted to @q, it should be checked against @q before
1786 * the insertion using this generic function.
1787 *
1788 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001789 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001790 * Request stacking drivers like request-based dm may change the queue
1791 * limits while requests are in the queue (e.g. dm's table swapping).
1792 * Such request stacking drivers should check those requests agaist
1793 * the new queue limits again when they dispatch those requests,
1794 * although such checkings are also done against the old queue limits
1795 * when submitting requests.
1796 */
1797int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1798{
ike Snitzer33839772010-08-08 12:11:33 -04001799 if (rq->cmd_flags & REQ_DISCARD)
1800 return 0;
1801
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001802 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1803 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001804 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1805 return -EIO;
1806 }
1807
1808 /*
1809 * queue's settings related to segment counting like q->bounce_pfn
1810 * may differ from that of other stacking queues.
1811 * Recalculate it to check the request correctly on this queue's
1812 * limitation.
1813 */
1814 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001815 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001816 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1817 return -EIO;
1818 }
1819
1820 return 0;
1821}
1822EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1823
1824/**
1825 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1826 * @q: the queue to submit the request
1827 * @rq: the request being queued
1828 */
1829int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1830{
1831 unsigned long flags;
1832
1833 if (blk_rq_check_limits(q, rq))
1834 return -EIO;
1835
1836#ifdef CONFIG_FAIL_MAKE_REQUEST
1837 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1838 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1839 return -EIO;
1840#endif
1841
1842 spin_lock_irqsave(q->queue_lock, flags);
1843
1844 /*
1845 * Submitting request must be dequeued before calling this function
1846 * because it will be linked to another request_queue
1847 */
1848 BUG_ON(blk_queued_rq(rq));
1849
Jens Axboe73c10102011-03-08 13:19:51 +01001850 add_acct_request(q, rq, ELEVATOR_INSERT_BACK);
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001851 spin_unlock_irqrestore(q->queue_lock, flags);
1852
1853 return 0;
1854}
1855EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1856
Tejun Heo80a761f2009-07-03 17:48:17 +09001857/**
1858 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1859 * @rq: request to examine
1860 *
1861 * Description:
1862 * A request could be merge of IOs which require different failure
1863 * handling. This function determines the number of bytes which
1864 * can be failed from the beginning of the request without
1865 * crossing into area which need to be retried further.
1866 *
1867 * Return:
1868 * The number of bytes to fail.
1869 *
1870 * Context:
1871 * queue_lock must be held.
1872 */
1873unsigned int blk_rq_err_bytes(const struct request *rq)
1874{
1875 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1876 unsigned int bytes = 0;
1877 struct bio *bio;
1878
1879 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1880 return blk_rq_bytes(rq);
1881
1882 /*
1883 * Currently the only 'mixing' which can happen is between
1884 * different fastfail types. We can safely fail portions
1885 * which have all the failfast bits that the first one has -
1886 * the ones which are at least as eager to fail as the first
1887 * one.
1888 */
1889 for (bio = rq->bio; bio; bio = bio->bi_next) {
1890 if ((bio->bi_rw & ff) != ff)
1891 break;
1892 bytes += bio->bi_size;
1893 }
1894
1895 /* this could lead to infinite loop */
1896 BUG_ON(blk_rq_bytes(rq) && !bytes);
1897 return bytes;
1898}
1899EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1900
Jens Axboebc58ba92009-01-23 10:54:44 +01001901static void blk_account_io_completion(struct request *req, unsigned int bytes)
1902{
Jens Axboec2553b52009-04-24 08:10:11 +02001903 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001904 const int rw = rq_data_dir(req);
1905 struct hd_struct *part;
1906 int cpu;
1907
1908 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001909 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001910 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1911 part_stat_unlock();
1912 }
1913}
1914
1915static void blk_account_io_done(struct request *req)
1916{
Jens Axboebc58ba92009-01-23 10:54:44 +01001917 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001918 * Account IO completion. flush_rq isn't accounted as a
1919 * normal IO on queueing nor completion. Accounting the
1920 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001921 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001922 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001923 unsigned long duration = jiffies - req->start_time;
1924 const int rw = rq_data_dir(req);
1925 struct hd_struct *part;
1926 int cpu;
1927
1928 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001929 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001930
1931 part_stat_inc(cpu, part, ios[rw]);
1932 part_stat_add(cpu, part, ticks[rw], duration);
1933 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001934 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001935
Jens Axboe6c23a962011-01-07 08:43:37 +01001936 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001937 part_stat_unlock();
1938 }
1939}
1940
Tejun Heo53a08802008-12-03 12:41:26 +01001941/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001942 * blk_peek_request - peek at the top of a request queue
1943 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001944 *
1945 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001946 * Return the request at the top of @q. The returned request
1947 * should be started using blk_start_request() before LLD starts
1948 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001949 *
1950 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001951 * Pointer to the request at the top of @q if available. Null
1952 * otherwise.
1953 *
1954 * Context:
1955 * queue_lock must be held.
1956 */
1957struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001958{
1959 struct request *rq;
1960 int ret;
1961
1962 while ((rq = __elv_next_request(q)) != NULL) {
1963 if (!(rq->cmd_flags & REQ_STARTED)) {
1964 /*
1965 * This is the first time the device driver
1966 * sees this request (possibly after
1967 * requeueing). Notify IO scheduler.
1968 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001969 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001970 elv_activate_rq(q, rq);
1971
1972 /*
1973 * just mark as started even if we don't start
1974 * it, a request that has been delayed should
1975 * not be passed by new incoming requests
1976 */
1977 rq->cmd_flags |= REQ_STARTED;
1978 trace_block_rq_issue(q, rq);
1979 }
1980
1981 if (!q->boundary_rq || q->boundary_rq == rq) {
1982 q->end_sector = rq_end_sector(rq);
1983 q->boundary_rq = NULL;
1984 }
1985
1986 if (rq->cmd_flags & REQ_DONTPREP)
1987 break;
1988
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001989 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001990 /*
1991 * make sure space for the drain appears we
1992 * know we can do this because max_hw_segments
1993 * has been adjusted to be one fewer than the
1994 * device can handle
1995 */
1996 rq->nr_phys_segments++;
1997 }
1998
1999 if (!q->prep_rq_fn)
2000 break;
2001
2002 ret = q->prep_rq_fn(q, rq);
2003 if (ret == BLKPREP_OK) {
2004 break;
2005 } else if (ret == BLKPREP_DEFER) {
2006 /*
2007 * the request may have been (partially) prepped.
2008 * we need to keep this request in the front to
2009 * avoid resource deadlock. REQ_STARTED will
2010 * prevent other fs requests from passing this one.
2011 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002012 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09002013 !(rq->cmd_flags & REQ_DONTPREP)) {
2014 /*
2015 * remove the space for the drain we added
2016 * so that we don't add it again
2017 */
2018 --rq->nr_phys_segments;
2019 }
2020
2021 rq = NULL;
2022 break;
2023 } else if (ret == BLKPREP_KILL) {
2024 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02002025 /*
2026 * Mark this request as started so we don't trigger
2027 * any debug logic in the end I/O path.
2028 */
2029 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09002030 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09002031 } else {
2032 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
2033 break;
2034 }
2035 }
2036
2037 return rq;
2038}
Tejun Heo9934c8c2009-05-08 11:54:16 +09002039EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09002040
Tejun Heo9934c8c2009-05-08 11:54:16 +09002041void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09002042{
Tejun Heo9934c8c2009-05-08 11:54:16 +09002043 struct request_queue *q = rq->q;
2044
Tejun Heo158dbda2009-04-23 11:05:18 +09002045 BUG_ON(list_empty(&rq->queuelist));
2046 BUG_ON(ELV_ON_HASH(rq));
2047
2048 list_del_init(&rq->queuelist);
2049
2050 /*
2051 * the time frame between a request being removed from the lists
2052 * and to it is freed is accounted as io that is in progress at
2053 * the driver side.
2054 */
Divyesh Shah91952912010-04-01 15:01:41 -07002055 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02002056 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07002057 set_io_start_time_ns(rq);
2058 }
Tejun Heo158dbda2009-04-23 11:05:18 +09002059}
2060
Tejun Heo5efccd12009-04-23 11:05:18 +09002061/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09002062 * blk_start_request - start request processing on the driver
2063 * @req: request to dequeue
2064 *
2065 * Description:
2066 * Dequeue @req and start timeout timer on it. This hands off the
2067 * request to the driver.
2068 *
2069 * Block internal functions which don't want to start timer should
2070 * call blk_dequeue_request().
2071 *
2072 * Context:
2073 * queue_lock must be held.
2074 */
2075void blk_start_request(struct request *req)
2076{
2077 blk_dequeue_request(req);
2078
2079 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09002080 * We are now handing the request to the hardware, initialize
2081 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09002082 */
Tejun Heo5f49f632009-05-19 18:33:05 +09002083 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02002084 if (unlikely(blk_bidi_rq(req)))
2085 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
2086
Tejun Heo9934c8c2009-05-08 11:54:16 +09002087 blk_add_timer(req);
2088}
2089EXPORT_SYMBOL(blk_start_request);
2090
2091/**
2092 * blk_fetch_request - fetch a request from a request queue
2093 * @q: request queue to fetch a request from
2094 *
2095 * Description:
2096 * Return the request at the top of @q. The request is started on
2097 * return and LLD can start processing it immediately.
2098 *
2099 * Return:
2100 * Pointer to the request at the top of @q if available. Null
2101 * otherwise.
2102 *
2103 * Context:
2104 * queue_lock must be held.
2105 */
2106struct request *blk_fetch_request(struct request_queue *q)
2107{
2108 struct request *rq;
2109
2110 rq = blk_peek_request(q);
2111 if (rq)
2112 blk_start_request(rq);
2113 return rq;
2114}
2115EXPORT_SYMBOL(blk_fetch_request);
2116
2117/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002118 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002119 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002120 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002121 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002122 *
2123 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002124 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2125 * the request structure even if @req doesn't have leftover.
2126 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002127 *
2128 * This special helper function is only for request stacking drivers
2129 * (e.g. request-based dm) so that they can handle partial completion.
2130 * Actual device drivers should use blk_end_request instead.
2131 *
2132 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2133 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002134 *
2135 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002136 * %false - this request doesn't have any more data
2137 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002138 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002139bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002141 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 struct bio *bio;
2143
Tejun Heo2e60e022009-04-23 11:05:18 +09002144 if (!req->bio)
2145 return false;
2146
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002147 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002150 * For fs requests, rq is just carrier of independent bio's
2151 * and each partial completion should be handled separately.
2152 * Reset per-request error on each partial completion.
2153 *
2154 * TODO: tj: This is too subtle. It would be better to let
2155 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002157 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 req->errors = 0;
2159
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002160 if (error && req->cmd_type == REQ_TYPE_FS &&
2161 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002162 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002164 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166
Jens Axboebc58ba92009-01-23 10:54:44 +01002167 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 total_bytes = bio_nbytes = 0;
2170 while ((bio = req->bio) != NULL) {
2171 int nbytes;
2172
2173 if (nr_bytes >= bio->bi_size) {
2174 req->bio = bio->bi_next;
2175 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002176 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 next_idx = 0;
2178 bio_nbytes = 0;
2179 } else {
2180 int idx = bio->bi_idx + next_idx;
2181
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002182 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002184 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002185 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 break;
2187 }
2188
2189 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2190 BIO_BUG_ON(nbytes > bio->bi_size);
2191
2192 /*
2193 * not a complete bvec done
2194 */
2195 if (unlikely(nbytes > nr_bytes)) {
2196 bio_nbytes += nr_bytes;
2197 total_bytes += nr_bytes;
2198 break;
2199 }
2200
2201 /*
2202 * advance to the next vector
2203 */
2204 next_idx++;
2205 bio_nbytes += nbytes;
2206 }
2207
2208 total_bytes += nbytes;
2209 nr_bytes -= nbytes;
2210
Jens Axboe6728cb02008-01-31 13:03:55 +01002211 bio = req->bio;
2212 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 /*
2214 * end more in this run, or just return 'not-done'
2215 */
2216 if (unlikely(nr_bytes <= 0))
2217 break;
2218 }
2219 }
2220
2221 /*
2222 * completely done
2223 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002224 if (!req->bio) {
2225 /*
2226 * Reset counters so that the request stacking driver
2227 * can find how many bytes remain in the request
2228 * later.
2229 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002230 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002231 return false;
2232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 /*
2235 * if the request wasn't completed, update state
2236 */
2237 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002238 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 bio->bi_idx += next_idx;
2240 bio_iovec(bio)->bv_offset += nr_bytes;
2241 bio_iovec(bio)->bv_len -= nr_bytes;
2242 }
2243
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002244 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002245 req->buffer = bio_data(req->bio);
2246
2247 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002248 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002249 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002250
Tejun Heo80a761f2009-07-03 17:48:17 +09002251 /* mixed attributes always follow the first bio */
2252 if (req->cmd_flags & REQ_MIXED_MERGE) {
2253 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2254 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2255 }
2256
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002257 /*
2258 * If total number of sectors is less than the first segment
2259 * size, something has gone terribly wrong.
2260 */
2261 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2262 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002263 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002264 }
2265
2266 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002268
Tejun Heo2e60e022009-04-23 11:05:18 +09002269 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
Tejun Heo2e60e022009-04-23 11:05:18 +09002271EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Tejun Heo2e60e022009-04-23 11:05:18 +09002273static bool blk_update_bidi_request(struct request *rq, int error,
2274 unsigned int nr_bytes,
2275 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002276{
Tejun Heo2e60e022009-04-23 11:05:18 +09002277 if (blk_update_request(rq, error, nr_bytes))
2278 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002279
Tejun Heo2e60e022009-04-23 11:05:18 +09002280 /* Bidi request must be completed as a whole */
2281 if (unlikely(blk_bidi_rq(rq)) &&
2282 blk_update_request(rq->next_rq, error, bidi_bytes))
2283 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002284
Jens Axboee2e1a142010-06-09 10:42:09 +02002285 if (blk_queue_add_random(rq->q))
2286 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002287
2288 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
James Bottomley28018c22010-07-01 19:49:17 +09002291/**
2292 * blk_unprep_request - unprepare a request
2293 * @req: the request
2294 *
2295 * This function makes a request ready for complete resubmission (or
2296 * completion). It happens only after all error handling is complete,
2297 * so represents the appropriate moment to deallocate any resources
2298 * that were allocated to the request in the prep_rq_fn. The queue
2299 * lock is held when calling this.
2300 */
2301void blk_unprep_request(struct request *req)
2302{
2303 struct request_queue *q = req->q;
2304
2305 req->cmd_flags &= ~REQ_DONTPREP;
2306 if (q->unprep_rq_fn)
2307 q->unprep_rq_fn(q, req);
2308}
2309EXPORT_SYMBOL_GPL(blk_unprep_request);
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311/*
2312 * queue lock must be held
2313 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002314static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002316 if (blk_rq_tagged(req))
2317 blk_queue_end_tag(req->q, req);
2318
James Bottomleyba396a62009-05-27 14:17:08 +02002319 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002321 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002322 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Mike Andersone78042e2008-10-30 02:16:20 -07002324 blk_delete_timer(req);
2325
James Bottomley28018c22010-07-01 19:49:17 +09002326 if (req->cmd_flags & REQ_DONTPREP)
2327 blk_unprep_request(req);
2328
2329
Jens Axboebc58ba92009-01-23 10:54:44 +01002330 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002333 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002334 else {
2335 if (blk_bidi_rq(req))
2336 __blk_put_request(req->next_rq->q, req->next_rq);
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340}
2341
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002342/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002343 * blk_end_bidi_request - Complete a bidi request
2344 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002345 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002346 * @nr_bytes: number of bytes to complete @rq
2347 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002348 *
2349 * Description:
2350 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002351 * Drivers that supports bidi can safely call this member for any
2352 * type of request, bidi or uni. In the later case @bidi_bytes is
2353 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002354 *
2355 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002356 * %false - we are done with this request
2357 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002358 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002359static bool blk_end_bidi_request(struct request *rq, int error,
2360 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002361{
2362 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002363 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002364
Tejun Heo2e60e022009-04-23 11:05:18 +09002365 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2366 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002367
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002368 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002369 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002370 spin_unlock_irqrestore(q->queue_lock, flags);
2371
Tejun Heo2e60e022009-04-23 11:05:18 +09002372 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002373}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002374
2375/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002376 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2377 * @rq: the request to complete
2378 * @error: %0 for success, < %0 for error
2379 * @nr_bytes: number of bytes to complete @rq
2380 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002381 *
2382 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002383 * Identical to blk_end_bidi_request() except that queue lock is
2384 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002385 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002386 * Return:
2387 * %false - we are done with this request
2388 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002389 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002390static bool __blk_end_bidi_request(struct request *rq, int error,
2391 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002392{
Tejun Heo2e60e022009-04-23 11:05:18 +09002393 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2394 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002395
Tejun Heo2e60e022009-04-23 11:05:18 +09002396 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002397
Tejun Heo2e60e022009-04-23 11:05:18 +09002398 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002399}
2400
2401/**
2402 * blk_end_request - Helper function for drivers to complete the request.
2403 * @rq: the request being processed
2404 * @error: %0 for success, < %0 for error
2405 * @nr_bytes: number of bytes to complete
2406 *
2407 * Description:
2408 * Ends I/O on a number of bytes attached to @rq.
2409 * If @rq has leftover, sets it up for the next range of segments.
2410 *
2411 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002412 * %false - we are done with this request
2413 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002414 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002415bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002416{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002417 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002418}
Jens Axboe56ad1742009-07-28 22:11:24 +02002419EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002420
2421/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002422 * blk_end_request_all - Helper function for drives to finish the request.
2423 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002424 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002425 *
2426 * Description:
2427 * Completely finish @rq.
2428 */
2429void blk_end_request_all(struct request *rq, int error)
2430{
2431 bool pending;
2432 unsigned int bidi_bytes = 0;
2433
2434 if (unlikely(blk_bidi_rq(rq)))
2435 bidi_bytes = blk_rq_bytes(rq->next_rq);
2436
2437 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2438 BUG_ON(pending);
2439}
Jens Axboe56ad1742009-07-28 22:11:24 +02002440EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002441
2442/**
2443 * blk_end_request_cur - Helper function to finish the current request chunk.
2444 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002445 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002446 *
2447 * Description:
2448 * Complete the current consecutively mapped chunk from @rq.
2449 *
2450 * Return:
2451 * %false - we are done with this request
2452 * %true - still buffers pending for this request
2453 */
2454bool blk_end_request_cur(struct request *rq, int error)
2455{
2456 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2457}
Jens Axboe56ad1742009-07-28 22:11:24 +02002458EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002459
2460/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002461 * blk_end_request_err - Finish a request till the next failure boundary.
2462 * @rq: the request to finish till the next failure boundary for
2463 * @error: must be negative errno
2464 *
2465 * Description:
2466 * Complete @rq till the next failure boundary.
2467 *
2468 * Return:
2469 * %false - we are done with this request
2470 * %true - still buffers pending for this request
2471 */
2472bool blk_end_request_err(struct request *rq, int error)
2473{
2474 WARN_ON(error >= 0);
2475 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2476}
2477EXPORT_SYMBOL_GPL(blk_end_request_err);
2478
2479/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002480 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002481 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002482 * @error: %0 for success, < %0 for error
2483 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002484 *
2485 * Description:
2486 * Must be called with queue lock held unlike blk_end_request().
2487 *
2488 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002489 * %false - we are done with this request
2490 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002491 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002492bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002493{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002494 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002495}
Jens Axboe56ad1742009-07-28 22:11:24 +02002496EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002497
2498/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002499 * __blk_end_request_all - Helper function for drives to finish the request.
2500 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002501 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002502 *
2503 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002504 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002505 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002506void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002507{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002508 bool pending;
2509 unsigned int bidi_bytes = 0;
2510
2511 if (unlikely(blk_bidi_rq(rq)))
2512 bidi_bytes = blk_rq_bytes(rq->next_rq);
2513
2514 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2515 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002516}
Jens Axboe56ad1742009-07-28 22:11:24 +02002517EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002518
2519/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002520 * __blk_end_request_cur - Helper function to finish the current request chunk.
2521 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002522 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002523 *
2524 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002525 * Complete the current consecutively mapped chunk from @rq. Must
2526 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002527 *
2528 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002529 * %false - we are done with this request
2530 * %true - still buffers pending for this request
2531 */
2532bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002533{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002534 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002535}
Jens Axboe56ad1742009-07-28 22:11:24 +02002536EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002537
Tejun Heo80a761f2009-07-03 17:48:17 +09002538/**
2539 * __blk_end_request_err - Finish a request till the next failure boundary.
2540 * @rq: the request to finish till the next failure boundary for
2541 * @error: must be negative errno
2542 *
2543 * Description:
2544 * Complete @rq till the next failure boundary. Must be called
2545 * with queue lock held.
2546 *
2547 * Return:
2548 * %false - we are done with this request
2549 * %true - still buffers pending for this request
2550 */
2551bool __blk_end_request_err(struct request *rq, int error)
2552{
2553 WARN_ON(error >= 0);
2554 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2555}
2556EXPORT_SYMBOL_GPL(__blk_end_request_err);
2557
Jens Axboe86db1e22008-01-29 14:53:40 +01002558void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2559 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002561 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002562 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
David Woodhousefb2dce82008-08-05 18:01:53 +01002564 if (bio_has_data(bio)) {
2565 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002566 rq->buffer = bio_data(bio);
2567 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002568 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
NeilBrown66846572007-08-16 13:31:28 +02002571 if (bio->bi_bdev)
2572 rq->rq_disk = bio->bi_bdev->bd_disk;
2573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002575#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2576/**
2577 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2578 * @rq: the request to be flushed
2579 *
2580 * Description:
2581 * Flush all pages in @rq.
2582 */
2583void rq_flush_dcache_pages(struct request *rq)
2584{
2585 struct req_iterator iter;
2586 struct bio_vec *bvec;
2587
2588 rq_for_each_segment(bvec, rq, iter)
2589 flush_dcache_page(bvec->bv_page);
2590}
2591EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2592#endif
2593
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002594/**
2595 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2596 * @q : the queue of the device being checked
2597 *
2598 * Description:
2599 * Check if underlying low-level drivers of a device are busy.
2600 * If the drivers want to export their busy state, they must set own
2601 * exporting function using blk_queue_lld_busy() first.
2602 *
2603 * Basically, this function is used only by request stacking drivers
2604 * to stop dispatching requests to underlying devices when underlying
2605 * devices are busy. This behavior helps more I/O merging on the queue
2606 * of the request stacking driver and prevents I/O throughput regression
2607 * on burst I/O load.
2608 *
2609 * Return:
2610 * 0 - Not busy (The request stacking driver should dispatch request)
2611 * 1 - Busy (The request stacking driver should stop dispatching request)
2612 */
2613int blk_lld_busy(struct request_queue *q)
2614{
2615 if (q->lld_busy_fn)
2616 return q->lld_busy_fn(q);
2617
2618 return 0;
2619}
2620EXPORT_SYMBOL_GPL(blk_lld_busy);
2621
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002622/**
2623 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2624 * @rq: the clone request to be cleaned up
2625 *
2626 * Description:
2627 * Free all bios in @rq for a cloned request.
2628 */
2629void blk_rq_unprep_clone(struct request *rq)
2630{
2631 struct bio *bio;
2632
2633 while ((bio = rq->bio) != NULL) {
2634 rq->bio = bio->bi_next;
2635
2636 bio_put(bio);
2637 }
2638}
2639EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2640
2641/*
2642 * Copy attributes of the original request to the clone request.
2643 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2644 */
2645static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2646{
2647 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002648 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002649 dst->cmd_type = src->cmd_type;
2650 dst->__sector = blk_rq_pos(src);
2651 dst->__data_len = blk_rq_bytes(src);
2652 dst->nr_phys_segments = src->nr_phys_segments;
2653 dst->ioprio = src->ioprio;
2654 dst->extra_len = src->extra_len;
2655}
2656
2657/**
2658 * blk_rq_prep_clone - Helper function to setup clone request
2659 * @rq: the request to be setup
2660 * @rq_src: original request to be cloned
2661 * @bs: bio_set that bios for clone are allocated from
2662 * @gfp_mask: memory allocation mask for bio
2663 * @bio_ctr: setup function to be called for each clone bio.
2664 * Returns %0 for success, non %0 for failure.
2665 * @data: private data to be passed to @bio_ctr
2666 *
2667 * Description:
2668 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2669 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2670 * are not copied, and copying such parts is the caller's responsibility.
2671 * Also, pages which the original bios are pointing to are not copied
2672 * and the cloned bios just point same pages.
2673 * So cloned bios must be completed before original bios, which means
2674 * the caller must complete @rq before @rq_src.
2675 */
2676int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2677 struct bio_set *bs, gfp_t gfp_mask,
2678 int (*bio_ctr)(struct bio *, struct bio *, void *),
2679 void *data)
2680{
2681 struct bio *bio, *bio_src;
2682
2683 if (!bs)
2684 bs = fs_bio_set;
2685
2686 blk_rq_init(NULL, rq);
2687
2688 __rq_for_each_bio(bio_src, rq_src) {
2689 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2690 if (!bio)
2691 goto free_and_out;
2692
2693 __bio_clone(bio, bio_src);
2694
2695 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002696 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002697 goto free_and_out;
2698
2699 if (bio_ctr && bio_ctr(bio, bio_src, data))
2700 goto free_and_out;
2701
2702 if (rq->bio) {
2703 rq->biotail->bi_next = bio;
2704 rq->biotail = bio;
2705 } else
2706 rq->bio = rq->biotail = bio;
2707 }
2708
2709 __blk_rq_prep_clone(rq, rq_src);
2710
2711 return 0;
2712
2713free_and_out:
2714 if (bio)
2715 bio_free(bio, bs);
2716 blk_rq_unprep_clone(rq);
2717
2718 return -ENOMEM;
2719}
2720EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2721
Jens Axboe18887ad2008-07-28 13:08:45 +02002722int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 return queue_work(kblockd_workqueue, work);
2725}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726EXPORT_SYMBOL(kblockd_schedule_work);
2727
Vivek Goyale43473b2010-09-15 17:06:35 -04002728int kblockd_schedule_delayed_work(struct request_queue *q,
2729 struct delayed_work *dwork, unsigned long delay)
2730{
2731 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2732}
2733EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2734
Jens Axboe73c10102011-03-08 13:19:51 +01002735#define PLUG_MAGIC 0x91827364
2736
2737void blk_start_plug(struct blk_plug *plug)
2738{
2739 struct task_struct *tsk = current;
2740
2741 plug->magic = PLUG_MAGIC;
2742 INIT_LIST_HEAD(&plug->list);
2743 plug->should_sort = 0;
2744
2745 /*
2746 * If this is a nested plug, don't actually assign it. It will be
2747 * flushed on its own.
2748 */
2749 if (!tsk->plug) {
2750 /*
2751 * Store ordering should not be needed here, since a potential
2752 * preempt will imply a full memory barrier
2753 */
2754 tsk->plug = plug;
2755 }
2756}
2757EXPORT_SYMBOL(blk_start_plug);
2758
2759static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
2760{
2761 struct request *rqa = container_of(a, struct request, queuelist);
2762 struct request *rqb = container_of(b, struct request, queuelist);
2763
2764 return !(rqa->q == rqb->q);
2765}
2766
2767static void flush_plug_list(struct blk_plug *plug)
2768{
2769 struct request_queue *q;
2770 unsigned long flags;
2771 struct request *rq;
2772
2773 BUG_ON(plug->magic != PLUG_MAGIC);
2774
2775 if (list_empty(&plug->list))
2776 return;
2777
2778 if (plug->should_sort)
2779 list_sort(NULL, &plug->list, plug_rq_cmp);
2780
2781 q = NULL;
2782 local_irq_save(flags);
2783 while (!list_empty(&plug->list)) {
2784 rq = list_entry_rq(plug->list.next);
2785 list_del_init(&rq->queuelist);
2786 BUG_ON(!(rq->cmd_flags & REQ_ON_PLUG));
2787 BUG_ON(!rq->q);
2788 if (rq->q != q) {
2789 if (q) {
2790 __blk_run_queue(q);
2791 spin_unlock(q->queue_lock);
2792 }
2793 q = rq->q;
2794 spin_lock(q->queue_lock);
2795 }
2796 rq->cmd_flags &= ~REQ_ON_PLUG;
2797
2798 /*
2799 * rq is already accounted, so use raw insert
2800 */
2801 __elv_add_request(q, rq, ELEVATOR_INSERT_SORT, 0);
2802 }
2803
2804 if (q) {
2805 __blk_run_queue(q);
2806 spin_unlock(q->queue_lock);
2807 }
2808
2809 BUG_ON(!list_empty(&plug->list));
2810 local_irq_restore(flags);
2811}
2812
2813static void __blk_finish_plug(struct task_struct *tsk, struct blk_plug *plug)
2814{
2815 flush_plug_list(plug);
2816
2817 if (plug == tsk->plug)
2818 tsk->plug = NULL;
2819}
2820
2821void blk_finish_plug(struct blk_plug *plug)
2822{
2823 if (plug)
2824 __blk_finish_plug(current, plug);
2825}
2826EXPORT_SYMBOL(blk_finish_plug);
2827
2828void __blk_flush_plug(struct task_struct *tsk, struct blk_plug *plug)
2829{
2830 __blk_finish_plug(tsk, plug);
2831 tsk->plug = plug;
2832}
2833EXPORT_SYMBOL(__blk_flush_plug);
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835int __init blk_dev_init(void)
2836{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002837 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2838 sizeof(((struct request *)0)->cmd_flags));
2839
Tejun Heo89b90be2011-01-03 15:01:47 +01002840 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2841 kblockd_workqueue = alloc_workqueue("kblockd",
2842 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 if (!kblockd_workqueue)
2844 panic("Failed to create kblockd\n");
2845
2846 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002847 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Jens Axboe8324aa92008-01-29 14:51:59 +01002849 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002850 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 return 0;
2853}