blob: f8548876d7ea03b04c778ae6b71e9363b2186d73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Ingo Molnar0bfc2452008-11-26 11:59:56 +010036EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020037EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080038EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010039
Jens Axboe165125e2007-07-24 09:28:11 +020040static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For the allocated request tables
44 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010045static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * For queue allocation
49 */
Jens Axboe6728cb02008-01-31 13:03:55 +010050struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Controlling structure to kblockd
54 */
Jens Axboeff856ba2006-01-09 16:02:34 +010055static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jens Axboe26b82562008-01-29 13:54:41 +010057static void drive_stat_acct(struct request *rq, int new_io)
58{
Jens Axboe28f13702008-05-07 10:15:46 +020059 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010060 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090061 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010062
Jens Axboec2553b52009-04-24 08:10:11 +020063 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010064 return;
65
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +020067 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jens Axboef253b862010-10-24 22:06:02 +020069 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_inc(cpu, part, merges[rw]);
Jens Axboef253b862010-10-24 22:06:02 +020071 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090072 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020073 part_inc_in_flight(part, rw);
Jens Axboe26b82562008-01-29 13:54:41 +010074 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075
Tejun Heo074a7ac2008-08-25 19:56:14 +090076 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010077}
78
Jens Axboe8324aa92008-01-29 14:51:59 +010079void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int nr;
82
83 nr = q->nr_requests - (q->nr_requests / 8) + 1;
84 if (nr > q->nr_requests)
85 nr = q->nr_requests;
86 q->nr_congestion_on = nr;
87
88 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
89 if (nr < 1)
90 nr = 1;
91 q->nr_congestion_off = nr;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/**
95 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
96 * @bdev: device
97 *
98 * Locates the passed device's request queue and returns the address of its
99 * backing_dev_info
100 *
101 * Will return NULL if the request queue cannot be located.
102 */
103struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
104{
105 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200106 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (q)
109 ret = &q->backing_dev_info;
110 return ret;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(blk_get_backing_dev_info);
113
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200114void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200116 memset(rq, 0, sizeof(*rq));
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700119 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200120 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900122 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200123 INIT_HLIST_NODE(&rq->hash);
124 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200125 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800126 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100128 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900129 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700130 set_start_time_ns(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200132EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
NeilBrown5bb23a62007-09-27 12:46:13 +0200134static void req_bio_endio(struct request *rq, struct bio *bio,
135 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100136{
Jens Axboe165125e2007-07-24 09:28:11 +0200137 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100138
Tejun Heodd4c1332010-09-03 11:56:16 +0200139 if (&q->flush_rq != rq) {
NeilBrown5bb23a62007-09-27 12:46:13 +0200140 if (error)
141 clear_bit(BIO_UPTODATE, &bio->bi_flags);
142 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
143 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100144
NeilBrown5bb23a62007-09-27 12:46:13 +0200145 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100146 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700147 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200148 nbytes = bio->bi_size;
149 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100150
Keith Mannthey08bafc02008-11-25 10:24:35 +0100151 if (unlikely(rq->cmd_flags & REQ_QUIET))
152 set_bit(BIO_QUIET, &bio->bi_flags);
153
NeilBrown5bb23a62007-09-27 12:46:13 +0200154 bio->bi_size -= nbytes;
155 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200156
157 if (bio_integrity(bio))
158 bio_integrity_advance(bio, nbytes);
159
NeilBrown5bb23a62007-09-27 12:46:13 +0200160 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200161 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 } else {
NeilBrown5bb23a62007-09-27 12:46:13 +0200163 /*
Tejun Heodd4c1332010-09-03 11:56:16 +0200164 * Okay, this is the sequenced flush request in
165 * progress, just record the error;
NeilBrown5bb23a62007-09-27 12:46:13 +0200166 */
Tejun Heodd4c1332010-09-03 11:56:16 +0200167 if (error && !q->flush_err)
168 q->flush_err = error;
NeilBrown5bb23a62007-09-27 12:46:13 +0200169 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172void blk_dump_rq_flags(struct request *rq, char *msg)
173{
174 int bit;
175
Jens Axboe6728cb02008-01-31 13:03:55 +0100176 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200177 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
178 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Tejun Heo83096eb2009-05-07 22:24:39 +0900180 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
181 (unsigned long long)blk_rq_pos(rq),
182 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900183 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900184 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200186 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100187 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200188 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 printk("%02x ", rq->cmd[bit]);
190 printk("\n");
191 }
192}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193EXPORT_SYMBOL(blk_dump_rq_flags);
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * "plug" the device if there are no outstanding requests: this will
197 * force the transfer to start only after we have put all the requests
198 * on the list.
199 *
200 * This is called with interrupts off and no requests on the queue and
201 * with the queue lock held.
202 */
Jens Axboe165125e2007-07-24 09:28:11 +0200203void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 WARN_ON(!irqs_disabled());
206
207 /*
208 * don't plug a stopped queue, it must be paired with blk_start_queue()
209 * which will restart the queueing
210 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200211 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return;
213
Jens Axboee48ec692008-07-03 13:18:54 +0200214 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100216 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219EXPORT_SYMBOL(blk_plug_device);
220
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200221/**
222 * blk_plug_device_unlocked - plug a device without queue lock held
223 * @q: The &struct request_queue to plug
224 *
225 * Description:
226 * Like @blk_plug_device(), but grabs the queue lock and disables
227 * interrupts.
228 **/
229void blk_plug_device_unlocked(struct request_queue *q)
230{
231 unsigned long flags;
232
233 spin_lock_irqsave(q->queue_lock, flags);
234 blk_plug_device(q);
235 spin_unlock_irqrestore(q->queue_lock, flags);
236}
237EXPORT_SYMBOL(blk_plug_device_unlocked);
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * remove the queue from the plugged list, if present. called with
241 * queue lock held and interrupts disabled.
242 */
Jens Axboe165125e2007-07-24 09:28:11 +0200243int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 WARN_ON(!irqs_disabled());
246
Jens Axboee48ec692008-07-03 13:18:54 +0200247 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249
250 del_timer(&q->unplug_timer);
251 return 1;
252}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253EXPORT_SYMBOL(blk_remove_plug);
254
255/*
256 * remove the plug and let it rip..
257 */
Jens Axboe165125e2007-07-24 09:28:11 +0200258void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200260 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200262 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return;
264
Jens Axboe22e2c502005-06-27 10:55:12 +0200265 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268/**
269 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200270 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
272 * Description:
273 * Linux uses plugging to build bigger requests queues before letting
274 * the device have at them. If a queue is plugged, the I/O scheduler
275 * is still adding and merging requests on the queue. Once the queue
276 * gets unplugged, the request_fn defined for the queue is invoked and
277 * transfers started.
278 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200279void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200281 if (blk_queue_plugged(q)) {
282 spin_lock_irq(q->queue_lock);
283 __generic_unplug_device(q);
284 spin_unlock_irq(q->queue_lock);
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287EXPORT_SYMBOL(generic_unplug_device);
288
289static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
290 struct page *page)
291{
Jens Axboe165125e2007-07-24 09:28:11 +0200292 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500294 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Jens Axboe86db1e22008-01-29 14:53:40 +0100297void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Jens Axboe165125e2007-07-24 09:28:11 +0200299 struct request_queue *q =
300 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100302 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 q->unplug_fn(q);
304}
305
Jens Axboe86db1e22008-01-29 14:53:40 +0100306void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Jens Axboe165125e2007-07-24 09:28:11 +0200308 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100310 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200311 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500314void blk_unplug(struct request_queue *q)
315{
316 /*
317 * devices don't necessarily have an ->unplug_fn defined
318 */
319 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100320 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500321 q->unplug_fn(q);
322 }
323}
324EXPORT_SYMBOL(blk_unplug);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/**
327 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200328 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 *
330 * Description:
331 * blk_start_queue() will clear the stop flag on the queue, and call
332 * the request_fn for the queue if it was in a stopped state when
333 * entered. Also see blk_stop_queue(). Queue lock must be held.
334 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200335void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200337 WARN_ON(!irqs_disabled());
338
Nick Piggin75ad23b2008-04-29 14:48:33 +0200339 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900340 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342EXPORT_SYMBOL(blk_start_queue);
343
344/**
345 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200346 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 *
348 * Description:
349 * The Linux block layer assumes that a block driver will consume all
350 * entries on the request queue when the request_fn strategy is called.
351 * Often this will not happen, because of hardware limitations (queue
352 * depth settings). If a device driver gets a 'queue full' response,
353 * or if it simply chooses not to queue more I/O at one point, it can
354 * call this function to prevent the request_fn from being called until
355 * the driver has signalled it's ready to go again. This happens by calling
356 * blk_start_queue() to restart queue operations. Queue lock must be held.
357 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200358void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200361 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363EXPORT_SYMBOL(blk_stop_queue);
364
365/**
366 * blk_sync_queue - cancel any pending callbacks on a queue
367 * @q: the queue
368 *
369 * Description:
370 * The block layer may perform asynchronous callback activity
371 * on a queue, such as calling the unplug function after a timeout.
372 * A block device may call blk_sync_queue to ensure that any
373 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200374 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * that its ->make_request_fn will not re-add plugging prior to calling
376 * this function.
377 *
378 */
379void blk_sync_queue(struct request_queue *q)
380{
381 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100382 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100383 cancel_work_sync(&q->unplug_work);
Vivek Goyale43473b2010-09-15 17:06:35 -0400384 throtl_shutdown_timer_wq(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386EXPORT_SYMBOL(blk_sync_queue);
387
388/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200389 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200391 *
392 * Description:
393 * See @blk_run_queue. This variant must be called with the queue lock
394 * held and interrupts disabled.
395 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200397void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200400
Tejun Heoa538cd02009-04-23 11:05:17 +0900401 if (unlikely(blk_queue_stopped(q)))
402 return;
403
404 if (elv_queue_empty(q))
405 return;
406
Jens Axboedac07ec2006-05-11 08:20:16 +0200407 /*
408 * Only recurse once to avoid overrunning the stack, let the unplug
409 * handling reinvoke the handler shortly if we already got there.
410 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900411 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
412 q->request_fn(q);
413 queue_flag_clear(QUEUE_FLAG_REENTER, q);
414 } else {
415 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
416 kblockd_schedule_work(q, &q->unplug_work);
417 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200418}
419EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200420
Nick Piggin75ad23b2008-04-29 14:48:33 +0200421/**
422 * blk_run_queue - run a single device queue
423 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200424 *
425 * Description:
426 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900427 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200428 */
429void blk_run_queue(struct request_queue *q)
430{
431 unsigned long flags;
432
433 spin_lock_irqsave(q->queue_lock, flags);
434 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 spin_unlock_irqrestore(q->queue_lock, flags);
436}
437EXPORT_SYMBOL(blk_run_queue);
438
Jens Axboe165125e2007-07-24 09:28:11 +0200439void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500440{
441 kobject_put(&q->kobj);
442}
Al Viro483f4af2006-03-18 18:34:37 -0500443
Jens Axboe6728cb02008-01-31 13:03:55 +0100444void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500445{
Jens Axboee3335de92008-09-18 09:22:54 -0700446 /*
447 * We know we have process context here, so we can be a little
448 * cautious and ensure that pending block actions on this device
449 * are done before moving on. Going into this function, we should
450 * not have processes doing IO to this device.
451 */
452 blk_sync_queue(q);
453
Matthew Garrett31373d02010-04-06 14:25:14 +0200454 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500455 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200456 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500457 mutex_unlock(&q->sysfs_lock);
458
459 if (q->elevator)
460 elevator_exit(q->elevator);
461
462 blk_put_queue(q);
463}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464EXPORT_SYMBOL(blk_cleanup_queue);
465
Jens Axboe165125e2007-07-24 09:28:11 +0200466static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct request_list *rl = &q->rq;
469
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400470 if (unlikely(rl->rq_pool))
471 return 0;
472
Jens Axboe1faa16d2009-04-06 14:48:01 +0200473 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
474 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200475 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200476 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
477 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Christoph Lameter19460892005-06-23 00:08:19 -0700479 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
480 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 if (!rl->rq_pool)
483 return -ENOMEM;
484
485 return 0;
486}
487
Jens Axboe165125e2007-07-24 09:28:11 +0200488struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Christoph Lameter19460892005-06-23 00:08:19 -0700490 return blk_alloc_queue_node(gfp_mask, -1);
491}
492EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Jens Axboe165125e2007-07-24 09:28:11 +0200494struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700495{
Jens Axboe165125e2007-07-24 09:28:11 +0200496 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700497 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700498
Jens Axboe8324aa92008-01-29 14:51:59 +0100499 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700500 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (!q)
502 return NULL;
503
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700504 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
505 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200506 q->backing_dev_info.ra_pages =
507 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
508 q->backing_dev_info.state = 0;
509 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200510 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200511
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 err = bdi_init(&q->backing_dev_info);
513 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700515 return NULL;
516 }
517
Vivek Goyale43473b2010-09-15 17:06:35 -0400518 if (blk_throtl_init(q)) {
519 kmem_cache_free(blk_requestq_cachep, q);
520 return NULL;
521 }
522
Matthew Garrett31373d02010-04-06 14:25:14 +0200523 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
524 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700526 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
527 INIT_LIST_HEAD(&q->timeout_list);
Tejun Heodd4c1332010-09-03 11:56:16 +0200528 INIT_LIST_HEAD(&q->pending_flushes);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200529 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500530
Jens Axboe8324aa92008-01-29 14:51:59 +0100531 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Al Viro483f4af2006-03-18 18:34:37 -0500533 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700534 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return q;
537}
Christoph Lameter19460892005-06-23 00:08:19 -0700538EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540/**
541 * blk_init_queue - prepare a request queue for use with a block device
542 * @rfn: The function to be called to process requests that have been
543 * placed on the queue.
544 * @lock: Request queue spin lock
545 *
546 * Description:
547 * If a block device wishes to use the standard request handling procedures,
548 * which sorts requests and coalesces adjacent requests, then it must
549 * call blk_init_queue(). The function @rfn will be called when there
550 * are requests on the queue that need to be processed. If the device
551 * supports plugging, then @rfn may not be called immediately when requests
552 * are available on the queue, but may be called at some time later instead.
553 * Plugged queues are generally unplugged when a buffer belonging to one
554 * of the requests on the queue is needed, or due to memory pressure.
555 *
556 * @rfn is not required, or even expected, to remove all requests off the
557 * queue, but only as many as it can handle at a time. If it does leave
558 * requests on the queue, it is responsible for arranging that the requests
559 * get dealt with eventually.
560 *
561 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200562 * request queue; this lock will be taken also from interrupt context, so irq
563 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200565 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * it didn't succeed.
567 *
568 * Note:
569 * blk_init_queue() must be paired with a blk_cleanup_queue() call
570 * when the block device is deactivated (such as at module unload).
571 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700572
Jens Axboe165125e2007-07-24 09:28:11 +0200573struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Christoph Lameter19460892005-06-23 00:08:19 -0700575 return blk_init_queue_node(rfn, lock, -1);
576}
577EXPORT_SYMBOL(blk_init_queue);
578
Jens Axboe165125e2007-07-24 09:28:11 +0200579struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700580blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
581{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600582 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600584 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
585 if (!uninit_q)
586 return NULL;
587
588 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
589 if (!q)
590 blk_cleanup_queue(uninit_q);
591
592 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200593}
594EXPORT_SYMBOL(blk_init_queue_node);
595
596struct request_queue *
597blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
598 spinlock_t *lock)
599{
600 return blk_init_allocated_queue_node(q, rfn, lock, -1);
601}
602EXPORT_SYMBOL(blk_init_allocated_queue);
603
604struct request_queue *
605blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
606 spinlock_t *lock, int node_id)
607{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (!q)
609 return NULL;
610
Christoph Lameter19460892005-06-23 00:08:19 -0700611 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600612 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500613 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 q->prep_rq_fn = NULL;
James Bottomley28018c22010-07-01 19:49:17 +0900617 q->unprep_rq_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100619 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 q->queue_lock = lock;
621
Jens Axboef3b144a2009-03-06 08:48:33 +0100622 /*
623 * This also sets hw/phys segments, boundary and size
624 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Alan Stern44ec9542007-02-20 11:01:57 -0500627 q->sg_reserved_size = INT_MAX;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * all done
631 */
632 if (!elevator_init(q, NULL)) {
633 blk_queue_congestion_threshold(q);
634 return q;
635 }
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return NULL;
638}
Mike Snitzer01effb02010-05-11 08:57:42 +0200639EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Jens Axboe165125e2007-07-24 09:28:11 +0200641int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700643 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500644 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
646 }
647
648 return 1;
649}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Jens Axboe165125e2007-07-24 09:28:11 +0200651static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200653 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200654 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 mempool_free(rq, q->rq.rq_pool);
656}
657
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200658static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200659blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
662
663 if (!rq)
664 return NULL;
665
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200666 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200667
Jerome Marchand42dad762009-04-22 14:01:49 +0200668 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Tejun Heocb98fc82005-10-28 08:29:39 +0200670 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200671 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200672 mempool_free(rq, q->rq.rq_pool);
673 return NULL;
674 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200675 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Tejun Heocb98fc82005-10-28 08:29:39 +0200678 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681/*
682 * ioc_batching returns true if the ioc is a valid batching request and
683 * should be given priority access to a request.
684 */
Jens Axboe165125e2007-07-24 09:28:11 +0200685static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 if (!ioc)
688 return 0;
689
690 /*
691 * Make sure the process is able to allocate at least 1 request
692 * even if the batch times out, otherwise we could theoretically
693 * lose wakeups.
694 */
695 return ioc->nr_batch_requests == q->nr_batching ||
696 (ioc->nr_batch_requests > 0
697 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
698}
699
700/*
701 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
702 * will cause the process to be a "batcher" on all queues in the system. This
703 * is the behaviour we want though - once it gets a wakeup it should be given
704 * a nice run.
705 */
Jens Axboe165125e2007-07-24 09:28:11 +0200706static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 if (!ioc || ioc_batching(q, ioc))
709 return;
710
711 ioc->nr_batch_requests = q->nr_batching;
712 ioc->last_waited = jiffies;
713}
714
Jens Axboe1faa16d2009-04-06 14:48:01 +0200715static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct request_list *rl = &q->rq;
718
Jens Axboe1faa16d2009-04-06 14:48:01 +0200719 if (rl->count[sync] < queue_congestion_off_threshold(q))
720 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Jens Axboe1faa16d2009-04-06 14:48:01 +0200722 if (rl->count[sync] + 1 <= q->nr_requests) {
723 if (waitqueue_active(&rl->wait[sync]))
724 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Jens Axboe1faa16d2009-04-06 14:48:01 +0200726 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728}
729
730/*
731 * A request has just been released. Account for it, update the full and
732 * congestion status, wake up any waiters. Called under q->queue_lock.
733 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200734static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 struct request_list *rl = &q->rq;
737
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200739 if (priv)
740 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jens Axboe1faa16d2009-04-06 14:48:01 +0200742 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jens Axboe1faa16d2009-04-06 14:48:01 +0200744 if (unlikely(rl->starved[sync ^ 1]))
745 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/*
Nick Piggind6344532005-06-28 20:45:14 -0700749 * Get a free request, queue_lock must be held.
750 * Returns NULL on failure, with queue_lock held.
751 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
Jens Axboe165125e2007-07-24 09:28:11 +0200753static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100754 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 struct request *rq = NULL;
757 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100758 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200759 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100760 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Jens Axboe7749a8d2006-12-13 13:02:26 +0100762 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100763 if (may_queue == ELV_MQUEUE_NO)
764 goto rq_starved;
765
Jens Axboe1faa16d2009-04-06 14:48:01 +0200766 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
767 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200768 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100769 /*
770 * The queue will fill after this allocation, so set
771 * it as full, and mark this process as "batching".
772 * This process will be allowed to complete a batch of
773 * requests, others will be blocked.
774 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200775 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100776 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200777 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100778 } else {
779 if (may_queue != ELV_MQUEUE_MUST
780 && !ioc_batching(q, ioc)) {
781 /*
782 * The queue is full and the allocating
783 * process is not a "batcher", and not
784 * exempted by the IO scheduler
785 */
786 goto out;
787 }
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200790 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
Jens Axboe082cf692005-06-28 16:35:11 +0200793 /*
794 * Only allow batching queuers to allocate up to 50% over the defined
795 * limit of requests, otherwise we could have thousands of requests
796 * allocated with any setting of ->nr_requests
797 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200798 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200799 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100800
Jens Axboe1faa16d2009-04-06 14:48:01 +0200801 rl->count[is_sync]++;
802 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200803
Jens Axboe64521d12005-10-28 08:30:39 +0200804 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Jens Axboef253b862010-10-24 22:06:02 +0200805 if (priv)
Tejun Heocb98fc82005-10-28 08:29:39 +0200806 rl->elvpriv++;
807
Jens Axboef253b862010-10-24 22:06:02 +0200808 if (blk_queue_io_stat(q))
809 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 spin_unlock_irq(q->queue_lock);
811
Jens Axboe7749a8d2006-12-13 13:02:26 +0100812 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100813 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
815 * Allocation failed presumably due to memory. Undo anything
816 * we might have messed up.
817 *
818 * Allocating task should really be put onto the front of the
819 * wait queue, but this is pretty rare.
820 */
821 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200822 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /*
825 * in the very unlikely event that allocation failed and no
826 * requests for this direction was pending, mark us starved
827 * so that freeing of a request in the other direction will
828 * notice us. another possible fix would be to split the
829 * rq mempool into READ and WRITE
830 */
831rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200832 if (unlikely(rl->count[is_sync] == 0))
833 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 goto out;
836 }
837
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100838 /*
839 * ioc may be NULL here, and ioc_batching will be false. That's
840 * OK, if the queue is under the request limit then requests need
841 * not count toward the nr_batch_requests limit. There will always
842 * be some limit enforced by BLK_BATCH_TIME.
843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (ioc_batching(q, ioc))
845 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100846
Jens Axboe1faa16d2009-04-06 14:48:01 +0200847 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return rq;
850}
851
852/*
853 * No available requests for this queue, unplug the device and wait for some
854 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700855 *
856 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
Jens Axboe165125e2007-07-24 09:28:11 +0200858static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200859 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200861 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct request *rq;
863
Jens Axboe7749a8d2006-12-13 13:02:26 +0100864 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700865 while (!rq) {
866 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200867 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct request_list *rl = &q->rq;
869
Jens Axboe1faa16d2009-04-06 14:48:01 +0200870 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 TASK_UNINTERRUPTIBLE);
872
Jens Axboe1faa16d2009-04-06 14:48:01 +0200873 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200875 __generic_unplug_device(q);
876 spin_unlock_irq(q->queue_lock);
877 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200879 /*
880 * After sleeping, we become a "batching" process and
881 * will be able to allocate at least one request, and
882 * up to a big batch of them for a small period time.
883 * See ioc_batching, ioc_set_batching
884 */
885 ioc = current_io_context(GFP_NOIO, q->node);
886 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100887
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200888 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200889 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200890
891 rq = get_request(q, rw_flags, bio, GFP_NOIO);
892 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 return rq;
895}
896
Jens Axboe165125e2007-07-24 09:28:11 +0200897struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct request *rq;
900
901 BUG_ON(rw != READ && rw != WRITE);
902
Nick Piggind6344532005-06-28 20:45:14 -0700903 spin_lock_irq(q->queue_lock);
904 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200905 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700906 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200907 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700908 if (!rq)
909 spin_unlock_irq(q->queue_lock);
910 }
911 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 return rq;
914}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915EXPORT_SYMBOL(blk_get_request);
916
917/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300918 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700919 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300920 * @bio: The bio describing the memory mappings that will be submitted for IO.
921 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700922 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200923 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300924 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
925 * type commands. Where the struct request needs to be farther initialized by
926 * the caller. It is passed a &struct bio, which describes the memory info of
927 * the I/O transfer.
928 *
929 * The caller of blk_make_request must make sure that bi_io_vec
930 * are set to describe the memory buffers. That bio_data_dir() will return
931 * the needed direction of the request. (And all bio's in the passed bio-chain
932 * are properly set accordingly)
933 *
934 * If called under none-sleepable conditions, mapped bio buffers must not
935 * need bouncing, by calling the appropriate masked or flagged allocator,
936 * suitable for the target device. Otherwise the call to blk_queue_bounce will
937 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200938 *
939 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
940 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
941 * anything but the first bio in the chain. Otherwise you risk waiting for IO
942 * completion of a bio that hasn't been submitted yet, thus resulting in a
943 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
944 * of bio_alloc(), as that avoids the mempool deadlock.
945 * If possible a big IO should be split into smaller parts when allocation
946 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200947 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300948struct request *blk_make_request(struct request_queue *q, struct bio *bio,
949 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200950{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300951 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
952
953 if (unlikely(!rq))
954 return ERR_PTR(-ENOMEM);
955
956 for_each_bio(bio) {
957 struct bio *bounce_bio = bio;
958 int ret;
959
960 blk_queue_bounce(q, &bounce_bio);
961 ret = blk_rq_append_bio(q, rq, bounce_bio);
962 if (unlikely(ret)) {
963 blk_put_request(rq);
964 return ERR_PTR(ret);
965 }
966 }
967
968 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200969}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300970EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200971
972/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 * blk_requeue_request - put a request back on queue
974 * @q: request queue where request should be inserted
975 * @rq: request to be inserted
976 *
977 * Description:
978 * Drivers often keep queueing requests until the hardware cannot accept
979 * more, when that condition happens we need to put the request back
980 * on the queue. Must be called with queue lock held.
981 */
Jens Axboe165125e2007-07-24 09:28:11 +0200982void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700984 blk_delete_timer(rq);
985 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100986 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (blk_rq_tagged(rq))
989 blk_queue_end_tag(q, rq);
990
James Bottomleyba396a62009-05-27 14:17:08 +0200991 BUG_ON(blk_queued_rq(rq));
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 elv_requeue_request(q, rq);
994}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995EXPORT_SYMBOL(blk_requeue_request);
996
997/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200998 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 * @q: request queue where request should be inserted
1000 * @rq: request to be inserted
1001 * @at_head: insert request at head or tail of queue
1002 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 *
1004 * Description:
1005 * Many block devices need to execute commands asynchronously, so they don't
1006 * block the whole kernel from preemption during request execution. This is
1007 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001008 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1009 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 *
1011 * We have the option of inserting the head or the tail of the queue.
1012 * Typically we use the tail for new ioctls and so forth. We use the head
1013 * of the queue for things like a QUEUE_FULL message from a device, or a
1014 * host that is unable to accept a particular command.
1015 */
Jens Axboe165125e2007-07-24 09:28:11 +02001016void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001017 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Tejun Heo 867d1192005-04-24 02:06:05 -05001019 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 unsigned long flags;
1021
1022 /*
1023 * tell I/O scheduler that this isn't a regular read/write (ie it
1024 * must not attempt merges on this) and that it acts as a soft
1025 * barrier
1026 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001027 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 rq->special = data;
1030
1031 spin_lock_irqsave(q->queue_lock, flags);
1032
1033 /*
1034 * If command is tagged, release the tag
1035 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001036 if (blk_rq_tagged(rq))
1037 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001039 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001040 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001041 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 spin_unlock_irqrestore(q->queue_lock, flags);
1043}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044EXPORT_SYMBOL(blk_insert_request);
1045
Tejun Heo074a7ac2008-08-25 19:56:14 +09001046static void part_round_stats_single(int cpu, struct hd_struct *part,
1047 unsigned long now)
1048{
1049 if (now == part->stamp)
1050 return;
1051
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001052 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001053 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001054 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001055 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1056 }
1057 part->stamp = now;
1058}
1059
1060/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001061 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1062 * @cpu: cpu number for stats access
1063 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 *
1065 * The average IO queue length and utilisation statistics are maintained
1066 * by observing the current state of the queue length and the amount of
1067 * time it has been in this state for.
1068 *
1069 * Normally, that accounting is done on IO completion, but that can result
1070 * in more than a second's worth of IO being accounted for within any one
1071 * second, leading to >100% utilisation. To deal with that, we call this
1072 * function to do a round-off before returning the results when reading
1073 * /proc/diskstats. This accounts immediately for all queue usage up to
1074 * the current jiffies and restarts the counters again.
1075 */
Tejun Heoc9959052008-08-25 19:47:21 +09001076void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001077{
1078 unsigned long now = jiffies;
1079
Tejun Heo074a7ac2008-08-25 19:56:14 +09001080 if (part->partno)
1081 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1082 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001083}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001084EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086/*
1087 * queue lock must be held
1088 */
Jens Axboe165125e2007-07-24 09:28:11 +02001089void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (unlikely(!q))
1092 return;
1093 if (unlikely(--req->ref_count))
1094 return;
1095
Tejun Heo8922e162005-10-20 16:23:44 +02001096 elv_completed_request(q, req);
1097
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001098 /* this is a bio leak */
1099 WARN_ON(req->bio != NULL);
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
1102 * Request may not have originated from ll_rw_blk. if not,
1103 * it didn't come out of our reserved rq pools
1104 */
Jens Axboe49171e52006-08-10 08:59:11 +02001105 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001106 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001107 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001110 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001113 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001116EXPORT_SYMBOL_GPL(__blk_put_request);
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118void blk_put_request(struct request *req)
1119{
Tejun Heo8922e162005-10-20 16:23:44 +02001120 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001121 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001123 spin_lock_irqsave(q->queue_lock, flags);
1124 __blk_put_request(q, req);
1125 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127EXPORT_SYMBOL(blk_put_request);
1128
Christoph Hellwig66ac0282010-06-18 16:59:42 +02001129/**
1130 * blk_add_request_payload - add a payload to a request
1131 * @rq: request to update
1132 * @page: page backing the payload
1133 * @len: length of the payload.
1134 *
1135 * This allows to later add a payload to an already submitted request by
1136 * a block driver. The driver needs to take care of freeing the payload
1137 * itself.
1138 *
1139 * Note that this is a quite horrible hack and nothing but handling of
1140 * discard requests should ever use it.
1141 */
1142void blk_add_request_payload(struct request *rq, struct page *page,
1143 unsigned int len)
1144{
1145 struct bio *bio = rq->bio;
1146
1147 bio->bi_io_vec->bv_page = page;
1148 bio->bi_io_vec->bv_offset = 0;
1149 bio->bi_io_vec->bv_len = len;
1150
1151 bio->bi_size = len;
1152 bio->bi_vcnt = 1;
1153 bio->bi_phys_segments = 1;
1154
1155 rq->__data_len = rq->resid_len = len;
1156 rq->nr_phys_segments = 1;
1157 rq->buffer = bio_data(bio);
1158}
1159EXPORT_SYMBOL_GPL(blk_add_request_payload);
1160
Jens Axboe86db1e22008-01-29 14:53:40 +01001161void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001162{
Jens Axboec7c22e42008-09-13 20:26:01 +02001163 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001164 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001165
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001166 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1167 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001168 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001169
Tejun Heo52d9e672006-01-06 09:49:58 +01001170 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001171 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001172 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001173 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001174}
1175
Jens Axboe644b2d92009-04-06 14:48:06 +02001176/*
1177 * Only disabling plugging for non-rotational devices if it does tagging
1178 * as well, otherwise we do need the proper merging
1179 */
1180static inline bool queue_should_plug(struct request_queue *q)
1181{
Jens Axboe79da06442010-02-23 08:40:43 +01001182 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001183}
1184
Jens Axboe165125e2007-07-24 09:28:11 +02001185static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Nick Piggin450991b2005-06-28 20:45:13 -07001187 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001188 int el_ret;
1189 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001190 const unsigned short prio = bio_prio(bio);
Jiri Slaby5e00d1b2010-08-12 14:31:06 +02001191 const bool sync = !!(bio->bi_rw & REQ_SYNC);
1192 const bool unplug = !!(bio->bi_rw & REQ_UNPLUG);
1193 const unsigned long ff = bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo28e7d182010-09-03 11:56:16 +02001194 int where = ELEVATOR_INSERT_SORT;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001195 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Tejun Heo4913efe2010-09-03 11:56:16 +02001197 /* REQ_HARDBARRIER is no more */
1198 if (WARN_ONCE(bio->bi_rw & REQ_HARDBARRIER,
1199 "block: HARDBARRIER is deprecated, use FLUSH/FUA instead\n")) {
NeilBrowndb64f682009-06-30 09:35:44 +02001200 bio_endio(bio, -EOPNOTSUPP);
1201 return 0;
1202 }
Tejun Heo4913efe2010-09-03 11:56:16 +02001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /*
1205 * low level driver can indicate that it wants pages above a
1206 * certain limit bounced to low memory (ie for highmem, or even
1207 * ISA dma in theory)
1208 */
1209 blk_queue_bounce(q, &bio);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 spin_lock_irq(q->queue_lock);
1212
Tejun Heo4fed9472010-09-03 11:56:17 +02001213 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
Tejun Heo28e7d182010-09-03 11:56:16 +02001214 where = ELEVATOR_INSERT_FRONT;
1215 goto get_rq;
1216 }
1217
1218 if (elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 goto get_rq;
1220
1221 el_ret = elv_merge(q, &req, bio);
1222 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001223 case ELEVATOR_BACK_MERGE:
1224 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Jens Axboe6728cb02008-01-31 13:03:55 +01001226 if (!ll_back_merge_fn(q, req, bio))
1227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001229 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001230
Tejun Heo80a761f2009-07-03 17:48:17 +09001231 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1232 blk_rq_set_mixed_merge(req);
1233
Jens Axboe6728cb02008-01-31 13:03:55 +01001234 req->biotail->bi_next = bio;
1235 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001236 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001237 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001238 if (!blk_rq_cpu_valid(req))
1239 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001240 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001241 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001242 if (!attempt_back_merge(q, req))
1243 elv_merged_request(q, req, el_ret);
1244 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jens Axboe6728cb02008-01-31 13:03:55 +01001246 case ELEVATOR_FRONT_MERGE:
1247 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Jens Axboe6728cb02008-01-31 13:03:55 +01001249 if (!ll_front_merge_fn(q, req, bio))
1250 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001252 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001253
Tejun Heo80a761f2009-07-03 17:48:17 +09001254 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1255 blk_rq_set_mixed_merge(req);
1256 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1257 req->cmd_flags |= ff;
1258 }
1259
Jens Axboe6728cb02008-01-31 13:03:55 +01001260 bio->bi_next = req->bio;
1261 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Jens Axboe6728cb02008-01-31 13:03:55 +01001263 /*
1264 * may not be valid. if the low level driver said
1265 * it didn't need a bounce buffer then it better
1266 * not touch req->buffer either...
1267 */
1268 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001269 req->__sector = bio->bi_sector;
1270 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001271 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001272 if (!blk_rq_cpu_valid(req))
1273 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001274 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001275 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001276 if (!attempt_front_merge(q, req))
1277 elv_merged_request(q, req, el_ret);
1278 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Jens Axboe6728cb02008-01-31 13:03:55 +01001280 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1281 default:
1282 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001286 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001287 * This sync check and mask will be re-done in init_request_from_bio(),
1288 * but we need to set it earlier to expose the sync flag to the
1289 * rq allocator and io schedulers.
1290 */
1291 rw_flags = bio_data_dir(bio);
1292 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001293 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001294
1295 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001296 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001297 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001298 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001299 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001300
Nick Piggin450991b2005-06-28 20:45:13 -07001301 /*
1302 * After dropping the lock and possibly sleeping here, our request
1303 * may now be mergeable after it had proven unmergeable (above).
1304 * We don't worry about that case for efficiency. It won't happen
1305 * often, and the elevators are able to handle it.
1306 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001307 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Nick Piggin450991b2005-06-28 20:45:13 -07001309 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001310 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1311 bio_flagged(bio, BIO_CPU_AFFINE))
1312 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001313 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001314 blk_plug_device(q);
Tejun Heodd831002010-09-03 11:56:16 +02001315
1316 /* insert the request into the elevator */
1317 drive_stat_acct(req, 1);
Tejun Heo28e7d182010-09-03 11:56:16 +02001318 __elv_add_request(q, req, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001320 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 spin_unlock_irq(q->queue_lock);
1323 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
1326/*
1327 * If bio->bi_dev is a partition, remap the location
1328 */
1329static inline void blk_partition_remap(struct bio *bio)
1330{
1331 struct block_device *bdev = bio->bi_bdev;
1332
Jens Axboebf2de6f2007-09-27 13:01:25 +02001333 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 bio->bi_sector += p->start_sect;
1337 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001338
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001339 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001340 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001341 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343}
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345static void handle_bad_sector(struct bio *bio)
1346{
1347 char b[BDEVNAME_SIZE];
1348
1349 printk(KERN_INFO "attempt to access beyond end of device\n");
1350 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1351 bdevname(bio->bi_bdev, b),
1352 bio->bi_rw,
1353 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1354 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1355
1356 set_bit(BIO_EOF, &bio->bi_flags);
1357}
1358
Akinobu Mitac17bb492006-12-08 02:39:46 -08001359#ifdef CONFIG_FAIL_MAKE_REQUEST
1360
1361static DECLARE_FAULT_ATTR(fail_make_request);
1362
1363static int __init setup_fail_make_request(char *str)
1364{
1365 return setup_fault_attr(&fail_make_request, str);
1366}
1367__setup("fail_make_request=", setup_fail_make_request);
1368
1369static int should_fail_request(struct bio *bio)
1370{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001371 struct hd_struct *part = bio->bi_bdev->bd_part;
1372
1373 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001374 return should_fail(&fail_make_request, bio->bi_size);
1375
1376 return 0;
1377}
1378
1379static int __init fail_make_request_debugfs(void)
1380{
1381 return init_fault_attr_dentries(&fail_make_request,
1382 "fail_make_request");
1383}
1384
1385late_initcall(fail_make_request_debugfs);
1386
1387#else /* CONFIG_FAIL_MAKE_REQUEST */
1388
1389static inline int should_fail_request(struct bio *bio)
1390{
1391 return 0;
1392}
1393
1394#endif /* CONFIG_FAIL_MAKE_REQUEST */
1395
Jens Axboec07e2b42007-07-18 13:27:58 +02001396/*
1397 * Check whether this bio extends beyond the end of the device.
1398 */
1399static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1400{
1401 sector_t maxsector;
1402
1403 if (!nr_sectors)
1404 return 0;
1405
1406 /* Test device or partition size, when known. */
1407 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1408 if (maxsector) {
1409 sector_t sector = bio->bi_sector;
1410
1411 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1412 /*
1413 * This may well happen - the kernel calls bread()
1414 * without checking the size of the device, e.g., when
1415 * mounting a device.
1416 */
1417 handle_bad_sector(bio);
1418 return 1;
1419 }
1420 }
1421
1422 return 0;
1423}
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001426 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 * @bio: The bio describing the location in memory and on the device.
1428 *
1429 * generic_make_request() is used to make I/O requests of block
1430 * devices. It is passed a &struct bio, which describes the I/O that needs
1431 * to be done.
1432 *
1433 * generic_make_request() does not return any status. The
1434 * success/failure status of the request, along with notification of
1435 * completion, is delivered asynchronously through the bio->bi_end_io
1436 * function described (one day) else where.
1437 *
1438 * The caller of generic_make_request must make sure that bi_io_vec
1439 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1440 * set to describe the device address, and the
1441 * bi_end_io and optionally bi_private are set to describe how
1442 * completion notification should be signaled.
1443 *
1444 * generic_make_request and the drivers it calls may use bi_next if this
1445 * bio happens to be merged with someone else, and may change bi_dev and
1446 * bi_sector for remaps as it sees fit. So the values of these fields
1447 * should NOT be depended on after the call to generic_make_request.
1448 */
Neil Brownd89d8792007-05-01 09:53:42 +02001449static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Jens Axboe165125e2007-07-24 09:28:11 +02001451 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001452 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001454 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001455 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Jens Axboec07e2b42007-07-18 13:27:58 +02001459 if (bio_check_eod(bio, nr_sectors))
1460 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /*
1463 * Resolve the mapping until finished. (drivers are
1464 * still free to implement/resolve their own stacking
1465 * by explicitly returning 0)
1466 *
1467 * NOTE: we don't repeat the blk_size check for each new device.
1468 * Stacking drivers are expected to know what they are doing.
1469 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001470 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001471 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 do {
1473 char b[BDEVNAME_SIZE];
1474
1475 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001476 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 printk(KERN_ERR
1478 "generic_make_request: Trying to access "
1479 "nonexistent block-device %s (%Lu)\n",
1480 bdevname(bio->bi_bdev, b),
1481 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001482 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001485 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001486 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001487 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001488 bdevname(bio->bi_bdev, b),
1489 bio_sectors(bio),
1490 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 goto end_io;
1492 }
1493
Nick Pigginfde6ad22005-06-23 00:08:53 -07001494 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 goto end_io;
1496
Akinobu Mitac17bb492006-12-08 02:39:46 -08001497 if (should_fail_request(bio))
1498 goto end_io;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 /*
1501 * If this device has partitions, remap block n
1502 * of partition p to block n+start(p) of the disk.
1503 */
1504 blk_partition_remap(bio);
1505
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001506 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1507 goto end_io;
1508
NeilBrown5ddfe962006-10-30 22:07:21 -08001509 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001510 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001511
NeilBrown5ddfe962006-10-30 22:07:21 -08001512 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001513 old_dev = bio->bi_bdev->bd_dev;
1514
Jens Axboec07e2b42007-07-18 13:27:58 +02001515 if (bio_check_eod(bio, nr_sectors))
1516 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001517
Tejun Heo1e879012010-09-03 11:56:17 +02001518 /*
1519 * Filter flush bio's early so that make_request based
1520 * drivers without flush support don't have to worry
1521 * about them.
1522 */
1523 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1524 bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1525 if (!nr_sectors) {
1526 err = 0;
1527 goto end_io;
1528 }
1529 }
1530
Adrian Hunter8d57a982010-08-11 14:17:49 -07001531 if ((bio->bi_rw & REQ_DISCARD) &&
1532 (!blk_queue_discard(q) ||
1533 ((bio->bi_rw & REQ_SECURE) &&
1534 !blk_queue_secdiscard(q)))) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001535 err = -EOPNOTSUPP;
1536 goto end_io;
1537 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001538
Vivek Goyale43473b2010-09-15 17:06:35 -04001539 blk_throtl_bio(q, &bio);
1540
1541 /*
1542 * If bio = NULL, bio has been throttled and will be submitted
1543 * later.
1544 */
1545 if (!bio)
1546 break;
1547
Minchan Kim01edede2009-09-08 21:56:38 +02001548 trace_block_bio_queue(q, bio);
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 ret = q->make_request_fn(q, bio);
1551 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001552
1553 return;
1554
1555end_io:
1556 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Neil Brownd89d8792007-05-01 09:53:42 +02001559/*
1560 * We only want one ->make_request_fn to be active at a time,
1561 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001562 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001563 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001564 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001565 * generic_make_request is currently active in this task or not.
1566 * If it is NULL, then no make_request is active. If it is non-NULL,
1567 * then a make_request is active, and new requests should be added
1568 * at the tail
1569 */
1570void generic_make_request(struct bio *bio)
1571{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001572 struct bio_list bio_list_on_stack;
1573
1574 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001575 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001576 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001577 return;
1578 }
1579 /* following loop may be a bit non-obvious, and so deserves some
1580 * explanation.
1581 * Before entering the loop, bio->bi_next is NULL (as all callers
1582 * ensure that) so we have a list with a single bio.
1583 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001584 * we assign bio_list to a pointer to the bio_list_on_stack,
1585 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001586 * added. __generic_make_request may indeed add some more bios
1587 * through a recursive call to generic_make_request. If it
1588 * did, we find a non-NULL value in bio_list and re-enter the loop
1589 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001590 * of the top of the list (no pretending) and so remove it from
1591 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001592 *
1593 * The loop was structured like this to make only one call to
1594 * __generic_make_request (which is important as it is large and
1595 * inlined) and to keep the structure simple.
1596 */
1597 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001598 bio_list_init(&bio_list_on_stack);
1599 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001600 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001601 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001602 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001603 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001604 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606EXPORT_SYMBOL(generic_make_request);
1607
1608/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001609 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1611 * @bio: The &struct bio which describes the I/O
1612 *
1613 * submit_bio() is very similar in purpose to generic_make_request(), and
1614 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001615 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
1617 */
1618void submit_bio(int rw, struct bio *bio)
1619{
1620 int count = bio_sectors(bio);
1621
Jens Axboe22e2c502005-06-27 10:55:12 +02001622 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Jens Axboebf2de6f2007-09-27 13:01:25 +02001624 /*
1625 * If it's a regular read/write or a barrier with data attached,
1626 * go through the normal accounting stuff before submission.
1627 */
Jens Axboe3ffb52e2010-06-29 13:33:38 +02001628 if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001629 if (rw & WRITE) {
1630 count_vm_events(PGPGOUT, count);
1631 } else {
1632 task_io_account_read(bio->bi_size);
1633 count_vm_events(PGPGIN, count);
1634 }
1635
1636 if (unlikely(block_dump)) {
1637 char b[BDEVNAME_SIZE];
San Mehat8dcbdc72010-09-14 08:48:01 +02001638 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001639 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001640 (rw & WRITE) ? "WRITE" : "READ",
1641 (unsigned long long)bio->bi_sector,
San Mehat8dcbdc72010-09-14 08:48:01 +02001642 bdevname(bio->bi_bdev, b),
1643 count);
Jens Axboebf2de6f2007-09-27 13:01:25 +02001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
1647 generic_make_request(bio);
1648}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649EXPORT_SYMBOL(submit_bio);
1650
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001651/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001652 * blk_rq_check_limits - Helper function to check a request for the queue limit
1653 * @q: the queue
1654 * @rq: the request being checked
1655 *
1656 * Description:
1657 * @rq may have been made based on weaker limitations of upper-level queues
1658 * in request stacking drivers, and it may violate the limitation of @q.
1659 * Since the block layer and the underlying device driver trust @rq
1660 * after it is inserted to @q, it should be checked against @q before
1661 * the insertion using this generic function.
1662 *
1663 * This function should also be useful for request stacking drivers
1664 * in some cases below, so export this fuction.
1665 * Request stacking drivers like request-based dm may change the queue
1666 * limits while requests are in the queue (e.g. dm's table swapping).
1667 * Such request stacking drivers should check those requests agaist
1668 * the new queue limits again when they dispatch those requests,
1669 * although such checkings are also done against the old queue limits
1670 * when submitting requests.
1671 */
1672int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1673{
ike Snitzer33839772010-08-08 12:11:33 -04001674 if (rq->cmd_flags & REQ_DISCARD)
1675 return 0;
1676
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001677 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1678 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001679 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1680 return -EIO;
1681 }
1682
1683 /*
1684 * queue's settings related to segment counting like q->bounce_pfn
1685 * may differ from that of other stacking queues.
1686 * Recalculate it to check the request correctly on this queue's
1687 * limitation.
1688 */
1689 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001690 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001691 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1692 return -EIO;
1693 }
1694
1695 return 0;
1696}
1697EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1698
1699/**
1700 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1701 * @q: the queue to submit the request
1702 * @rq: the request being queued
1703 */
1704int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1705{
1706 unsigned long flags;
1707
1708 if (blk_rq_check_limits(q, rq))
1709 return -EIO;
1710
1711#ifdef CONFIG_FAIL_MAKE_REQUEST
1712 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1713 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1714 return -EIO;
1715#endif
1716
1717 spin_lock_irqsave(q->queue_lock, flags);
1718
1719 /*
1720 * Submitting request must be dequeued before calling this function
1721 * because it will be linked to another request_queue
1722 */
1723 BUG_ON(blk_queued_rq(rq));
1724
1725 drive_stat_acct(rq, 1);
1726 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1727
1728 spin_unlock_irqrestore(q->queue_lock, flags);
1729
1730 return 0;
1731}
1732EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1733
Tejun Heo80a761f2009-07-03 17:48:17 +09001734/**
1735 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1736 * @rq: request to examine
1737 *
1738 * Description:
1739 * A request could be merge of IOs which require different failure
1740 * handling. This function determines the number of bytes which
1741 * can be failed from the beginning of the request without
1742 * crossing into area which need to be retried further.
1743 *
1744 * Return:
1745 * The number of bytes to fail.
1746 *
1747 * Context:
1748 * queue_lock must be held.
1749 */
1750unsigned int blk_rq_err_bytes(const struct request *rq)
1751{
1752 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1753 unsigned int bytes = 0;
1754 struct bio *bio;
1755
1756 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1757 return blk_rq_bytes(rq);
1758
1759 /*
1760 * Currently the only 'mixing' which can happen is between
1761 * different fastfail types. We can safely fail portions
1762 * which have all the failfast bits that the first one has -
1763 * the ones which are at least as eager to fail as the first
1764 * one.
1765 */
1766 for (bio = rq->bio; bio; bio = bio->bi_next) {
1767 if ((bio->bi_rw & ff) != ff)
1768 break;
1769 bytes += bio->bi_size;
1770 }
1771
1772 /* this could lead to infinite loop */
1773 BUG_ON(blk_rq_bytes(rq) && !bytes);
1774 return bytes;
1775}
1776EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1777
Jens Axboebc58ba92009-01-23 10:54:44 +01001778static void blk_account_io_completion(struct request *req, unsigned int bytes)
1779{
Jens Axboec2553b52009-04-24 08:10:11 +02001780 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001781 const int rw = rq_data_dir(req);
1782 struct hd_struct *part;
1783 int cpu;
1784
1785 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001786 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001787 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1788 part_stat_unlock();
1789 }
1790}
1791
1792static void blk_account_io_done(struct request *req)
1793{
Jens Axboebc58ba92009-01-23 10:54:44 +01001794 /*
Tejun Heodd4c1332010-09-03 11:56:16 +02001795 * Account IO completion. flush_rq isn't accounted as a
1796 * normal IO on queueing nor completion. Accounting the
1797 * containing request is enough.
Jens Axboebc58ba92009-01-23 10:54:44 +01001798 */
Tejun Heodd4c1332010-09-03 11:56:16 +02001799 if (blk_do_io_stat(req) && req != &req->q->flush_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001800 unsigned long duration = jiffies - req->start_time;
1801 const int rw = rq_data_dir(req);
1802 struct hd_struct *part;
1803 int cpu;
1804
1805 cpu = part_stat_lock();
Jens Axboef253b862010-10-24 22:06:02 +02001806 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001807
1808 part_stat_inc(cpu, part, ios[rw]);
1809 part_stat_add(cpu, part, ticks[rw], duration);
1810 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001811 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001812
1813 part_stat_unlock();
1814 }
1815}
1816
Tejun Heo53a08802008-12-03 12:41:26 +01001817/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001818 * blk_peek_request - peek at the top of a request queue
1819 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001820 *
1821 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001822 * Return the request at the top of @q. The returned request
1823 * should be started using blk_start_request() before LLD starts
1824 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001825 *
1826 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001827 * Pointer to the request at the top of @q if available. Null
1828 * otherwise.
1829 *
1830 * Context:
1831 * queue_lock must be held.
1832 */
1833struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001834{
1835 struct request *rq;
1836 int ret;
1837
1838 while ((rq = __elv_next_request(q)) != NULL) {
1839 if (!(rq->cmd_flags & REQ_STARTED)) {
1840 /*
1841 * This is the first time the device driver
1842 * sees this request (possibly after
1843 * requeueing). Notify IO scheduler.
1844 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001845 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001846 elv_activate_rq(q, rq);
1847
1848 /*
1849 * just mark as started even if we don't start
1850 * it, a request that has been delayed should
1851 * not be passed by new incoming requests
1852 */
1853 rq->cmd_flags |= REQ_STARTED;
1854 trace_block_rq_issue(q, rq);
1855 }
1856
1857 if (!q->boundary_rq || q->boundary_rq == rq) {
1858 q->end_sector = rq_end_sector(rq);
1859 q->boundary_rq = NULL;
1860 }
1861
1862 if (rq->cmd_flags & REQ_DONTPREP)
1863 break;
1864
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001865 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001866 /*
1867 * make sure space for the drain appears we
1868 * know we can do this because max_hw_segments
1869 * has been adjusted to be one fewer than the
1870 * device can handle
1871 */
1872 rq->nr_phys_segments++;
1873 }
1874
1875 if (!q->prep_rq_fn)
1876 break;
1877
1878 ret = q->prep_rq_fn(q, rq);
1879 if (ret == BLKPREP_OK) {
1880 break;
1881 } else if (ret == BLKPREP_DEFER) {
1882 /*
1883 * the request may have been (partially) prepped.
1884 * we need to keep this request in the front to
1885 * avoid resource deadlock. REQ_STARTED will
1886 * prevent other fs requests from passing this one.
1887 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001888 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001889 !(rq->cmd_flags & REQ_DONTPREP)) {
1890 /*
1891 * remove the space for the drain we added
1892 * so that we don't add it again
1893 */
1894 --rq->nr_phys_segments;
1895 }
1896
1897 rq = NULL;
1898 break;
1899 } else if (ret == BLKPREP_KILL) {
1900 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001901 /*
1902 * Mark this request as started so we don't trigger
1903 * any debug logic in the end I/O path.
1904 */
1905 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001906 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001907 } else {
1908 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1909 break;
1910 }
1911 }
1912
1913 return rq;
1914}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001915EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001916
Tejun Heo9934c8c2009-05-08 11:54:16 +09001917void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001918{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001919 struct request_queue *q = rq->q;
1920
Tejun Heo158dbda2009-04-23 11:05:18 +09001921 BUG_ON(list_empty(&rq->queuelist));
1922 BUG_ON(ELV_ON_HASH(rq));
1923
1924 list_del_init(&rq->queuelist);
1925
1926 /*
1927 * the time frame between a request being removed from the lists
1928 * and to it is freed is accounted as io that is in progress at
1929 * the driver side.
1930 */
Divyesh Shah91952912010-04-01 15:01:41 -07001931 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001932 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001933 set_io_start_time_ns(rq);
1934 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001935}
1936
Tejun Heo5efccd12009-04-23 11:05:18 +09001937/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001938 * blk_start_request - start request processing on the driver
1939 * @req: request to dequeue
1940 *
1941 * Description:
1942 * Dequeue @req and start timeout timer on it. This hands off the
1943 * request to the driver.
1944 *
1945 * Block internal functions which don't want to start timer should
1946 * call blk_dequeue_request().
1947 *
1948 * Context:
1949 * queue_lock must be held.
1950 */
1951void blk_start_request(struct request *req)
1952{
1953 blk_dequeue_request(req);
1954
1955 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001956 * We are now handing the request to the hardware, initialize
1957 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001958 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001959 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001960 if (unlikely(blk_bidi_rq(req)))
1961 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1962
Tejun Heo9934c8c2009-05-08 11:54:16 +09001963 blk_add_timer(req);
1964}
1965EXPORT_SYMBOL(blk_start_request);
1966
1967/**
1968 * blk_fetch_request - fetch a request from a request queue
1969 * @q: request queue to fetch a request from
1970 *
1971 * Description:
1972 * Return the request at the top of @q. The request is started on
1973 * return and LLD can start processing it immediately.
1974 *
1975 * Return:
1976 * Pointer to the request at the top of @q if available. Null
1977 * otherwise.
1978 *
1979 * Context:
1980 * queue_lock must be held.
1981 */
1982struct request *blk_fetch_request(struct request_queue *q)
1983{
1984 struct request *rq;
1985
1986 rq = blk_peek_request(q);
1987 if (rq)
1988 blk_start_request(rq);
1989 return rq;
1990}
1991EXPORT_SYMBOL(blk_fetch_request);
1992
1993/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001994 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001995 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001996 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001997 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001998 *
1999 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002000 * Ends I/O on a number of bytes attached to @req, but doesn't complete
2001 * the request structure even if @req doesn't have leftover.
2002 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09002003 *
2004 * This special helper function is only for request stacking drivers
2005 * (e.g. request-based dm) so that they can handle partial completion.
2006 * Actual device drivers should use blk_end_request instead.
2007 *
2008 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2009 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002010 *
2011 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002012 * %false - this request doesn't have any more data
2013 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05002014 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09002015bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05002017 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 struct bio *bio;
2019
Tejun Heo2e60e022009-04-23 11:05:18 +09002020 if (!req->bio)
2021 return false;
2022
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01002023 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 /*
Tejun Heo6f414692009-04-19 07:00:41 +09002026 * For fs requests, rq is just carrier of independent bio's
2027 * and each partial completion should be handled separately.
2028 * Reset per-request error on each partial completion.
2029 *
2030 * TODO: tj: This is too subtle. It would be better to let
2031 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002033 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 req->errors = 0;
2035
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002036 if (error && req->cmd_type == REQ_TYPE_FS &&
2037 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01002038 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09002040 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
2042
Jens Axboebc58ba92009-01-23 10:54:44 +01002043 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 total_bytes = bio_nbytes = 0;
2046 while ((bio = req->bio) != NULL) {
2047 int nbytes;
2048
2049 if (nr_bytes >= bio->bi_size) {
2050 req->bio = bio->bi_next;
2051 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02002052 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 next_idx = 0;
2054 bio_nbytes = 0;
2055 } else {
2056 int idx = bio->bi_idx + next_idx;
2057
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002058 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01002060 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02002061 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 break;
2063 }
2064
2065 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2066 BIO_BUG_ON(nbytes > bio->bi_size);
2067
2068 /*
2069 * not a complete bvec done
2070 */
2071 if (unlikely(nbytes > nr_bytes)) {
2072 bio_nbytes += nr_bytes;
2073 total_bytes += nr_bytes;
2074 break;
2075 }
2076
2077 /*
2078 * advance to the next vector
2079 */
2080 next_idx++;
2081 bio_nbytes += nbytes;
2082 }
2083
2084 total_bytes += nbytes;
2085 nr_bytes -= nbytes;
2086
Jens Axboe6728cb02008-01-31 13:03:55 +01002087 bio = req->bio;
2088 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 /*
2090 * end more in this run, or just return 'not-done'
2091 */
2092 if (unlikely(nr_bytes <= 0))
2093 break;
2094 }
2095 }
2096
2097 /*
2098 * completely done
2099 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002100 if (!req->bio) {
2101 /*
2102 * Reset counters so that the request stacking driver
2103 * can find how many bytes remain in the request
2104 * later.
2105 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002106 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002107 return false;
2108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /*
2111 * if the request wasn't completed, update state
2112 */
2113 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002114 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 bio->bi_idx += next_idx;
2116 bio_iovec(bio)->bv_offset += nr_bytes;
2117 bio_iovec(bio)->bv_len -= nr_bytes;
2118 }
2119
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002120 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002121 req->buffer = bio_data(req->bio);
2122
2123 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002124 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002125 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002126
Tejun Heo80a761f2009-07-03 17:48:17 +09002127 /* mixed attributes always follow the first bio */
2128 if (req->cmd_flags & REQ_MIXED_MERGE) {
2129 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2130 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2131 }
2132
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002133 /*
2134 * If total number of sectors is less than the first segment
2135 * size, something has gone terribly wrong.
2136 */
2137 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2138 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002139 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002140 }
2141
2142 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002144
Tejun Heo2e60e022009-04-23 11:05:18 +09002145 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
Tejun Heo2e60e022009-04-23 11:05:18 +09002147EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Tejun Heo2e60e022009-04-23 11:05:18 +09002149static bool blk_update_bidi_request(struct request *rq, int error,
2150 unsigned int nr_bytes,
2151 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002152{
Tejun Heo2e60e022009-04-23 11:05:18 +09002153 if (blk_update_request(rq, error, nr_bytes))
2154 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002155
Tejun Heo2e60e022009-04-23 11:05:18 +09002156 /* Bidi request must be completed as a whole */
2157 if (unlikely(blk_bidi_rq(rq)) &&
2158 blk_update_request(rq->next_rq, error, bidi_bytes))
2159 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002160
Jens Axboee2e1a142010-06-09 10:42:09 +02002161 if (blk_queue_add_random(rq->q))
2162 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002163
2164 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165}
2166
James Bottomley28018c22010-07-01 19:49:17 +09002167/**
2168 * blk_unprep_request - unprepare a request
2169 * @req: the request
2170 *
2171 * This function makes a request ready for complete resubmission (or
2172 * completion). It happens only after all error handling is complete,
2173 * so represents the appropriate moment to deallocate any resources
2174 * that were allocated to the request in the prep_rq_fn. The queue
2175 * lock is held when calling this.
2176 */
2177void blk_unprep_request(struct request *req)
2178{
2179 struct request_queue *q = req->q;
2180
2181 req->cmd_flags &= ~REQ_DONTPREP;
2182 if (q->unprep_rq_fn)
2183 q->unprep_rq_fn(q, req);
2184}
2185EXPORT_SYMBOL_GPL(blk_unprep_request);
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/*
2188 * queue lock must be held
2189 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002190static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002192 if (blk_rq_tagged(req))
2193 blk_queue_end_tag(req->q, req);
2194
James Bottomleyba396a62009-05-27 14:17:08 +02002195 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002197 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002198 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Mike Andersone78042e2008-10-30 02:16:20 -07002200 blk_delete_timer(req);
2201
James Bottomley28018c22010-07-01 19:49:17 +09002202 if (req->cmd_flags & REQ_DONTPREP)
2203 blk_unprep_request(req);
2204
2205
Jens Axboebc58ba92009-01-23 10:54:44 +01002206 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002209 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002210 else {
2211 if (blk_bidi_rq(req))
2212 __blk_put_request(req->next_rq->q, req->next_rq);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
2216}
2217
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002218/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002219 * blk_end_bidi_request - Complete a bidi request
2220 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002221 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002222 * @nr_bytes: number of bytes to complete @rq
2223 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002224 *
2225 * Description:
2226 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002227 * Drivers that supports bidi can safely call this member for any
2228 * type of request, bidi or uni. In the later case @bidi_bytes is
2229 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002230 *
2231 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002232 * %false - we are done with this request
2233 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002234 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002235static bool blk_end_bidi_request(struct request *rq, int error,
2236 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002237{
2238 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002239 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002240
Tejun Heo2e60e022009-04-23 11:05:18 +09002241 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2242 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002243
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002244 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002245 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002246 spin_unlock_irqrestore(q->queue_lock, flags);
2247
Tejun Heo2e60e022009-04-23 11:05:18 +09002248 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002249}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002250
2251/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002252 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2253 * @rq: the request to complete
2254 * @error: %0 for success, < %0 for error
2255 * @nr_bytes: number of bytes to complete @rq
2256 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002257 *
2258 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002259 * Identical to blk_end_bidi_request() except that queue lock is
2260 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002261 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002262 * Return:
2263 * %false - we are done with this request
2264 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002265 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002266static bool __blk_end_bidi_request(struct request *rq, int error,
2267 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002268{
Tejun Heo2e60e022009-04-23 11:05:18 +09002269 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2270 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002271
Tejun Heo2e60e022009-04-23 11:05:18 +09002272 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002273
Tejun Heo2e60e022009-04-23 11:05:18 +09002274 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002275}
2276
2277/**
2278 * blk_end_request - Helper function for drivers to complete the request.
2279 * @rq: the request being processed
2280 * @error: %0 for success, < %0 for error
2281 * @nr_bytes: number of bytes to complete
2282 *
2283 * Description:
2284 * Ends I/O on a number of bytes attached to @rq.
2285 * If @rq has leftover, sets it up for the next range of segments.
2286 *
2287 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002288 * %false - we are done with this request
2289 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002290 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002291bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002292{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002293 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002294}
Jens Axboe56ad1742009-07-28 22:11:24 +02002295EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002296
2297/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002298 * blk_end_request_all - Helper function for drives to finish the request.
2299 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002300 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002301 *
2302 * Description:
2303 * Completely finish @rq.
2304 */
2305void blk_end_request_all(struct request *rq, int error)
2306{
2307 bool pending;
2308 unsigned int bidi_bytes = 0;
2309
2310 if (unlikely(blk_bidi_rq(rq)))
2311 bidi_bytes = blk_rq_bytes(rq->next_rq);
2312
2313 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2314 BUG_ON(pending);
2315}
Jens Axboe56ad1742009-07-28 22:11:24 +02002316EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002317
2318/**
2319 * blk_end_request_cur - Helper function to finish the current request chunk.
2320 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002321 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002322 *
2323 * Description:
2324 * Complete the current consecutively mapped chunk from @rq.
2325 *
2326 * Return:
2327 * %false - we are done with this request
2328 * %true - still buffers pending for this request
2329 */
2330bool blk_end_request_cur(struct request *rq, int error)
2331{
2332 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2333}
Jens Axboe56ad1742009-07-28 22:11:24 +02002334EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002335
2336/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002337 * blk_end_request_err - Finish a request till the next failure boundary.
2338 * @rq: the request to finish till the next failure boundary for
2339 * @error: must be negative errno
2340 *
2341 * Description:
2342 * Complete @rq till the next failure boundary.
2343 *
2344 * Return:
2345 * %false - we are done with this request
2346 * %true - still buffers pending for this request
2347 */
2348bool blk_end_request_err(struct request *rq, int error)
2349{
2350 WARN_ON(error >= 0);
2351 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2352}
2353EXPORT_SYMBOL_GPL(blk_end_request_err);
2354
2355/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002356 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002357 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002358 * @error: %0 for success, < %0 for error
2359 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002360 *
2361 * Description:
2362 * Must be called with queue lock held unlike blk_end_request().
2363 *
2364 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002365 * %false - we are done with this request
2366 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002367 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002368bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002369{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002370 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002371}
Jens Axboe56ad1742009-07-28 22:11:24 +02002372EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002373
2374/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002375 * __blk_end_request_all - Helper function for drives to finish the request.
2376 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002377 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002378 *
2379 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002380 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002381 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002382void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002383{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002384 bool pending;
2385 unsigned int bidi_bytes = 0;
2386
2387 if (unlikely(blk_bidi_rq(rq)))
2388 bidi_bytes = blk_rq_bytes(rq->next_rq);
2389
2390 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2391 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002392}
Jens Axboe56ad1742009-07-28 22:11:24 +02002393EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002394
2395/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002396 * __blk_end_request_cur - Helper function to finish the current request chunk.
2397 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002398 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002399 *
2400 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002401 * Complete the current consecutively mapped chunk from @rq. Must
2402 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002403 *
2404 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002405 * %false - we are done with this request
2406 * %true - still buffers pending for this request
2407 */
2408bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002409{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002410 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002411}
Jens Axboe56ad1742009-07-28 22:11:24 +02002412EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002413
Tejun Heo80a761f2009-07-03 17:48:17 +09002414/**
2415 * __blk_end_request_err - Finish a request till the next failure boundary.
2416 * @rq: the request to finish till the next failure boundary for
2417 * @error: must be negative errno
2418 *
2419 * Description:
2420 * Complete @rq till the next failure boundary. Must be called
2421 * with queue lock held.
2422 *
2423 * Return:
2424 * %false - we are done with this request
2425 * %true - still buffers pending for this request
2426 */
2427bool __blk_end_request_err(struct request *rq, int error)
2428{
2429 WARN_ON(error >= 0);
2430 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2431}
2432EXPORT_SYMBOL_GPL(__blk_end_request_err);
2433
Jens Axboe86db1e22008-01-29 14:53:40 +01002434void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2435 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002437 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002438 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
David Woodhousefb2dce82008-08-05 18:01:53 +01002440 if (bio_has_data(bio)) {
2441 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002442 rq->buffer = bio_data(bio);
2443 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002444 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
NeilBrown66846572007-08-16 13:31:28 +02002447 if (bio->bi_bdev)
2448 rq->rq_disk = bio->bi_bdev->bd_disk;
2449}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002451#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2452/**
2453 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2454 * @rq: the request to be flushed
2455 *
2456 * Description:
2457 * Flush all pages in @rq.
2458 */
2459void rq_flush_dcache_pages(struct request *rq)
2460{
2461 struct req_iterator iter;
2462 struct bio_vec *bvec;
2463
2464 rq_for_each_segment(bvec, rq, iter)
2465 flush_dcache_page(bvec->bv_page);
2466}
2467EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2468#endif
2469
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002470/**
2471 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2472 * @q : the queue of the device being checked
2473 *
2474 * Description:
2475 * Check if underlying low-level drivers of a device are busy.
2476 * If the drivers want to export their busy state, they must set own
2477 * exporting function using blk_queue_lld_busy() first.
2478 *
2479 * Basically, this function is used only by request stacking drivers
2480 * to stop dispatching requests to underlying devices when underlying
2481 * devices are busy. This behavior helps more I/O merging on the queue
2482 * of the request stacking driver and prevents I/O throughput regression
2483 * on burst I/O load.
2484 *
2485 * Return:
2486 * 0 - Not busy (The request stacking driver should dispatch request)
2487 * 1 - Busy (The request stacking driver should stop dispatching request)
2488 */
2489int blk_lld_busy(struct request_queue *q)
2490{
2491 if (q->lld_busy_fn)
2492 return q->lld_busy_fn(q);
2493
2494 return 0;
2495}
2496EXPORT_SYMBOL_GPL(blk_lld_busy);
2497
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002498/**
2499 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2500 * @rq: the clone request to be cleaned up
2501 *
2502 * Description:
2503 * Free all bios in @rq for a cloned request.
2504 */
2505void blk_rq_unprep_clone(struct request *rq)
2506{
2507 struct bio *bio;
2508
2509 while ((bio = rq->bio) != NULL) {
2510 rq->bio = bio->bi_next;
2511
2512 bio_put(bio);
2513 }
2514}
2515EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2516
2517/*
2518 * Copy attributes of the original request to the clone request.
2519 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2520 */
2521static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2522{
2523 dst->cpu = src->cpu;
Tejun Heo3a2edd02010-09-03 11:56:18 +02002524 dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002525 dst->cmd_type = src->cmd_type;
2526 dst->__sector = blk_rq_pos(src);
2527 dst->__data_len = blk_rq_bytes(src);
2528 dst->nr_phys_segments = src->nr_phys_segments;
2529 dst->ioprio = src->ioprio;
2530 dst->extra_len = src->extra_len;
2531}
2532
2533/**
2534 * blk_rq_prep_clone - Helper function to setup clone request
2535 * @rq: the request to be setup
2536 * @rq_src: original request to be cloned
2537 * @bs: bio_set that bios for clone are allocated from
2538 * @gfp_mask: memory allocation mask for bio
2539 * @bio_ctr: setup function to be called for each clone bio.
2540 * Returns %0 for success, non %0 for failure.
2541 * @data: private data to be passed to @bio_ctr
2542 *
2543 * Description:
2544 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2545 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2546 * are not copied, and copying such parts is the caller's responsibility.
2547 * Also, pages which the original bios are pointing to are not copied
2548 * and the cloned bios just point same pages.
2549 * So cloned bios must be completed before original bios, which means
2550 * the caller must complete @rq before @rq_src.
2551 */
2552int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2553 struct bio_set *bs, gfp_t gfp_mask,
2554 int (*bio_ctr)(struct bio *, struct bio *, void *),
2555 void *data)
2556{
2557 struct bio *bio, *bio_src;
2558
2559 if (!bs)
2560 bs = fs_bio_set;
2561
2562 blk_rq_init(NULL, rq);
2563
2564 __rq_for_each_bio(bio_src, rq_src) {
2565 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2566 if (!bio)
2567 goto free_and_out;
2568
2569 __bio_clone(bio, bio_src);
2570
2571 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002572 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002573 goto free_and_out;
2574
2575 if (bio_ctr && bio_ctr(bio, bio_src, data))
2576 goto free_and_out;
2577
2578 if (rq->bio) {
2579 rq->biotail->bi_next = bio;
2580 rq->biotail = bio;
2581 } else
2582 rq->bio = rq->biotail = bio;
2583 }
2584
2585 __blk_rq_prep_clone(rq, rq_src);
2586
2587 return 0;
2588
2589free_and_out:
2590 if (bio)
2591 bio_free(bio, bs);
2592 blk_rq_unprep_clone(rq);
2593
2594 return -ENOMEM;
2595}
2596EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2597
Jens Axboe18887ad2008-07-28 13:08:45 +02002598int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
2600 return queue_work(kblockd_workqueue, work);
2601}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602EXPORT_SYMBOL(kblockd_schedule_work);
2603
Vivek Goyale43473b2010-09-15 17:06:35 -04002604int kblockd_schedule_delayed_work(struct request_queue *q,
2605 struct delayed_work *dwork, unsigned long delay)
2606{
2607 return queue_delayed_work(kblockd_workqueue, dwork, delay);
2608}
2609EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611int __init blk_dev_init(void)
2612{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002613 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2614 sizeof(((struct request *)0)->cmd_flags));
2615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 kblockd_workqueue = create_workqueue("kblockd");
2617 if (!kblockd_workqueue)
2618 panic("Failed to create kblockd\n");
2619
2620 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002621 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Jens Axboe8324aa92008-01-29 14:51:59 +01002623 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002624 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return 0;
2627}