blob: accff29ad6745cdb5b81264914c270fcc23e1eda [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
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{
Tejun Heo143a87f2011-01-25 12:43:52 +0100152 if (error)
153 clear_bit(BIO_UPTODATE, &bio->bi_flags);
154 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
155 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100156
Tejun Heo143a87f2011-01-25 12:43:52 +0100157 if (unlikely(nbytes > bio->bi_size)) {
158 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
159 __func__, nbytes, bio->bi_size);
160 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +0200161 }
Tejun Heo143a87f2011-01-25 12:43:52 +0100162
163 if (unlikely(rq->cmd_flags & REQ_QUIET))
164 set_bit(BIO_QUIET, &bio->bi_flags);
165
166 bio->bi_size -= nbytes;
167 bio->bi_sector += (nbytes >> 9);
168
169 if (bio_integrity(bio))
170 bio_integrity_advance(bio, nbytes);
171
172 /* don't actually finish bio if it's part of flush sequence */
173 if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
174 bio_endio(bio, error);
Tejun Heo797e7db2006-01-06 09:51:03 +0100175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177void blk_dump_rq_flags(struct request *rq, char *msg)
178{
179 int bit;
180
Jens Axboe6728cb02008-01-31 13:03:55 +0100181 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200182 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
183 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Tejun Heo83096eb2009-05-07 22:24:39 +0900185 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
186 (unsigned long long)blk_rq_pos(rq),
187 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900188 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900189 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200191 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100192 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200193 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 printk("%02x ", rq->cmd[bit]);
195 printk("\n");
196 }
197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198EXPORT_SYMBOL(blk_dump_rq_flags);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
201 * "plug" the device if there are no outstanding requests: this will
202 * force the transfer to start only after we have put all the requests
203 * on the list.
204 *
205 * This is called with interrupts off and no requests on the queue and
206 * with the queue lock held.
207 */
Jens Axboe165125e2007-07-24 09:28:11 +0200208void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 WARN_ON(!irqs_disabled());
211
212 /*
213 * don't plug a stopped queue, it must be paired with blk_start_queue()
214 * which will restart the queueing
215 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200216 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return;
218
Jens Axboee48ec692008-07-03 13:18:54 +0200219 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100221 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224EXPORT_SYMBOL(blk_plug_device);
225
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200226/**
227 * blk_plug_device_unlocked - plug a device without queue lock held
228 * @q: The &struct request_queue to plug
229 *
230 * Description:
231 * Like @blk_plug_device(), but grabs the queue lock and disables
232 * interrupts.
233 **/
234void blk_plug_device_unlocked(struct request_queue *q)
235{
236 unsigned long flags;
237
238 spin_lock_irqsave(q->queue_lock, flags);
239 blk_plug_device(q);
240 spin_unlock_irqrestore(q->queue_lock, flags);
241}
242EXPORT_SYMBOL(blk_plug_device_unlocked);
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * remove the queue from the plugged list, if present. called with
246 * queue lock held and interrupts disabled.
247 */
Jens Axboe165125e2007-07-24 09:28:11 +0200248int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 WARN_ON(!irqs_disabled());
251
Jens Axboee48ec692008-07-03 13:18:54 +0200252 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254
255 del_timer(&q->unplug_timer);
256 return 1;
257}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258EXPORT_SYMBOL(blk_remove_plug);
259
260/*
261 * remove the plug and let it rip..
262 */
Jens Axboe165125e2007-07-24 09:28:11 +0200263void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200265 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200267 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return;
269
Jens Axboe22e2c502005-06-27 10:55:12 +0200270 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273/**
274 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200275 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
277 * Description:
278 * Linux uses plugging to build bigger requests queues before letting
279 * the device have at them. If a queue is plugged, the I/O scheduler
280 * is still adding and merging requests on the queue. Once the queue
281 * gets unplugged, the request_fn defined for the queue is invoked and
282 * transfers started.
283 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200284void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200286 if (blk_queue_plugged(q)) {
287 spin_lock_irq(q->queue_lock);
288 __generic_unplug_device(q);
289 spin_unlock_irq(q->queue_lock);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292EXPORT_SYMBOL(generic_unplug_device);
293
294static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
295 struct page *page)
296{
Jens Axboe165125e2007-07-24 09:28:11 +0200297 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500299 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Jens Axboe86db1e22008-01-29 14:53:40 +0100302void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Jens Axboe165125e2007-07-24 09:28:11 +0200304 struct request_queue *q =
305 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100307 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 q->unplug_fn(q);
309}
310
Jens Axboe86db1e22008-01-29 14:53:40 +0100311void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jens Axboe165125e2007-07-24 09:28:11 +0200313 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100315 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200316 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500319void blk_unplug(struct request_queue *q)
320{
321 /*
322 * devices don't necessarily have an ->unplug_fn defined
323 */
324 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100325 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500326 q->unplug_fn(q);
327 }
328}
329EXPORT_SYMBOL(blk_unplug);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/**
332 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200333 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *
335 * Description:
336 * blk_start_queue() will clear the stop flag on the queue, and call
337 * the request_fn for the queue if it was in a stopped state when
338 * entered. Also see blk_stop_queue(). Queue lock must be held.
339 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200340void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200342 WARN_ON(!irqs_disabled());
343
Nick Piggin75ad23b2008-04-29 14:48:33 +0200344 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900345 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347EXPORT_SYMBOL(blk_start_queue);
348
349/**
350 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200351 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 *
353 * Description:
354 * The Linux block layer assumes that a block driver will consume all
355 * entries on the request queue when the request_fn strategy is called.
356 * Often this will not happen, because of hardware limitations (queue
357 * depth settings). If a device driver gets a 'queue full' response,
358 * or if it simply chooses not to queue more I/O at one point, it can
359 * call this function to prevent the request_fn from being called until
360 * the driver has signalled it's ready to go again. This happens by calling
361 * blk_start_queue() to restart queue operations. Queue lock must be held.
362 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200363void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200366 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368EXPORT_SYMBOL(blk_stop_queue);
369
370/**
371 * blk_sync_queue - cancel any pending callbacks on a queue
372 * @q: the queue
373 *
374 * Description:
375 * The block layer may perform asynchronous callback activity
376 * on a queue, such as calling the unplug function after a timeout.
377 * A block device may call blk_sync_queue to ensure that any
378 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200379 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * that its ->make_request_fn will not re-add plugging prior to calling
381 * this function.
382 *
Vivek Goyalda527772011-03-02 19:05:33 -0500383 * This function does not cancel any asynchronous activity arising
384 * out of elevator or throttling code. That would require elevaotor_exit()
385 * and blk_throtl_exit() to be called with queue lock initialized.
386 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 */
388void blk_sync_queue(struct request_queue *q)
389{
390 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100391 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100392 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394EXPORT_SYMBOL(blk_sync_queue);
395
396/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200397 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200399 *
400 * Description:
401 * See @blk_run_queue. This variant must be called with the queue lock
402 * held and interrupts disabled.
403 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200405void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200408
Tejun Heoa538cd02009-04-23 11:05:17 +0900409 if (unlikely(blk_queue_stopped(q)))
410 return;
411
412 if (elv_queue_empty(q))
413 return;
414
Jens Axboedac07ec2006-05-11 08:20:16 +0200415 /*
416 * Only recurse once to avoid overrunning the stack, let the unplug
417 * handling reinvoke the handler shortly if we already got there.
418 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900419 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
420 q->request_fn(q);
421 queue_flag_clear(QUEUE_FLAG_REENTER, q);
422 } else {
423 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
424 kblockd_schedule_work(q, &q->unplug_work);
425 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200426}
427EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200428
Nick Piggin75ad23b2008-04-29 14:48:33 +0200429/**
430 * blk_run_queue - run a single device queue
431 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200432 *
433 * Description:
434 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900435 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200436 */
437void blk_run_queue(struct request_queue *q)
438{
439 unsigned long flags;
440
441 spin_lock_irqsave(q->queue_lock, flags);
442 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 spin_unlock_irqrestore(q->queue_lock, flags);
444}
445EXPORT_SYMBOL(blk_run_queue);
446
Jens Axboe165125e2007-07-24 09:28:11 +0200447void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500448{
449 kobject_put(&q->kobj);
450}
Al Viro483f4af2006-03-18 18:34:37 -0500451
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500452/*
453 * Note: If a driver supplied the queue lock, it should not zap that lock
454 * unexpectedly as some queue cleanup components like elevator_exit() and
455 * blk_throtl_exit() need queue lock.
456 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100457void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500458{
Jens Axboee3335de92008-09-18 09:22:54 -0700459 /*
460 * We know we have process context here, so we can be a little
461 * cautious and ensure that pending block actions on this device
462 * are done before moving on. Going into this function, we should
463 * not have processes doing IO to this device.
464 */
465 blk_sync_queue(q);
466
Matthew Garrett31373d02010-04-06 14:25:14 +0200467 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500468 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200469 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500470 mutex_unlock(&q->sysfs_lock);
471
472 if (q->elevator)
473 elevator_exit(q->elevator);
474
Vivek Goyalda527772011-03-02 19:05:33 -0500475 blk_throtl_exit(q);
476
Al Viro483f4af2006-03-18 18:34:37 -0500477 blk_put_queue(q);
478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479EXPORT_SYMBOL(blk_cleanup_queue);
480
Jens Axboe165125e2007-07-24 09:28:11 +0200481static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct request_list *rl = &q->rq;
484
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400485 if (unlikely(rl->rq_pool))
486 return 0;
487
Jens Axboe1faa16d2009-04-06 14:48:01 +0200488 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
489 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200490 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200491 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
492 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Christoph Lameter19460892005-06-23 00:08:19 -0700494 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
495 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 if (!rl->rq_pool)
498 return -ENOMEM;
499
500 return 0;
501}
502
Jens Axboe165125e2007-07-24 09:28:11 +0200503struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Christoph Lameter19460892005-06-23 00:08:19 -0700505 return blk_alloc_queue_node(gfp_mask, -1);
506}
507EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jens Axboe165125e2007-07-24 09:28:11 +0200509struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700510{
Jens Axboe165125e2007-07-24 09:28:11 +0200511 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700513
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700515 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!q)
517 return NULL;
518
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700519 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
520 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200521 q->backing_dev_info.ra_pages =
522 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
523 q->backing_dev_info.state = 0;
524 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200525 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200526
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700527 err = bdi_init(&q->backing_dev_info);
528 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100529 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700530 return NULL;
531 }
532
Vivek Goyale43473b2010-09-15 17:06:35 -0400533 if (blk_throtl_init(q)) {
534 kmem_cache_free(blk_requestq_cachep, q);
535 return NULL;
536 }
537
Matthew Garrett31373d02010-04-06 14:25:14 +0200538 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
539 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700541 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
542 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100543 INIT_LIST_HEAD(&q->flush_queue[0]);
544 INIT_LIST_HEAD(&q->flush_queue[1]);
545 INIT_LIST_HEAD(&q->flush_data_in_flight);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200546 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500547
Jens Axboe8324aa92008-01-29 14:51:59 +0100548 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Al Viro483f4af2006-03-18 18:34:37 -0500550 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700551 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500552
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500553 /*
554 * By default initialize queue_lock to internal lock and driver can
555 * override it later if need be.
556 */
557 q->queue_lock = &q->__queue_lock;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return q;
560}
Christoph Lameter19460892005-06-23 00:08:19 -0700561EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563/**
564 * blk_init_queue - prepare a request queue for use with a block device
565 * @rfn: The function to be called to process requests that have been
566 * placed on the queue.
567 * @lock: Request queue spin lock
568 *
569 * Description:
570 * If a block device wishes to use the standard request handling procedures,
571 * which sorts requests and coalesces adjacent requests, then it must
572 * call blk_init_queue(). The function @rfn will be called when there
573 * are requests on the queue that need to be processed. If the device
574 * supports plugging, then @rfn may not be called immediately when requests
575 * are available on the queue, but may be called at some time later instead.
576 * Plugged queues are generally unplugged when a buffer belonging to one
577 * of the requests on the queue is needed, or due to memory pressure.
578 *
579 * @rfn is not required, or even expected, to remove all requests off the
580 * queue, but only as many as it can handle at a time. If it does leave
581 * requests on the queue, it is responsible for arranging that the requests
582 * get dealt with eventually.
583 *
584 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200585 * request queue; this lock will be taken also from interrupt context, so irq
586 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200588 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 * it didn't succeed.
590 *
591 * Note:
592 * blk_init_queue() must be paired with a blk_cleanup_queue() call
593 * when the block device is deactivated (such as at module unload).
594 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700595
Jens Axboe165125e2007-07-24 09:28:11 +0200596struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Christoph Lameter19460892005-06-23 00:08:19 -0700598 return blk_init_queue_node(rfn, lock, -1);
599}
600EXPORT_SYMBOL(blk_init_queue);
601
Jens Axboe165125e2007-07-24 09:28:11 +0200602struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700603blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
604{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600605 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600607 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
608 if (!uninit_q)
609 return NULL;
610
611 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
612 if (!q)
613 blk_cleanup_queue(uninit_q);
614
615 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200616}
617EXPORT_SYMBOL(blk_init_queue_node);
618
619struct request_queue *
620blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
621 spinlock_t *lock)
622{
623 return blk_init_allocated_queue_node(q, rfn, lock, -1);
624}
625EXPORT_SYMBOL(blk_init_allocated_queue);
626
627struct request_queue *
628blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
629 spinlock_t *lock, int node_id)
630{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (!q)
632 return NULL;
633
Christoph Lameter19460892005-06-23 00:08:19 -0700634 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600635 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500636 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900640 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100642 q->queue_flags = QUEUE_FLAG_DEFAULT;
Vivek Goyalc94a96a2011-03-02 19:04:42 -0500643
644 /* Override internal queue lock with supplied lock pointer */
645 if (lock)
646 q->queue_lock = lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Jens Axboef3b144a2009-03-06 08:48:33 +0100648 /*
649 * This also sets hw/phys segments, boundary and size
650 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Alan Stern44ec9542007-02-20 11:01:57 -0500653 q->sg_reserved_size = INT_MAX;
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /*
656 * all done
657 */
658 if (!elevator_init(q, NULL)) {
659 blk_queue_congestion_threshold(q);
660 return q;
661 }
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return NULL;
664}
Mike Snitzer01effb02010-05-11 08:57:42 +0200665EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jens Axboe165125e2007-07-24 09:28:11 +0200667int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700669 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500670 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return 0;
672 }
673
674 return 1;
675}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jens Axboe165125e2007-07-24 09:28:11 +0200677static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200679 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200680 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 mempool_free(rq, q->rq.rq_pool);
682}
683
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200684static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200685blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
688
689 if (!rq)
690 return NULL;
691
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200692 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200693
Jerome Marchand42dad762009-04-22 14:01:49 +0200694 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Tejun Heocb98fc82005-10-28 08:29:39 +0200696 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200697 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200698 mempool_free(rq, q->rq.rq_pool);
699 return NULL;
700 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200701 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Tejun Heocb98fc82005-10-28 08:29:39 +0200704 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
707/*
708 * ioc_batching returns true if the ioc is a valid batching request and
709 * should be given priority access to a request.
710 */
Jens Axboe165125e2007-07-24 09:28:11 +0200711static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 if (!ioc)
714 return 0;
715
716 /*
717 * Make sure the process is able to allocate at least 1 request
718 * even if the batch times out, otherwise we could theoretically
719 * lose wakeups.
720 */
721 return ioc->nr_batch_requests == q->nr_batching ||
722 (ioc->nr_batch_requests > 0
723 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
724}
725
726/*
727 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
728 * will cause the process to be a "batcher" on all queues in the system. This
729 * is the behaviour we want though - once it gets a wakeup it should be given
730 * a nice run.
731 */
Jens Axboe165125e2007-07-24 09:28:11 +0200732static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 if (!ioc || ioc_batching(q, ioc))
735 return;
736
737 ioc->nr_batch_requests = q->nr_batching;
738 ioc->last_waited = jiffies;
739}
740
Jens Axboe1faa16d2009-04-06 14:48:01 +0200741static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct request_list *rl = &q->rq;
744
Jens Axboe1faa16d2009-04-06 14:48:01 +0200745 if (rl->count[sync] < queue_congestion_off_threshold(q))
746 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Jens Axboe1faa16d2009-04-06 14:48:01 +0200748 if (rl->count[sync] + 1 <= q->nr_requests) {
749 if (waitqueue_active(&rl->wait[sync]))
750 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Jens Axboe1faa16d2009-04-06 14:48:01 +0200752 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754}
755
756/*
757 * A request has just been released. Account for it, update the full and
758 * congestion status, wake up any waiters. Called under q->queue_lock.
759 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200760static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct request_list *rl = &q->rq;
763
Jens Axboe1faa16d2009-04-06 14:48:01 +0200764 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200765 if (priv)
766 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Jens Axboe1faa16d2009-04-06 14:48:01 +0200768 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Jens Axboe1faa16d2009-04-06 14:48:01 +0200770 if (unlikely(rl->starved[sync ^ 1]))
771 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100775 * Determine if elevator data should be initialized when allocating the
776 * request associated with @bio.
777 */
778static bool blk_rq_should_init_elevator(struct bio *bio)
779{
780 if (!bio)
781 return true;
782
783 /*
784 * Flush requests do not use the elevator so skip initialization.
785 * This allows a request to share the flush and elevator data.
786 */
787 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
788 return false;
789
790 return true;
791}
792
793/*
Nick Piggind6344532005-06-28 20:45:14 -0700794 * Get a free request, queue_lock must be held.
795 * Returns NULL on failure, with queue_lock held.
796 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Jens Axboe165125e2007-07-24 09:28:11 +0200798static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100799 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 struct request *rq = NULL;
802 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100803 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200804 const bool is_sync = rw_is_sync(rw_flags) != 0;
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100805 int may_queue, priv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Jens Axboe7749a8d2006-12-13 13:02:26 +0100807 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100808 if (may_queue == ELV_MQUEUE_NO)
809 goto rq_starved;
810
Jens Axboe1faa16d2009-04-06 14:48:01 +0200811 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
812 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200813 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100814 /*
815 * The queue will fill after this allocation, so set
816 * it as full, and mark this process as "batching".
817 * This process will be allowed to complete a batch of
818 * requests, others will be blocked.
819 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200820 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100821 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200822 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100823 } else {
824 if (may_queue != ELV_MQUEUE_MUST
825 && !ioc_batching(q, ioc)) {
826 /*
827 * The queue is full and the allocating
828 * process is not a "batcher", and not
829 * exempted by the IO scheduler
830 */
831 goto out;
832 }
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200835 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Jens Axboe082cf692005-06-28 16:35:11 +0200838 /*
839 * Only allow batching queuers to allocate up to 50% over the defined
840 * limit of requests, otherwise we could have thousands of requests
841 * allocated with any setting of ->nr_requests
842 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200843 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200844 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100845
Jens Axboe1faa16d2009-04-06 14:48:01 +0200846 rl->count[is_sync]++;
847 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200848
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100849 if (blk_rq_should_init_elevator(bio)) {
850 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
851 if (priv)
852 rl->elvpriv++;
853 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200854
Jens Axboef253b862010-10-24 22:06:02 +0200855 if (blk_queue_io_stat(q))
856 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 spin_unlock_irq(q->queue_lock);
858
Jens Axboe7749a8d2006-12-13 13:02:26 +0100859 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100860 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /*
862 * Allocation failed presumably due to memory. Undo anything
863 * we might have messed up.
864 *
865 * Allocating task should really be put onto the front of the
866 * wait queue, but this is pretty rare.
867 */
868 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200869 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 /*
872 * in the very unlikely event that allocation failed and no
873 * requests for this direction was pending, mark us starved
874 * so that freeing of a request in the other direction will
875 * notice us. another possible fix would be to split the
876 * rq mempool into READ and WRITE
877 */
878rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200879 if (unlikely(rl->count[is_sync] == 0))
880 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 goto out;
883 }
884
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100885 /*
886 * ioc may be NULL here, and ioc_batching will be false. That's
887 * OK, if the queue is under the request limit then requests need
888 * not count toward the nr_batch_requests limit. There will always
889 * be some limit enforced by BLK_BATCH_TIME.
890 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (ioc_batching(q, ioc))
892 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100893
Jens Axboe1faa16d2009-04-06 14:48:01 +0200894 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return rq;
897}
898
899/*
900 * No available requests for this queue, unplug the device and wait for some
901 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700902 *
903 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 */
Jens Axboe165125e2007-07-24 09:28:11 +0200905static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200906 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200908 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct request *rq;
910
Jens Axboe7749a8d2006-12-13 13:02:26 +0100911 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700912 while (!rq) {
913 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200914 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct request_list *rl = &q->rq;
916
Jens Axboe1faa16d2009-04-06 14:48:01 +0200917 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 TASK_UNINTERRUPTIBLE);
919
Jens Axboe1faa16d2009-04-06 14:48:01 +0200920 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200922 __generic_unplug_device(q);
923 spin_unlock_irq(q->queue_lock);
924 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200926 /*
927 * After sleeping, we become a "batching" process and
928 * will be able to allocate at least one request, and
929 * up to a big batch of them for a small period time.
930 * See ioc_batching, ioc_set_batching
931 */
932 ioc = current_io_context(GFP_NOIO, q->node);
933 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100934
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200935 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200936 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200937
938 rq = get_request(q, rw_flags, bio, GFP_NOIO);
939 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 return rq;
942}
943
Jens Axboe165125e2007-07-24 09:28:11 +0200944struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 struct request *rq;
947
948 BUG_ON(rw != READ && rw != WRITE);
949
Nick Piggind6344532005-06-28 20:45:14 -0700950 spin_lock_irq(q->queue_lock);
951 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200952 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700953 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200954 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700955 if (!rq)
956 spin_unlock_irq(q->queue_lock);
957 }
958 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 return rq;
961}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962EXPORT_SYMBOL(blk_get_request);
963
964/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300965 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700966 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300967 * @bio: The bio describing the memory mappings that will be submitted for IO.
968 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700969 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200970 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300971 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
972 * type commands. Where the struct request needs to be farther initialized by
973 * the caller. It is passed a &struct bio, which describes the memory info of
974 * the I/O transfer.
975 *
976 * The caller of blk_make_request must make sure that bi_io_vec
977 * are set to describe the memory buffers. That bio_data_dir() will return
978 * the needed direction of the request. (And all bio's in the passed bio-chain
979 * are properly set accordingly)
980 *
981 * If called under none-sleepable conditions, mapped bio buffers must not
982 * need bouncing, by calling the appropriate masked or flagged allocator,
983 * suitable for the target device. Otherwise the call to blk_queue_bounce will
984 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200985 *
986 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
987 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
988 * anything but the first bio in the chain. Otherwise you risk waiting for IO
989 * completion of a bio that hasn't been submitted yet, thus resulting in a
990 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
991 * of bio_alloc(), as that avoids the mempool deadlock.
992 * If possible a big IO should be split into smaller parts when allocation
993 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200994 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300995struct request *blk_make_request(struct request_queue *q, struct bio *bio,
996 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200997{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300998 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
999
1000 if (unlikely(!rq))
1001 return ERR_PTR(-ENOMEM);
1002
1003 for_each_bio(bio) {
1004 struct bio *bounce_bio = bio;
1005 int ret;
1006
1007 blk_queue_bounce(q, &bounce_bio);
1008 ret = blk_rq_append_bio(q, rq, bounce_bio);
1009 if (unlikely(ret)) {
1010 blk_put_request(rq);
1011 return ERR_PTR(ret);
1012 }
1013 }
1014
1015 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +02001016}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +03001017EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +02001018
1019/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 * blk_requeue_request - put a request back on queue
1021 * @q: request queue where request should be inserted
1022 * @rq: request to be inserted
1023 *
1024 * Description:
1025 * Drivers often keep queueing requests until the hardware cannot accept
1026 * more, when that condition happens we need to put the request back
1027 * on the queue. Must be called with queue lock held.
1028 */
Jens Axboe165125e2007-07-24 09:28:11 +02001029void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001031 blk_delete_timer(rq);
1032 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001033 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (blk_rq_tagged(rq))
1036 blk_queue_end_tag(q, rq);
1037
James Bottomleyba396a62009-05-27 14:17:08 +02001038 BUG_ON(blk_queued_rq(rq));
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 elv_requeue_request(q, rq);
1041}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042EXPORT_SYMBOL(blk_requeue_request);
1043
1044/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001045 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * @q: request queue where request should be inserted
1047 * @rq: request to be inserted
1048 * @at_head: insert request at head or tail of queue
1049 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 *
1051 * Description:
1052 * Many block devices need to execute commands asynchronously, so they don't
1053 * block the whole kernel from preemption during request execution. This is
1054 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001055 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1056 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 *
1058 * We have the option of inserting the head or the tail of the queue.
1059 * Typically we use the tail for new ioctls and so forth. We use the head
1060 * of the queue for things like a QUEUE_FULL message from a device, or a
1061 * host that is unable to accept a particular command.
1062 */
Jens Axboe165125e2007-07-24 09:28:11 +02001063void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001064 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Tejun Heo 867d1192005-04-24 02:06:05 -05001066 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 unsigned long flags;
1068
1069 /*
1070 * tell I/O scheduler that this isn't a regular read/write (ie it
1071 * must not attempt merges on this) and that it acts as a soft
1072 * barrier
1073 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001074 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 rq->special = data;
1077
1078 spin_lock_irqsave(q->queue_lock, flags);
1079
1080 /*
1081 * If command is tagged, release the tag
1082 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001083 if (blk_rq_tagged(rq))
1084 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001086 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001087 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001088 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 spin_unlock_irqrestore(q->queue_lock, flags);
1090}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091EXPORT_SYMBOL(blk_insert_request);
1092
Tejun Heo074a7ac2008-08-25 19:56:14 +09001093static void part_round_stats_single(int cpu, struct hd_struct *part,
1094 unsigned long now)
1095{
1096 if (now == part->stamp)
1097 return;
1098
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001099 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001100 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001101 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001102 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1103 }
1104 part->stamp = now;
1105}
1106
1107/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001108 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1109 * @cpu: cpu number for stats access
1110 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 *
1112 * The average IO queue length and utilisation statistics are maintained
1113 * by observing the current state of the queue length and the amount of
1114 * time it has been in this state for.
1115 *
1116 * Normally, that accounting is done on IO completion, but that can result
1117 * in more than a second's worth of IO being accounted for within any one
1118 * second, leading to >100% utilisation. To deal with that, we call this
1119 * function to do a round-off before returning the results when reading
1120 * /proc/diskstats. This accounts immediately for all queue usage up to
1121 * the current jiffies and restarts the counters again.
1122 */
Tejun Heoc9959052008-08-25 19:47:21 +09001123void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001124{
1125 unsigned long now = jiffies;
1126
Tejun Heo074a7ac2008-08-25 19:56:14 +09001127 if (part->partno)
1128 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1129 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001130}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001131EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133/*
1134 * queue lock must be held
1135 */
Jens Axboe165125e2007-07-24 09:28:11 +02001136void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (unlikely(!q))
1139 return;
1140 if (unlikely(--req->ref_count))
1141 return;
1142
Tejun Heo8922e162005-10-20 16:23:44 +02001143 elv_completed_request(q, req);
1144
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001145 /* this is a bio leak */
1146 WARN_ON(req->bio != NULL);
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /*
1149 * Request may not have originated from ll_rw_blk. if not,
1150 * it didn't come out of our reserved rq pools
1151 */
Jens Axboe49171e52006-08-10 08:59:11 +02001152 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001153 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001154 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001157 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001160 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001163EXPORT_SYMBOL_GPL(__blk_put_request);
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165void blk_put_request(struct request *req)
1166{
Tejun Heo8922e162005-10-20 16:23:44 +02001167 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001168 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001170 spin_lock_irqsave(q->queue_lock, flags);
1171 __blk_put_request(q, req);
1172 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174EXPORT_SYMBOL(blk_put_request);
1175
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001176/**
1177 * blk_add_request_payload - add a payload to a request
1178 * @rq: request to update
1179 * @page: page backing the payload
1180 * @len: length of the payload.
1181 *
1182 * This allows to later add a payload to an already submitted request by
1183 * a block driver. The driver needs to take care of freeing the payload
1184 * itself.
1185 *
1186 * Note that this is a quite horrible hack and nothing but handling of
1187 * discard requests should ever use it.
1188 */
1189void blk_add_request_payload(struct request *rq, struct page *page,
1190 unsigned int len)
1191{
1192 struct bio *bio = rq->bio;
1193
1194 bio->bi_io_vec->bv_page = page;
1195 bio->bi_io_vec->bv_offset = 0;
1196 bio->bi_io_vec->bv_len = len;
1197
1198 bio->bi_size = len;
1199 bio->bi_vcnt = 1;
1200 bio->bi_phys_segments = 1;
1201
1202 rq->__data_len = rq->resid_len = len;
1203 rq->nr_phys_segments = 1;
1204 rq->buffer = bio_data(bio);
1205}
1206EXPORT_SYMBOL_GPL(blk_add_request_payload);
1207
Jens Axboe86db1e22008-01-29 14:53:40 +01001208void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001209{
Jens Axboec7c22e42008-09-13 20:26:01 +02001210 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001211 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001212
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001213 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1214 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001215 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001216
Tejun Heo52d9e672006-01-06 09:49:58 +01001217 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001218 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001219 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001220 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001221}
1222
Jens Axboe644b2d92009-04-06 14:48:06 +02001223/*
1224 * Only disabling plugging for non-rotational devices if it does tagging
1225 * as well, otherwise we do need the proper merging
1226 */
1227static inline bool queue_should_plug(struct request_queue *q)
1228{
Jens Axboe79da06442010-02-23 08:40:43 +01001229 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001230}
1231
Jens Axboe165125e2007-07-24 09:28:11 +02001232static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Nick Piggin450991b2005-06-28 20:45:13 -07001234 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001235 int el_ret;
1236 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001237 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001238 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1239 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1240 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001241 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001242 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 /*
1245 * low level driver can indicate that it wants pages above a
1246 * certain limit bounced to low memory (ie for highmem, or even
1247 * ISA dma in theory)
1248 */
1249 blk_queue_bounce(q, &bio);
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 spin_lock_irq(q->queue_lock);
1252
Tejun Heo4fed9472010-09-03 11:56:17 +02001253 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heoae1b1532011-01-25 12:43:54 +01001254 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001255 goto get_rq;
1256 }
1257
1258 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 goto get_rq;
1260
1261 el_ret = elv_merge(q, &req, bio);
1262 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001263 case ELEVATOR_BACK_MERGE:
1264 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jens Axboe6728cb02008-01-31 13:03:55 +01001266 if (!ll_back_merge_fn(q, req, bio))
1267 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001269 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001270
Tejun Heo80a761f2009-07-03 17:48:17 +09001271 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1272 blk_rq_set_mixed_merge(req);
1273
Jens Axboe6728cb02008-01-31 13:03:55 +01001274 req->biotail->bi_next = bio;
1275 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001276 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001277 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001278 if (!blk_rq_cpu_valid(req))
1279 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001280 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001281 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001282 if (!attempt_back_merge(q, req))
1283 elv_merged_request(q, req, el_ret);
1284 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Jens Axboe6728cb02008-01-31 13:03:55 +01001286 case ELEVATOR_FRONT_MERGE:
1287 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Jens Axboe6728cb02008-01-31 13:03:55 +01001289 if (!ll_front_merge_fn(q, req, bio))
1290 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001292 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001293
Tejun Heo80a761f2009-07-03 17:48:17 +09001294 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1295 blk_rq_set_mixed_merge(req);
1296 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1297 req->cmd_flags |= ff;
1298 }
1299
Jens Axboe6728cb02008-01-31 13:03:55 +01001300 bio->bi_next = req->bio;
1301 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Jens Axboe6728cb02008-01-31 13:03:55 +01001303 /*
1304 * may not be valid. if the low level driver said
1305 * it didn't need a bounce buffer then it better
1306 * not touch req->buffer either...
1307 */
1308 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001309 req->__sector = bio->bi_sector;
1310 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001311 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001312 if (!blk_rq_cpu_valid(req))
1313 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001314 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001315 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001316 if (!attempt_front_merge(q, req))
1317 elv_merged_request(q, req, el_ret);
1318 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Jens Axboe6728cb02008-01-31 13:03:55 +01001320 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1321 default:
1322 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001326 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001327 * This sync check and mask will be re-done in init_request_from_bio(),
1328 * but we need to set it earlier to expose the sync flag to the
1329 * rq allocator and io schedulers.
1330 */
1331 rw_flags = bio_data_dir(bio);
1332 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001333 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001334
1335 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001336 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001337 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001338 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001339 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001340
Nick Piggin450991b2005-06-28 20:45:13 -07001341 /*
1342 * After dropping the lock and possibly sleeping here, our request
1343 * may now be mergeable after it had proven unmergeable (above).
1344 * We don't worry about that case for efficiency. It won't happen
1345 * often, and the elevators are able to handle it.
1346 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001347 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Nick Piggin450991b2005-06-28 20:45:13 -07001349 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001350 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1351 bio_flagged(bio, BIO_CPU_AFFINE))
1352 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001353 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001354 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001355
1356 /* insert the request into the elevator */
1357 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001358 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001360 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 spin_unlock_irq(q->queue_lock);
1363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366/*
1367 * If bio->bi_dev is a partition, remap the location
1368 */
1369static inline void blk_partition_remap(struct bio *bio)
1370{
1371 struct block_device *bdev = bio->bi_bdev;
1372
Jens Axboebf2de6f2007-09-27 13:01:25 +02001373 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 bio->bi_sector += p->start_sect;
1377 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001378
Mike Snitzerd07335e2010-11-16 12:52:38 +01001379 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1380 bdev->bd_dev,
1381 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385static void handle_bad_sector(struct bio *bio)
1386{
1387 char b[BDEVNAME_SIZE];
1388
1389 printk(KERN_INFO "attempt to access beyond end of device\n");
1390 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1391 bdevname(bio->bi_bdev, b),
1392 bio->bi_rw,
1393 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001394 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 set_bit(BIO_EOF, &bio->bi_flags);
1397}
1398
Akinobu Mitac17bb492006-12-08 02:39:46 -08001399#ifdef CONFIG_FAIL_MAKE_REQUEST
1400
1401static DECLARE_FAULT_ATTR(fail_make_request);
1402
1403static int __init setup_fail_make_request(char *str)
1404{
1405 return setup_fault_attr(&fail_make_request, str);
1406}
1407__setup("fail_make_request=", setup_fail_make_request);
1408
1409static int should_fail_request(struct bio *bio)
1410{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001411 struct hd_struct *part = bio->bi_bdev->bd_part;
1412
1413 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001414 return should_fail(&fail_make_request, bio->bi_size);
1415
1416 return 0;
1417}
1418
1419static int __init fail_make_request_debugfs(void)
1420{
1421 return init_fault_attr_dentries(&fail_make_request,
1422 "fail_make_request");
1423}
1424
1425late_initcall(fail_make_request_debugfs);
1426
1427#else /* CONFIG_FAIL_MAKE_REQUEST */
1428
1429static inline int should_fail_request(struct bio *bio)
1430{
1431 return 0;
1432}
1433
1434#endif /* CONFIG_FAIL_MAKE_REQUEST */
1435
Jens Axboec07e2b42007-07-18 13:27:58 +02001436/*
1437 * Check whether this bio extends beyond the end of the device.
1438 */
1439static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1440{
1441 sector_t maxsector;
1442
1443 if (!nr_sectors)
1444 return 0;
1445
1446 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001447 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001448 if (maxsector) {
1449 sector_t sector = bio->bi_sector;
1450
1451 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1452 /*
1453 * This may well happen - the kernel calls bread()
1454 * without checking the size of the device, e.g., when
1455 * mounting a device.
1456 */
1457 handle_bad_sector(bio);
1458 return 1;
1459 }
1460 }
1461
1462 return 0;
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001466 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 * @bio: The bio describing the location in memory and on the device.
1468 *
1469 * generic_make_request() is used to make I/O requests of block
1470 * devices. It is passed a &struct bio, which describes the I/O that needs
1471 * to be done.
1472 *
1473 * generic_make_request() does not return any status. The
1474 * success/failure status of the request, along with notification of
1475 * completion, is delivered asynchronously through the bio->bi_end_io
1476 * function described (one day) else where.
1477 *
1478 * The caller of generic_make_request must make sure that bi_io_vec
1479 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1480 * set to describe the device address, and the
1481 * bi_end_io and optionally bi_private are set to describe how
1482 * completion notification should be signaled.
1483 *
1484 * generic_make_request and the drivers it calls may use bi_next if this
1485 * bio happens to be merged with someone else, and may change bi_dev and
1486 * bi_sector for remaps as it sees fit. So the values of these fields
1487 * should NOT be depended on after the call to generic_make_request.
1488 */
Neil Brownd89d8792007-05-01 09:53:42 +02001489static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Jens Axboe165125e2007-07-24 09:28:11 +02001491 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001492 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001494 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001495 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Jens Axboec07e2b42007-07-18 13:27:58 +02001499 if (bio_check_eod(bio, nr_sectors))
1500 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 /*
1503 * Resolve the mapping until finished. (drivers are
1504 * still free to implement/resolve their own stacking
1505 * by explicitly returning 0)
1506 *
1507 * NOTE: we don't repeat the blk_size check for each new device.
1508 * Stacking drivers are expected to know what they are doing.
1509 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001510 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001511 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 do {
1513 char b[BDEVNAME_SIZE];
1514
1515 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001516 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 printk(KERN_ERR
1518 "generic_make_request: Trying to access "
1519 "nonexistent block-device %s (%Lu)\n",
1520 bdevname(bio->bi_bdev, b),
1521 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001522 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001525 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001526 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001527 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001528 bdevname(bio->bi_bdev, b),
1529 bio_sectors(bio),
1530 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 goto end_io;
1532 }
1533
Nick Pigginfde6ad22005-06-23 00:08:53 -07001534 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 goto end_io;
1536
Akinobu Mitac17bb492006-12-08 02:39:46 -08001537 if (should_fail_request(bio))
1538 goto end_io;
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 /*
1541 * If this device has partitions, remap block n
1542 * of partition p to block n+start(p) of the disk.
1543 */
1544 blk_partition_remap(bio);
1545
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001546 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1547 goto end_io;
1548
NeilBrown5ddfe962006-10-30 22:07:21 -08001549 if (old_sector != -1)
Mike Snitzerd07335e2010-11-16 12:52:38 +01001550 trace_block_bio_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001551
NeilBrown5ddfe962006-10-30 22:07:21 -08001552 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001553 old_dev = bio->bi_bdev->bd_dev;
1554
Jens Axboec07e2b42007-07-18 13:27:58 +02001555 if (bio_check_eod(bio, nr_sectors))
1556 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001557
Tejun Heo1e879012010-09-03 11:56:17 +02001558 /*
1559 * Filter flush bio's early so that make_request based
1560 * drivers without flush support don't have to worry
1561 * about them.
1562 */
1563 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1564 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1565 if (!nr_sectors) {
1566 err = 0;
1567 goto end_io;
1568 }
1569 }
1570
Adrian Hunter8d57a982010-08-11 14:17:49 -07001571 if ((bio->bi_rw & REQ_DISCARD) &&
1572 (!blk_queue_discard(q) ||
1573 ((bio->bi_rw & REQ_SECURE) &&
1574 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001575 err = -EOPNOTSUPP;
1576 goto end_io;
1577 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001578
Vivek Goyale43473b2010-09-15 17:06:35 -04001579 blk_throtl_bio(q, &bio);
1580
1581 /*
1582 * If bio = NULL, bio has been throttled and will be submitted
1583 * later.
1584 */
1585 if (!bio)
1586 break;
1587
Minchan Kim01edede2009-09-08 21:56:38 +02001588 trace_block_bio_queue(q, bio);
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 ret = q->make_request_fn(q, bio);
1591 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001592
1593 return;
1594
1595end_io:
1596 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
Neil Brownd89d8792007-05-01 09:53:42 +02001599/*
1600 * We only want one ->make_request_fn to be active at a time,
1601 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001602 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001603 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001604 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001605 * generic_make_request is currently active in this task or not.
1606 * If it is NULL, then no make_request is active. If it is non-NULL,
1607 * then a make_request is active, and new requests should be added
1608 * at the tail
1609 */
1610void generic_make_request(struct bio *bio)
1611{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001612 struct bio_list bio_list_on_stack;
1613
1614 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001615 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001616 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001617 return;
1618 }
1619 /* following loop may be a bit non-obvious, and so deserves some
1620 * explanation.
1621 * Before entering the loop, bio->bi_next is NULL (as all callers
1622 * ensure that) so we have a list with a single bio.
1623 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001624 * we assign bio_list to a pointer to the bio_list_on_stack,
1625 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001626 * added. __generic_make_request may indeed add some more bios
1627 * through a recursive call to generic_make_request. If it
1628 * did, we find a non-NULL value in bio_list and re-enter the loop
1629 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001630 * of the top of the list (no pretending) and so remove it from
1631 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001632 *
1633 * The loop was structured like this to make only one call to
1634 * __generic_make_request (which is important as it is large and
1635 * inlined) and to keep the structure simple.
1636 */
1637 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001638 bio_list_init(&bio_list_on_stack);
1639 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001640 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001641 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001642 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001643 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001644 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646EXPORT_SYMBOL(generic_make_request);
1647
1648/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001649 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1651 * @bio: The &struct bio which describes the I/O
1652 *
1653 * submit_bio() is very similar in purpose to generic_make_request(), and
1654 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001655 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 *
1657 */
1658void submit_bio(int rw, struct bio *bio)
1659{
1660 int count = bio_sectors(bio);
1661
Jens Axboe22e2c502005-06-27 10:55:12 +02001662 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Jens Axboebf2de6f2007-09-27 13:01:25 +02001664 /*
1665 * If it's a regular read/write or a barrier with data attached,
1666 * go through the normal accounting stuff before submission.
1667 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001668 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001669 if (rw & WRITE) {
1670 count_vm_events(PGPGOUT, count);
1671 } else {
1672 task_io_account_read(bio->bi_size);
1673 count_vm_events(PGPGIN, count);
1674 }
1675
1676 if (unlikely(block_dump)) {
1677 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001678 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001679 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001680 (rw & WRITE) ? "WRITE" : "READ",
1681 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001682 bdevname(bio->bi_bdev, b),
1683 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686
1687 generic_make_request(bio);
1688}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689EXPORT_SYMBOL(submit_bio);
1690
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001691/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001692 * blk_rq_check_limits - Helper function to check a request for the queue limit
1693 * @q: the queue
1694 * @rq: the request being checked
1695 *
1696 * Description:
1697 * @rq may have been made based on weaker limitations of upper-level queues
1698 * in request stacking drivers, and it may violate the limitation of @q.
1699 * Since the block layer and the underlying device driver trust @rq
1700 * after it is inserted to @q, it should be checked against @q before
1701 * the insertion using this generic function.
1702 *
1703 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001704 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001705 * Request stacking drivers like request-based dm may change the queue
1706 * limits while requests are in the queue (e.g. dm's table swapping).
1707 * Such request stacking drivers should check those requests agaist
1708 * the new queue limits again when they dispatch those requests,
1709 * although such checkings are also done against the old queue limits
1710 * when submitting requests.
1711 */
1712int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1713{
ike Snitzer33839772010-08-08 12:11:33 -04001714 if (rq->cmd_flags & REQ_DISCARD)
1715 return 0;
1716
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001717 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1718 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001719 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1720 return -EIO;
1721 }
1722
1723 /*
1724 * queue's settings related to segment counting like q->bounce_pfn
1725 * may differ from that of other stacking queues.
1726 * Recalculate it to check the request correctly on this queue's
1727 * limitation.
1728 */
1729 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001730 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001731 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1732 return -EIO;
1733 }
1734
1735 return 0;
1736}
1737EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1738
1739/**
1740 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1741 * @q: the queue to submit the request
1742 * @rq: the request being queued
1743 */
1744int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1745{
1746 unsigned long flags;
1747
1748 if (blk_rq_check_limits(q, rq))
1749 return -EIO;
1750
1751#ifdef CONFIG_FAIL_MAKE_REQUEST
1752 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1753 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1754 return -EIO;
1755#endif
1756
1757 spin_lock_irqsave(q->queue_lock, flags);
1758
1759 /*
1760 * Submitting request must be dequeued before calling this function
1761 * because it will be linked to another request_queue
1762 */
1763 BUG_ON(blk_queued_rq(rq));
1764
1765 drive_stat_acct(rq, 1);
1766 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1767
1768 spin_unlock_irqrestore(q->queue_lock, flags);
1769
1770 return 0;
1771}
1772EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1773
Tejun Heo80a761f2009-07-03 17:48:17 +09001774/**
1775 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1776 * @rq: request to examine
1777 *
1778 * Description:
1779 * A request could be merge of IOs which require different failure
1780 * handling. This function determines the number of bytes which
1781 * can be failed from the beginning of the request without
1782 * crossing into area which need to be retried further.
1783 *
1784 * Return:
1785 * The number of bytes to fail.
1786 *
1787 * Context:
1788 * queue_lock must be held.
1789 */
1790unsigned int blk_rq_err_bytes(const struct request *rq)
1791{
1792 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1793 unsigned int bytes = 0;
1794 struct bio *bio;
1795
1796 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1797 return blk_rq_bytes(rq);
1798
1799 /*
1800 * Currently the only 'mixing' which can happen is between
1801 * different fastfail types. We can safely fail portions
1802 * which have all the failfast bits that the first one has -
1803 * the ones which are at least as eager to fail as the first
1804 * one.
1805 */
1806 for (bio = rq->bio; bio; bio = bio->bi_next) {
1807 if ((bio->bi_rw & ff) != ff)
1808 break;
1809 bytes += bio->bi_size;
1810 }
1811
1812 /* this could lead to infinite loop */
1813 BUG_ON(blk_rq_bytes(rq) && !bytes);
1814 return bytes;
1815}
1816EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1817
Jens Axboebc58ba92009-01-23 10:54:44 +01001818static void blk_account_io_completion(struct request *req, unsigned int bytes)
1819{
Jens Axboec2553b52009-04-24 08:10:11 +02001820 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001821 const int rw = rq_data_dir(req);
1822 struct hd_struct *part;
1823 int cpu;
1824
1825 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001826 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001827 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1828 part_stat_unlock();
1829 }
1830}
1831
1832static void blk_account_io_done(struct request *req)
1833{
Jens Axboebc58ba92009-01-23 10:54:44 +01001834 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001835 * Account IO completion. flush_rq isn't accounted as a
1836 * normal IO on queueing nor completion. Accounting the
1837 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001838 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001839 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001840 unsigned long duration = jiffies - req->start_time;
1841 const int rw = rq_data_dir(req);
1842 struct hd_struct *part;
1843 int cpu;
1844
1845 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001846 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001847
1848 part_stat_inc(cpu, part, ios[rw]);
1849 part_stat_add(cpu, part, ticks[rw], duration);
1850 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001851 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001852
Jens Axboe6c23a962011-01-07 08:43:37 +01001853 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001854 part_stat_unlock();
1855 }
1856}
1857
Tejun Heo53a08802008-12-03 12:41:26 +01001858/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001859 * blk_peek_request - peek at the top of a request queue
1860 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001861 *
1862 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001863 * Return the request at the top of @q. The returned request
1864 * should be started using blk_start_request() before LLD starts
1865 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001866 *
1867 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001868 * Pointer to the request at the top of @q if available. Null
1869 * otherwise.
1870 *
1871 * Context:
1872 * queue_lock must be held.
1873 */
1874struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001875{
1876 struct request *rq;
1877 int ret;
1878
1879 while ((rq = __elv_next_request(q)) != NULL) {
1880 if (!(rq->cmd_flags & REQ_STARTED)) {
1881 /*
1882 * This is the first time the device driver
1883 * sees this request (possibly after
1884 * requeueing). Notify IO scheduler.
1885 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001886 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001887 elv_activate_rq(q, rq);
1888
1889 /*
1890 * just mark as started even if we don't start
1891 * it, a request that has been delayed should
1892 * not be passed by new incoming requests
1893 */
1894 rq->cmd_flags |= REQ_STARTED;
1895 trace_block_rq_issue(q, rq);
1896 }
1897
1898 if (!q->boundary_rq || q->boundary_rq == rq) {
1899 q->end_sector = rq_end_sector(rq);
1900 q->boundary_rq = NULL;
1901 }
1902
1903 if (rq->cmd_flags & REQ_DONTPREP)
1904 break;
1905
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001906 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001907 /*
1908 * make sure space for the drain appears we
1909 * know we can do this because max_hw_segments
1910 * has been adjusted to be one fewer than the
1911 * device can handle
1912 */
1913 rq->nr_phys_segments++;
1914 }
1915
1916 if (!q->prep_rq_fn)
1917 break;
1918
1919 ret = q->prep_rq_fn(q, rq);
1920 if (ret == BLKPREP_OK) {
1921 break;
1922 } else if (ret == BLKPREP_DEFER) {
1923 /*
1924 * the request may have been (partially) prepped.
1925 * we need to keep this request in the front to
1926 * avoid resource deadlock. REQ_STARTED will
1927 * prevent other fs requests from passing this one.
1928 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001929 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001930 !(rq->cmd_flags & REQ_DONTPREP)) {
1931 /*
1932 * remove the space for the drain we added
1933 * so that we don't add it again
1934 */
1935 --rq->nr_phys_segments;
1936 }
1937
1938 rq = NULL;
1939 break;
1940 } else if (ret == BLKPREP_KILL) {
1941 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001942 /*
1943 * Mark this request as started so we don't trigger
1944 * any debug logic in the end I/O path.
1945 */
1946 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001947 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001948 } else {
1949 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1950 break;
1951 }
1952 }
1953
1954 return rq;
1955}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001956EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001957
Tejun Heo9934c8c2009-05-08 11:54:16 +09001958void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001959{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001960 struct request_queue *q = rq->q;
1961
Tejun Heo158dbda2009-04-23 11:05:18 +09001962 BUG_ON(list_empty(&rq->queuelist));
1963 BUG_ON(ELV_ON_HASH(rq));
1964
1965 list_del_init(&rq->queuelist);
1966
1967 /*
1968 * the time frame between a request being removed from the lists
1969 * and to it is freed is accounted as io that is in progress at
1970 * the driver side.
1971 */
Divyesh Shah91952912010-04-01 15:01:41 -07001972 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001973 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001974 set_io_start_time_ns(rq);
1975 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001976}
1977
Tejun Heo5efccd12009-04-23 11:05:18 +09001978/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001979 * blk_start_request - start request processing on the driver
1980 * @req: request to dequeue
1981 *
1982 * Description:
1983 * Dequeue @req and start timeout timer on it. This hands off the
1984 * request to the driver.
1985 *
1986 * Block internal functions which don't want to start timer should
1987 * call blk_dequeue_request().
1988 *
1989 * Context:
1990 * queue_lock must be held.
1991 */
1992void blk_start_request(struct request *req)
1993{
1994 blk_dequeue_request(req);
1995
1996 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001997 * We are now handing the request to the hardware, initialize
1998 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001999 */
Tejun Heo5f49f632009-05-19 18:33:05 +09002000 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02002001 if (unlikely(blk_bidi_rq(req)))
2002 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
2003
Tejun Heo9934c8c2009-05-08 11:54:16 +09002004 blk_add_timer(req);
2005}
2006EXPORT_SYMBOL(blk_start_request);
2007
2008/**
2009 * blk_fetch_request - fetch a request from a request queue
2010 * @q: request queue to fetch a request from
2011 *
2012 * Description:
2013 * Return the request at the top of @q. The request is started on
2014 * return and LLD can start processing it immediately.
2015 *
2016 * Return:
2017 * Pointer to the request at the top of @q if available. Null
2018 * otherwise.
2019 *
2020 * Context:
2021 * queue_lock must be held.
2022 */
2023struct request *blk_fetch_request(struct request_queue *q)
2024{
2025 struct request *rq;
2026
2027 rq = blk_peek_request(q);
2028 if (rq)
2029 blk_start_request(rq);
2030 return rq;
2031}
2032EXPORT_SYMBOL(blk_fetch_request);
2033
2034/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002035 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002036 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002037 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002038 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002039 *
2040 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002041 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2042 * the request structure even if @req doesn't have leftover.
2043 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002044 *
2045 * This special helper function is only for request stacking drivers
2046 * (e.g. request-based dm) so that they can handle partial completion.
2047 * Actual device drivers should use blk_end_request instead.
2048 *
2049 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2050 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002051 *
2052 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002053 * %false - this request doesn't have any more data
2054 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002055 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002056bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002058 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct bio *bio;
2060
Tejun Heo2e60e022009-04-23 11:05:18 +09002061 if (!req->bio)
2062 return false;
2063
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002064 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002067 * For fs requests, rq is just carrier of independent bio's
2068 * and each partial completion should be handled separately.
2069 * Reset per-request error on each partial completion.
2070 *
2071 * TODO: tj: This is too subtle. It would be better to let
2072 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002074 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 req->errors = 0;
2076
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002077 if (error && req->cmd_type == REQ_TYPE_FS &&
2078 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002079 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002081 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083
Jens Axboebc58ba92009-01-23 10:54:44 +01002084 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 total_bytes = bio_nbytes = 0;
2087 while ((bio = req->bio) != NULL) {
2088 int nbytes;
2089
2090 if (nr_bytes >= bio->bi_size) {
2091 req->bio = bio->bi_next;
2092 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002093 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 next_idx = 0;
2095 bio_nbytes = 0;
2096 } else {
2097 int idx = bio->bi_idx + next_idx;
2098
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002099 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002101 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002102 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 break;
2104 }
2105
2106 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2107 BIO_BUG_ON(nbytes > bio->bi_size);
2108
2109 /*
2110 * not a complete bvec done
2111 */
2112 if (unlikely(nbytes > nr_bytes)) {
2113 bio_nbytes += nr_bytes;
2114 total_bytes += nr_bytes;
2115 break;
2116 }
2117
2118 /*
2119 * advance to the next vector
2120 */
2121 next_idx++;
2122 bio_nbytes += nbytes;
2123 }
2124
2125 total_bytes += nbytes;
2126 nr_bytes -= nbytes;
2127
Jens Axboe6728cb02008-01-31 13:03:55 +01002128 bio = req->bio;
2129 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 /*
2131 * end more in this run, or just return 'not-done'
2132 */
2133 if (unlikely(nr_bytes <= 0))
2134 break;
2135 }
2136 }
2137
2138 /*
2139 * completely done
2140 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002141 if (!req->bio) {
2142 /*
2143 * Reset counters so that the request stacking driver
2144 * can find how many bytes remain in the request
2145 * later.
2146 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002147 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002148 return false;
2149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /*
2152 * if the request wasn't completed, update state
2153 */
2154 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002155 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 bio->bi_idx += next_idx;
2157 bio_iovec(bio)->bv_offset += nr_bytes;
2158 bio_iovec(bio)->bv_len -= nr_bytes;
2159 }
2160
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002161 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002162 req->buffer = bio_data(req->bio);
2163
2164 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002165 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002166 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002167
Tejun Heo80a761f2009-07-03 17:48:17 +09002168 /* mixed attributes always follow the first bio */
2169 if (req->cmd_flags & REQ_MIXED_MERGE) {
2170 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2171 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2172 }
2173
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002174 /*
2175 * If total number of sectors is less than the first segment
2176 * size, something has gone terribly wrong.
2177 */
2178 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2179 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002180 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002181 }
2182
2183 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002185
Tejun Heo2e60e022009-04-23 11:05:18 +09002186 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
Tejun Heo2e60e022009-04-23 11:05:18 +09002188EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Tejun Heo2e60e022009-04-23 11:05:18 +09002190static bool blk_update_bidi_request(struct request *rq, int error,
2191 unsigned int nr_bytes,
2192 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002193{
Tejun Heo2e60e022009-04-23 11:05:18 +09002194 if (blk_update_request(rq, error, nr_bytes))
2195 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002196
Tejun Heo2e60e022009-04-23 11:05:18 +09002197 /* Bidi request must be completed as a whole */
2198 if (unlikely(blk_bidi_rq(rq)) &&
2199 blk_update_request(rq->next_rq, error, bidi_bytes))
2200 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002201
Jens Axboee2e1a142010-06-09 10:42:09 +02002202 if (blk_queue_add_random(rq->q))
2203 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002204
2205 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
James Bottomley28018c22010-07-01 19:49:17 +09002208/**
2209 * blk_unprep_request - unprepare a request
2210 * @req: the request
2211 *
2212 * This function makes a request ready for complete resubmission (or
2213 * completion). It happens only after all error handling is complete,
2214 * so represents the appropriate moment to deallocate any resources
2215 * that were allocated to the request in the prep_rq_fn. The queue
2216 * lock is held when calling this.
2217 */
2218void blk_unprep_request(struct request *req)
2219{
2220 struct request_queue *q = req->q;
2221
2222 req->cmd_flags &= ~REQ_DONTPREP;
2223 if (q->unprep_rq_fn)
2224 q->unprep_rq_fn(q, req);
2225}
2226EXPORT_SYMBOL_GPL(blk_unprep_request);
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228/*
2229 * queue lock must be held
2230 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002231static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002233 if (blk_rq_tagged(req))
2234 blk_queue_end_tag(req->q, req);
2235
James Bottomleyba396a62009-05-27 14:17:08 +02002236 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002238 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002239 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Mike Andersone78042e2008-10-30 02:16:20 -07002241 blk_delete_timer(req);
2242
James Bottomley28018c22010-07-01 19:49:17 +09002243 if (req->cmd_flags & REQ_DONTPREP)
2244 blk_unprep_request(req);
2245
2246
Jens Axboebc58ba92009-01-23 10:54:44 +01002247 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002250 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002251 else {
2252 if (blk_bidi_rq(req))
2253 __blk_put_request(req->next_rq->q, req->next_rq);
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
2257}
2258
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002259/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002260 * blk_end_bidi_request - Complete a bidi request
2261 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002262 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002263 * @nr_bytes: number of bytes to complete @rq
2264 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002265 *
2266 * Description:
2267 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002268 * Drivers that supports bidi can safely call this member for any
2269 * type of request, bidi or uni. In the later case @bidi_bytes is
2270 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002271 *
2272 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002273 * %false - we are done with this request
2274 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002275 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002276static bool blk_end_bidi_request(struct request *rq, int error,
2277 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002278{
2279 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002280 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002281
Tejun Heo2e60e022009-04-23 11:05:18 +09002282 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2283 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002284
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002285 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002286 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002287 spin_unlock_irqrestore(q->queue_lock, flags);
2288
Tejun Heo2e60e022009-04-23 11:05:18 +09002289 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002290}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002291
2292/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002293 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2294 * @rq: the request to complete
2295 * @error: %0 for success, < %0 for error
2296 * @nr_bytes: number of bytes to complete @rq
2297 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002298 *
2299 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002300 * Identical to blk_end_bidi_request() except that queue lock is
2301 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002302 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002303 * Return:
2304 * %false - we are done with this request
2305 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002306 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002307static bool __blk_end_bidi_request(struct request *rq, int error,
2308 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002309{
Tejun Heo2e60e022009-04-23 11:05:18 +09002310 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2311 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002312
Tejun Heo2e60e022009-04-23 11:05:18 +09002313 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002314
Tejun Heo2e60e022009-04-23 11:05:18 +09002315 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002316}
2317
2318/**
2319 * blk_end_request - Helper function for drivers to complete the request.
2320 * @rq: the request being processed
2321 * @error: %0 for success, < %0 for error
2322 * @nr_bytes: number of bytes to complete
2323 *
2324 * Description:
2325 * Ends I/O on a number of bytes attached to @rq.
2326 * If @rq has leftover, sets it up for the next range of segments.
2327 *
2328 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002329 * %false - we are done with this request
2330 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002331 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002332bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002333{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002334 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002335}
Jens Axboe56ad1742009-07-28 22:11:24 +02002336EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002337
2338/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002339 * blk_end_request_all - Helper function for drives to finish the request.
2340 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002341 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002342 *
2343 * Description:
2344 * Completely finish @rq.
2345 */
2346void blk_end_request_all(struct request *rq, int error)
2347{
2348 bool pending;
2349 unsigned int bidi_bytes = 0;
2350
2351 if (unlikely(blk_bidi_rq(rq)))
2352 bidi_bytes = blk_rq_bytes(rq->next_rq);
2353
2354 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2355 BUG_ON(pending);
2356}
Jens Axboe56ad1742009-07-28 22:11:24 +02002357EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002358
2359/**
2360 * blk_end_request_cur - Helper function to finish the current request chunk.
2361 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002362 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002363 *
2364 * Description:
2365 * Complete the current consecutively mapped chunk from @rq.
2366 *
2367 * Return:
2368 * %false - we are done with this request
2369 * %true - still buffers pending for this request
2370 */
2371bool blk_end_request_cur(struct request *rq, int error)
2372{
2373 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2374}
Jens Axboe56ad1742009-07-28 22:11:24 +02002375EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002376
2377/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002378 * blk_end_request_err - Finish a request till the next failure boundary.
2379 * @rq: the request to finish till the next failure boundary for
2380 * @error: must be negative errno
2381 *
2382 * Description:
2383 * Complete @rq till the next failure boundary.
2384 *
2385 * Return:
2386 * %false - we are done with this request
2387 * %true - still buffers pending for this request
2388 */
2389bool blk_end_request_err(struct request *rq, int error)
2390{
2391 WARN_ON(error >= 0);
2392 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2393}
2394EXPORT_SYMBOL_GPL(blk_end_request_err);
2395
2396/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002397 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002398 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002399 * @error: %0 for success, < %0 for error
2400 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002401 *
2402 * Description:
2403 * Must be called with queue lock held unlike blk_end_request().
2404 *
2405 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002406 * %false - we are done with this request
2407 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002408 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002409bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002410{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002411 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002412}
Jens Axboe56ad1742009-07-28 22:11:24 +02002413EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002414
2415/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002416 * __blk_end_request_all - Helper function for drives to finish the request.
2417 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002418 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002419 *
2420 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002421 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002422 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002423void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002424{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002425 bool pending;
2426 unsigned int bidi_bytes = 0;
2427
2428 if (unlikely(blk_bidi_rq(rq)))
2429 bidi_bytes = blk_rq_bytes(rq->next_rq);
2430
2431 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2432 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002433}
Jens Axboe56ad1742009-07-28 22:11:24 +02002434EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002435
2436/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002437 * __blk_end_request_cur - Helper function to finish the current request chunk.
2438 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002439 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002440 *
2441 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002442 * Complete the current consecutively mapped chunk from @rq. Must
2443 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002444 *
2445 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002446 * %false - we are done with this request
2447 * %true - still buffers pending for this request
2448 */
2449bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002450{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002451 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002452}
Jens Axboe56ad1742009-07-28 22:11:24 +02002453EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002454
Tejun Heo80a761f2009-07-03 17:48:17 +09002455/**
2456 * __blk_end_request_err - Finish a request till the next failure boundary.
2457 * @rq: the request to finish till the next failure boundary for
2458 * @error: must be negative errno
2459 *
2460 * Description:
2461 * Complete @rq till the next failure boundary. Must be called
2462 * with queue lock held.
2463 *
2464 * Return:
2465 * %false - we are done with this request
2466 * %true - still buffers pending for this request
2467 */
2468bool __blk_end_request_err(struct request *rq, int error)
2469{
2470 WARN_ON(error >= 0);
2471 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2472}
2473EXPORT_SYMBOL_GPL(__blk_end_request_err);
2474
Jens Axboe86db1e22008-01-29 14:53:40 +01002475void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2476 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002478 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002479 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
David Woodhousefb2dce82008-08-05 18:01:53 +01002481 if (bio_has_data(bio)) {
2482 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002483 rq->buffer = bio_data(bio);
2484 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002485 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
NeilBrown66846572007-08-16 13:31:28 +02002488 if (bio->bi_bdev)
2489 rq->rq_disk = bio->bi_bdev->bd_disk;
2490}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002492#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2493/**
2494 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2495 * @rq: the request to be flushed
2496 *
2497 * Description:
2498 * Flush all pages in @rq.
2499 */
2500void rq_flush_dcache_pages(struct request *rq)
2501{
2502 struct req_iterator iter;
2503 struct bio_vec *bvec;
2504
2505 rq_for_each_segment(bvec, rq, iter)
2506 flush_dcache_page(bvec->bv_page);
2507}
2508EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2509#endif
2510
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002511/**
2512 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2513 * @q : the queue of the device being checked
2514 *
2515 * Description:
2516 * Check if underlying low-level drivers of a device are busy.
2517 * If the drivers want to export their busy state, they must set own
2518 * exporting function using blk_queue_lld_busy() first.
2519 *
2520 * Basically, this function is used only by request stacking drivers
2521 * to stop dispatching requests to underlying devices when underlying
2522 * devices are busy. This behavior helps more I/O merging on the queue
2523 * of the request stacking driver and prevents I/O throughput regression
2524 * on burst I/O load.
2525 *
2526 * Return:
2527 * 0 - Not busy (The request stacking driver should dispatch request)
2528 * 1 - Busy (The request stacking driver should stop dispatching request)
2529 */
2530int blk_lld_busy(struct request_queue *q)
2531{
2532 if (q->lld_busy_fn)
2533 return q->lld_busy_fn(q);
2534
2535 return 0;
2536}
2537EXPORT_SYMBOL_GPL(blk_lld_busy);
2538
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002539/**
2540 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2541 * @rq: the clone request to be cleaned up
2542 *
2543 * Description:
2544 * Free all bios in @rq for a cloned request.
2545 */
2546void blk_rq_unprep_clone(struct request *rq)
2547{
2548 struct bio *bio;
2549
2550 while ((bio = rq->bio) != NULL) {
2551 rq->bio = bio->bi_next;
2552
2553 bio_put(bio);
2554 }
2555}
2556EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2557
2558/*
2559 * Copy attributes of the original request to the clone request.
2560 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2561 */
2562static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2563{
2564 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002565 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002566 dst->cmd_type = src->cmd_type;
2567 dst->__sector = blk_rq_pos(src);
2568 dst->__data_len = blk_rq_bytes(src);
2569 dst->nr_phys_segments = src->nr_phys_segments;
2570 dst->ioprio = src->ioprio;
2571 dst->extra_len = src->extra_len;
2572}
2573
2574/**
2575 * blk_rq_prep_clone - Helper function to setup clone request
2576 * @rq: the request to be setup
2577 * @rq_src: original request to be cloned
2578 * @bs: bio_set that bios for clone are allocated from
2579 * @gfp_mask: memory allocation mask for bio
2580 * @bio_ctr: setup function to be called for each clone bio.
2581 * Returns %0 for success, non %0 for failure.
2582 * @data: private data to be passed to @bio_ctr
2583 *
2584 * Description:
2585 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2586 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2587 * are not copied, and copying such parts is the caller's responsibility.
2588 * Also, pages which the original bios are pointing to are not copied
2589 * and the cloned bios just point same pages.
2590 * So cloned bios must be completed before original bios, which means
2591 * the caller must complete @rq before @rq_src.
2592 */
2593int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2594 struct bio_set *bs, gfp_t gfp_mask,
2595 int (*bio_ctr)(struct bio *, struct bio *, void *),
2596 void *data)
2597{
2598 struct bio *bio, *bio_src;
2599
2600 if (!bs)
2601 bs = fs_bio_set;
2602
2603 blk_rq_init(NULL, rq);
2604
2605 __rq_for_each_bio(bio_src, rq_src) {
2606 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2607 if (!bio)
2608 goto free_and_out;
2609
2610 __bio_clone(bio, bio_src);
2611
2612 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002613 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002614 goto free_and_out;
2615
2616 if (bio_ctr && bio_ctr(bio, bio_src, data))
2617 goto free_and_out;
2618
2619 if (rq->bio) {
2620 rq->biotail->bi_next = bio;
2621 rq->biotail = bio;
2622 } else
2623 rq->bio = rq->biotail = bio;
2624 }
2625
2626 __blk_rq_prep_clone(rq, rq_src);
2627
2628 return 0;
2629
2630free_and_out:
2631 if (bio)
2632 bio_free(bio, bs);
2633 blk_rq_unprep_clone(rq);
2634
2635 return -ENOMEM;
2636}
2637EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2638
Jens Axboe18887ad2008-07-28 13:08:45 +02002639int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
2641 return queue_work(kblockd_workqueue, work);
2642}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643EXPORT_SYMBOL(kblockd_schedule_work);
2644
Vivek Goyale43473b2010-09-15 17:06:35 -04002645int kblockd_schedule_delayed_work(struct request_queue *q,
2646 struct delayed_work *dwork, unsigned long delay)
2647{
2648 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2649}
2650EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652int __init blk_dev_init(void)
2653{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002654 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2655 sizeof(((struct request *)0)->cmd_flags));
2656
Tejun Heo89b90be2011-01-03 15:01:47 +01002657 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2658 kblockd_workqueue = alloc_workqueue("kblockd",
2659 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (!kblockd_workqueue)
2661 panic("Failed to create kblockd\n");
2662
2663 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002664 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Jens Axboe8324aa92008-01-29 14:51:59 +01002666 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002667 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return 0;
2670}