blob: 518dd423a5fef4c4dcf1d2cdc7af78e6f8c3a778 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd42006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Mike Snitzerd07335e2010-11-16 12:52:38 +010036EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020037EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080038EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010039
Jens Axboe165125e2007-07-24 09:28:11 +020040static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For the allocated request tables
44 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010045static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * For queue allocation
49 */
Jens Axboe6728cb02008-01-31 13:03:55 +010050struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Controlling structure to kblockd
54 */
Jens Axboeff856ba2006-01-09 16:02:34 +010055static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jens Axboe26b82562008-01-29 13:54:41 +010057static void drive_stat_acct(struct request *rq, int new_io)
58{
Jens Axboe28f13702008-05-07 10:15:46 +020059 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010060 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090061 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010062
Jens Axboec2553b52009-04-24 08:10:11 +020063 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010064 return;
65
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 cpu = part_stat_lock();
Tejun Heoc9959052008-08-25 19:47:21 +090067
Jerome Marchand09e099d2011-01-05 16:57:38 +010068 if (!new_io) {
69 part = rq->part;
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_inc(cpu, part, merges[rw]);
Jerome Marchand09e099d2011-01-05 16:57:38 +010071 } else {
72 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Jens Axboe6c23a962011-01-07 08:43:37 +010073 if (!hd_struct_try_get(part)) {
Jerome Marchand09e099d2011-01-05 16:57:38 +010074 /*
75 * The partition is already being removed,
76 * the request will be accounted on the disk only
77 *
78 * We take a reference on disk->part0 although that
79 * partition will never be deleted, so we can treat
80 * it as any other partition.
81 */
82 part = &rq->rq_disk->part0;
Jens Axboe6c23a962011-01-07 08:43:37 +010083 hd_struct_get(part);
Jerome Marchand09e099d2011-01-05 16:57:38 +010084 }
Tejun Heo074a7ac2008-08-25 19:56:14 +090085 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020086 part_inc_in_flight(part, rw);
Jerome Marchand09e099d2011-01-05 16:57:38 +010087 rq->part = part;
Jens Axboe26b82562008-01-29 13:54:41 +010088 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020089
Tejun Heo074a7ac2008-08-25 19:56:14 +090090 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010091}
92
Jens Axboe8324aa92008-01-29 14:51:59 +010093void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 int nr;
96
97 nr = q->nr_requests - (q->nr_requests / 8) + 1;
98 if (nr > q->nr_requests)
99 nr = q->nr_requests;
100 q->nr_congestion_on = nr;
101
102 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
103 if (nr < 1)
104 nr = 1;
105 q->nr_congestion_off = nr;
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/**
109 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
110 * @bdev: device
111 *
112 * Locates the passed device's request queue and returns the address of its
113 * backing_dev_info
114 *
115 * Will return NULL if the request queue cannot be located.
116 */
117struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
118{
119 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200120 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (q)
123 ret = &q->backing_dev_info;
124 return ret;
125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126EXPORT_SYMBOL(blk_get_backing_dev_info);
127
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200128void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200130 memset(rq, 0, sizeof(*rq));
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700133 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200134 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100135 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900136 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200137 INIT_HLIST_NODE(&rq->hash);
138 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200139 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800140 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100141 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100142 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900143 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700144 set_start_time_ns(rq);
Jerome Marchand09e099d2011-01-05 16:57:38 +0100145 rq->part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200147EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
NeilBrown5bb23a62007-09-27 12:46:13 +0200149static void req_bio_endio(struct request *rq, struct bio *bio,
150 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100151{
Jens Axboe165125e2007-07-24 09:28:11 +0200152 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100153
Tejun Heodd4c1332010-09-03 11:56:16 +0200154 if (&q->flush_rq != rq) {
NeilBrown5bb23a62007-09-27 12:46:13 +0200155 if (error)
156 clear_bit(BIO_UPTODATE, &bio->bi_flags);
157 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
158 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100159
NeilBrown5bb23a62007-09-27 12:46:13 +0200160 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100161 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700162 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200163 nbytes = bio->bi_size;
164 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100165
Keith Mannthey08bafc02008-11-25 10:24:35 +0100166 if (unlikely(rq->cmd_flags & REQ_QUIET))
167 set_bit(BIO_QUIET, &bio->bi_flags);
168
NeilBrown5bb23a62007-09-27 12:46:13 +0200169 bio->bi_size -= nbytes;
170 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200171
172 if (bio_integrity(bio))
173 bio_integrity_advance(bio, nbytes);
174
NeilBrown5bb23a62007-09-27 12:46:13 +0200175 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200176 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200177 } else {
NeilBrown5bb23a62007-09-27 12:46:13 +0200178 /*
Tejun Heodd4c1332010-09-03 11:56:16 +0200179 * Okay, this is the sequenced flush request in
180 * progress, just record the error;
NeilBrown5bb23a62007-09-27 12:46:13 +0200181 */
Tejun Heodd4c1332010-09-03 11:56:16 +0200182 if (error && !q->flush_err)
183 q->flush_err = error;
NeilBrown5bb23a62007-09-27 12:46:13 +0200184 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100185}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187void blk_dump_rq_flags(struct request *rq, char *msg)
188{
189 int bit;
190
Jens Axboe6728cb02008-01-31 13:03:55 +0100191 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200192 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
193 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Tejun Heo83096eb2009-05-07 22:24:39 +0900195 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
196 (unsigned long long)blk_rq_pos(rq),
197 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900198 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900199 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200201 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100202 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200203 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 printk("%02x ", rq->cmd[bit]);
205 printk("\n");
206 }
207}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208EXPORT_SYMBOL(blk_dump_rq_flags);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*
211 * "plug" the device if there are no outstanding requests: this will
212 * force the transfer to start only after we have put all the requests
213 * on the list.
214 *
215 * This is called with interrupts off and no requests on the queue and
216 * with the queue lock held.
217 */
Jens Axboe165125e2007-07-24 09:28:11 +0200218void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 WARN_ON(!irqs_disabled());
221
222 /*
223 * don't plug a stopped queue, it must be paired with blk_start_queue()
224 * which will restart the queueing
225 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200226 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return;
228
Jens Axboee48ec692008-07-03 13:18:54 +0200229 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100231 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234EXPORT_SYMBOL(blk_plug_device);
235
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200236/**
237 * blk_plug_device_unlocked - plug a device without queue lock held
238 * @q: The &struct request_queue to plug
239 *
240 * Description:
241 * Like @blk_plug_device(), but grabs the queue lock and disables
242 * interrupts.
243 **/
244void blk_plug_device_unlocked(struct request_queue *q)
245{
246 unsigned long flags;
247
248 spin_lock_irqsave(q->queue_lock, flags);
249 blk_plug_device(q);
250 spin_unlock_irqrestore(q->queue_lock, flags);
251}
252EXPORT_SYMBOL(blk_plug_device_unlocked);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/*
255 * remove the queue from the plugged list, if present. called with
256 * queue lock held and interrupts disabled.
257 */
Jens Axboe165125e2007-07-24 09:28:11 +0200258int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 WARN_ON(!irqs_disabled());
261
Jens Axboee48ec692008-07-03 13:18:54 +0200262 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264
265 del_timer(&q->unplug_timer);
266 return 1;
267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268EXPORT_SYMBOL(blk_remove_plug);
269
270/*
271 * remove the plug and let it rip..
272 */
Jens Axboe165125e2007-07-24 09:28:11 +0200273void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200275 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200277 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return;
279
Jens Axboe22e2c502005-06-27 10:55:12 +0200280 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/**
284 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200285 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 * Description:
288 * Linux uses plugging to build bigger requests queues before letting
289 * the device have at them. If a queue is plugged, the I/O scheduler
290 * is still adding and merging requests on the queue. Once the queue
291 * gets unplugged, the request_fn defined for the queue is invoked and
292 * transfers started.
293 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200294void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200296 if (blk_queue_plugged(q)) {
297 spin_lock_irq(q->queue_lock);
298 __generic_unplug_device(q);
299 spin_unlock_irq(q->queue_lock);
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302EXPORT_SYMBOL(generic_unplug_device);
303
304static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
305 struct page *page)
306{
Jens Axboe165125e2007-07-24 09:28:11 +0200307 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500309 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Jens Axboe86db1e22008-01-29 14:53:40 +0100312void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Jens Axboe165125e2007-07-24 09:28:11 +0200314 struct request_queue *q =
315 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100317 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 q->unplug_fn(q);
319}
320
Jens Axboe86db1e22008-01-29 14:53:40 +0100321void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Jens Axboe165125e2007-07-24 09:28:11 +0200323 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100325 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200326 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500329void blk_unplug(struct request_queue *q)
330{
331 /*
332 * devices don't necessarily have an ->unplug_fn defined
333 */
334 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100335 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500336 q->unplug_fn(q);
337 }
338}
339EXPORT_SYMBOL(blk_unplug);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/**
342 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200343 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *
345 * Description:
346 * blk_start_queue() will clear the stop flag on the queue, and call
347 * the request_fn for the queue if it was in a stopped state when
348 * entered. Also see blk_stop_queue(). Queue lock must be held.
349 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200350void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200352 WARN_ON(!irqs_disabled());
353
Nick Piggin75ad23b2008-04-29 14:48:33 +0200354 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heo1654e742011-03-02 08:48:05 -0500355 __blk_run_queue(q, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357EXPORT_SYMBOL(blk_start_queue);
358
359/**
360 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200361 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *
363 * Description:
364 * The Linux block layer assumes that a block driver will consume all
365 * entries on the request queue when the request_fn strategy is called.
366 * Often this will not happen, because of hardware limitations (queue
367 * depth settings). If a device driver gets a 'queue full' response,
368 * or if it simply chooses not to queue more I/O at one point, it can
369 * call this function to prevent the request_fn from being called until
370 * the driver has signalled it's ready to go again. This happens by calling
371 * blk_start_queue() to restart queue operations. Queue lock must be held.
372 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200373void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200376 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378EXPORT_SYMBOL(blk_stop_queue);
379
380/**
381 * blk_sync_queue - cancel any pending callbacks on a queue
382 * @q: the queue
383 *
384 * Description:
385 * The block layer may perform asynchronous callback activity
386 * on a queue, such as calling the unplug function after a timeout.
387 * A block device may call blk_sync_queue to ensure that any
388 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200389 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * that its ->make_request_fn will not re-add plugging prior to calling
391 * this function.
392 *
393 */
394void blk_sync_queue(struct request_queue *q)
395{
396 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100397 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100398 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400399 throtl_shutdown_timer_wq(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401EXPORT_SYMBOL(blk_sync_queue);
402
403/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200404 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * @q: The queue to run
Tejun Heo1654e742011-03-02 08:48:05 -0500406 * @force_kblockd: Don't run @q->request_fn directly. Use kblockd.
Jens Axboe80a4b582008-10-14 09:51:06 +0200407 *
408 * Description:
409 * See @blk_run_queue. This variant must be called with the queue lock
410 * held and interrupts disabled.
411 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Tejun Heo1654e742011-03-02 08:48:05 -0500413void __blk_run_queue(struct request_queue *q, bool force_kblockd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200416
Tejun Heoa538cd02009-04-23 11:05:17 +0900417 if (unlikely(blk_queue_stopped(q)))
418 return;
419
420 if (elv_queue_empty(q))
421 return;
422
Jens Axboedac07ec2006-05-11 08:20:16 +0200423 /*
424 * Only recurse once to avoid overrunning the stack, let the unplug
425 * handling reinvoke the handler shortly if we already got there.
426 */
Tejun Heo1654e742011-03-02 08:48:05 -0500427 if (!force_kblockd && !queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
Tejun Heoa538cd02009-04-23 11:05:17 +0900428 q->request_fn(q);
429 queue_flag_clear(QUEUE_FLAG_REENTER, q);
430 } else {
431 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
432 kblockd_schedule_work(q, &q->unplug_work);
433 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200434}
435EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200436
Nick Piggin75ad23b2008-04-29 14:48:33 +0200437/**
438 * blk_run_queue - run a single device queue
439 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200440 *
441 * Description:
442 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900443 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200444 */
445void blk_run_queue(struct request_queue *q)
446{
447 unsigned long flags;
448
449 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo1654e742011-03-02 08:48:05 -0500450 __blk_run_queue(q, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 spin_unlock_irqrestore(q->queue_lock, flags);
452}
453EXPORT_SYMBOL(blk_run_queue);
454
Jens Axboe165125e2007-07-24 09:28:11 +0200455void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500456{
457 kobject_put(&q->kobj);
458}
Al Viro483f4af2006-03-18 18:34:37 -0500459
Jens Axboe6728cb02008-01-31 13:03:55 +0100460void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500461{
Jens Axboee3335de2008-09-18 09:22:54 -0700462 /*
463 * We know we have process context here, so we can be a little
464 * cautious and ensure that pending block actions on this device
465 * are done before moving on. Going into this function, we should
466 * not have processes doing IO to this device.
467 */
468 blk_sync_queue(q);
469
Matthew Garrett31373d02010-04-06 14:25:14 +0200470 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500471 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200472 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500473 mutex_unlock(&q->sysfs_lock);
474
475 if (q->elevator)
476 elevator_exit(q->elevator);
477
478 blk_put_queue(q);
479}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480EXPORT_SYMBOL(blk_cleanup_queue);
481
Jens Axboe165125e2007-07-24 09:28:11 +0200482static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct request_list *rl = &q->rq;
485
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400486 if (unlikely(rl->rq_pool))
487 return 0;
488
Jens Axboe1faa16d2009-04-06 14:48:01 +0200489 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
490 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200491 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200492 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
493 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Christoph Lameter19460892005-06-23 00:08:19 -0700495 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
496 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (!rl->rq_pool)
499 return -ENOMEM;
500
501 return 0;
502}
503
Jens Axboe165125e2007-07-24 09:28:11 +0200504struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Christoph Lameter19460892005-06-23 00:08:19 -0700506 return blk_alloc_queue_node(gfp_mask, -1);
507}
508EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jens Axboe165125e2007-07-24 09:28:11 +0200510struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700511{
Jens Axboe165125e2007-07-24 09:28:11 +0200512 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700513 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700514
Jens Axboe8324aa92008-01-29 14:51:59 +0100515 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700516 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (!q)
518 return NULL;
519
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700520 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
521 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200522 q->backing_dev_info.ra_pages =
523 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
524 q->backing_dev_info.state = 0;
525 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200526 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200527
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700528 err = bdi_init(&q->backing_dev_info);
529 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100530 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700531 return NULL;
532 }
533
Vivek Goyale43473b2010-09-15 17:06:35 -0400534 if (blk_throtl_init(q)) {
535 kmem_cache_free(blk_requestq_cachep, q);
536 return NULL;
537 }
538
Matthew Garrett31373d02010-04-06 14:25:14 +0200539 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
540 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700542 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
543 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heodd4c1332010-09-03 11:56:16 +0200544 INIT_LIST_HEAD(&q->pending_flushes);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200545 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500546
Jens Axboe8324aa92008-01-29 14:51:59 +0100547 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Al Viro483f4af2006-03-18 18:34:37 -0500549 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700550 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return q;
553}
Christoph Lameter19460892005-06-23 00:08:19 -0700554EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556/**
557 * blk_init_queue - prepare a request queue for use with a block device
558 * @rfn: The function to be called to process requests that have been
559 * placed on the queue.
560 * @lock: Request queue spin lock
561 *
562 * Description:
563 * If a block device wishes to use the standard request handling procedures,
564 * which sorts requests and coalesces adjacent requests, then it must
565 * call blk_init_queue(). The function @rfn will be called when there
566 * are requests on the queue that need to be processed. If the device
567 * supports plugging, then @rfn may not be called immediately when requests
568 * are available on the queue, but may be called at some time later instead.
569 * Plugged queues are generally unplugged when a buffer belonging to one
570 * of the requests on the queue is needed, or due to memory pressure.
571 *
572 * @rfn is not required, or even expected, to remove all requests off the
573 * queue, but only as many as it can handle at a time. If it does leave
574 * requests on the queue, it is responsible for arranging that the requests
575 * get dealt with eventually.
576 *
577 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200578 * request queue; this lock will be taken also from interrupt context, so irq
579 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200581 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * it didn't succeed.
583 *
584 * Note:
585 * blk_init_queue() must be paired with a blk_cleanup_queue() call
586 * when the block device is deactivated (such as at module unload).
587 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700588
Jens Axboe165125e2007-07-24 09:28:11 +0200589struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Christoph Lameter19460892005-06-23 00:08:19 -0700591 return blk_init_queue_node(rfn, lock, -1);
592}
593EXPORT_SYMBOL(blk_init_queue);
594
Jens Axboe165125e2007-07-24 09:28:11 +0200595struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700596blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
597{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600598 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600600 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
601 if (!uninit_q)
602 return NULL;
603
604 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
605 if (!q)
606 blk_cleanup_queue(uninit_q);
607
608 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200609}
610EXPORT_SYMBOL(blk_init_queue_node);
611
612struct request_queue *
613blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
614 spinlock_t *lock)
615{
616 return blk_init_allocated_queue_node(q, rfn, lock, -1);
617}
618EXPORT_SYMBOL(blk_init_allocated_queue);
619
620struct request_queue *
621blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
622 spinlock_t *lock, int node_id)
623{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!q)
625 return NULL;
626
Christoph Lameter19460892005-06-23 00:08:19 -0700627 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600628 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500629 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900633 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100635 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 q->queue_lock = lock;
637
Jens Axboef3b144a2009-03-06 08:48:33 +0100638 /*
639 * This also sets hw/phys segments, boundary and size
640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Alan Stern44ec9542007-02-20 11:01:57 -0500643 q->sg_reserved_size = INT_MAX;
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /*
646 * all done
647 */
648 if (!elevator_init(q, NULL)) {
649 blk_queue_congestion_threshold(q);
650 return q;
651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return NULL;
654}
Mike Snitzer01effb02010-05-11 08:57:42 +0200655EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Jens Axboe165125e2007-07-24 09:28:11 +0200657int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700659 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500660 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return 0;
662 }
663
664 return 1;
665}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jens Axboe165125e2007-07-24 09:28:11 +0200667static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200669 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200670 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 mempool_free(rq, q->rq.rq_pool);
672}
673
Jens Axboe1ea25ec2006-07-18 22:24:11 +0200674static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200675blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
678
679 if (!rq)
680 return NULL;
681
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200682 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200683
Jerome Marchand42dad762009-04-22 14:01:49 +0200684 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Tejun Heocb98fc82005-10-28 08:29:39 +0200686 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200687 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200688 mempool_free(rq, q->rq.rq_pool);
689 return NULL;
690 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200691 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Tejun Heocb98fc82005-10-28 08:29:39 +0200694 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
697/*
698 * ioc_batching returns true if the ioc is a valid batching request and
699 * should be given priority access to a request.
700 */
Jens Axboe165125e2007-07-24 09:28:11 +0200701static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 if (!ioc)
704 return 0;
705
706 /*
707 * Make sure the process is able to allocate at least 1 request
708 * even if the batch times out, otherwise we could theoretically
709 * lose wakeups.
710 */
711 return ioc->nr_batch_requests == q->nr_batching ||
712 (ioc->nr_batch_requests > 0
713 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
714}
715
716/*
717 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
718 * will cause the process to be a "batcher" on all queues in the system. This
719 * is the behaviour we want though - once it gets a wakeup it should be given
720 * a nice run.
721 */
Jens Axboe165125e2007-07-24 09:28:11 +0200722static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 if (!ioc || ioc_batching(q, ioc))
725 return;
726
727 ioc->nr_batch_requests = q->nr_batching;
728 ioc->last_waited = jiffies;
729}
730
Jens Axboe1faa16d2009-04-06 14:48:01 +0200731static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct request_list *rl = &q->rq;
734
Jens Axboe1faa16d2009-04-06 14:48:01 +0200735 if (rl->count[sync] < queue_congestion_off_threshold(q))
736 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 if (rl->count[sync] + 1 <= q->nr_requests) {
739 if (waitqueue_active(&rl->wait[sync]))
740 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jens Axboe1faa16d2009-04-06 14:48:01 +0200742 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744}
745
746/*
747 * A request has just been released. Account for it, update the full and
748 * congestion status, wake up any waiters. Called under q->queue_lock.
749 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200750static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct request_list *rl = &q->rq;
753
Jens Axboe1faa16d2009-04-06 14:48:01 +0200754 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200755 if (priv)
756 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Jens Axboe1faa16d2009-04-06 14:48:01 +0200758 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Jens Axboe1faa16d2009-04-06 14:48:01 +0200760 if (unlikely(rl->starved[sync ^ 1]))
761 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/*
Nick Piggind6344532005-06-28 20:45:14 -0700765 * Get a free request, queue_lock must be held.
766 * Returns NULL on failure, with queue_lock held.
767 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
Jens Axboe165125e2007-07-24 09:28:11 +0200769static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100770 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 struct request *rq = NULL;
773 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100774 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200775 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100776 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Jens Axboe7749a8d2006-12-13 13:02:26 +0100778 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100779 if (may_queue == ELV_MQUEUE_NO)
780 goto rq_starved;
781
Jens Axboe1faa16d2009-04-06 14:48:01 +0200782 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
783 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200784 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100785 /*
786 * The queue will fill after this allocation, so set
787 * it as full, and mark this process as "batching".
788 * This process will be allowed to complete a batch of
789 * requests, others will be blocked.
790 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200791 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100792 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200793 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100794 } else {
795 if (may_queue != ELV_MQUEUE_MUST
796 && !ioc_batching(q, ioc)) {
797 /*
798 * The queue is full and the allocating
799 * process is not a "batcher", and not
800 * exempted by the IO scheduler
801 */
802 goto out;
803 }
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200806 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Jens Axboe082cf692005-06-28 16:35:11 +0200809 /*
810 * Only allow batching queuers to allocate up to 50% over the defined
811 * limit of requests, otherwise we could have thousands of requests
812 * allocated with any setting of ->nr_requests
813 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200814 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200815 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100816
Jens Axboe1faa16d2009-04-06 14:48:01 +0200817 rl->count[is_sync]++;
818 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200819
Jens Axboe64521d12005-10-28 08:30:39 +0200820 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Jens Axboef253b862010-10-24 22:06:02 +0200821 if (priv)
Tejun Heocb98fc82005-10-28 08:29:39 +0200822 rl->elvpriv++;
823
Jens Axboef253b862010-10-24 22:06:02 +0200824 if (blk_queue_io_stat(q))
825 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 spin_unlock_irq(q->queue_lock);
827
Jens Axboe7749a8d2006-12-13 13:02:26 +0100828 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100829 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /*
831 * Allocation failed presumably due to memory. Undo anything
832 * we might have messed up.
833 *
834 * Allocating task should really be put onto the front of the
835 * wait queue, but this is pretty rare.
836 */
837 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200838 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
841 * in the very unlikely event that allocation failed and no
842 * requests for this direction was pending, mark us starved
843 * so that freeing of a request in the other direction will
844 * notice us. another possible fix would be to split the
845 * rq mempool into READ and WRITE
846 */
847rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200848 if (unlikely(rl->count[is_sync] == 0))
849 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 goto out;
852 }
853
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100854 /*
855 * ioc may be NULL here, and ioc_batching will be false. That's
856 * OK, if the queue is under the request limit then requests need
857 * not count toward the nr_batch_requests limit. There will always
858 * be some limit enforced by BLK_BATCH_TIME.
859 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (ioc_batching(q, ioc))
861 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100862
Jens Axboe1faa16d2009-04-06 14:48:01 +0200863 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return rq;
866}
867
868/*
869 * No available requests for this queue, unplug the device and wait for some
870 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700871 *
872 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Jens Axboe165125e2007-07-24 09:28:11 +0200874static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200875 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200877 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 struct request *rq;
879
Jens Axboe7749a8d2006-12-13 13:02:26 +0100880 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700881 while (!rq) {
882 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200883 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct request_list *rl = &q->rq;
885
Jens Axboe1faa16d2009-04-06 14:48:01 +0200886 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 TASK_UNINTERRUPTIBLE);
888
Jens Axboe1faa16d2009-04-06 14:48:01 +0200889 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200891 __generic_unplug_device(q);
892 spin_unlock_irq(q->queue_lock);
893 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200895 /*
896 * After sleeping, we become a "batching" process and
897 * will be able to allocate at least one request, and
898 * up to a big batch of them for a small period time.
899 * See ioc_batching, ioc_set_batching
900 */
901 ioc = current_io_context(GFP_NOIO, q->node);
902 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100903
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200904 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200905 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200906
907 rq = get_request(q, rw_flags, bio, GFP_NOIO);
908 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 return rq;
911}
912
Jens Axboe165125e2007-07-24 09:28:11 +0200913struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 struct request *rq;
916
917 BUG_ON(rw != READ && rw != WRITE);
918
Nick Piggind6344532005-06-28 20:45:14 -0700919 spin_lock_irq(q->queue_lock);
920 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200921 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700922 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200923 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700924 if (!rq)
925 spin_unlock_irq(q->queue_lock);
926 }
927 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 return rq;
930}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931EXPORT_SYMBOL(blk_get_request);
932
933/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300934 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700935 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300936 * @bio: The bio describing the memory mappings that will be submitted for IO.
937 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700938 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200939 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300940 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
941 * type commands. Where the struct request needs to be farther initialized by
942 * the caller. It is passed a &struct bio, which describes the memory info of
943 * the I/O transfer.
944 *
945 * The caller of blk_make_request must make sure that bi_io_vec
946 * are set to describe the memory buffers. That bio_data_dir() will return
947 * the needed direction of the request. (And all bio's in the passed bio-chain
948 * are properly set accordingly)
949 *
950 * If called under none-sleepable conditions, mapped bio buffers must not
951 * need bouncing, by calling the appropriate masked or flagged allocator,
952 * suitable for the target device. Otherwise the call to blk_queue_bounce will
953 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200954 *
955 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
956 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
957 * anything but the first bio in the chain. Otherwise you risk waiting for IO
958 * completion of a bio that hasn't been submitted yet, thus resulting in a
959 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
960 * of bio_alloc(), as that avoids the mempool deadlock.
961 * If possible a big IO should be split into smaller parts when allocation
962 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200963 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300964struct request *blk_make_request(struct request_queue *q, struct bio *bio,
965 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200966{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300967 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
968
969 if (unlikely(!rq))
970 return ERR_PTR(-ENOMEM);
971
972 for_each_bio(bio) {
973 struct bio *bounce_bio = bio;
974 int ret;
975
976 blk_queue_bounce(q, &bounce_bio);
977 ret = blk_rq_append_bio(q, rq, bounce_bio);
978 if (unlikely(ret)) {
979 blk_put_request(rq);
980 return ERR_PTR(ret);
981 }
982 }
983
984 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200985}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300986EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200987
988/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * blk_requeue_request - put a request back on queue
990 * @q: request queue where request should be inserted
991 * @rq: request to be inserted
992 *
993 * Description:
994 * Drivers often keep queueing requests until the hardware cannot accept
995 * more, when that condition happens we need to put the request back
996 * on the queue. Must be called with queue lock held.
997 */
Jens Axboe165125e2007-07-24 09:28:11 +0200998void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001000 blk_delete_timer(rq);
1001 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001002 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (blk_rq_tagged(rq))
1005 blk_queue_end_tag(q, rq);
1006
James Bottomleyba396a62009-05-27 14:17:08 +02001007 BUG_ON(blk_queued_rq(rq));
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 elv_requeue_request(q, rq);
1010}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011EXPORT_SYMBOL(blk_requeue_request);
1012
1013/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001014 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * @q: request queue where request should be inserted
1016 * @rq: request to be inserted
1017 * @at_head: insert request at head or tail of queue
1018 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 *
1020 * Description:
1021 * Many block devices need to execute commands asynchronously, so they don't
1022 * block the whole kernel from preemption during request execution. This is
1023 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001024 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1025 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 *
1027 * We have the option of inserting the head or the tail of the queue.
1028 * Typically we use the tail for new ioctls and so forth. We use the head
1029 * of the queue for things like a QUEUE_FULL message from a device, or a
1030 * host that is unable to accept a particular command.
1031 */
Jens Axboe165125e2007-07-24 09:28:11 +02001032void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001033 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Tejun Heo 867d1192005-04-24 02:06:05 -05001035 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 unsigned long flags;
1037
1038 /*
1039 * tell I/O scheduler that this isn't a regular read/write (ie it
1040 * must not attempt merges on this) and that it acts as a soft
1041 * barrier
1042 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001043 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 rq->special = data;
1046
1047 spin_lock_irqsave(q->queue_lock, flags);
1048
1049 /*
1050 * If command is tagged, release the tag
1051 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001052 if (blk_rq_tagged(rq))
1053 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001055 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001056 __elv_add_request(q, rq, where, 0);
Tejun Heo1654e742011-03-02 08:48:05 -05001057 __blk_run_queue(q, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 spin_unlock_irqrestore(q->queue_lock, flags);
1059}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060EXPORT_SYMBOL(blk_insert_request);
1061
Tejun Heo074a7ac2008-08-25 19:56:14 +09001062static void part_round_stats_single(int cpu, struct hd_struct *part,
1063 unsigned long now)
1064{
1065 if (now == part->stamp)
1066 return;
1067
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001068 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001069 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001070 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001071 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1072 }
1073 part->stamp = now;
1074}
1075
1076/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001077 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1078 * @cpu: cpu number for stats access
1079 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 *
1081 * The average IO queue length and utilisation statistics are maintained
1082 * by observing the current state of the queue length and the amount of
1083 * time it has been in this state for.
1084 *
1085 * Normally, that accounting is done on IO completion, but that can result
1086 * in more than a second's worth of IO being accounted for within any one
1087 * second, leading to >100% utilisation. To deal with that, we call this
1088 * function to do a round-off before returning the results when reading
1089 * /proc/diskstats. This accounts immediately for all queue usage up to
1090 * the current jiffies and restarts the counters again.
1091 */
Tejun Heoc9959052008-08-25 19:47:21 +09001092void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001093{
1094 unsigned long now = jiffies;
1095
Tejun Heo074a7ac2008-08-25 19:56:14 +09001096 if (part->partno)
1097 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1098 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001099}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001100EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * queue lock must be held
1104 */
Jens Axboe165125e2007-07-24 09:28:11 +02001105void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (unlikely(!q))
1108 return;
1109 if (unlikely(--req->ref_count))
1110 return;
1111
Tejun Heo8922e162005-10-20 16:23:44 +02001112 elv_completed_request(q, req);
1113
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001114 /* this is a bio leak */
1115 WARN_ON(req->bio != NULL);
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /*
1118 * Request may not have originated from ll_rw_blk. if not,
1119 * it didn't come out of our reserved rq pools
1120 */
Jens Axboe49171e52006-08-10 08:59:11 +02001121 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001122 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001123 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001126 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001129 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131}
Mike Christie6e39b692005-11-11 05:30:24 -06001132EXPORT_SYMBOL_GPL(__blk_put_request);
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134void blk_put_request(struct request *req)
1135{
Tejun Heo8922e162005-10-20 16:23:44 +02001136 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001137 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001139 spin_lock_irqsave(q->queue_lock, flags);
1140 __blk_put_request(q, req);
1141 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143EXPORT_SYMBOL(blk_put_request);
1144
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001145/**
1146 * blk_add_request_payload - add a payload to a request
1147 * @rq: request to update
1148 * @page: page backing the payload
1149 * @len: length of the payload.
1150 *
1151 * This allows to later add a payload to an already submitted request by
1152 * a block driver. The driver needs to take care of freeing the payload
1153 * itself.
1154 *
1155 * Note that this is a quite horrible hack and nothing but handling of
1156 * discard requests should ever use it.
1157 */
1158void blk_add_request_payload(struct request *rq, struct page *page,
1159 unsigned int len)
1160{
1161 struct bio *bio = rq->bio;
1162
1163 bio->bi_io_vec->bv_page = page;
1164 bio->bi_io_vec->bv_offset = 0;
1165 bio->bi_io_vec->bv_len = len;
1166
1167 bio->bi_size = len;
1168 bio->bi_vcnt = 1;
1169 bio->bi_phys_segments = 1;
1170
1171 rq->__data_len = rq->resid_len = len;
1172 rq->nr_phys_segments = 1;
1173 rq->buffer = bio_data(bio);
1174}
1175EXPORT_SYMBOL_GPL(blk_add_request_payload);
1176
Jens Axboe86db1e22008-01-29 14:53:40 +01001177void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001178{
Jens Axboec7c22e42008-09-13 20:26:01 +02001179 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001180 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001181
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001182 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1183 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001184 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001185
Tejun Heo52d9e672006-01-06 09:49:58 +01001186 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001187 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001188 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001189 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001190}
1191
Jens Axboe644b2d92009-04-06 14:48:06 +02001192/*
1193 * Only disabling plugging for non-rotational devices if it does tagging
1194 * as well, otherwise we do need the proper merging
1195 */
1196static inline bool queue_should_plug(struct request_queue *q)
1197{
Jens Axboe79da0642010-02-23 08:40:43 +01001198 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001199}
1200
Jens Axboe165125e2007-07-24 09:28:11 +02001201static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
Nick Piggin450991b2005-06-28 20:45:13 -07001203 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001204 int el_ret;
1205 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001206 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001207 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1208 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1209 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001210 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001211 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 /*
1214 * low level driver can indicate that it wants pages above a
1215 * certain limit bounced to low memory (ie for highmem, or even
1216 * ISA dma in theory)
1217 */
1218 blk_queue_bounce(q, &bio);
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 spin_lock_irq(q->queue_lock);
1221
Tejun Heo4fed9472010-09-03 11:56:17 +02001222 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heo28e7d182010-09-03 11:56:16 +02001223 where = ELEVATOR_INSERT_FRONT;
1224 goto get_rq;
1225 }
1226
1227 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 goto get_rq;
1229
1230 el_ret = elv_merge(q, &req, bio);
1231 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001232 case ELEVATOR_BACK_MERGE:
1233 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Jens Axboe6728cb02008-01-31 13:03:55 +01001235 if (!ll_back_merge_fn(q, req, bio))
1236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001238 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001239
Tejun Heo80a761f2009-07-03 17:48:17 +09001240 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1241 blk_rq_set_mixed_merge(req);
1242
Jens Axboe6728cb02008-01-31 13:03:55 +01001243 req->biotail->bi_next = bio;
1244 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001245 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001246 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001247 if (!blk_rq_cpu_valid(req))
1248 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001249 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001250 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001251 if (!attempt_back_merge(q, req))
1252 elv_merged_request(q, req, el_ret);
1253 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Jens Axboe6728cb02008-01-31 13:03:55 +01001255 case ELEVATOR_FRONT_MERGE:
1256 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Jens Axboe6728cb02008-01-31 13:03:55 +01001258 if (!ll_front_merge_fn(q, req, bio))
1259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001261 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001262
Tejun Heo80a761f2009-07-03 17:48:17 +09001263 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1264 blk_rq_set_mixed_merge(req);
1265 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1266 req->cmd_flags |= ff;
1267 }
1268
Jens Axboe6728cb02008-01-31 13:03:55 +01001269 bio->bi_next = req->bio;
1270 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Jens Axboe6728cb02008-01-31 13:03:55 +01001272 /*
1273 * may not be valid. if the low level driver said
1274 * it didn't need a bounce buffer then it better
1275 * not touch req->buffer either...
1276 */
1277 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001278 req->__sector = bio->bi_sector;
1279 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001280 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001281 if (!blk_rq_cpu_valid(req))
1282 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001283 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001284 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001285 if (!attempt_front_merge(q, req))
1286 elv_merged_request(q, req, el_ret);
1287 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Jens Axboe6728cb02008-01-31 13:03:55 +01001289 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1290 default:
1291 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001295 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001296 * This sync check and mask will be re-done in init_request_from_bio(),
1297 * but we need to set it earlier to expose the sync flag to the
1298 * rq allocator and io schedulers.
1299 */
1300 rw_flags = bio_data_dir(bio);
1301 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001302 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001303
1304 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001305 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001306 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001307 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001308 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001309
Nick Piggin450991b2005-06-28 20:45:13 -07001310 /*
1311 * After dropping the lock and possibly sleeping here, our request
1312 * may now be mergeable after it had proven unmergeable (above).
1313 * We don't worry about that case for efficiency. It won't happen
1314 * often, and the elevators are able to handle it.
1315 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001316 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Nick Piggin450991b2005-06-28 20:45:13 -07001318 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001319 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1320 bio_flagged(bio, BIO_CPU_AFFINE))
1321 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001322 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001323 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001324
1325 /* insert the request into the elevator */
1326 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001327 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001329 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 spin_unlock_irq(q->queue_lock);
1332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335/*
1336 * If bio->bi_dev is a partition, remap the location
1337 */
1338static inline void blk_partition_remap(struct bio *bio)
1339{
1340 struct block_device *bdev = bio->bi_bdev;
1341
Jens Axboebf2de6f2007-09-27 13:01:25 +02001342 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 bio->bi_sector += p->start_sect;
1346 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001347
Mike Snitzerd07335e2010-11-16 12:52:38 +01001348 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1349 bdev->bd_dev,
1350 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352}
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354static void handle_bad_sector(struct bio *bio)
1355{
1356 char b[BDEVNAME_SIZE];
1357
1358 printk(KERN_INFO "attempt to access beyond end of device\n");
1359 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1360 bdevname(bio->bi_bdev, b),
1361 bio->bi_rw,
1362 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001363 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 set_bit(BIO_EOF, &bio->bi_flags);
1366}
1367
Akinobu Mitac17bb492006-12-08 02:39:46 -08001368#ifdef CONFIG_FAIL_MAKE_REQUEST
1369
1370static DECLARE_FAULT_ATTR(fail_make_request);
1371
1372static int __init setup_fail_make_request(char *str)
1373{
1374 return setup_fault_attr(&fail_make_request, str);
1375}
1376__setup("fail_make_request=", setup_fail_make_request);
1377
1378static int should_fail_request(struct bio *bio)
1379{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001380 struct hd_struct *part = bio->bi_bdev->bd_part;
1381
1382 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001383 return should_fail(&fail_make_request, bio->bi_size);
1384
1385 return 0;
1386}
1387
1388static int __init fail_make_request_debugfs(void)
1389{
1390 return init_fault_attr_dentries(&fail_make_request,
1391 "fail_make_request");
1392}
1393
1394late_initcall(fail_make_request_debugfs);
1395
1396#else /* CONFIG_FAIL_MAKE_REQUEST */
1397
1398static inline int should_fail_request(struct bio *bio)
1399{
1400 return 0;
1401}
1402
1403#endif /* CONFIG_FAIL_MAKE_REQUEST */
1404
Jens Axboec07e2b42007-07-18 13:27:58 +02001405/*
1406 * Check whether this bio extends beyond the end of the device.
1407 */
1408static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1409{
1410 sector_t maxsector;
1411
1412 if (!nr_sectors)
1413 return 0;
1414
1415 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001416 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001417 if (maxsector) {
1418 sector_t sector = bio->bi_sector;
1419
1420 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1421 /*
1422 * This may well happen - the kernel calls bread()
1423 * without checking the size of the device, e.g., when
1424 * mounting a device.
1425 */
1426 handle_bad_sector(bio);
1427 return 1;
1428 }
1429 }
1430
1431 return 0;
1432}
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001435 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * @bio: The bio describing the location in memory and on the device.
1437 *
1438 * generic_make_request() is used to make I/O requests of block
1439 * devices. It is passed a &struct bio, which describes the I/O that needs
1440 * to be done.
1441 *
1442 * generic_make_request() does not return any status. The
1443 * success/failure status of the request, along with notification of
1444 * completion, is delivered asynchronously through the bio->bi_end_io
1445 * function described (one day) else where.
1446 *
1447 * The caller of generic_make_request must make sure that bi_io_vec
1448 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1449 * set to describe the device address, and the
1450 * bi_end_io and optionally bi_private are set to describe how
1451 * completion notification should be signaled.
1452 *
1453 * generic_make_request and the drivers it calls may use bi_next if this
1454 * bio happens to be merged with someone else, and may change bi_dev and
1455 * bi_sector for remaps as it sees fit. So the values of these fields
1456 * should NOT be depended on after the call to generic_make_request.
1457 */
Neil Brownd89d8792007-05-01 09:53:42 +02001458static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Jens Axboe165125e2007-07-24 09:28:11 +02001460 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001461 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001463 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001464 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Jens Axboec07e2b42007-07-18 13:27:58 +02001468 if (bio_check_eod(bio, nr_sectors))
1469 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 /*
1472 * Resolve the mapping until finished. (drivers are
1473 * still free to implement/resolve their own stacking
1474 * by explicitly returning 0)
1475 *
1476 * NOTE: we don't repeat the blk_size check for each new device.
1477 * Stacking drivers are expected to know what they are doing.
1478 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001479 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001480 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 do {
1482 char b[BDEVNAME_SIZE];
1483
1484 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001485 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 printk(KERN_ERR
1487 "generic_make_request: Trying to access "
1488 "nonexistent block-device %s (%Lu)\n",
1489 bdevname(bio->bi_bdev, b),
1490 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001491 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001494 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001495 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001496 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001497 bdevname(bio->bi_bdev, b),
1498 bio_sectors(bio),
1499 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 goto end_io;
1501 }
1502
Nick Pigginfde6ad22005-06-23 00:08:53 -07001503 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 goto end_io;
1505
Akinobu Mitac17bb492006-12-08 02:39:46 -08001506 if (should_fail_request(bio))
1507 goto end_io;
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 /*
1510 * If this device has partitions, remap block n
1511 * of partition p to block n+start(p) of the disk.
1512 */
1513 blk_partition_remap(bio);
1514
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001515 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1516 goto end_io;
1517
NeilBrown5ddfe962006-10-30 22:07:21 -08001518 if (old_sector != -1)
Mike Snitzerd07335e2010-11-16 12:52:38 +01001519 trace_block_bio_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001520
NeilBrown5ddfe962006-10-30 22:07:21 -08001521 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001522 old_dev = bio->bi_bdev->bd_dev;
1523
Jens Axboec07e2b42007-07-18 13:27:58 +02001524 if (bio_check_eod(bio, nr_sectors))
1525 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001526
Tejun Heo1e879012010-09-03 11:56:17 +02001527 /*
1528 * Filter flush bio's early so that make_request based
1529 * drivers without flush support don't have to worry
1530 * about them.
1531 */
1532 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1533 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1534 if (!nr_sectors) {
1535 err = 0;
1536 goto end_io;
1537 }
1538 }
1539
Adrian Hunter8d57a982010-08-11 14:17:49 -07001540 if ((bio->bi_rw & REQ_DISCARD) &&
1541 (!blk_queue_discard(q) ||
1542 ((bio->bi_rw & REQ_SECURE) &&
1543 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001544 err = -EOPNOTSUPP;
1545 goto end_io;
1546 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001547
Vivek Goyale43473b2010-09-15 17:06:35 -04001548 blk_throtl_bio(q, &bio);
1549
1550 /*
1551 * If bio = NULL, bio has been throttled and will be submitted
1552 * later.
1553 */
1554 if (!bio)
1555 break;
1556
Minchan Kim01edede2009-09-08 21:56:38 +02001557 trace_block_bio_queue(q, bio);
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 ret = q->make_request_fn(q, bio);
1560 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001561
1562 return;
1563
1564end_io:
1565 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
Neil Brownd89d8792007-05-01 09:53:42 +02001568/*
1569 * We only want one ->make_request_fn to be active at a time,
1570 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001571 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001572 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001573 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001574 * generic_make_request is currently active in this task or not.
1575 * If it is NULL, then no make_request is active. If it is non-NULL,
1576 * then a make_request is active, and new requests should be added
1577 * at the tail
1578 */
1579void generic_make_request(struct bio *bio)
1580{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001581 struct bio_list bio_list_on_stack;
1582
1583 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001584 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001585 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001586 return;
1587 }
1588 /* following loop may be a bit non-obvious, and so deserves some
1589 * explanation.
1590 * Before entering the loop, bio->bi_next is NULL (as all callers
1591 * ensure that) so we have a list with a single bio.
1592 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001593 * we assign bio_list to a pointer to the bio_list_on_stack,
1594 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001595 * added. __generic_make_request may indeed add some more bios
1596 * through a recursive call to generic_make_request. If it
1597 * did, we find a non-NULL value in bio_list and re-enter the loop
1598 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001599 * of the top of the list (no pretending) and so remove it from
1600 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001601 *
1602 * The loop was structured like this to make only one call to
1603 * __generic_make_request (which is important as it is large and
1604 * inlined) and to keep the structure simple.
1605 */
1606 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001607 bio_list_init(&bio_list_on_stack);
1608 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001609 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001610 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001611 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001612 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001613 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001614}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615EXPORT_SYMBOL(generic_make_request);
1616
1617/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001618 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1620 * @bio: The &struct bio which describes the I/O
1621 *
1622 * submit_bio() is very similar in purpose to generic_make_request(), and
1623 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001624 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 *
1626 */
1627void submit_bio(int rw, struct bio *bio)
1628{
1629 int count = bio_sectors(bio);
1630
Jens Axboe22e2c502005-06-27 10:55:12 +02001631 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Jens Axboebf2de6f2007-09-27 13:01:25 +02001633 /*
1634 * If it's a regular read/write or a barrier with data attached,
1635 * go through the normal accounting stuff before submission.
1636 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001637 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001638 if (rw & WRITE) {
1639 count_vm_events(PGPGOUT, count);
1640 } else {
1641 task_io_account_read(bio->bi_size);
1642 count_vm_events(PGPGIN, count);
1643 }
1644
1645 if (unlikely(block_dump)) {
1646 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001647 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001648 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001649 (rw & WRITE) ? "WRITE" : "READ",
1650 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001651 bdevname(bio->bi_bdev, b),
1652 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
1655
1656 generic_make_request(bio);
1657}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658EXPORT_SYMBOL(submit_bio);
1659
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001660/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001661 * blk_rq_check_limits - Helper function to check a request for the queue limit
1662 * @q: the queue
1663 * @rq: the request being checked
1664 *
1665 * Description:
1666 * @rq may have been made based on weaker limitations of upper-level queues
1667 * in request stacking drivers, and it may violate the limitation of @q.
1668 * Since the block layer and the underlying device driver trust @rq
1669 * after it is inserted to @q, it should be checked against @q before
1670 * the insertion using this generic function.
1671 *
1672 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001673 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001674 * Request stacking drivers like request-based dm may change the queue
1675 * limits while requests are in the queue (e.g. dm's table swapping).
1676 * Such request stacking drivers should check those requests agaist
1677 * the new queue limits again when they dispatch those requests,
1678 * although such checkings are also done against the old queue limits
1679 * when submitting requests.
1680 */
1681int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1682{
ike Snitzer33839772010-08-08 12:11:33 -04001683 if (rq->cmd_flags & REQ_DISCARD)
1684 return 0;
1685
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001686 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1687 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001688 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1689 return -EIO;
1690 }
1691
1692 /*
1693 * queue's settings related to segment counting like q->bounce_pfn
1694 * may differ from that of other stacking queues.
1695 * Recalculate it to check the request correctly on this queue's
1696 * limitation.
1697 */
1698 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001699 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001700 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1701 return -EIO;
1702 }
1703
1704 return 0;
1705}
1706EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1707
1708/**
1709 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1710 * @q: the queue to submit the request
1711 * @rq: the request being queued
1712 */
1713int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1714{
1715 unsigned long flags;
1716
1717 if (blk_rq_check_limits(q, rq))
1718 return -EIO;
1719
1720#ifdef CONFIG_FAIL_MAKE_REQUEST
1721 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1722 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1723 return -EIO;
1724#endif
1725
1726 spin_lock_irqsave(q->queue_lock, flags);
1727
1728 /*
1729 * Submitting request must be dequeued before calling this function
1730 * because it will be linked to another request_queue
1731 */
1732 BUG_ON(blk_queued_rq(rq));
1733
1734 drive_stat_acct(rq, 1);
1735 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1736
1737 spin_unlock_irqrestore(q->queue_lock, flags);
1738
1739 return 0;
1740}
1741EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1742
Tejun Heo80a761f2009-07-03 17:48:17 +09001743/**
1744 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1745 * @rq: request to examine
1746 *
1747 * Description:
1748 * A request could be merge of IOs which require different failure
1749 * handling. This function determines the number of bytes which
1750 * can be failed from the beginning of the request without
1751 * crossing into area which need to be retried further.
1752 *
1753 * Return:
1754 * The number of bytes to fail.
1755 *
1756 * Context:
1757 * queue_lock must be held.
1758 */
1759unsigned int blk_rq_err_bytes(const struct request *rq)
1760{
1761 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1762 unsigned int bytes = 0;
1763 struct bio *bio;
1764
1765 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1766 return blk_rq_bytes(rq);
1767
1768 /*
1769 * Currently the only 'mixing' which can happen is between
1770 * different fastfail types. We can safely fail portions
1771 * which have all the failfast bits that the first one has -
1772 * the ones which are at least as eager to fail as the first
1773 * one.
1774 */
1775 for (bio = rq->bio; bio; bio = bio->bi_next) {
1776 if ((bio->bi_rw & ff) != ff)
1777 break;
1778 bytes += bio->bi_size;
1779 }
1780
1781 /* this could lead to infinite loop */
1782 BUG_ON(blk_rq_bytes(rq) && !bytes);
1783 return bytes;
1784}
1785EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1786
Jens Axboebc58ba92009-01-23 10:54:44 +01001787static void blk_account_io_completion(struct request *req, unsigned int bytes)
1788{
Jens Axboec2553b52009-04-24 08:10:11 +02001789 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001790 const int rw = rq_data_dir(req);
1791 struct hd_struct *part;
1792 int cpu;
1793
1794 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001795 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001796 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1797 part_stat_unlock();
1798 }
1799}
1800
1801static void blk_account_io_done(struct request *req)
1802{
Jens Axboebc58ba92009-01-23 10:54:44 +01001803 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001804 * Account IO completion. flush_rq isn't accounted as a
1805 * normal IO on queueing nor completion. Accounting the
1806 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001807 */
Tejun Heodd4c1332010-09-03 11:56:16 +02001808 if (blk_do_io_stat(req) && req != &req->q->flush_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001809 unsigned long duration = jiffies - req->start_time;
1810 const int rw = rq_data_dir(req);
1811 struct hd_struct *part;
1812 int cpu;
1813
1814 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001815 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001816
1817 part_stat_inc(cpu, part, ios[rw]);
1818 part_stat_add(cpu, part, ticks[rw], duration);
1819 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001820 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001821
Jens Axboe6c23a962011-01-07 08:43:37 +01001822 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001823 part_stat_unlock();
1824 }
1825}
1826
Tejun Heo53a08802008-12-03 12:41:26 +01001827/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001828 * blk_peek_request - peek at the top of a request queue
1829 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001830 *
1831 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001832 * Return the request at the top of @q. The returned request
1833 * should be started using blk_start_request() before LLD starts
1834 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001835 *
1836 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001837 * Pointer to the request at the top of @q if available. Null
1838 * otherwise.
1839 *
1840 * Context:
1841 * queue_lock must be held.
1842 */
1843struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001844{
1845 struct request *rq;
1846 int ret;
1847
1848 while ((rq = __elv_next_request(q)) != NULL) {
1849 if (!(rq->cmd_flags & REQ_STARTED)) {
1850 /*
1851 * This is the first time the device driver
1852 * sees this request (possibly after
1853 * requeueing). Notify IO scheduler.
1854 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001855 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001856 elv_activate_rq(q, rq);
1857
1858 /*
1859 * just mark as started even if we don't start
1860 * it, a request that has been delayed should
1861 * not be passed by new incoming requests
1862 */
1863 rq->cmd_flags |= REQ_STARTED;
1864 trace_block_rq_issue(q, rq);
1865 }
1866
1867 if (!q->boundary_rq || q->boundary_rq == rq) {
1868 q->end_sector = rq_end_sector(rq);
1869 q->boundary_rq = NULL;
1870 }
1871
1872 if (rq->cmd_flags & REQ_DONTPREP)
1873 break;
1874
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001875 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001876 /*
1877 * make sure space for the drain appears we
1878 * know we can do this because max_hw_segments
1879 * has been adjusted to be one fewer than the
1880 * device can handle
1881 */
1882 rq->nr_phys_segments++;
1883 }
1884
1885 if (!q->prep_rq_fn)
1886 break;
1887
1888 ret = q->prep_rq_fn(q, rq);
1889 if (ret == BLKPREP_OK) {
1890 break;
1891 } else if (ret == BLKPREP_DEFER) {
1892 /*
1893 * the request may have been (partially) prepped.
1894 * we need to keep this request in the front to
1895 * avoid resource deadlock. REQ_STARTED will
1896 * prevent other fs requests from passing this one.
1897 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001898 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001899 !(rq->cmd_flags & REQ_DONTPREP)) {
1900 /*
1901 * remove the space for the drain we added
1902 * so that we don't add it again
1903 */
1904 --rq->nr_phys_segments;
1905 }
1906
1907 rq = NULL;
1908 break;
1909 } else if (ret == BLKPREP_KILL) {
1910 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001911 /*
1912 * Mark this request as started so we don't trigger
1913 * any debug logic in the end I/O path.
1914 */
1915 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001916 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001917 } else {
1918 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1919 break;
1920 }
1921 }
1922
1923 return rq;
1924}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001925EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001926
Tejun Heo9934c8c2009-05-08 11:54:16 +09001927void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001928{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001929 struct request_queue *q = rq->q;
1930
Tejun Heo158dbda2009-04-23 11:05:18 +09001931 BUG_ON(list_empty(&rq->queuelist));
1932 BUG_ON(ELV_ON_HASH(rq));
1933
1934 list_del_init(&rq->queuelist);
1935
1936 /*
1937 * the time frame between a request being removed from the lists
1938 * and to it is freed is accounted as io that is in progress at
1939 * the driver side.
1940 */
Divyesh Shah91952912010-04-01 15:01:41 -07001941 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001942 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001943 set_io_start_time_ns(rq);
1944 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001945}
1946
Tejun Heo5efccd12009-04-23 11:05:18 +09001947/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001948 * blk_start_request - start request processing on the driver
1949 * @req: request to dequeue
1950 *
1951 * Description:
1952 * Dequeue @req and start timeout timer on it. This hands off the
1953 * request to the driver.
1954 *
1955 * Block internal functions which don't want to start timer should
1956 * call blk_dequeue_request().
1957 *
1958 * Context:
1959 * queue_lock must be held.
1960 */
1961void blk_start_request(struct request *req)
1962{
1963 blk_dequeue_request(req);
1964
1965 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001966 * We are now handing the request to the hardware, initialize
1967 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001968 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001969 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001970 if (unlikely(blk_bidi_rq(req)))
1971 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1972
Tejun Heo9934c8c2009-05-08 11:54:16 +09001973 blk_add_timer(req);
1974}
1975EXPORT_SYMBOL(blk_start_request);
1976
1977/**
1978 * blk_fetch_request - fetch a request from a request queue
1979 * @q: request queue to fetch a request from
1980 *
1981 * Description:
1982 * Return the request at the top of @q. The request is started on
1983 * return and LLD can start processing it immediately.
1984 *
1985 * Return:
1986 * Pointer to the request at the top of @q if available. Null
1987 * otherwise.
1988 *
1989 * Context:
1990 * queue_lock must be held.
1991 */
1992struct request *blk_fetch_request(struct request_queue *q)
1993{
1994 struct request *rq;
1995
1996 rq = blk_peek_request(q);
1997 if (rq)
1998 blk_start_request(rq);
1999 return rq;
2000}
2001EXPORT_SYMBOL(blk_fetch_request);
2002
2003/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002004 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002005 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002006 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002007 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002008 *
2009 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002010 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2011 * the request structure even if @req doesn't have leftover.
2012 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002013 *
2014 * This special helper function is only for request stacking drivers
2015 * (e.g. request-based dm) so that they can handle partial completion.
2016 * Actual device drivers should use blk_end_request instead.
2017 *
2018 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2019 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002020 *
2021 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002022 * %false - this request doesn't have any more data
2023 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002024 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002025bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002027 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 struct bio *bio;
2029
Tejun Heo2e60e022009-04-23 11:05:18 +09002030 if (!req->bio)
2031 return false;
2032
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002033 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002036 * For fs requests, rq is just carrier of independent bio's
2037 * and each partial completion should be handled separately.
2038 * Reset per-request error on each partial completion.
2039 *
2040 * TODO: tj: This is too subtle. It would be better to let
2041 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002043 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 req->errors = 0;
2045
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002046 if (error && req->cmd_type == REQ_TYPE_FS &&
2047 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002048 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002050 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052
Jens Axboebc58ba92009-01-23 10:54:44 +01002053 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 total_bytes = bio_nbytes = 0;
2056 while ((bio = req->bio) != NULL) {
2057 int nbytes;
2058
2059 if (nr_bytes >= bio->bi_size) {
2060 req->bio = bio->bi_next;
2061 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002062 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 next_idx = 0;
2064 bio_nbytes = 0;
2065 } else {
2066 int idx = bio->bi_idx + next_idx;
2067
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002068 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002070 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002071 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 break;
2073 }
2074
2075 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2076 BIO_BUG_ON(nbytes > bio->bi_size);
2077
2078 /*
2079 * not a complete bvec done
2080 */
2081 if (unlikely(nbytes > nr_bytes)) {
2082 bio_nbytes += nr_bytes;
2083 total_bytes += nr_bytes;
2084 break;
2085 }
2086
2087 /*
2088 * advance to the next vector
2089 */
2090 next_idx++;
2091 bio_nbytes += nbytes;
2092 }
2093
2094 total_bytes += nbytes;
2095 nr_bytes -= nbytes;
2096
Jens Axboe6728cb02008-01-31 13:03:55 +01002097 bio = req->bio;
2098 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 /*
2100 * end more in this run, or just return 'not-done'
2101 */
2102 if (unlikely(nr_bytes <= 0))
2103 break;
2104 }
2105 }
2106
2107 /*
2108 * completely done
2109 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002110 if (!req->bio) {
2111 /*
2112 * Reset counters so that the request stacking driver
2113 * can find how many bytes remain in the request
2114 * later.
2115 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002116 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002117 return false;
2118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 /*
2121 * if the request wasn't completed, update state
2122 */
2123 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002124 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 bio->bi_idx += next_idx;
2126 bio_iovec(bio)->bv_offset += nr_bytes;
2127 bio_iovec(bio)->bv_len -= nr_bytes;
2128 }
2129
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002130 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002131 req->buffer = bio_data(req->bio);
2132
2133 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002134 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002135 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002136
Tejun Heo80a761f2009-07-03 17:48:17 +09002137 /* mixed attributes always follow the first bio */
2138 if (req->cmd_flags & REQ_MIXED_MERGE) {
2139 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2140 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2141 }
2142
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002143 /*
2144 * If total number of sectors is less than the first segment
2145 * size, something has gone terribly wrong.
2146 */
2147 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2148 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002149 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002150 }
2151
2152 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002154
Tejun Heo2e60e022009-04-23 11:05:18 +09002155 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
Tejun Heo2e60e022009-04-23 11:05:18 +09002157EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Tejun Heo2e60e022009-04-23 11:05:18 +09002159static bool blk_update_bidi_request(struct request *rq, int error,
2160 unsigned int nr_bytes,
2161 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002162{
Tejun Heo2e60e022009-04-23 11:05:18 +09002163 if (blk_update_request(rq, error, nr_bytes))
2164 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002165
Tejun Heo2e60e022009-04-23 11:05:18 +09002166 /* Bidi request must be completed as a whole */
2167 if (unlikely(blk_bidi_rq(rq)) &&
2168 blk_update_request(rq->next_rq, error, bidi_bytes))
2169 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002170
Jens Axboee2e1a142010-06-09 10:42:09 +02002171 if (blk_queue_add_random(rq->q))
2172 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002173
2174 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
James Bottomley28018c22010-07-01 19:49:17 +09002177/**
2178 * blk_unprep_request - unprepare a request
2179 * @req: the request
2180 *
2181 * This function makes a request ready for complete resubmission (or
2182 * completion). It happens only after all error handling is complete,
2183 * so represents the appropriate moment to deallocate any resources
2184 * that were allocated to the request in the prep_rq_fn. The queue
2185 * lock is held when calling this.
2186 */
2187void blk_unprep_request(struct request *req)
2188{
2189 struct request_queue *q = req->q;
2190
2191 req->cmd_flags &= ~REQ_DONTPREP;
2192 if (q->unprep_rq_fn)
2193 q->unprep_rq_fn(q, req);
2194}
2195EXPORT_SYMBOL_GPL(blk_unprep_request);
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197/*
2198 * queue lock must be held
2199 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002200static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002202 if (blk_rq_tagged(req))
2203 blk_queue_end_tag(req->q, req);
2204
James Bottomleyba396a62009-05-27 14:17:08 +02002205 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002207 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002208 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Mike Andersone78042e2008-10-30 02:16:20 -07002210 blk_delete_timer(req);
2211
James Bottomley28018c22010-07-01 19:49:17 +09002212 if (req->cmd_flags & REQ_DONTPREP)
2213 blk_unprep_request(req);
2214
2215
Jens Axboebc58ba92009-01-23 10:54:44 +01002216 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002219 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002220 else {
2221 if (blk_bidi_rq(req))
2222 __blk_put_request(req->next_rq->q, req->next_rq);
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
2226}
2227
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002228/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002229 * blk_end_bidi_request - Complete a bidi request
2230 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002231 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002232 * @nr_bytes: number of bytes to complete @rq
2233 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002234 *
2235 * Description:
2236 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002237 * Drivers that supports bidi can safely call this member for any
2238 * type of request, bidi or uni. In the later case @bidi_bytes is
2239 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002240 *
2241 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002242 * %false - we are done with this request
2243 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002244 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002245static bool blk_end_bidi_request(struct request *rq, int error,
2246 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002247{
2248 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002249 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002250
Tejun Heo2e60e022009-04-23 11:05:18 +09002251 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2252 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002253
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002254 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002255 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002256 spin_unlock_irqrestore(q->queue_lock, flags);
2257
Tejun Heo2e60e022009-04-23 11:05:18 +09002258 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002259}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002260
2261/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002262 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2263 * @rq: the request to complete
2264 * @error: %0 for success, < %0 for error
2265 * @nr_bytes: number of bytes to complete @rq
2266 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002267 *
2268 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002269 * Identical to blk_end_bidi_request() except that queue lock is
2270 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002271 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002272 * Return:
2273 * %false - we are done with this request
2274 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002275 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002276static bool __blk_end_bidi_request(struct request *rq, int error,
2277 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002278{
Tejun Heo2e60e022009-04-23 11:05:18 +09002279 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2280 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002281
Tejun Heo2e60e022009-04-23 11:05:18 +09002282 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002283
Tejun Heo2e60e022009-04-23 11:05:18 +09002284 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002285}
2286
2287/**
2288 * blk_end_request - Helper function for drivers to complete the request.
2289 * @rq: the request being processed
2290 * @error: %0 for success, < %0 for error
2291 * @nr_bytes: number of bytes to complete
2292 *
2293 * Description:
2294 * Ends I/O on a number of bytes attached to @rq.
2295 * If @rq has leftover, sets it up for the next range of segments.
2296 *
2297 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002298 * %false - we are done with this request
2299 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002300 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002301bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002302{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002303 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002304}
Jens Axboe56ad1742009-07-28 22:11:24 +02002305EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002306
2307/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002308 * blk_end_request_all - Helper function for drives to finish the request.
2309 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002310 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002311 *
2312 * Description:
2313 * Completely finish @rq.
2314 */
2315void blk_end_request_all(struct request *rq, int error)
2316{
2317 bool pending;
2318 unsigned int bidi_bytes = 0;
2319
2320 if (unlikely(blk_bidi_rq(rq)))
2321 bidi_bytes = blk_rq_bytes(rq->next_rq);
2322
2323 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2324 BUG_ON(pending);
2325}
Jens Axboe56ad1742009-07-28 22:11:24 +02002326EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002327
2328/**
2329 * blk_end_request_cur - Helper function to finish the current request chunk.
2330 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002331 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002332 *
2333 * Description:
2334 * Complete the current consecutively mapped chunk from @rq.
2335 *
2336 * Return:
2337 * %false - we are done with this request
2338 * %true - still buffers pending for this request
2339 */
2340bool blk_end_request_cur(struct request *rq, int error)
2341{
2342 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2343}
Jens Axboe56ad1742009-07-28 22:11:24 +02002344EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002345
2346/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002347 * blk_end_request_err - Finish a request till the next failure boundary.
2348 * @rq: the request to finish till the next failure boundary for
2349 * @error: must be negative errno
2350 *
2351 * Description:
2352 * Complete @rq till the next failure boundary.
2353 *
2354 * Return:
2355 * %false - we are done with this request
2356 * %true - still buffers pending for this request
2357 */
2358bool blk_end_request_err(struct request *rq, int error)
2359{
2360 WARN_ON(error >= 0);
2361 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2362}
2363EXPORT_SYMBOL_GPL(blk_end_request_err);
2364
2365/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002366 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002367 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002368 * @error: %0 for success, < %0 for error
2369 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002370 *
2371 * Description:
2372 * Must be called with queue lock held unlike blk_end_request().
2373 *
2374 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002375 * %false - we are done with this request
2376 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002377 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002378bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002379{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002380 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002381}
Jens Axboe56ad1742009-07-28 22:11:24 +02002382EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002383
2384/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002385 * __blk_end_request_all - Helper function for drives to finish the request.
2386 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002387 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002388 *
2389 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002390 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002391 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002392void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002393{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002394 bool pending;
2395 unsigned int bidi_bytes = 0;
2396
2397 if (unlikely(blk_bidi_rq(rq)))
2398 bidi_bytes = blk_rq_bytes(rq->next_rq);
2399
2400 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2401 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002402}
Jens Axboe56ad1742009-07-28 22:11:24 +02002403EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002404
2405/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002406 * __blk_end_request_cur - Helper function to finish the current request chunk.
2407 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002408 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002409 *
2410 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002411 * Complete the current consecutively mapped chunk from @rq. Must
2412 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002413 *
2414 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002415 * %false - we are done with this request
2416 * %true - still buffers pending for this request
2417 */
2418bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002419{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002420 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002421}
Jens Axboe56ad1742009-07-28 22:11:24 +02002422EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002423
Tejun Heo80a761f2009-07-03 17:48:17 +09002424/**
2425 * __blk_end_request_err - Finish a request till the next failure boundary.
2426 * @rq: the request to finish till the next failure boundary for
2427 * @error: must be negative errno
2428 *
2429 * Description:
2430 * Complete @rq till the next failure boundary. Must be called
2431 * with queue lock held.
2432 *
2433 * Return:
2434 * %false - we are done with this request
2435 * %true - still buffers pending for this request
2436 */
2437bool __blk_end_request_err(struct request *rq, int error)
2438{
2439 WARN_ON(error >= 0);
2440 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2441}
2442EXPORT_SYMBOL_GPL(__blk_end_request_err);
2443
Jens Axboe86db1e22008-01-29 14:53:40 +01002444void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2445 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002447 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002448 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
David Woodhousefb2dce82008-08-05 18:01:53 +01002450 if (bio_has_data(bio)) {
2451 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002452 rq->buffer = bio_data(bio);
2453 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002454 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
NeilBrown66846572007-08-16 13:31:28 +02002457 if (bio->bi_bdev)
2458 rq->rq_disk = bio->bi_bdev->bd_disk;
2459}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002461#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2462/**
2463 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2464 * @rq: the request to be flushed
2465 *
2466 * Description:
2467 * Flush all pages in @rq.
2468 */
2469void rq_flush_dcache_pages(struct request *rq)
2470{
2471 struct req_iterator iter;
2472 struct bio_vec *bvec;
2473
2474 rq_for_each_segment(bvec, rq, iter)
2475 flush_dcache_page(bvec->bv_page);
2476}
2477EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2478#endif
2479
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002480/**
2481 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2482 * @q : the queue of the device being checked
2483 *
2484 * Description:
2485 * Check if underlying low-level drivers of a device are busy.
2486 * If the drivers want to export their busy state, they must set own
2487 * exporting function using blk_queue_lld_busy() first.
2488 *
2489 * Basically, this function is used only by request stacking drivers
2490 * to stop dispatching requests to underlying devices when underlying
2491 * devices are busy. This behavior helps more I/O merging on the queue
2492 * of the request stacking driver and prevents I/O throughput regression
2493 * on burst I/O load.
2494 *
2495 * Return:
2496 * 0 - Not busy (The request stacking driver should dispatch request)
2497 * 1 - Busy (The request stacking driver should stop dispatching request)
2498 */
2499int blk_lld_busy(struct request_queue *q)
2500{
2501 if (q->lld_busy_fn)
2502 return q->lld_busy_fn(q);
2503
2504 return 0;
2505}
2506EXPORT_SYMBOL_GPL(blk_lld_busy);
2507
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002508/**
2509 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2510 * @rq: the clone request to be cleaned up
2511 *
2512 * Description:
2513 * Free all bios in @rq for a cloned request.
2514 */
2515void blk_rq_unprep_clone(struct request *rq)
2516{
2517 struct bio *bio;
2518
2519 while ((bio = rq->bio) != NULL) {
2520 rq->bio = bio->bi_next;
2521
2522 bio_put(bio);
2523 }
2524}
2525EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2526
2527/*
2528 * Copy attributes of the original request to the clone request.
2529 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2530 */
2531static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2532{
2533 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002534 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002535 dst->cmd_type = src->cmd_type;
2536 dst->__sector = blk_rq_pos(src);
2537 dst->__data_len = blk_rq_bytes(src);
2538 dst->nr_phys_segments = src->nr_phys_segments;
2539 dst->ioprio = src->ioprio;
2540 dst->extra_len = src->extra_len;
2541}
2542
2543/**
2544 * blk_rq_prep_clone - Helper function to setup clone request
2545 * @rq: the request to be setup
2546 * @rq_src: original request to be cloned
2547 * @bs: bio_set that bios for clone are allocated from
2548 * @gfp_mask: memory allocation mask for bio
2549 * @bio_ctr: setup function to be called for each clone bio.
2550 * Returns %0 for success, non %0 for failure.
2551 * @data: private data to be passed to @bio_ctr
2552 *
2553 * Description:
2554 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2555 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2556 * are not copied, and copying such parts is the caller's responsibility.
2557 * Also, pages which the original bios are pointing to are not copied
2558 * and the cloned bios just point same pages.
2559 * So cloned bios must be completed before original bios, which means
2560 * the caller must complete @rq before @rq_src.
2561 */
2562int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2563 struct bio_set *bs, gfp_t gfp_mask,
2564 int (*bio_ctr)(struct bio *, struct bio *, void *),
2565 void *data)
2566{
2567 struct bio *bio, *bio_src;
2568
2569 if (!bs)
2570 bs = fs_bio_set;
2571
2572 blk_rq_init(NULL, rq);
2573
2574 __rq_for_each_bio(bio_src, rq_src) {
2575 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2576 if (!bio)
2577 goto free_and_out;
2578
2579 __bio_clone(bio, bio_src);
2580
2581 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002582 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002583 goto free_and_out;
2584
2585 if (bio_ctr && bio_ctr(bio, bio_src, data))
2586 goto free_and_out;
2587
2588 if (rq->bio) {
2589 rq->biotail->bi_next = bio;
2590 rq->biotail = bio;
2591 } else
2592 rq->bio = rq->biotail = bio;
2593 }
2594
2595 __blk_rq_prep_clone(rq, rq_src);
2596
2597 return 0;
2598
2599free_and_out:
2600 if (bio)
2601 bio_free(bio, bs);
2602 blk_rq_unprep_clone(rq);
2603
2604 return -ENOMEM;
2605}
2606EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2607
Jens Axboe18887ad2008-07-28 13:08:45 +02002608int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
2610 return queue_work(kblockd_workqueue, work);
2611}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612EXPORT_SYMBOL(kblockd_schedule_work);
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614int __init blk_dev_init(void)
2615{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002616 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2617 sizeof(((struct request *)0)->cmd_flags));
2618
Tejun Heo89b90be2011-01-03 15:01:47 +01002619 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2620 kblockd_workqueue = alloc_workqueue("kblockd",
2621 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (!kblockd_workqueue)
2623 panic("Failed to create kblockd\n");
2624
2625 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002626 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Jens Axboe8324aa92008-01-29 14:51:59 +01002628 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002629 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 return 0;
2632}