blob: 3cc17e6064d68e5a3315d012a395c84f660bcb8a [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 *
383 */
384void blk_sync_queue(struct request_queue *q)
385{
386 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100387 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100388 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400389 throtl_shutdown_timer_wq(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391EXPORT_SYMBOL(blk_sync_queue);
392
393/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200394 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200396 *
397 * Description:
398 * See @blk_run_queue. This variant must be called with the queue lock
399 * held and interrupts disabled.
400 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200402void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200405
Tejun Heoa538cd02009-04-23 11:05:17 +0900406 if (unlikely(blk_queue_stopped(q)))
407 return;
408
409 if (elv_queue_empty(q))
410 return;
411
Jens Axboedac07ec2006-05-11 08:20:16 +0200412 /*
413 * Only recurse once to avoid overrunning the stack, let the unplug
414 * handling reinvoke the handler shortly if we already got there.
415 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900416 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
417 q->request_fn(q);
418 queue_flag_clear(QUEUE_FLAG_REENTER, q);
419 } else {
420 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
421 kblockd_schedule_work(q, &q->unplug_work);
422 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200423}
424EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200425
Nick Piggin75ad23b2008-04-29 14:48:33 +0200426/**
427 * blk_run_queue - run a single device queue
428 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200429 *
430 * Description:
431 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900432 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200433 */
434void blk_run_queue(struct request_queue *q)
435{
436 unsigned long flags;
437
438 spin_lock_irqsave(q->queue_lock, flags);
439 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 spin_unlock_irqrestore(q->queue_lock, flags);
441}
442EXPORT_SYMBOL(blk_run_queue);
443
Jens Axboe165125e2007-07-24 09:28:11 +0200444void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500445{
446 kobject_put(&q->kobj);
447}
Al Viro483f4af2006-03-18 18:34:37 -0500448
Jens Axboe6728cb02008-01-31 13:03:55 +0100449void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500450{
Jens Axboee3335de92008-09-18 09:22:54 -0700451 /*
452 * We know we have process context here, so we can be a little
453 * cautious and ensure that pending block actions on this device
454 * are done before moving on. Going into this function, we should
455 * not have processes doing IO to this device.
456 */
457 blk_sync_queue(q);
458
Matthew Garrett31373d02010-04-06 14:25:14 +0200459 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500460 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200461 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500462 mutex_unlock(&q->sysfs_lock);
463
464 if (q->elevator)
465 elevator_exit(q->elevator);
466
467 blk_put_queue(q);
468}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469EXPORT_SYMBOL(blk_cleanup_queue);
470
Jens Axboe165125e2007-07-24 09:28:11 +0200471static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 struct request_list *rl = &q->rq;
474
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400475 if (unlikely(rl->rq_pool))
476 return 0;
477
Jens Axboe1faa16d2009-04-06 14:48:01 +0200478 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
479 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200480 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200481 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
482 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Christoph Lameter19460892005-06-23 00:08:19 -0700484 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
485 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (!rl->rq_pool)
488 return -ENOMEM;
489
490 return 0;
491}
492
Jens Axboe165125e2007-07-24 09:28:11 +0200493struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Christoph Lameter19460892005-06-23 00:08:19 -0700495 return blk_alloc_queue_node(gfp_mask, -1);
496}
497EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Jens Axboe165125e2007-07-24 09:28:11 +0200499struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700500{
Jens Axboe165125e2007-07-24 09:28:11 +0200501 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700502 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700503
Jens Axboe8324aa92008-01-29 14:51:59 +0100504 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700505 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (!q)
507 return NULL;
508
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700509 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
510 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200511 q->backing_dev_info.ra_pages =
512 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
513 q->backing_dev_info.state = 0;
514 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200515 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200516
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700517 err = bdi_init(&q->backing_dev_info);
518 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100519 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700520 return NULL;
521 }
522
Vivek Goyale43473b2010-09-15 17:06:35 -0400523 if (blk_throtl_init(q)) {
524 kmem_cache_free(blk_requestq_cachep, q);
525 return NULL;
526 }
527
Matthew Garrett31373d02010-04-06 14:25:14 +0200528 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
529 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700531 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
532 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heoae1b1532011-01-25 12:43:54 +0100533 INIT_LIST_HEAD(&q->flush_queue[0]);
534 INIT_LIST_HEAD(&q->flush_queue[1]);
535 INIT_LIST_HEAD(&q->flush_data_in_flight);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200536 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500537
Jens Axboe8324aa92008-01-29 14:51:59 +0100538 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Al Viro483f4af2006-03-18 18:34:37 -0500540 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700541 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return q;
544}
Christoph Lameter19460892005-06-23 00:08:19 -0700545EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547/**
548 * blk_init_queue - prepare a request queue for use with a block device
549 * @rfn: The function to be called to process requests that have been
550 * placed on the queue.
551 * @lock: Request queue spin lock
552 *
553 * Description:
554 * If a block device wishes to use the standard request handling procedures,
555 * which sorts requests and coalesces adjacent requests, then it must
556 * call blk_init_queue(). The function @rfn will be called when there
557 * are requests on the queue that need to be processed. If the device
558 * supports plugging, then @rfn may not be called immediately when requests
559 * are available on the queue, but may be called at some time later instead.
560 * Plugged queues are generally unplugged when a buffer belonging to one
561 * of the requests on the queue is needed, or due to memory pressure.
562 *
563 * @rfn is not required, or even expected, to remove all requests off the
564 * queue, but only as many as it can handle at a time. If it does leave
565 * requests on the queue, it is responsible for arranging that the requests
566 * get dealt with eventually.
567 *
568 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200569 * request queue; this lock will be taken also from interrupt context, so irq
570 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200572 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * it didn't succeed.
574 *
575 * Note:
576 * blk_init_queue() must be paired with a blk_cleanup_queue() call
577 * when the block device is deactivated (such as at module unload).
578 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700579
Jens Axboe165125e2007-07-24 09:28:11 +0200580struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Christoph Lameter19460892005-06-23 00:08:19 -0700582 return blk_init_queue_node(rfn, lock, -1);
583}
584EXPORT_SYMBOL(blk_init_queue);
585
Jens Axboe165125e2007-07-24 09:28:11 +0200586struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700587blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
588{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600589 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600591 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
592 if (!uninit_q)
593 return NULL;
594
595 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
596 if (!q)
597 blk_cleanup_queue(uninit_q);
598
599 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200600}
601EXPORT_SYMBOL(blk_init_queue_node);
602
603struct request_queue *
604blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
605 spinlock_t *lock)
606{
607 return blk_init_allocated_queue_node(q, rfn, lock, -1);
608}
609EXPORT_SYMBOL(blk_init_allocated_queue);
610
611struct request_queue *
612blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
613 spinlock_t *lock, int node_id)
614{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!q)
616 return NULL;
617
Christoph Lameter19460892005-06-23 00:08:19 -0700618 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600619 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500620 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900624 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100626 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 q->queue_lock = lock;
628
Jens Axboef3b144a2009-03-06 08:48:33 +0100629 /*
630 * This also sets hw/phys segments, boundary and size
631 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Alan Stern44ec9542007-02-20 11:01:57 -0500634 q->sg_reserved_size = INT_MAX;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
637 * all done
638 */
639 if (!elevator_init(q, NULL)) {
640 blk_queue_congestion_threshold(q);
641 return q;
642 }
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return NULL;
645}
Mike Snitzer01effb02010-05-11 08:57:42 +0200646EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Jens Axboe165125e2007-07-24 09:28:11 +0200648int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700650 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500651 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653 }
654
655 return 1;
656}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Jens Axboe165125e2007-07-24 09:28:11 +0200658static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200660 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200661 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 mempool_free(rq, q->rq.rq_pool);
663}
664
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200665static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200666blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
669
670 if (!rq)
671 return NULL;
672
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200673 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200674
Jerome Marchand42dad762009-04-22 14:01:49 +0200675 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Tejun Heocb98fc82005-10-28 08:29:39 +0200677 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200678 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200679 mempool_free(rq, q->rq.rq_pool);
680 return NULL;
681 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200682 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Tejun Heocb98fc82005-10-28 08:29:39 +0200685 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688/*
689 * ioc_batching returns true if the ioc is a valid batching request and
690 * should be given priority access to a request.
691 */
Jens Axboe165125e2007-07-24 09:28:11 +0200692static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 if (!ioc)
695 return 0;
696
697 /*
698 * Make sure the process is able to allocate at least 1 request
699 * even if the batch times out, otherwise we could theoretically
700 * lose wakeups.
701 */
702 return ioc->nr_batch_requests == q->nr_batching ||
703 (ioc->nr_batch_requests > 0
704 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
705}
706
707/*
708 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
709 * will cause the process to be a "batcher" on all queues in the system. This
710 * is the behaviour we want though - once it gets a wakeup it should be given
711 * a nice run.
712 */
Jens Axboe165125e2007-07-24 09:28:11 +0200713static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 if (!ioc || ioc_batching(q, ioc))
716 return;
717
718 ioc->nr_batch_requests = q->nr_batching;
719 ioc->last_waited = jiffies;
720}
721
Jens Axboe1faa16d2009-04-06 14:48:01 +0200722static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct request_list *rl = &q->rq;
725
Jens Axboe1faa16d2009-04-06 14:48:01 +0200726 if (rl->count[sync] < queue_congestion_off_threshold(q))
727 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jens Axboe1faa16d2009-04-06 14:48:01 +0200729 if (rl->count[sync] + 1 <= q->nr_requests) {
730 if (waitqueue_active(&rl->wait[sync]))
731 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Jens Axboe1faa16d2009-04-06 14:48:01 +0200733 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735}
736
737/*
738 * A request has just been released. Account for it, update the full and
739 * congestion status, wake up any waiters. Called under q->queue_lock.
740 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200741static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct request_list *rl = &q->rq;
744
Jens Axboe1faa16d2009-04-06 14:48:01 +0200745 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200746 if (priv)
747 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Jens Axboe1faa16d2009-04-06 14:48:01 +0200749 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Jens Axboe1faa16d2009-04-06 14:48:01 +0200751 if (unlikely(rl->starved[sync ^ 1]))
752 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755/*
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100756 * Determine if elevator data should be initialized when allocating the
757 * request associated with @bio.
758 */
759static bool blk_rq_should_init_elevator(struct bio *bio)
760{
761 if (!bio)
762 return true;
763
764 /*
765 * Flush requests do not use the elevator so skip initialization.
766 * This allows a request to share the flush and elevator data.
767 */
768 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
769 return false;
770
771 return true;
772}
773
774/*
Nick Piggind6344532005-06-28 20:45:14 -0700775 * Get a free request, queue_lock must be held.
776 * Returns NULL on failure, with queue_lock held.
777 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Jens Axboe165125e2007-07-24 09:28:11 +0200779static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100780 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct request *rq = NULL;
783 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100784 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200785 const bool is_sync = rw_is_sync(rw_flags) != 0;
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100786 int may_queue, priv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Jens Axboe7749a8d2006-12-13 13:02:26 +0100788 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100789 if (may_queue == ELV_MQUEUE_NO)
790 goto rq_starved;
791
Jens Axboe1faa16d2009-04-06 14:48:01 +0200792 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
793 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200794 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100795 /*
796 * The queue will fill after this allocation, so set
797 * it as full, and mark this process as "batching".
798 * This process will be allowed to complete a batch of
799 * requests, others will be blocked.
800 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200801 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100802 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200803 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100804 } else {
805 if (may_queue != ELV_MQUEUE_MUST
806 && !ioc_batching(q, ioc)) {
807 /*
808 * The queue is full and the allocating
809 * process is not a "batcher", and not
810 * exempted by the IO scheduler
811 */
812 goto out;
813 }
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200816 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
Jens Axboe082cf692005-06-28 16:35:11 +0200819 /*
820 * Only allow batching queuers to allocate up to 50% over the defined
821 * limit of requests, otherwise we could have thousands of requests
822 * allocated with any setting of ->nr_requests
823 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200824 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200825 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100826
Jens Axboe1faa16d2009-04-06 14:48:01 +0200827 rl->count[is_sync]++;
828 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200829
Mike Snitzer9d5a4e92011-02-11 11:05:46 +0100830 if (blk_rq_should_init_elevator(bio)) {
831 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
832 if (priv)
833 rl->elvpriv++;
834 }
Tejun Heocb98fc82005-10-28 08:29:39 +0200835
Jens Axboef253b862010-10-24 22:06:02 +0200836 if (blk_queue_io_stat(q))
837 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 spin_unlock_irq(q->queue_lock);
839
Jens Axboe7749a8d2006-12-13 13:02:26 +0100840 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100841 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /*
843 * Allocation failed presumably due to memory. Undo anything
844 * we might have messed up.
845 *
846 * Allocating task should really be put onto the front of the
847 * wait queue, but this is pretty rare.
848 */
849 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200850 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /*
853 * in the very unlikely event that allocation failed and no
854 * requests for this direction was pending, mark us starved
855 * so that freeing of a request in the other direction will
856 * notice us. another possible fix would be to split the
857 * rq mempool into READ and WRITE
858 */
859rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200860 if (unlikely(rl->count[is_sync] == 0))
861 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto out;
864 }
865
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100866 /*
867 * ioc may be NULL here, and ioc_batching will be false. That's
868 * OK, if the queue is under the request limit then requests need
869 * not count toward the nr_batch_requests limit. There will always
870 * be some limit enforced by BLK_BATCH_TIME.
871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (ioc_batching(q, ioc))
873 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100874
Jens Axboe1faa16d2009-04-06 14:48:01 +0200875 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return rq;
878}
879
880/*
881 * No available requests for this queue, unplug the device and wait for some
882 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700883 *
884 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 */
Jens Axboe165125e2007-07-24 09:28:11 +0200886static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200887 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200889 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 struct request *rq;
891
Jens Axboe7749a8d2006-12-13 13:02:26 +0100892 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700893 while (!rq) {
894 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200895 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 struct request_list *rl = &q->rq;
897
Jens Axboe1faa16d2009-04-06 14:48:01 +0200898 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 TASK_UNINTERRUPTIBLE);
900
Jens Axboe1faa16d2009-04-06 14:48:01 +0200901 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200903 __generic_unplug_device(q);
904 spin_unlock_irq(q->queue_lock);
905 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200907 /*
908 * After sleeping, we become a "batching" process and
909 * will be able to allocate at least one request, and
910 * up to a big batch of them for a small period time.
911 * See ioc_batching, ioc_set_batching
912 */
913 ioc = current_io_context(GFP_NOIO, q->node);
914 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100915
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200916 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200917 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200918
919 rq = get_request(q, rw_flags, bio, GFP_NOIO);
920 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 return rq;
923}
924
Jens Axboe165125e2007-07-24 09:28:11 +0200925struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
927 struct request *rq;
928
929 BUG_ON(rw != READ && rw != WRITE);
930
Nick Piggind6344532005-06-28 20:45:14 -0700931 spin_lock_irq(q->queue_lock);
932 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200933 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700934 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200935 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700936 if (!rq)
937 spin_unlock_irq(q->queue_lock);
938 }
939 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 return rq;
942}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943EXPORT_SYMBOL(blk_get_request);
944
945/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300946 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700947 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300948 * @bio: The bio describing the memory mappings that will be submitted for IO.
949 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700950 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200951 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300952 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
953 * type commands. Where the struct request needs to be farther initialized by
954 * the caller. It is passed a &struct bio, which describes the memory info of
955 * the I/O transfer.
956 *
957 * The caller of blk_make_request must make sure that bi_io_vec
958 * are set to describe the memory buffers. That bio_data_dir() will return
959 * the needed direction of the request. (And all bio's in the passed bio-chain
960 * are properly set accordingly)
961 *
962 * If called under none-sleepable conditions, mapped bio buffers must not
963 * need bouncing, by calling the appropriate masked or flagged allocator,
964 * suitable for the target device. Otherwise the call to blk_queue_bounce will
965 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200966 *
967 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
968 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
969 * anything but the first bio in the chain. Otherwise you risk waiting for IO
970 * completion of a bio that hasn't been submitted yet, thus resulting in a
971 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
972 * of bio_alloc(), as that avoids the mempool deadlock.
973 * If possible a big IO should be split into smaller parts when allocation
974 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200975 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300976struct request *blk_make_request(struct request_queue *q, struct bio *bio,
977 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200978{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300979 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
980
981 if (unlikely(!rq))
982 return ERR_PTR(-ENOMEM);
983
984 for_each_bio(bio) {
985 struct bio *bounce_bio = bio;
986 int ret;
987
988 blk_queue_bounce(q, &bounce_bio);
989 ret = blk_rq_append_bio(q, rq, bounce_bio);
990 if (unlikely(ret)) {
991 blk_put_request(rq);
992 return ERR_PTR(ret);
993 }
994 }
995
996 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200997}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300998EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200999
1000/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 * blk_requeue_request - put a request back on queue
1002 * @q: request queue where request should be inserted
1003 * @rq: request to be inserted
1004 *
1005 * Description:
1006 * Drivers often keep queueing requests until the hardware cannot accept
1007 * more, when that condition happens we need to put the request back
1008 * on the queue. Must be called with queue lock held.
1009 */
Jens Axboe165125e2007-07-24 09:28:11 +02001010void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001012 blk_delete_timer(rq);
1013 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001014 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (blk_rq_tagged(rq))
1017 blk_queue_end_tag(q, rq);
1018
James Bottomleyba396a62009-05-27 14:17:08 +02001019 BUG_ON(blk_queued_rq(rq));
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 elv_requeue_request(q, rq);
1022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023EXPORT_SYMBOL(blk_requeue_request);
1024
1025/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001026 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * @q: request queue where request should be inserted
1028 * @rq: request to be inserted
1029 * @at_head: insert request at head or tail of queue
1030 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 *
1032 * Description:
1033 * Many block devices need to execute commands asynchronously, so they don't
1034 * block the whole kernel from preemption during request execution. This is
1035 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001036 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1037 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 *
1039 * We have the option of inserting the head or the tail of the queue.
1040 * Typically we use the tail for new ioctls and so forth. We use the head
1041 * of the queue for things like a QUEUE_FULL message from a device, or a
1042 * host that is unable to accept a particular command.
1043 */
Jens Axboe165125e2007-07-24 09:28:11 +02001044void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001045 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Tejun Heo 867d1192005-04-24 02:06:05 -05001047 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 unsigned long flags;
1049
1050 /*
1051 * tell I/O scheduler that this isn't a regular read/write (ie it
1052 * must not attempt merges on this) and that it acts as a soft
1053 * barrier
1054 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001055 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 rq->special = data;
1058
1059 spin_lock_irqsave(q->queue_lock, flags);
1060
1061 /*
1062 * If command is tagged, release the tag
1063 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001064 if (blk_rq_tagged(rq))
1065 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001067 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001068 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001069 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 spin_unlock_irqrestore(q->queue_lock, flags);
1071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072EXPORT_SYMBOL(blk_insert_request);
1073
Tejun Heo074a7ac2008-08-25 19:56:14 +09001074static void part_round_stats_single(int cpu, struct hd_struct *part,
1075 unsigned long now)
1076{
1077 if (now == part->stamp)
1078 return;
1079
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001080 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001081 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001082 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001083 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1084 }
1085 part->stamp = now;
1086}
1087
1088/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001089 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1090 * @cpu: cpu number for stats access
1091 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 *
1093 * The average IO queue length and utilisation statistics are maintained
1094 * by observing the current state of the queue length and the amount of
1095 * time it has been in this state for.
1096 *
1097 * Normally, that accounting is done on IO completion, but that can result
1098 * in more than a second's worth of IO being accounted for within any one
1099 * second, leading to >100% utilisation. To deal with that, we call this
1100 * function to do a round-off before returning the results when reading
1101 * /proc/diskstats. This accounts immediately for all queue usage up to
1102 * the current jiffies and restarts the counters again.
1103 */
Tejun Heoc9959052008-08-25 19:47:21 +09001104void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001105{
1106 unsigned long now = jiffies;
1107
Tejun Heo074a7ac2008-08-25 19:56:14 +09001108 if (part->partno)
1109 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1110 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001111}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001112EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114/*
1115 * queue lock must be held
1116 */
Jens Axboe165125e2007-07-24 09:28:11 +02001117void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (unlikely(!q))
1120 return;
1121 if (unlikely(--req->ref_count))
1122 return;
1123
Tejun Heo8922e162005-10-20 16:23:44 +02001124 elv_completed_request(q, req);
1125
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001126 /* this is a bio leak */
1127 WARN_ON(req->bio != NULL);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 /*
1130 * Request may not have originated from ll_rw_blk. if not,
1131 * it didn't come out of our reserved rq pools
1132 */
Jens Axboe49171e52006-08-10 08:59:11 +02001133 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001134 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001135 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001138 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001141 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001144EXPORT_SYMBOL_GPL(__blk_put_request);
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146void blk_put_request(struct request *req)
1147{
Tejun Heo8922e162005-10-20 16:23:44 +02001148 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001149 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001151 spin_lock_irqsave(q->queue_lock, flags);
1152 __blk_put_request(q, req);
1153 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155EXPORT_SYMBOL(blk_put_request);
1156
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001157/**
1158 * blk_add_request_payload - add a payload to a request
1159 * @rq: request to update
1160 * @page: page backing the payload
1161 * @len: length of the payload.
1162 *
1163 * This allows to later add a payload to an already submitted request by
1164 * a block driver. The driver needs to take care of freeing the payload
1165 * itself.
1166 *
1167 * Note that this is a quite horrible hack and nothing but handling of
1168 * discard requests should ever use it.
1169 */
1170void blk_add_request_payload(struct request *rq, struct page *page,
1171 unsigned int len)
1172{
1173 struct bio *bio = rq->bio;
1174
1175 bio->bi_io_vec->bv_page = page;
1176 bio->bi_io_vec->bv_offset = 0;
1177 bio->bi_io_vec->bv_len = len;
1178
1179 bio->bi_size = len;
1180 bio->bi_vcnt = 1;
1181 bio->bi_phys_segments = 1;
1182
1183 rq->__data_len = rq->resid_len = len;
1184 rq->nr_phys_segments = 1;
1185 rq->buffer = bio_data(bio);
1186}
1187EXPORT_SYMBOL_GPL(blk_add_request_payload);
1188
Jens Axboe86db1e22008-01-29 14:53:40 +01001189void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001190{
Jens Axboec7c22e42008-09-13 20:26:01 +02001191 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001192 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001193
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001194 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1195 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001196 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001197
Tejun Heo52d9e672006-01-06 09:49:58 +01001198 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001199 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001200 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001201 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001202}
1203
Jens Axboe644b2d92009-04-06 14:48:06 +02001204/*
1205 * Only disabling plugging for non-rotational devices if it does tagging
1206 * as well, otherwise we do need the proper merging
1207 */
1208static inline bool queue_should_plug(struct request_queue *q)
1209{
Jens Axboe79da06442010-02-23 08:40:43 +01001210 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001211}
1212
Jens Axboe165125e2007-07-24 09:28:11 +02001213static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Nick Piggin450991b2005-06-28 20:45:13 -07001215 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001216 int el_ret;
1217 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001218 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001219 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1220 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1221 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001222 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001223 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /*
1226 * low level driver can indicate that it wants pages above a
1227 * certain limit bounced to low memory (ie for highmem, or even
1228 * ISA dma in theory)
1229 */
1230 blk_queue_bounce(q, &bio);
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 spin_lock_irq(q->queue_lock);
1233
Tejun Heo4fed9472010-09-03 11:56:17 +02001234 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heoae1b1532011-01-25 12:43:54 +01001235 where = ELEVATOR_INSERT_FLUSH;
Tejun Heo28e7d182010-09-03 11:56:16 +02001236 goto get_rq;
1237 }
1238
1239 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 goto get_rq;
1241
1242 el_ret = elv_merge(q, &req, bio);
1243 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001244 case ELEVATOR_BACK_MERGE:
1245 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Jens Axboe6728cb02008-01-31 13:03:55 +01001247 if (!ll_back_merge_fn(q, req, bio))
1248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001250 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001251
Tejun Heo80a761f2009-07-03 17:48:17 +09001252 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1253 blk_rq_set_mixed_merge(req);
1254
Jens Axboe6728cb02008-01-31 13:03:55 +01001255 req->biotail->bi_next = bio;
1256 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001257 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001258 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001259 if (!blk_rq_cpu_valid(req))
1260 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001261 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001262 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001263 if (!attempt_back_merge(q, req))
1264 elv_merged_request(q, req, el_ret);
1265 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Jens Axboe6728cb02008-01-31 13:03:55 +01001267 case ELEVATOR_FRONT_MERGE:
1268 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Jens Axboe6728cb02008-01-31 13:03:55 +01001270 if (!ll_front_merge_fn(q, req, bio))
1271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001273 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001274
Tejun Heo80a761f2009-07-03 17:48:17 +09001275 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1276 blk_rq_set_mixed_merge(req);
1277 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1278 req->cmd_flags |= ff;
1279 }
1280
Jens Axboe6728cb02008-01-31 13:03:55 +01001281 bio->bi_next = req->bio;
1282 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Jens Axboe6728cb02008-01-31 13:03:55 +01001284 /*
1285 * may not be valid. if the low level driver said
1286 * it didn't need a bounce buffer then it better
1287 * not touch req->buffer either...
1288 */
1289 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001290 req->__sector = bio->bi_sector;
1291 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001292 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001293 if (!blk_rq_cpu_valid(req))
1294 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001295 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001296 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001297 if (!attempt_front_merge(q, req))
1298 elv_merged_request(q, req, el_ret);
1299 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Jens Axboe6728cb02008-01-31 13:03:55 +01001301 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1302 default:
1303 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001307 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001308 * This sync check and mask will be re-done in init_request_from_bio(),
1309 * but we need to set it earlier to expose the sync flag to the
1310 * rq allocator and io schedulers.
1311 */
1312 rw_flags = bio_data_dir(bio);
1313 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001314 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001315
1316 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001317 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001318 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001319 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001320 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001321
Nick Piggin450991b2005-06-28 20:45:13 -07001322 /*
1323 * After dropping the lock and possibly sleeping here, our request
1324 * may now be mergeable after it had proven unmergeable (above).
1325 * We don't worry about that case for efficiency. It won't happen
1326 * often, and the elevators are able to handle it.
1327 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001328 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Nick Piggin450991b2005-06-28 20:45:13 -07001330 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001331 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1332 bio_flagged(bio, BIO_CPU_AFFINE))
1333 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001334 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001335 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001336
1337 /* insert the request into the elevator */
1338 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001339 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001341 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 spin_unlock_irq(q->queue_lock);
1344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
1347/*
1348 * If bio->bi_dev is a partition, remap the location
1349 */
1350static inline void blk_partition_remap(struct bio *bio)
1351{
1352 struct block_device *bdev = bio->bi_bdev;
1353
Jens Axboebf2de6f2007-09-27 13:01:25 +02001354 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 bio->bi_sector += p->start_sect;
1358 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001359
Mike Snitzerd07335e2010-11-16 12:52:38 +01001360 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1361 bdev->bd_dev,
1362 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364}
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366static void handle_bad_sector(struct bio *bio)
1367{
1368 char b[BDEVNAME_SIZE];
1369
1370 printk(KERN_INFO "attempt to access beyond end of device\n");
1371 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1372 bdevname(bio->bi_bdev, b),
1373 bio->bi_rw,
1374 (unsigned long long)bio->bi_sector + bio_sectors(bio),
Mike Snitzer77304d22010-11-08 14:39:12 +01001375 (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 set_bit(BIO_EOF, &bio->bi_flags);
1378}
1379
Akinobu Mitac17bb492006-12-08 02:39:46 -08001380#ifdef CONFIG_FAIL_MAKE_REQUEST
1381
1382static DECLARE_FAULT_ATTR(fail_make_request);
1383
1384static int __init setup_fail_make_request(char *str)
1385{
1386 return setup_fault_attr(&fail_make_request, str);
1387}
1388__setup("fail_make_request=", setup_fail_make_request);
1389
1390static int should_fail_request(struct bio *bio)
1391{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001392 struct hd_struct *part = bio->bi_bdev->bd_part;
1393
1394 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001395 return should_fail(&fail_make_request, bio->bi_size);
1396
1397 return 0;
1398}
1399
1400static int __init fail_make_request_debugfs(void)
1401{
1402 return init_fault_attr_dentries(&fail_make_request,
1403 "fail_make_request");
1404}
1405
1406late_initcall(fail_make_request_debugfs);
1407
1408#else /* CONFIG_FAIL_MAKE_REQUEST */
1409
1410static inline int should_fail_request(struct bio *bio)
1411{
1412 return 0;
1413}
1414
1415#endif /* CONFIG_FAIL_MAKE_REQUEST */
1416
Jens Axboec07e2b42007-07-18 13:27:58 +02001417/*
1418 * Check whether this bio extends beyond the end of the device.
1419 */
1420static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1421{
1422 sector_t maxsector;
1423
1424 if (!nr_sectors)
1425 return 0;
1426
1427 /* Test device or partition size, when known. */
Mike Snitzer77304d22010-11-08 14:39:12 +01001428 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
Jens Axboec07e2b42007-07-18 13:27:58 +02001429 if (maxsector) {
1430 sector_t sector = bio->bi_sector;
1431
1432 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1433 /*
1434 * This may well happen - the kernel calls bread()
1435 * without checking the size of the device, e.g., when
1436 * mounting a device.
1437 */
1438 handle_bad_sector(bio);
1439 return 1;
1440 }
1441 }
1442
1443 return 0;
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001447 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 * @bio: The bio describing the location in memory and on the device.
1449 *
1450 * generic_make_request() is used to make I/O requests of block
1451 * devices. It is passed a &struct bio, which describes the I/O that needs
1452 * to be done.
1453 *
1454 * generic_make_request() does not return any status. The
1455 * success/failure status of the request, along with notification of
1456 * completion, is delivered asynchronously through the bio->bi_end_io
1457 * function described (one day) else where.
1458 *
1459 * The caller of generic_make_request must make sure that bi_io_vec
1460 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1461 * set to describe the device address, and the
1462 * bi_end_io and optionally bi_private are set to describe how
1463 * completion notification should be signaled.
1464 *
1465 * generic_make_request and the drivers it calls may use bi_next if this
1466 * bio happens to be merged with someone else, and may change bi_dev and
1467 * bi_sector for remaps as it sees fit. So the values of these fields
1468 * should NOT be depended on after the call to generic_make_request.
1469 */
Neil Brownd89d8792007-05-01 09:53:42 +02001470static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Jens Axboe165125e2007-07-24 09:28:11 +02001472 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001473 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001475 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001476 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Jens Axboec07e2b42007-07-18 13:27:58 +02001480 if (bio_check_eod(bio, nr_sectors))
1481 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 /*
1484 * Resolve the mapping until finished. (drivers are
1485 * still free to implement/resolve their own stacking
1486 * by explicitly returning 0)
1487 *
1488 * NOTE: we don't repeat the blk_size check for each new device.
1489 * Stacking drivers are expected to know what they are doing.
1490 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001491 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001492 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 do {
1494 char b[BDEVNAME_SIZE];
1495
1496 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001497 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 printk(KERN_ERR
1499 "generic_make_request: Trying to access "
1500 "nonexistent block-device %s (%Lu)\n",
1501 bdevname(bio->bi_bdev, b),
1502 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001503 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001506 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001507 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001508 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001509 bdevname(bio->bi_bdev, b),
1510 bio_sectors(bio),
1511 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 goto end_io;
1513 }
1514
Nick Pigginfde6ad22005-06-23 00:08:53 -07001515 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto end_io;
1517
Akinobu Mitac17bb492006-12-08 02:39:46 -08001518 if (should_fail_request(bio))
1519 goto end_io;
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /*
1522 * If this device has partitions, remap block n
1523 * of partition p to block n+start(p) of the disk.
1524 */
1525 blk_partition_remap(bio);
1526
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001527 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1528 goto end_io;
1529
NeilBrown5ddfe962006-10-30 22:07:21 -08001530 if (old_sector != -1)
Mike Snitzerd07335e2010-11-16 12:52:38 +01001531 trace_block_bio_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001532
NeilBrown5ddfe962006-10-30 22:07:21 -08001533 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001534 old_dev = bio->bi_bdev->bd_dev;
1535
Jens Axboec07e2b42007-07-18 13:27:58 +02001536 if (bio_check_eod(bio, nr_sectors))
1537 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001538
Tejun Heo1e879012010-09-03 11:56:17 +02001539 /*
1540 * Filter flush bio's early so that make_request based
1541 * drivers without flush support don't have to worry
1542 * about them.
1543 */
1544 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1545 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1546 if (!nr_sectors) {
1547 err = 0;
1548 goto end_io;
1549 }
1550 }
1551
Adrian Hunter8d57a982010-08-11 14:17:49 -07001552 if ((bio->bi_rw & REQ_DISCARD) &&
1553 (!blk_queue_discard(q) ||
1554 ((bio->bi_rw & REQ_SECURE) &&
1555 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001556 err = -EOPNOTSUPP;
1557 goto end_io;
1558 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001559
Vivek Goyale43473b2010-09-15 17:06:35 -04001560 blk_throtl_bio(q, &bio);
1561
1562 /*
1563 * If bio = NULL, bio has been throttled and will be submitted
1564 * later.
1565 */
1566 if (!bio)
1567 break;
1568
Minchan Kim01edede2009-09-08 21:56:38 +02001569 trace_block_bio_queue(q, bio);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 ret = q->make_request_fn(q, bio);
1572 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001573
1574 return;
1575
1576end_io:
1577 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
Neil Brownd89d8792007-05-01 09:53:42 +02001580/*
1581 * We only want one ->make_request_fn to be active at a time,
1582 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001583 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001584 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001585 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001586 * generic_make_request is currently active in this task or not.
1587 * If it is NULL, then no make_request is active. If it is non-NULL,
1588 * then a make_request is active, and new requests should be added
1589 * at the tail
1590 */
1591void generic_make_request(struct bio *bio)
1592{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001593 struct bio_list bio_list_on_stack;
1594
1595 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001596 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001597 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001598 return;
1599 }
1600 /* following loop may be a bit non-obvious, and so deserves some
1601 * explanation.
1602 * Before entering the loop, bio->bi_next is NULL (as all callers
1603 * ensure that) so we have a list with a single bio.
1604 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001605 * we assign bio_list to a pointer to the bio_list_on_stack,
1606 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001607 * added. __generic_make_request may indeed add some more bios
1608 * through a recursive call to generic_make_request. If it
1609 * did, we find a non-NULL value in bio_list and re-enter the loop
1610 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001611 * of the top of the list (no pretending) and so remove it from
1612 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001613 *
1614 * The loop was structured like this to make only one call to
1615 * __generic_make_request (which is important as it is large and
1616 * inlined) and to keep the structure simple.
1617 */
1618 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001619 bio_list_init(&bio_list_on_stack);
1620 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001621 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001622 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001623 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001624 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001625 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001626}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627EXPORT_SYMBOL(generic_make_request);
1628
1629/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001630 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1632 * @bio: The &struct bio which describes the I/O
1633 *
1634 * submit_bio() is very similar in purpose to generic_make_request(), and
1635 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001636 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 *
1638 */
1639void submit_bio(int rw, struct bio *bio)
1640{
1641 int count = bio_sectors(bio);
1642
Jens Axboe22e2c502005-06-27 10:55:12 +02001643 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Jens Axboebf2de6f2007-09-27 13:01:25 +02001645 /*
1646 * If it's a regular read/write or a barrier with data attached,
1647 * go through the normal accounting stuff before submission.
1648 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001649 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001650 if (rw & WRITE) {
1651 count_vm_events(PGPGOUT, count);
1652 } else {
1653 task_io_account_read(bio->bi_size);
1654 count_vm_events(PGPGIN, count);
1655 }
1656
1657 if (unlikely(block_dump)) {
1658 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001659 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001660 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001661 (rw & WRITE) ? "WRITE" : "READ",
1662 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001663 bdevname(bio->bi_bdev, b),
1664 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667
1668 generic_make_request(bio);
1669}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670EXPORT_SYMBOL(submit_bio);
1671
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001672/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001673 * blk_rq_check_limits - Helper function to check a request for the queue limit
1674 * @q: the queue
1675 * @rq: the request being checked
1676 *
1677 * Description:
1678 * @rq may have been made based on weaker limitations of upper-level queues
1679 * in request stacking drivers, and it may violate the limitation of @q.
1680 * Since the block layer and the underlying device driver trust @rq
1681 * after it is inserted to @q, it should be checked against @q before
1682 * the insertion using this generic function.
1683 *
1684 * This function should also be useful for request stacking drivers
Stefan Weileef35c22010-08-06 21:11:15 +02001685 * in some cases below, so export this function.
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001686 * Request stacking drivers like request-based dm may change the queue
1687 * limits while requests are in the queue (e.g. dm's table swapping).
1688 * Such request stacking drivers should check those requests agaist
1689 * the new queue limits again when they dispatch those requests,
1690 * although such checkings are also done against the old queue limits
1691 * when submitting requests.
1692 */
1693int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1694{
ike Snitzer33839772010-08-08 12:11:33 -04001695 if (rq->cmd_flags & REQ_DISCARD)
1696 return 0;
1697
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001698 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1699 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001700 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1701 return -EIO;
1702 }
1703
1704 /*
1705 * queue's settings related to segment counting like q->bounce_pfn
1706 * may differ from that of other stacking queues.
1707 * Recalculate it to check the request correctly on this queue's
1708 * limitation.
1709 */
1710 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001711 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001712 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1713 return -EIO;
1714 }
1715
1716 return 0;
1717}
1718EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1719
1720/**
1721 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1722 * @q: the queue to submit the request
1723 * @rq: the request being queued
1724 */
1725int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1726{
1727 unsigned long flags;
1728
1729 if (blk_rq_check_limits(q, rq))
1730 return -EIO;
1731
1732#ifdef CONFIG_FAIL_MAKE_REQUEST
1733 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1734 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1735 return -EIO;
1736#endif
1737
1738 spin_lock_irqsave(q->queue_lock, flags);
1739
1740 /*
1741 * Submitting request must be dequeued before calling this function
1742 * because it will be linked to another request_queue
1743 */
1744 BUG_ON(blk_queued_rq(rq));
1745
1746 drive_stat_acct(rq, 1);
1747 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1748
1749 spin_unlock_irqrestore(q->queue_lock, flags);
1750
1751 return 0;
1752}
1753EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1754
Tejun Heo80a761f2009-07-03 17:48:17 +09001755/**
1756 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1757 * @rq: request to examine
1758 *
1759 * Description:
1760 * A request could be merge of IOs which require different failure
1761 * handling. This function determines the number of bytes which
1762 * can be failed from the beginning of the request without
1763 * crossing into area which need to be retried further.
1764 *
1765 * Return:
1766 * The number of bytes to fail.
1767 *
1768 * Context:
1769 * queue_lock must be held.
1770 */
1771unsigned int blk_rq_err_bytes(const struct request *rq)
1772{
1773 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1774 unsigned int bytes = 0;
1775 struct bio *bio;
1776
1777 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1778 return blk_rq_bytes(rq);
1779
1780 /*
1781 * Currently the only 'mixing' which can happen is between
1782 * different fastfail types. We can safely fail portions
1783 * which have all the failfast bits that the first one has -
1784 * the ones which are at least as eager to fail as the first
1785 * one.
1786 */
1787 for (bio = rq->bio; bio; bio = bio->bi_next) {
1788 if ((bio->bi_rw & ff) != ff)
1789 break;
1790 bytes += bio->bi_size;
1791 }
1792
1793 /* this could lead to infinite loop */
1794 BUG_ON(blk_rq_bytes(rq) && !bytes);
1795 return bytes;
1796}
1797EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1798
Jens Axboebc58ba92009-01-23 10:54:44 +01001799static void blk_account_io_completion(struct request *req, unsigned int bytes)
1800{
Jens Axboec2553b52009-04-24 08:10:11 +02001801 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001802 const int rw = rq_data_dir(req);
1803 struct hd_struct *part;
1804 int cpu;
1805
1806 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001807 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001808 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1809 part_stat_unlock();
1810 }
1811}
1812
1813static void blk_account_io_done(struct request *req)
1814{
Jens Axboebc58ba92009-01-23 10:54:44 +01001815 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001816 * Account IO completion. flush_rq isn't accounted as a
1817 * normal IO on queueing nor completion. Accounting the
1818 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001819 */
Tejun Heo414b4ff2011-01-25 12:43:49 +01001820 if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001821 unsigned long duration = jiffies - req->start_time;
1822 const int rw = rq_data_dir(req);
1823 struct hd_struct *part;
1824 int cpu;
1825
1826 cpu = part_stat_lock();
Jerome Marchand09e099d2011-01-05 16:57:38 +01001827 part = req->part;
Jens Axboebc58ba92009-01-23 10:54:44 +01001828
1829 part_stat_inc(cpu, part, ios[rw]);
1830 part_stat_add(cpu, part, ticks[rw], duration);
1831 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001832 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001833
Jens Axboe6c23a962011-01-07 08:43:37 +01001834 hd_struct_put(part);
Jens Axboebc58ba92009-01-23 10:54:44 +01001835 part_stat_unlock();
1836 }
1837}
1838
Tejun Heo53a08802008-12-03 12:41:26 +01001839/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001840 * blk_peek_request - peek at the top of a request queue
1841 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001842 *
1843 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001844 * Return the request at the top of @q. The returned request
1845 * should be started using blk_start_request() before LLD starts
1846 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001847 *
1848 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001849 * Pointer to the request at the top of @q if available. Null
1850 * otherwise.
1851 *
1852 * Context:
1853 * queue_lock must be held.
1854 */
1855struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001856{
1857 struct request *rq;
1858 int ret;
1859
1860 while ((rq = __elv_next_request(q)) != NULL) {
1861 if (!(rq->cmd_flags & REQ_STARTED)) {
1862 /*
1863 * This is the first time the device driver
1864 * sees this request (possibly after
1865 * requeueing). Notify IO scheduler.
1866 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001867 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001868 elv_activate_rq(q, rq);
1869
1870 /*
1871 * just mark as started even if we don't start
1872 * it, a request that has been delayed should
1873 * not be passed by new incoming requests
1874 */
1875 rq->cmd_flags |= REQ_STARTED;
1876 trace_block_rq_issue(q, rq);
1877 }
1878
1879 if (!q->boundary_rq || q->boundary_rq == rq) {
1880 q->end_sector = rq_end_sector(rq);
1881 q->boundary_rq = NULL;
1882 }
1883
1884 if (rq->cmd_flags & REQ_DONTPREP)
1885 break;
1886
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001887 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001888 /*
1889 * make sure space for the drain appears we
1890 * know we can do this because max_hw_segments
1891 * has been adjusted to be one fewer than the
1892 * device can handle
1893 */
1894 rq->nr_phys_segments++;
1895 }
1896
1897 if (!q->prep_rq_fn)
1898 break;
1899
1900 ret = q->prep_rq_fn(q, rq);
1901 if (ret == BLKPREP_OK) {
1902 break;
1903 } else if (ret == BLKPREP_DEFER) {
1904 /*
1905 * the request may have been (partially) prepped.
1906 * we need to keep this request in the front to
1907 * avoid resource deadlock. REQ_STARTED will
1908 * prevent other fs requests from passing this one.
1909 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001910 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001911 !(rq->cmd_flags & REQ_DONTPREP)) {
1912 /*
1913 * remove the space for the drain we added
1914 * so that we don't add it again
1915 */
1916 --rq->nr_phys_segments;
1917 }
1918
1919 rq = NULL;
1920 break;
1921 } else if (ret == BLKPREP_KILL) {
1922 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001923 /*
1924 * Mark this request as started so we don't trigger
1925 * any debug logic in the end I/O path.
1926 */
1927 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001928 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001929 } else {
1930 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1931 break;
1932 }
1933 }
1934
1935 return rq;
1936}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001937EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001938
Tejun Heo9934c8c2009-05-08 11:54:16 +09001939void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001940{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001941 struct request_queue *q = rq->q;
1942
Tejun Heo158dbda2009-04-23 11:05:18 +09001943 BUG_ON(list_empty(&rq->queuelist));
1944 BUG_ON(ELV_ON_HASH(rq));
1945
1946 list_del_init(&rq->queuelist);
1947
1948 /*
1949 * the time frame between a request being removed from the lists
1950 * and to it is freed is accounted as io that is in progress at
1951 * the driver side.
1952 */
Divyesh Shah91952912010-04-01 15:01:41 -07001953 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001954 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001955 set_io_start_time_ns(rq);
1956 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001957}
1958
Tejun Heo5efccd12009-04-23 11:05:18 +09001959/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001960 * blk_start_request - start request processing on the driver
1961 * @req: request to dequeue
1962 *
1963 * Description:
1964 * Dequeue @req and start timeout timer on it. This hands off the
1965 * request to the driver.
1966 *
1967 * Block internal functions which don't want to start timer should
1968 * call blk_dequeue_request().
1969 *
1970 * Context:
1971 * queue_lock must be held.
1972 */
1973void blk_start_request(struct request *req)
1974{
1975 blk_dequeue_request(req);
1976
1977 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001978 * We are now handing the request to the hardware, initialize
1979 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001980 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001981 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001982 if (unlikely(blk_bidi_rq(req)))
1983 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1984
Tejun Heo9934c8c2009-05-08 11:54:16 +09001985 blk_add_timer(req);
1986}
1987EXPORT_SYMBOL(blk_start_request);
1988
1989/**
1990 * blk_fetch_request - fetch a request from a request queue
1991 * @q: request queue to fetch a request from
1992 *
1993 * Description:
1994 * Return the request at the top of @q. The request is started on
1995 * return and LLD can start processing it immediately.
1996 *
1997 * Return:
1998 * Pointer to the request at the top of @q if available. Null
1999 * otherwise.
2000 *
2001 * Context:
2002 * queue_lock must be held.
2003 */
2004struct request *blk_fetch_request(struct request_queue *q)
2005{
2006 struct request *rq;
2007
2008 rq = blk_peek_request(q);
2009 if (rq)
2010 blk_start_request(rq);
2011 return rq;
2012}
2013EXPORT_SYMBOL(blk_fetch_request);
2014
2015/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002016 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002017 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002018 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002019 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002020 *
2021 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002022 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2023 * the request structure even if @req doesn't have leftover.
2024 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002025 *
2026 * This special helper function is only for request stacking drivers
2027 * (e.g. request-based dm) so that they can handle partial completion.
2028 * Actual device drivers should use blk_end_request instead.
2029 *
2030 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2031 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002032 *
2033 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002034 * %false - this request doesn't have any more data
2035 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002036 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002037bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002039 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 struct bio *bio;
2041
Tejun Heo2e60e022009-04-23 11:05:18 +09002042 if (!req->bio)
2043 return false;
2044
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002045 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002048 * For fs requests, rq is just carrier of independent bio's
2049 * and each partial completion should be handled separately.
2050 * Reset per-request error on each partial completion.
2051 *
2052 * TODO: tj: This is too subtle. It would be better to let
2053 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002055 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 req->errors = 0;
2057
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002058 if (error && req->cmd_type == REQ_TYPE_FS &&
2059 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002060 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002062 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
Jens Axboebc58ba92009-01-23 10:54:44 +01002065 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 total_bytes = bio_nbytes = 0;
2068 while ((bio = req->bio) != NULL) {
2069 int nbytes;
2070
2071 if (nr_bytes >= bio->bi_size) {
2072 req->bio = bio->bi_next;
2073 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002074 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 next_idx = 0;
2076 bio_nbytes = 0;
2077 } else {
2078 int idx = bio->bi_idx + next_idx;
2079
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002080 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002082 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002083 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 break;
2085 }
2086
2087 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2088 BIO_BUG_ON(nbytes > bio->bi_size);
2089
2090 /*
2091 * not a complete bvec done
2092 */
2093 if (unlikely(nbytes > nr_bytes)) {
2094 bio_nbytes += nr_bytes;
2095 total_bytes += nr_bytes;
2096 break;
2097 }
2098
2099 /*
2100 * advance to the next vector
2101 */
2102 next_idx++;
2103 bio_nbytes += nbytes;
2104 }
2105
2106 total_bytes += nbytes;
2107 nr_bytes -= nbytes;
2108
Jens Axboe6728cb02008-01-31 13:03:55 +01002109 bio = req->bio;
2110 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /*
2112 * end more in this run, or just return 'not-done'
2113 */
2114 if (unlikely(nr_bytes <= 0))
2115 break;
2116 }
2117 }
2118
2119 /*
2120 * completely done
2121 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002122 if (!req->bio) {
2123 /*
2124 * Reset counters so that the request stacking driver
2125 * can find how many bytes remain in the request
2126 * later.
2127 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002128 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002129 return false;
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /*
2133 * if the request wasn't completed, update state
2134 */
2135 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002136 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 bio->bi_idx += next_idx;
2138 bio_iovec(bio)->bv_offset += nr_bytes;
2139 bio_iovec(bio)->bv_len -= nr_bytes;
2140 }
2141
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002142 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002143 req->buffer = bio_data(req->bio);
2144
2145 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002146 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002147 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002148
Tejun Heo80a761f2009-07-03 17:48:17 +09002149 /* mixed attributes always follow the first bio */
2150 if (req->cmd_flags & REQ_MIXED_MERGE) {
2151 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2152 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2153 }
2154
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002155 /*
2156 * If total number of sectors is less than the first segment
2157 * size, something has gone terribly wrong.
2158 */
2159 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2160 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002161 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002162 }
2163
2164 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002166
Tejun Heo2e60e022009-04-23 11:05:18 +09002167 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
Tejun Heo2e60e022009-04-23 11:05:18 +09002169EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Tejun Heo2e60e022009-04-23 11:05:18 +09002171static bool blk_update_bidi_request(struct request *rq, int error,
2172 unsigned int nr_bytes,
2173 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002174{
Tejun Heo2e60e022009-04-23 11:05:18 +09002175 if (blk_update_request(rq, error, nr_bytes))
2176 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002177
Tejun Heo2e60e022009-04-23 11:05:18 +09002178 /* Bidi request must be completed as a whole */
2179 if (unlikely(blk_bidi_rq(rq)) &&
2180 blk_update_request(rq->next_rq, error, bidi_bytes))
2181 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002182
Jens Axboee2e1a142010-06-09 10:42:09 +02002183 if (blk_queue_add_random(rq->q))
2184 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002185
2186 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
James Bottomley28018c22010-07-01 19:49:17 +09002189/**
2190 * blk_unprep_request - unprepare a request
2191 * @req: the request
2192 *
2193 * This function makes a request ready for complete resubmission (or
2194 * completion). It happens only after all error handling is complete,
2195 * so represents the appropriate moment to deallocate any resources
2196 * that were allocated to the request in the prep_rq_fn. The queue
2197 * lock is held when calling this.
2198 */
2199void blk_unprep_request(struct request *req)
2200{
2201 struct request_queue *q = req->q;
2202
2203 req->cmd_flags &= ~REQ_DONTPREP;
2204 if (q->unprep_rq_fn)
2205 q->unprep_rq_fn(q, req);
2206}
2207EXPORT_SYMBOL_GPL(blk_unprep_request);
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209/*
2210 * queue lock must be held
2211 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002212static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002214 if (blk_rq_tagged(req))
2215 blk_queue_end_tag(req->q, req);
2216
James Bottomleyba396a62009-05-27 14:17:08 +02002217 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002219 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002220 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Mike Andersone78042e2008-10-30 02:16:20 -07002222 blk_delete_timer(req);
2223
James Bottomley28018c22010-07-01 19:49:17 +09002224 if (req->cmd_flags & REQ_DONTPREP)
2225 blk_unprep_request(req);
2226
2227
Jens Axboebc58ba92009-01-23 10:54:44 +01002228 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002231 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002232 else {
2233 if (blk_bidi_rq(req))
2234 __blk_put_request(req->next_rq->q, req->next_rq);
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238}
2239
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002240/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002241 * blk_end_bidi_request - Complete a bidi request
2242 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002243 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002244 * @nr_bytes: number of bytes to complete @rq
2245 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002246 *
2247 * Description:
2248 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002249 * Drivers that supports bidi can safely call this member for any
2250 * type of request, bidi or uni. In the later case @bidi_bytes is
2251 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002252 *
2253 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002254 * %false - we are done with this request
2255 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002256 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002257static bool blk_end_bidi_request(struct request *rq, int error,
2258 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002259{
2260 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002261 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002262
Tejun Heo2e60e022009-04-23 11:05:18 +09002263 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2264 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002265
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002266 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002267 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002268 spin_unlock_irqrestore(q->queue_lock, flags);
2269
Tejun Heo2e60e022009-04-23 11:05:18 +09002270 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002271}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002272
2273/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002274 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2275 * @rq: the request to complete
2276 * @error: %0 for success, < %0 for error
2277 * @nr_bytes: number of bytes to complete @rq
2278 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002279 *
2280 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002281 * Identical to blk_end_bidi_request() except that queue lock is
2282 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002283 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002284 * Return:
2285 * %false - we are done with this request
2286 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002287 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002288static bool __blk_end_bidi_request(struct request *rq, int error,
2289 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002290{
Tejun Heo2e60e022009-04-23 11:05:18 +09002291 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2292 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002293
Tejun Heo2e60e022009-04-23 11:05:18 +09002294 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002295
Tejun Heo2e60e022009-04-23 11:05:18 +09002296 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002297}
2298
2299/**
2300 * blk_end_request - Helper function for drivers to complete the request.
2301 * @rq: the request being processed
2302 * @error: %0 for success, < %0 for error
2303 * @nr_bytes: number of bytes to complete
2304 *
2305 * Description:
2306 * Ends I/O on a number of bytes attached to @rq.
2307 * If @rq has leftover, sets it up for the next range of segments.
2308 *
2309 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002310 * %false - we are done with this request
2311 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002312 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002313bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002314{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002315 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002316}
Jens Axboe56ad1742009-07-28 22:11:24 +02002317EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002318
2319/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002320 * blk_end_request_all - Helper function for drives to finish the request.
2321 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002322 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002323 *
2324 * Description:
2325 * Completely finish @rq.
2326 */
2327void blk_end_request_all(struct request *rq, int error)
2328{
2329 bool pending;
2330 unsigned int bidi_bytes = 0;
2331
2332 if (unlikely(blk_bidi_rq(rq)))
2333 bidi_bytes = blk_rq_bytes(rq->next_rq);
2334
2335 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2336 BUG_ON(pending);
2337}
Jens Axboe56ad1742009-07-28 22:11:24 +02002338EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002339
2340/**
2341 * blk_end_request_cur - Helper function to finish the current request chunk.
2342 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002343 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002344 *
2345 * Description:
2346 * Complete the current consecutively mapped chunk from @rq.
2347 *
2348 * Return:
2349 * %false - we are done with this request
2350 * %true - still buffers pending for this request
2351 */
2352bool blk_end_request_cur(struct request *rq, int error)
2353{
2354 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2355}
Jens Axboe56ad1742009-07-28 22:11:24 +02002356EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002357
2358/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002359 * blk_end_request_err - Finish a request till the next failure boundary.
2360 * @rq: the request to finish till the next failure boundary for
2361 * @error: must be negative errno
2362 *
2363 * Description:
2364 * Complete @rq till the next failure boundary.
2365 *
2366 * Return:
2367 * %false - we are done with this request
2368 * %true - still buffers pending for this request
2369 */
2370bool blk_end_request_err(struct request *rq, int error)
2371{
2372 WARN_ON(error >= 0);
2373 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2374}
2375EXPORT_SYMBOL_GPL(blk_end_request_err);
2376
2377/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002378 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002379 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002380 * @error: %0 for success, < %0 for error
2381 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002382 *
2383 * Description:
2384 * Must be called with queue lock held unlike blk_end_request().
2385 *
2386 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002387 * %false - we are done with this request
2388 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002389 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002390bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002391{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002392 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002393}
Jens Axboe56ad1742009-07-28 22:11:24 +02002394EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002395
2396/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002397 * __blk_end_request_all - Helper function for drives to finish the request.
2398 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002399 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002400 *
2401 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002402 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002403 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002404void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002405{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002406 bool pending;
2407 unsigned int bidi_bytes = 0;
2408
2409 if (unlikely(blk_bidi_rq(rq)))
2410 bidi_bytes = blk_rq_bytes(rq->next_rq);
2411
2412 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2413 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002414}
Jens Axboe56ad1742009-07-28 22:11:24 +02002415EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002416
2417/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002418 * __blk_end_request_cur - Helper function to finish the current request chunk.
2419 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002420 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002421 *
2422 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002423 * Complete the current consecutively mapped chunk from @rq. Must
2424 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002425 *
2426 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002427 * %false - we are done with this request
2428 * %true - still buffers pending for this request
2429 */
2430bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002431{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002432 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002433}
Jens Axboe56ad1742009-07-28 22:11:24 +02002434EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002435
Tejun Heo80a761f2009-07-03 17:48:17 +09002436/**
2437 * __blk_end_request_err - Finish a request till the next failure boundary.
2438 * @rq: the request to finish till the next failure boundary for
2439 * @error: must be negative errno
2440 *
2441 * Description:
2442 * Complete @rq till the next failure boundary. Must be called
2443 * with queue lock held.
2444 *
2445 * Return:
2446 * %false - we are done with this request
2447 * %true - still buffers pending for this request
2448 */
2449bool __blk_end_request_err(struct request *rq, int error)
2450{
2451 WARN_ON(error >= 0);
2452 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2453}
2454EXPORT_SYMBOL_GPL(__blk_end_request_err);
2455
Jens Axboe86db1e22008-01-29 14:53:40 +01002456void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2457 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002459 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002460 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
David Woodhousefb2dce82008-08-05 18:01:53 +01002462 if (bio_has_data(bio)) {
2463 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002464 rq->buffer = bio_data(bio);
2465 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002466 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
NeilBrown66846572007-08-16 13:31:28 +02002469 if (bio->bi_bdev)
2470 rq->rq_disk = bio->bi_bdev->bd_disk;
2471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002473#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2474/**
2475 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2476 * @rq: the request to be flushed
2477 *
2478 * Description:
2479 * Flush all pages in @rq.
2480 */
2481void rq_flush_dcache_pages(struct request *rq)
2482{
2483 struct req_iterator iter;
2484 struct bio_vec *bvec;
2485
2486 rq_for_each_segment(bvec, rq, iter)
2487 flush_dcache_page(bvec->bv_page);
2488}
2489EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2490#endif
2491
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002492/**
2493 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2494 * @q : the queue of the device being checked
2495 *
2496 * Description:
2497 * Check if underlying low-level drivers of a device are busy.
2498 * If the drivers want to export their busy state, they must set own
2499 * exporting function using blk_queue_lld_busy() first.
2500 *
2501 * Basically, this function is used only by request stacking drivers
2502 * to stop dispatching requests to underlying devices when underlying
2503 * devices are busy. This behavior helps more I/O merging on the queue
2504 * of the request stacking driver and prevents I/O throughput regression
2505 * on burst I/O load.
2506 *
2507 * Return:
2508 * 0 - Not busy (The request stacking driver should dispatch request)
2509 * 1 - Busy (The request stacking driver should stop dispatching request)
2510 */
2511int blk_lld_busy(struct request_queue *q)
2512{
2513 if (q->lld_busy_fn)
2514 return q->lld_busy_fn(q);
2515
2516 return 0;
2517}
2518EXPORT_SYMBOL_GPL(blk_lld_busy);
2519
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002520/**
2521 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2522 * @rq: the clone request to be cleaned up
2523 *
2524 * Description:
2525 * Free all bios in @rq for a cloned request.
2526 */
2527void blk_rq_unprep_clone(struct request *rq)
2528{
2529 struct bio *bio;
2530
2531 while ((bio = rq->bio) != NULL) {
2532 rq->bio = bio->bi_next;
2533
2534 bio_put(bio);
2535 }
2536}
2537EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2538
2539/*
2540 * Copy attributes of the original request to the clone request.
2541 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2542 */
2543static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2544{
2545 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002546 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002547 dst->cmd_type = src->cmd_type;
2548 dst->__sector = blk_rq_pos(src);
2549 dst->__data_len = blk_rq_bytes(src);
2550 dst->nr_phys_segments = src->nr_phys_segments;
2551 dst->ioprio = src->ioprio;
2552 dst->extra_len = src->extra_len;
2553}
2554
2555/**
2556 * blk_rq_prep_clone - Helper function to setup clone request
2557 * @rq: the request to be setup
2558 * @rq_src: original request to be cloned
2559 * @bs: bio_set that bios for clone are allocated from
2560 * @gfp_mask: memory allocation mask for bio
2561 * @bio_ctr: setup function to be called for each clone bio.
2562 * Returns %0 for success, non %0 for failure.
2563 * @data: private data to be passed to @bio_ctr
2564 *
2565 * Description:
2566 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2567 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2568 * are not copied, and copying such parts is the caller's responsibility.
2569 * Also, pages which the original bios are pointing to are not copied
2570 * and the cloned bios just point same pages.
2571 * So cloned bios must be completed before original bios, which means
2572 * the caller must complete @rq before @rq_src.
2573 */
2574int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2575 struct bio_set *bs, gfp_t gfp_mask,
2576 int (*bio_ctr)(struct bio *, struct bio *, void *),
2577 void *data)
2578{
2579 struct bio *bio, *bio_src;
2580
2581 if (!bs)
2582 bs = fs_bio_set;
2583
2584 blk_rq_init(NULL, rq);
2585
2586 __rq_for_each_bio(bio_src, rq_src) {
2587 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2588 if (!bio)
2589 goto free_and_out;
2590
2591 __bio_clone(bio, bio_src);
2592
2593 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002594 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002595 goto free_and_out;
2596
2597 if (bio_ctr && bio_ctr(bio, bio_src, data))
2598 goto free_and_out;
2599
2600 if (rq->bio) {
2601 rq->biotail->bi_next = bio;
2602 rq->biotail = bio;
2603 } else
2604 rq->bio = rq->biotail = bio;
2605 }
2606
2607 __blk_rq_prep_clone(rq, rq_src);
2608
2609 return 0;
2610
2611free_and_out:
2612 if (bio)
2613 bio_free(bio, bs);
2614 blk_rq_unprep_clone(rq);
2615
2616 return -ENOMEM;
2617}
2618EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2619
Jens Axboe18887ad2008-07-28 13:08:45 +02002620int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
2622 return queue_work(kblockd_workqueue, work);
2623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624EXPORT_SYMBOL(kblockd_schedule_work);
2625
Vivek Goyale43473b2010-09-15 17:06:35 -04002626int kblockd_schedule_delayed_work(struct request_queue *q,
2627 struct delayed_work *dwork, unsigned long delay)
2628{
2629 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2630}
2631EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633int __init blk_dev_init(void)
2634{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002635 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2636 sizeof(((struct request *)0)->cmd_flags));
2637
Tejun Heo89b90be2011-01-03 15:01:47 +01002638 /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2639 kblockd_workqueue = alloc_workqueue("kblockd",
2640 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (!kblockd_workqueue)
2642 panic("Failed to create kblockd\n");
2643
2644 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002645 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
Jens Axboe8324aa92008-01-29 14:51:59 +01002647 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002648 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 return 0;
2651}