blob: 02f53bc00e4c68352de175790bf8ed4524106b0b [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>
Jens Axboe2056a782006-03-23 20:00:26 +010029#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080030#include <linux/fault-inject.h>
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +010031#include <trace/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jens Axboe8324aa92008-01-29 14:51:59 +010033#include "blk.h"
34
Ingo Molnar0bfc2452008-11-26 11:59:56 +010035DEFINE_TRACE(block_plug);
36DEFINE_TRACE(block_unplug_io);
37DEFINE_TRACE(block_unplug_timer);
38DEFINE_TRACE(block_getrq);
39DEFINE_TRACE(block_sleeprq);
40DEFINE_TRACE(block_rq_requeue);
41DEFINE_TRACE(block_bio_backmerge);
42DEFINE_TRACE(block_bio_frontmerge);
43DEFINE_TRACE(block_bio_queue);
44DEFINE_TRACE(block_rq_complete);
45DEFINE_TRACE(block_remap); /* Also used in drivers/md/dm.c */
46EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
47
Jens Axboe165125e2007-07-24 09:28:11 +020048static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * For the allocated request tables
52 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010053static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 * For queue allocation
57 */
Jens Axboe6728cb02008-01-31 13:03:55 +010058struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * Controlling structure to kblockd
62 */
Jens Axboeff856ba2006-01-09 16:02:34 +010063static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jens Axboe26b82562008-01-29 13:54:41 +010065static void drive_stat_acct(struct request *rq, int new_io)
66{
Jens Axboe28f13702008-05-07 10:15:46 +020067 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010068 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090069 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010070
Jerome Marchand26308ea2009-03-27 10:31:51 +010071 if (!blk_fs_request(rq) || !blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010072 return;
73
Tejun Heo074a7ac2008-08-25 19:56:14 +090074 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090076
Jens Axboe28f13702008-05-07 10:15:46 +020077 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090078 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020079 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090080 part_round_stats(cpu, part);
81 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010082 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020083
Tejun Heo074a7ac2008-08-25 19:56:14 +090084 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010085}
86
Jens Axboe8324aa92008-01-29 14:51:59 +010087void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 int nr;
90
91 nr = q->nr_requests - (q->nr_requests / 8) + 1;
92 if (nr > q->nr_requests)
93 nr = q->nr_requests;
94 q->nr_congestion_on = nr;
95
96 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
97 if (nr < 1)
98 nr = 1;
99 q->nr_congestion_off = nr;
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/**
103 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
104 * @bdev: device
105 *
106 * Locates the passed device's request queue and returns the address of its
107 * backing_dev_info
108 *
109 * Will return NULL if the request queue cannot be located.
110 */
111struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
112{
113 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200114 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (q)
117 ret = &q->backing_dev_info;
118 return ret;
119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120EXPORT_SYMBOL(blk_get_backing_dev_info);
121
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200122void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200124 memset(rq, 0, sizeof(*rq));
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700127 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200128 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100129 rq->q = q;
130 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200131 INIT_HLIST_NODE(&rq->hash);
132 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200133 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800134 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100135 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100136 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200138EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
NeilBrown5bb23a62007-09-27 12:46:13 +0200140static void req_bio_endio(struct request *rq, struct bio *bio,
141 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100142{
Jens Axboe165125e2007-07-24 09:28:11 +0200143 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100144
NeilBrown5bb23a62007-09-27 12:46:13 +0200145 if (&q->bar_rq != rq) {
146 if (error)
147 clear_bit(BIO_UPTODATE, &bio->bi_flags);
148 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
149 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100150
NeilBrown5bb23a62007-09-27 12:46:13 +0200151 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100152 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700153 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200154 nbytes = bio->bi_size;
155 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100156
Keith Mannthey08bafc02008-11-25 10:24:35 +0100157 if (unlikely(rq->cmd_flags & REQ_QUIET))
158 set_bit(BIO_QUIET, &bio->bi_flags);
159
NeilBrown5bb23a62007-09-27 12:46:13 +0200160 bio->bi_size -= nbytes;
161 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200162
163 if (bio_integrity(bio))
164 bio_integrity_advance(bio, nbytes);
165
NeilBrown5bb23a62007-09-27 12:46:13 +0200166 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200167 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200168 } else {
169
170 /*
171 * Okay, this is the barrier request in progress, just
172 * record the error;
173 */
174 if (error && !q->orderr)
175 q->orderr = error;
176 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179void blk_dump_rq_flags(struct request *rq, char *msg)
180{
181 int bit;
182
Jens Axboe6728cb02008-01-31 13:03:55 +0100183 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200184 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
185 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Jens Axboe6728cb02008-01-31 13:03:55 +0100187 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
188 (unsigned long long)rq->sector,
189 rq->nr_sectors,
190 rq->current_nr_sectors);
191 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
192 rq->bio, rq->biotail,
193 rq->buffer, rq->data,
194 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Jens Axboe4aff5e22006-08-10 08:44:47 +0200196 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100197 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200198 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 printk("%02x ", rq->cmd[bit]);
200 printk("\n");
201 }
202}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203EXPORT_SYMBOL(blk_dump_rq_flags);
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
206 * "plug" the device if there are no outstanding requests: this will
207 * force the transfer to start only after we have put all the requests
208 * on the list.
209 *
210 * This is called with interrupts off and no requests on the queue and
211 * with the queue lock held.
212 */
Jens Axboe165125e2007-07-24 09:28:11 +0200213void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 WARN_ON(!irqs_disabled());
216
217 /*
218 * don't plug a stopped queue, it must be paired with blk_start_queue()
219 * which will restart the queueing
220 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200221 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return;
223
Jens Axboee48ec692008-07-03 13:18:54 +0200224 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100226 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229EXPORT_SYMBOL(blk_plug_device);
230
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200231/**
232 * blk_plug_device_unlocked - plug a device without queue lock held
233 * @q: The &struct request_queue to plug
234 *
235 * Description:
236 * Like @blk_plug_device(), but grabs the queue lock and disables
237 * interrupts.
238 **/
239void blk_plug_device_unlocked(struct request_queue *q)
240{
241 unsigned long flags;
242
243 spin_lock_irqsave(q->queue_lock, flags);
244 blk_plug_device(q);
245 spin_unlock_irqrestore(q->queue_lock, flags);
246}
247EXPORT_SYMBOL(blk_plug_device_unlocked);
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * remove the queue from the plugged list, if present. called with
251 * queue lock held and interrupts disabled.
252 */
Jens Axboe165125e2007-07-24 09:28:11 +0200253int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 WARN_ON(!irqs_disabled());
256
Jens Axboee48ec692008-07-03 13:18:54 +0200257 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return 0;
259
260 del_timer(&q->unplug_timer);
261 return 1;
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263EXPORT_SYMBOL(blk_remove_plug);
264
265/*
266 * remove the plug and let it rip..
267 */
Jens Axboe165125e2007-07-24 09:28:11 +0200268void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200270 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200272 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return;
274
Jens Axboe22e2c502005-06-27 10:55:12 +0200275 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/**
279 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200280 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 *
282 * Description:
283 * Linux uses plugging to build bigger requests queues before letting
284 * the device have at them. If a queue is plugged, the I/O scheduler
285 * is still adding and merging requests on the queue. Once the queue
286 * gets unplugged, the request_fn defined for the queue is invoked and
287 * transfers started.
288 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200289void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200291 if (blk_queue_plugged(q)) {
292 spin_lock_irq(q->queue_lock);
293 __generic_unplug_device(q);
294 spin_unlock_irq(q->queue_lock);
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297EXPORT_SYMBOL(generic_unplug_device);
298
299static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
300 struct page *page)
301{
Jens Axboe165125e2007-07-24 09:28:11 +0200302 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500304 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Jens Axboe86db1e22008-01-29 14:53:40 +0100307void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Jens Axboe165125e2007-07-24 09:28:11 +0200309 struct request_queue *q =
310 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100312 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 q->unplug_fn(q);
314}
315
Jens Axboe86db1e22008-01-29 14:53:40 +0100316void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Jens Axboe165125e2007-07-24 09:28:11 +0200318 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100320 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200321 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500324void blk_unplug(struct request_queue *q)
325{
326 /*
327 * devices don't necessarily have an ->unplug_fn defined
328 */
329 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100330 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500331 q->unplug_fn(q);
332 }
333}
334EXPORT_SYMBOL(blk_unplug);
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/**
337 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200338 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 *
340 * Description:
341 * blk_start_queue() will clear the stop flag on the queue, and call
342 * the request_fn for the queue if it was in a stopped state when
343 * entered. Also see blk_stop_queue(). Queue lock must be held.
344 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200345void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200347 WARN_ON(!irqs_disabled());
348
Nick Piggin75ad23b2008-04-29 14:48:33 +0200349 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900350 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352EXPORT_SYMBOL(blk_start_queue);
353
354/**
355 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200356 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 *
358 * Description:
359 * The Linux block layer assumes that a block driver will consume all
360 * entries on the request queue when the request_fn strategy is called.
361 * Often this will not happen, because of hardware limitations (queue
362 * depth settings). If a device driver gets a 'queue full' response,
363 * or if it simply chooses not to queue more I/O at one point, it can
364 * call this function to prevent the request_fn from being called until
365 * the driver has signalled it's ready to go again. This happens by calling
366 * blk_start_queue() to restart queue operations. Queue lock must be held.
367 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200368void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200371 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373EXPORT_SYMBOL(blk_stop_queue);
374
375/**
376 * blk_sync_queue - cancel any pending callbacks on a queue
377 * @q: the queue
378 *
379 * Description:
380 * The block layer may perform asynchronous callback activity
381 * on a queue, such as calling the unplug function after a timeout.
382 * A block device may call blk_sync_queue to ensure that any
383 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200384 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * that its ->make_request_fn will not re-add plugging prior to calling
386 * this function.
387 *
388 */
389void blk_sync_queue(struct request_queue *q)
390{
391 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100392 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100393 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395EXPORT_SYMBOL(blk_sync_queue);
396
397/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200398 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200400 *
401 * Description:
402 * See @blk_run_queue. This variant must be called with the queue lock
403 * held and interrupts disabled.
404 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200406void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200409
Tejun Heoa538cd02009-04-23 11:05:17 +0900410 if (unlikely(blk_queue_stopped(q)))
411 return;
412
413 if (elv_queue_empty(q))
414 return;
415
Jens Axboedac07ec2006-05-11 08:20:16 +0200416 /*
417 * Only recurse once to avoid overrunning the stack, let the unplug
418 * handling reinvoke the handler shortly if we already got there.
419 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900420 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
421 q->request_fn(q);
422 queue_flag_clear(QUEUE_FLAG_REENTER, q);
423 } else {
424 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
425 kblockd_schedule_work(q, &q->unplug_work);
426 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200427}
428EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200429
Nick Piggin75ad23b2008-04-29 14:48:33 +0200430/**
431 * blk_run_queue - run a single device queue
432 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200433 *
434 * Description:
435 * Invoke request handling on this queue, if it has pending work to do.
436 * May be used to restart queueing when a request has completed. Also
437 * See @blk_start_queueing.
438 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200439 */
440void blk_run_queue(struct request_queue *q)
441{
442 unsigned long flags;
443
444 spin_lock_irqsave(q->queue_lock, flags);
445 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 spin_unlock_irqrestore(q->queue_lock, flags);
447}
448EXPORT_SYMBOL(blk_run_queue);
449
Jens Axboe165125e2007-07-24 09:28:11 +0200450void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500451{
452 kobject_put(&q->kobj);
453}
Al Viro483f4af2006-03-18 18:34:37 -0500454
Jens Axboe6728cb02008-01-31 13:03:55 +0100455void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500456{
Jens Axboee3335de92008-09-18 09:22:54 -0700457 /*
458 * We know we have process context here, so we can be a little
459 * cautious and ensure that pending block actions on this device
460 * are done before moving on. Going into this function, we should
461 * not have processes doing IO to this device.
462 */
463 blk_sync_queue(q);
464
Al Viro483f4af2006-03-18 18:34:37 -0500465 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200466 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500467 mutex_unlock(&q->sysfs_lock);
468
469 if (q->elevator)
470 elevator_exit(q->elevator);
471
472 blk_put_queue(q);
473}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474EXPORT_SYMBOL(blk_cleanup_queue);
475
Jens Axboe165125e2007-07-24 09:28:11 +0200476static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 struct request_list *rl = &q->rq;
479
Jens Axboe1faa16d2009-04-06 14:48:01 +0200480 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
481 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200482 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200483 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
484 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Christoph Lameter19460892005-06-23 00:08:19 -0700486 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
487 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (!rl->rq_pool)
490 return -ENOMEM;
491
492 return 0;
493}
494
Jens Axboe165125e2007-07-24 09:28:11 +0200495struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Christoph Lameter19460892005-06-23 00:08:19 -0700497 return blk_alloc_queue_node(gfp_mask, -1);
498}
499EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Jens Axboe165125e2007-07-24 09:28:11 +0200501struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700502{
Jens Axboe165125e2007-07-24 09:28:11 +0200503 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700504 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700505
Jens Axboe8324aa92008-01-29 14:51:59 +0100506 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700507 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!q)
509 return NULL;
510
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700511 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
512 q->backing_dev_info.unplug_io_data = q;
513 err = bdi_init(&q->backing_dev_info);
514 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100515 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700516 return NULL;
517 }
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700520 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
521 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200522 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500523
Jens Axboe8324aa92008-01-29 14:51:59 +0100524 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Al Viro483f4af2006-03-18 18:34:37 -0500526 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700527 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return q;
530}
Christoph Lameter19460892005-06-23 00:08:19 -0700531EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533/**
534 * blk_init_queue - prepare a request queue for use with a block device
535 * @rfn: The function to be called to process requests that have been
536 * placed on the queue.
537 * @lock: Request queue spin lock
538 *
539 * Description:
540 * If a block device wishes to use the standard request handling procedures,
541 * which sorts requests and coalesces adjacent requests, then it must
542 * call blk_init_queue(). The function @rfn will be called when there
543 * are requests on the queue that need to be processed. If the device
544 * supports plugging, then @rfn may not be called immediately when requests
545 * are available on the queue, but may be called at some time later instead.
546 * Plugged queues are generally unplugged when a buffer belonging to one
547 * of the requests on the queue is needed, or due to memory pressure.
548 *
549 * @rfn is not required, or even expected, to remove all requests off the
550 * queue, but only as many as it can handle at a time. If it does leave
551 * requests on the queue, it is responsible for arranging that the requests
552 * get dealt with eventually.
553 *
554 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200555 * request queue; this lock will be taken also from interrupt context, so irq
556 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200558 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * it didn't succeed.
560 *
561 * Note:
562 * blk_init_queue() must be paired with a blk_cleanup_queue() call
563 * when the block device is deactivated (such as at module unload).
564 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700565
Jens Axboe165125e2007-07-24 09:28:11 +0200566struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Christoph Lameter19460892005-06-23 00:08:19 -0700568 return blk_init_queue_node(rfn, lock, -1);
569}
570EXPORT_SYMBOL(blk_init_queue);
571
Jens Axboe165125e2007-07-24 09:28:11 +0200572struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700573blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
574{
Jens Axboe165125e2007-07-24 09:28:11 +0200575 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 if (!q)
578 return NULL;
579
Christoph Lameter19460892005-06-23 00:08:19 -0700580 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500581 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100582 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500583 return NULL;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
152587d2005-04-12 16:22:06 -0500586 /*
587 * if caller didn't supply a lock, they get per-queue locking with
588 * our embedded lock
589 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700590 if (!lock)
152587d2005-04-12 16:22:06 -0500591 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 q->prep_rq_fn = NULL;
595 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100596 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 q->queue_lock = lock;
598
Jens Axboef3b144a2009-03-06 08:48:33 +0100599 /*
600 * This also sets hw/phys segments, boundary and size
601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Alan Stern44ec9542007-02-20 11:01:57 -0500604 q->sg_reserved_size = INT_MAX;
605
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900606 blk_set_cmd_filter_defaults(&q->cmd_filter);
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * all done
610 */
611 if (!elevator_init(q, NULL)) {
612 blk_queue_congestion_threshold(q);
613 return q;
614 }
615
Al Viro8669aaf2006-03-18 13:50:00 -0500616 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NULL;
618}
Christoph Lameter19460892005-06-23 00:08:19 -0700619EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Jens Axboe165125e2007-07-24 09:28:11 +0200621int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700623 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500624 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return 0;
626 }
627
628 return 1;
629}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Jens Axboe165125e2007-07-24 09:28:11 +0200631static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200633 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200634 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 mempool_free(rq, q->rq.rq_pool);
636}
637
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200638static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200639blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
642
643 if (!rq)
644 return NULL;
645
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200646 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200647
Jerome Marchand42dad762009-04-22 14:01:49 +0200648 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Tejun Heocb98fc82005-10-28 08:29:39 +0200650 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200651 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200652 mempool_free(rq, q->rq.rq_pool);
653 return NULL;
654 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200655 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Tejun Heocb98fc82005-10-28 08:29:39 +0200658 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/*
662 * ioc_batching returns true if the ioc is a valid batching request and
663 * should be given priority access to a request.
664 */
Jens Axboe165125e2007-07-24 09:28:11 +0200665static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 if (!ioc)
668 return 0;
669
670 /*
671 * Make sure the process is able to allocate at least 1 request
672 * even if the batch times out, otherwise we could theoretically
673 * lose wakeups.
674 */
675 return ioc->nr_batch_requests == q->nr_batching ||
676 (ioc->nr_batch_requests > 0
677 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
678}
679
680/*
681 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
682 * will cause the process to be a "batcher" on all queues in the system. This
683 * is the behaviour we want though - once it gets a wakeup it should be given
684 * a nice run.
685 */
Jens Axboe165125e2007-07-24 09:28:11 +0200686static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 if (!ioc || ioc_batching(q, ioc))
689 return;
690
691 ioc->nr_batch_requests = q->nr_batching;
692 ioc->last_waited = jiffies;
693}
694
Jens Axboe1faa16d2009-04-06 14:48:01 +0200695static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct request_list *rl = &q->rq;
698
Jens Axboe1faa16d2009-04-06 14:48:01 +0200699 if (rl->count[sync] < queue_congestion_off_threshold(q))
700 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jens Axboe1faa16d2009-04-06 14:48:01 +0200702 if (rl->count[sync] + 1 <= q->nr_requests) {
703 if (waitqueue_active(&rl->wait[sync]))
704 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Jens Axboe1faa16d2009-04-06 14:48:01 +0200706 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708}
709
710/*
711 * A request has just been released. Account for it, update the full and
712 * congestion status, wake up any waiters. Called under q->queue_lock.
713 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200714static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct request_list *rl = &q->rq;
717
Jens Axboe1faa16d2009-04-06 14:48:01 +0200718 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200719 if (priv)
720 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Jens Axboe1faa16d2009-04-06 14:48:01 +0200722 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Jens Axboe1faa16d2009-04-06 14:48:01 +0200724 if (unlikely(rl->starved[sync ^ 1]))
725 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
Nick Piggind6344532005-06-28 20:45:14 -0700729 * Get a free request, queue_lock must be held.
730 * Returns NULL on failure, with queue_lock held.
731 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
Jens Axboe165125e2007-07-24 09:28:11 +0200733static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100734 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 struct request *rq = NULL;
737 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100738 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200739 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100740 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jens Axboe7749a8d2006-12-13 13:02:26 +0100742 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100743 if (may_queue == ELV_MQUEUE_NO)
744 goto rq_starved;
745
Jens Axboe1faa16d2009-04-06 14:48:01 +0200746 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
747 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200748 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100749 /*
750 * The queue will fill after this allocation, so set
751 * it as full, and mark this process as "batching".
752 * This process will be allowed to complete a batch of
753 * requests, others will be blocked.
754 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200755 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100756 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200757 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100758 } else {
759 if (may_queue != ELV_MQUEUE_MUST
760 && !ioc_batching(q, ioc)) {
761 /*
762 * The queue is full and the allocating
763 * process is not a "batcher", and not
764 * exempted by the IO scheduler
765 */
766 goto out;
767 }
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200770 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
Jens Axboe082cf692005-06-28 16:35:11 +0200773 /*
774 * Only allow batching queuers to allocate up to 50% over the defined
775 * limit of requests, otherwise we could have thousands of requests
776 * allocated with any setting of ->nr_requests
777 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200778 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200779 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100780
Jens Axboe1faa16d2009-04-06 14:48:01 +0200781 rl->count[is_sync]++;
782 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200783
Jens Axboe64521d12005-10-28 08:30:39 +0200784 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200785 if (priv)
786 rl->elvpriv++;
787
Jerome Marchand42dad762009-04-22 14:01:49 +0200788 if (blk_queue_io_stat(q))
789 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spin_unlock_irq(q->queue_lock);
791
Jens Axboe7749a8d2006-12-13 13:02:26 +0100792 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100793 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /*
795 * Allocation failed presumably due to memory. Undo anything
796 * we might have messed up.
797 *
798 * Allocating task should really be put onto the front of the
799 * wait queue, but this is pretty rare.
800 */
801 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200802 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /*
805 * in the very unlikely event that allocation failed and no
806 * requests for this direction was pending, mark us starved
807 * so that freeing of a request in the other direction will
808 * notice us. another possible fix would be to split the
809 * rq mempool into READ and WRITE
810 */
811rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200812 if (unlikely(rl->count[is_sync] == 0))
813 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto out;
816 }
817
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100818 /*
819 * ioc may be NULL here, and ioc_batching will be false. That's
820 * OK, if the queue is under the request limit then requests need
821 * not count toward the nr_batch_requests limit. There will always
822 * be some limit enforced by BLK_BATCH_TIME.
823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (ioc_batching(q, ioc))
825 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100826
Jens Axboe1faa16d2009-04-06 14:48:01 +0200827 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return rq;
830}
831
832/*
833 * No available requests for this queue, unplug the device and wait for some
834 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700835 *
836 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 */
Jens Axboe165125e2007-07-24 09:28:11 +0200838static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200839 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200841 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct request *rq;
843
Jens Axboe7749a8d2006-12-13 13:02:26 +0100844 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700845 while (!rq) {
846 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200847 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 struct request_list *rl = &q->rq;
849
Jens Axboe1faa16d2009-04-06 14:48:01 +0200850 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 TASK_UNINTERRUPTIBLE);
852
Jens Axboe1faa16d2009-04-06 14:48:01 +0200853 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200855 __generic_unplug_device(q);
856 spin_unlock_irq(q->queue_lock);
857 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200859 /*
860 * After sleeping, we become a "batching" process and
861 * will be able to allocate at least one request, and
862 * up to a big batch of them for a small period time.
863 * See ioc_batching, ioc_set_batching
864 */
865 ioc = current_io_context(GFP_NOIO, q->node);
866 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100867
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200868 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200869 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200870
871 rq = get_request(q, rw_flags, bio, GFP_NOIO);
872 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return rq;
875}
876
Jens Axboe165125e2007-07-24 09:28:11 +0200877struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 struct request *rq;
880
881 BUG_ON(rw != READ && rw != WRITE);
882
Nick Piggind6344532005-06-28 20:45:14 -0700883 spin_lock_irq(q->queue_lock);
884 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200885 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700886 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200887 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700888 if (!rq)
889 spin_unlock_irq(q->queue_lock);
890 }
891 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 return rq;
894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895EXPORT_SYMBOL(blk_get_request);
896
897/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200898 * blk_start_queueing - initiate dispatch of requests to device
899 * @q: request queue to kick into gear
900 *
901 * This is basically a helper to remove the need to know whether a queue
902 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200903 * for this queue. Should be used to start queueing on a device outside
904 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200905 *
906 * The queue lock must be held with interrupts disabled.
907 */
Jens Axboe165125e2007-07-24 09:28:11 +0200908void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200909{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200910 if (!blk_queue_plugged(q)) {
911 if (unlikely(blk_queue_stopped(q)))
912 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200913 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200914 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200915 __generic_unplug_device(q);
916}
917EXPORT_SYMBOL(blk_start_queueing);
918
919/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 * blk_requeue_request - put a request back on queue
921 * @q: request queue where request should be inserted
922 * @rq: request to be inserted
923 *
924 * Description:
925 * Drivers often keep queueing requests until the hardware cannot accept
926 * more, when that condition happens we need to put the request back
927 * on the queue. Must be called with queue lock held.
928 */
Jens Axboe165125e2007-07-24 09:28:11 +0200929void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700931 blk_delete_timer(rq);
932 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100933 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (blk_rq_tagged(rq))
936 blk_queue_end_tag(q, rq);
937
938 elv_requeue_request(q, rq);
939}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940EXPORT_SYMBOL(blk_requeue_request);
941
942/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200943 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * @q: request queue where request should be inserted
945 * @rq: request to be inserted
946 * @at_head: insert request at head or tail of queue
947 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 *
949 * Description:
950 * Many block devices need to execute commands asynchronously, so they don't
951 * block the whole kernel from preemption during request execution. This is
952 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200953 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
954 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 *
956 * We have the option of inserting the head or the tail of the queue.
957 * Typically we use the tail for new ioctls and so forth. We use the head
958 * of the queue for things like a QUEUE_FULL message from a device, or a
959 * host that is unable to accept a particular command.
960 */
Jens Axboe165125e2007-07-24 09:28:11 +0200961void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500962 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Tejun Heo 867d1192005-04-24 02:06:05 -0500964 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 unsigned long flags;
966
967 /*
968 * tell I/O scheduler that this isn't a regular read/write (ie it
969 * must not attempt merges on this) and that it acts as a soft
970 * barrier
971 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200972 rq->cmd_type = REQ_TYPE_SPECIAL;
973 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 rq->special = data;
976
977 spin_lock_irqsave(q->queue_lock, flags);
978
979 /*
980 * If command is tagged, release the tag
981 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500982 if (blk_rq_tagged(rq))
983 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200985 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500986 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200987 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 spin_unlock_irqrestore(q->queue_lock, flags);
989}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990EXPORT_SYMBOL(blk_insert_request);
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * add-request adds a request to the linked list.
994 * queue lock is held and interrupts disabled, as we muck with the
995 * request queue list.
996 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100997static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200999 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /*
1002 * elevator indicated where it wants this request to be
1003 * inserted at elevator_merge time
1004 */
1005 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1006}
Jens Axboe6728cb02008-01-31 13:03:55 +01001007
Tejun Heo074a7ac2008-08-25 19:56:14 +09001008static void part_round_stats_single(int cpu, struct hd_struct *part,
1009 unsigned long now)
1010{
1011 if (now == part->stamp)
1012 return;
1013
1014 if (part->in_flight) {
1015 __part_stat_add(cpu, part, time_in_queue,
1016 part->in_flight * (now - part->stamp));
1017 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1018 }
1019 part->stamp = now;
1020}
1021
1022/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001023 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1024 * @cpu: cpu number for stats access
1025 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 *
1027 * The average IO queue length and utilisation statistics are maintained
1028 * by observing the current state of the queue length and the amount of
1029 * time it has been in this state for.
1030 *
1031 * Normally, that accounting is done on IO completion, but that can result
1032 * in more than a second's worth of IO being accounted for within any one
1033 * second, leading to >100% utilisation. To deal with that, we call this
1034 * function to do a round-off before returning the results when reading
1035 * /proc/diskstats. This accounts immediately for all queue usage up to
1036 * the current jiffies and restarts the counters again.
1037 */
Tejun Heoc9959052008-08-25 19:47:21 +09001038void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001039{
1040 unsigned long now = jiffies;
1041
Tejun Heo074a7ac2008-08-25 19:56:14 +09001042 if (part->partno)
1043 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1044 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001045}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001046EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/*
1049 * queue lock must be held
1050 */
Jens Axboe165125e2007-07-24 09:28:11 +02001051void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (unlikely(!q))
1054 return;
1055 if (unlikely(--req->ref_count))
1056 return;
1057
Tejun Heo8922e162005-10-20 16:23:44 +02001058 elv_completed_request(q, req);
1059
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001060 /* this is a bio leak */
1061 WARN_ON(req->bio != NULL);
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Request may not have originated from ll_rw_blk. if not,
1065 * it didn't come out of our reserved rq pools
1066 */
Jens Axboe49171e52006-08-10 08:59:11 +02001067 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001068 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001069 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001072 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001075 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001078EXPORT_SYMBOL_GPL(__blk_put_request);
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080void blk_put_request(struct request *req)
1081{
Tejun Heo8922e162005-10-20 16:23:44 +02001082 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001083 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001085 spin_lock_irqsave(q->queue_lock, flags);
1086 __blk_put_request(q, req);
1087 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089EXPORT_SYMBOL(blk_put_request);
1090
Jens Axboe86db1e22008-01-29 14:53:40 +01001091void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001092{
Jens Axboec7c22e42008-09-13 20:26:01 +02001093 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001094 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001095
1096 /*
1097 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1098 */
Mike Christie6000a362008-08-19 18:45:30 -05001099 if (bio_rw_ahead(bio))
1100 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1101 REQ_FAILFAST_DRIVER);
1102 if (bio_failfast_dev(bio))
1103 req->cmd_flags |= REQ_FAILFAST_DEV;
1104 if (bio_failfast_transport(bio))
1105 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1106 if (bio_failfast_driver(bio))
1107 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001108
1109 /*
1110 * REQ_BARRIER implies no merging, but lets make it explicit
1111 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001112 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001113 req->cmd_flags |= REQ_DISCARD;
1114 if (bio_barrier(bio))
1115 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001116 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001117 } else if (unlikely(bio_barrier(bio)))
1118 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001119
Jens Axboeb31dc662006-06-13 08:26:10 +02001120 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001121 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001122 if (bio_rw_meta(bio))
1123 req->cmd_flags |= REQ_RW_META;
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001124 if (bio_noidle(bio))
1125 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001126
Tejun Heo52d9e672006-01-06 09:49:58 +01001127 req->errors = 0;
1128 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001129 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001130 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001131 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001132}
1133
Jens Axboe644b2d92009-04-06 14:48:06 +02001134/*
1135 * Only disabling plugging for non-rotational devices if it does tagging
1136 * as well, otherwise we do need the proper merging
1137 */
1138static inline bool queue_should_plug(struct request_queue *q)
1139{
1140 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
1141}
1142
Jens Axboe165125e2007-07-24 09:28:11 +02001143static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Nick Piggin450991b2005-06-28 20:45:13 -07001145 struct request *req;
Tejun Heoa7384672008-11-28 13:32:03 +09001146 int el_ret, nr_sectors;
Jens Axboe51da90f2006-07-18 04:14:45 +02001147 const unsigned short prio = bio_prio(bio);
1148 const int sync = bio_sync(bio);
Jens Axboe213d9412009-01-06 09:16:05 +01001149 const int unplug = bio_unplug(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001150 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /*
1155 * low level driver can indicate that it wants pages above a
1156 * certain limit bounced to low memory (ie for highmem, or even
1157 * ISA dma in theory)
1158 */
1159 blk_queue_bounce(q, &bio);
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 spin_lock_irq(q->queue_lock);
1162
Tejun Heoa7384672008-11-28 13:32:03 +09001163 if (unlikely(bio_barrier(bio)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 goto get_rq;
1165
1166 el_ret = elv_merge(q, &req, bio);
1167 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001168 case ELEVATOR_BACK_MERGE:
1169 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Jens Axboe6728cb02008-01-31 13:03:55 +01001171 if (!ll_back_merge_fn(q, req, bio))
1172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001174 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001175
Jens Axboe6728cb02008-01-31 13:03:55 +01001176 req->biotail->bi_next = bio;
1177 req->biotail = bio;
1178 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1179 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001180 if (!blk_rq_cpu_valid(req))
1181 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001182 drive_stat_acct(req, 0);
1183 if (!attempt_back_merge(q, req))
1184 elv_merged_request(q, req, el_ret);
1185 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Jens Axboe6728cb02008-01-31 13:03:55 +01001187 case ELEVATOR_FRONT_MERGE:
1188 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Jens Axboe6728cb02008-01-31 13:03:55 +01001190 if (!ll_front_merge_fn(q, req, bio))
1191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001193 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001194
Jens Axboe6728cb02008-01-31 13:03:55 +01001195 bio->bi_next = req->bio;
1196 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Jens Axboe6728cb02008-01-31 13:03:55 +01001198 /*
1199 * may not be valid. if the low level driver said
1200 * it didn't need a bounce buffer then it better
1201 * not touch req->buffer either...
1202 */
1203 req->buffer = bio_data(bio);
1204 req->current_nr_sectors = bio_cur_sectors(bio);
1205 req->hard_cur_sectors = req->current_nr_sectors;
1206 req->sector = req->hard_sector = bio->bi_sector;
1207 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1208 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001209 if (!blk_rq_cpu_valid(req))
1210 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001211 drive_stat_acct(req, 0);
1212 if (!attempt_front_merge(q, req))
1213 elv_merged_request(q, req, el_ret);
1214 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Jens Axboe6728cb02008-01-31 13:03:55 +01001216 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1217 default:
1218 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001222 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001223 * This sync check and mask will be re-done in init_request_from_bio(),
1224 * but we need to set it earlier to expose the sync flag to the
1225 * rq allocator and io schedulers.
1226 */
1227 rw_flags = bio_data_dir(bio);
1228 if (sync)
1229 rw_flags |= REQ_RW_SYNC;
1230
1231 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001232 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001233 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001234 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001235 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001236
Nick Piggin450991b2005-06-28 20:45:13 -07001237 /*
1238 * After dropping the lock and possibly sleeping here, our request
1239 * may now be mergeable after it had proven unmergeable (above).
1240 * We don't worry about that case for efficiency. It won't happen
1241 * often, and the elevators are able to handle it.
1242 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001243 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Nick Piggin450991b2005-06-28 20:45:13 -07001245 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001246 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1247 bio_flagged(bio, BIO_CPU_AFFINE))
1248 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001249 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001250 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 add_request(q, req);
1252out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001253 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 spin_unlock_irq(q->queue_lock);
1256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259/*
1260 * If bio->bi_dev is a partition, remap the location
1261 */
1262static inline void blk_partition_remap(struct bio *bio)
1263{
1264 struct block_device *bdev = bio->bi_bdev;
1265
Jens Axboebf2de6f2007-09-27 13:01:25 +02001266 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 bio->bi_sector += p->start_sect;
1270 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001271
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001272 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001273 bdev->bd_dev, bio->bi_sector,
1274 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276}
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278static void handle_bad_sector(struct bio *bio)
1279{
1280 char b[BDEVNAME_SIZE];
1281
1282 printk(KERN_INFO "attempt to access beyond end of device\n");
1283 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1284 bdevname(bio->bi_bdev, b),
1285 bio->bi_rw,
1286 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1287 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1288
1289 set_bit(BIO_EOF, &bio->bi_flags);
1290}
1291
Akinobu Mitac17bb492006-12-08 02:39:46 -08001292#ifdef CONFIG_FAIL_MAKE_REQUEST
1293
1294static DECLARE_FAULT_ATTR(fail_make_request);
1295
1296static int __init setup_fail_make_request(char *str)
1297{
1298 return setup_fault_attr(&fail_make_request, str);
1299}
1300__setup("fail_make_request=", setup_fail_make_request);
1301
1302static int should_fail_request(struct bio *bio)
1303{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001304 struct hd_struct *part = bio->bi_bdev->bd_part;
1305
1306 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001307 return should_fail(&fail_make_request, bio->bi_size);
1308
1309 return 0;
1310}
1311
1312static int __init fail_make_request_debugfs(void)
1313{
1314 return init_fault_attr_dentries(&fail_make_request,
1315 "fail_make_request");
1316}
1317
1318late_initcall(fail_make_request_debugfs);
1319
1320#else /* CONFIG_FAIL_MAKE_REQUEST */
1321
1322static inline int should_fail_request(struct bio *bio)
1323{
1324 return 0;
1325}
1326
1327#endif /* CONFIG_FAIL_MAKE_REQUEST */
1328
Jens Axboec07e2b42007-07-18 13:27:58 +02001329/*
1330 * Check whether this bio extends beyond the end of the device.
1331 */
1332static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1333{
1334 sector_t maxsector;
1335
1336 if (!nr_sectors)
1337 return 0;
1338
1339 /* Test device or partition size, when known. */
1340 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1341 if (maxsector) {
1342 sector_t sector = bio->bi_sector;
1343
1344 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1345 /*
1346 * This may well happen - the kernel calls bread()
1347 * without checking the size of the device, e.g., when
1348 * mounting a device.
1349 */
1350 handle_bad_sector(bio);
1351 return 1;
1352 }
1353 }
1354
1355 return 0;
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001359 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 * @bio: The bio describing the location in memory and on the device.
1361 *
1362 * generic_make_request() is used to make I/O requests of block
1363 * devices. It is passed a &struct bio, which describes the I/O that needs
1364 * to be done.
1365 *
1366 * generic_make_request() does not return any status. The
1367 * success/failure status of the request, along with notification of
1368 * completion, is delivered asynchronously through the bio->bi_end_io
1369 * function described (one day) else where.
1370 *
1371 * The caller of generic_make_request must make sure that bi_io_vec
1372 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1373 * set to describe the device address, and the
1374 * bi_end_io and optionally bi_private are set to describe how
1375 * completion notification should be signaled.
1376 *
1377 * generic_make_request and the drivers it calls may use bi_next if this
1378 * bio happens to be merged with someone else, and may change bi_dev and
1379 * bi_sector for remaps as it sees fit. So the values of these fields
1380 * should NOT be depended on after the call to generic_make_request.
1381 */
Neil Brownd89d8792007-05-01 09:53:42 +02001382static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Jens Axboe165125e2007-07-24 09:28:11 +02001384 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001385 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001387 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001388 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Jens Axboec07e2b42007-07-18 13:27:58 +02001392 if (bio_check_eod(bio, nr_sectors))
1393 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 /*
1396 * Resolve the mapping until finished. (drivers are
1397 * still free to implement/resolve their own stacking
1398 * by explicitly returning 0)
1399 *
1400 * NOTE: we don't repeat the blk_size check for each new device.
1401 * Stacking drivers are expected to know what they are doing.
1402 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001403 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001404 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 do {
1406 char b[BDEVNAME_SIZE];
1407
1408 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001409 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 printk(KERN_ERR
1411 "generic_make_request: Trying to access "
1412 "nonexistent block-device %s (%Lu)\n",
1413 bdevname(bio->bi_bdev, b),
1414 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001415 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
Jens Axboe4fa253f2007-07-18 13:13:10 +02001418 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001419 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 bdevname(bio->bi_bdev, b),
1421 bio_sectors(bio),
1422 q->max_hw_sectors);
1423 goto end_io;
1424 }
1425
Nick Pigginfde6ad22005-06-23 00:08:53 -07001426 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 goto end_io;
1428
Akinobu Mitac17bb492006-12-08 02:39:46 -08001429 if (should_fail_request(bio))
1430 goto end_io;
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 /*
1433 * If this device has partitions, remap block n
1434 * of partition p to block n+start(p) of the disk.
1435 */
1436 blk_partition_remap(bio);
1437
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001438 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1439 goto end_io;
1440
NeilBrown5ddfe962006-10-30 22:07:21 -08001441 if (old_sector != -1)
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001442 trace_block_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001443 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001444
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001445 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001446
NeilBrown5ddfe962006-10-30 22:07:21 -08001447 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001448 old_dev = bio->bi_bdev->bd_dev;
1449
Jens Axboec07e2b42007-07-18 13:27:58 +02001450 if (bio_check_eod(bio, nr_sectors))
1451 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001452
1453 if (bio_discard(bio) && !q->prepare_discard_fn) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001454 err = -EOPNOTSUPP;
1455 goto end_io;
1456 }
Jens Axboecec07072009-01-13 15:28:32 +01001457 if (bio_barrier(bio) && bio_has_data(bio) &&
1458 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1459 err = -EOPNOTSUPP;
1460 goto end_io;
1461 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 ret = q->make_request_fn(q, bio);
1464 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001465
1466 return;
1467
1468end_io:
1469 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Neil Brownd89d8792007-05-01 09:53:42 +02001472/*
1473 * We only want one ->make_request_fn to be active at a time,
1474 * else stack usage with stacked devices could be a problem.
1475 * So use current->bio_{list,tail} to keep a list of requests
1476 * submited by a make_request_fn function.
1477 * current->bio_tail is also used as a flag to say if
1478 * generic_make_request is currently active in this task or not.
1479 * If it is NULL, then no make_request is active. If it is non-NULL,
1480 * then a make_request is active, and new requests should be added
1481 * at the tail
1482 */
1483void generic_make_request(struct bio *bio)
1484{
1485 if (current->bio_tail) {
1486 /* make_request is active */
1487 *(current->bio_tail) = bio;
1488 bio->bi_next = NULL;
1489 current->bio_tail = &bio->bi_next;
1490 return;
1491 }
1492 /* following loop may be a bit non-obvious, and so deserves some
1493 * explanation.
1494 * Before entering the loop, bio->bi_next is NULL (as all callers
1495 * ensure that) so we have a list with a single bio.
1496 * We pretend that we have just taken it off a longer list, so
1497 * we assign bio_list to the next (which is NULL) and bio_tail
1498 * to &bio_list, thus initialising the bio_list of new bios to be
1499 * added. __generic_make_request may indeed add some more bios
1500 * through a recursive call to generic_make_request. If it
1501 * did, we find a non-NULL value in bio_list and re-enter the loop
1502 * from the top. In this case we really did just take the bio
1503 * of the top of the list (no pretending) and so fixup bio_list and
1504 * bio_tail or bi_next, and call into __generic_make_request again.
1505 *
1506 * The loop was structured like this to make only one call to
1507 * __generic_make_request (which is important as it is large and
1508 * inlined) and to keep the structure simple.
1509 */
1510 BUG_ON(bio->bi_next);
1511 do {
1512 current->bio_list = bio->bi_next;
1513 if (bio->bi_next == NULL)
1514 current->bio_tail = &current->bio_list;
1515 else
1516 bio->bi_next = NULL;
1517 __generic_make_request(bio);
1518 bio = current->bio_list;
1519 } while (bio);
1520 current->bio_tail = NULL; /* deactivate */
1521}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522EXPORT_SYMBOL(generic_make_request);
1523
1524/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001525 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1527 * @bio: The &struct bio which describes the I/O
1528 *
1529 * submit_bio() is very similar in purpose to generic_make_request(), and
1530 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001531 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 *
1533 */
1534void submit_bio(int rw, struct bio *bio)
1535{
1536 int count = bio_sectors(bio);
1537
Jens Axboe22e2c502005-06-27 10:55:12 +02001538 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Jens Axboebf2de6f2007-09-27 13:01:25 +02001540 /*
1541 * If it's a regular read/write or a barrier with data attached,
1542 * go through the normal accounting stuff before submission.
1543 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001544 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001545 if (rw & WRITE) {
1546 count_vm_events(PGPGOUT, count);
1547 } else {
1548 task_io_account_read(bio->bi_size);
1549 count_vm_events(PGPGIN, count);
1550 }
1551
1552 if (unlikely(block_dump)) {
1553 char b[BDEVNAME_SIZE];
1554 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001555 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001556 (rw & WRITE) ? "WRITE" : "READ",
1557 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001558 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561
1562 generic_make_request(bio);
1563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564EXPORT_SYMBOL(submit_bio);
1565
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001566/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001567 * blk_rq_check_limits - Helper function to check a request for the queue limit
1568 * @q: the queue
1569 * @rq: the request being checked
1570 *
1571 * Description:
1572 * @rq may have been made based on weaker limitations of upper-level queues
1573 * in request stacking drivers, and it may violate the limitation of @q.
1574 * Since the block layer and the underlying device driver trust @rq
1575 * after it is inserted to @q, it should be checked against @q before
1576 * the insertion using this generic function.
1577 *
1578 * This function should also be useful for request stacking drivers
1579 * in some cases below, so export this fuction.
1580 * Request stacking drivers like request-based dm may change the queue
1581 * limits while requests are in the queue (e.g. dm's table swapping).
1582 * Such request stacking drivers should check those requests agaist
1583 * the new queue limits again when they dispatch those requests,
1584 * although such checkings are also done against the old queue limits
1585 * when submitting requests.
1586 */
1587int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1588{
1589 if (rq->nr_sectors > q->max_sectors ||
1590 rq->data_len > q->max_hw_sectors << 9) {
1591 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1592 return -EIO;
1593 }
1594
1595 /*
1596 * queue's settings related to segment counting like q->bounce_pfn
1597 * may differ from that of other stacking queues.
1598 * Recalculate it to check the request correctly on this queue's
1599 * limitation.
1600 */
1601 blk_recalc_rq_segments(rq);
1602 if (rq->nr_phys_segments > q->max_phys_segments ||
1603 rq->nr_phys_segments > q->max_hw_segments) {
1604 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1605 return -EIO;
1606 }
1607
1608 return 0;
1609}
1610EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1611
1612/**
1613 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1614 * @q: the queue to submit the request
1615 * @rq: the request being queued
1616 */
1617int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1618{
1619 unsigned long flags;
1620
1621 if (blk_rq_check_limits(q, rq))
1622 return -EIO;
1623
1624#ifdef CONFIG_FAIL_MAKE_REQUEST
1625 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1626 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1627 return -EIO;
1628#endif
1629
1630 spin_lock_irqsave(q->queue_lock, flags);
1631
1632 /*
1633 * Submitting request must be dequeued before calling this function
1634 * because it will be linked to another request_queue
1635 */
1636 BUG_ON(blk_queued_rq(rq));
1637
1638 drive_stat_acct(rq, 1);
1639 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1640
1641 spin_unlock_irqrestore(q->queue_lock, flags);
1642
1643 return 0;
1644}
1645EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1646
1647/**
Tejun Heo53a08802008-12-03 12:41:26 +01001648 * blkdev_dequeue_request - dequeue request and start timeout timer
1649 * @req: request to dequeue
1650 *
1651 * Dequeue @req and start timeout timer on it. This hands off the
1652 * request to the driver.
1653 *
1654 * Block internal functions which don't want to start timer should
1655 * call elv_dequeue_request().
1656 */
1657void blkdev_dequeue_request(struct request *req)
1658{
1659 elv_dequeue_request(req->q, req);
1660
1661 /*
1662 * We are now handing the request to the hardware, add the
1663 * timeout handler.
1664 */
1665 blk_add_timer(req);
1666}
1667EXPORT_SYMBOL(blkdev_dequeue_request);
1668
Jens Axboebc58ba92009-01-23 10:54:44 +01001669static void blk_account_io_completion(struct request *req, unsigned int bytes)
1670{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001671 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001672 return;
1673
1674 if (blk_fs_request(req)) {
1675 const int rw = rq_data_dir(req);
1676 struct hd_struct *part;
1677 int cpu;
1678
1679 cpu = part_stat_lock();
1680 part = disk_map_sector_rcu(req->rq_disk, req->sector);
1681 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1682 part_stat_unlock();
1683 }
1684}
1685
1686static void blk_account_io_done(struct request *req)
1687{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001688 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001689 return;
1690
1691 /*
1692 * Account IO completion. bar_rq isn't accounted as a normal
1693 * IO on queueing nor completion. Accounting the containing
1694 * request is enough.
1695 */
1696 if (blk_fs_request(req) && req != &req->q->bar_rq) {
1697 unsigned long duration = jiffies - req->start_time;
1698 const int rw = rq_data_dir(req);
1699 struct hd_struct *part;
1700 int cpu;
1701
1702 cpu = part_stat_lock();
Jerome Marchand26308ea2009-03-27 10:31:51 +01001703 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Jens Axboebc58ba92009-01-23 10:54:44 +01001704
1705 part_stat_inc(cpu, part, ios[rw]);
1706 part_stat_add(cpu, part, ticks[rw], duration);
1707 part_round_stats(cpu, part);
1708 part_dec_in_flight(part);
1709
1710 part_stat_unlock();
1711 }
1712}
1713
Tejun Heo53a08802008-12-03 12:41:26 +01001714/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001715 * __end_that_request_first - end I/O on a request
1716 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001717 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001718 * @nr_bytes: number of bytes to complete
1719 *
1720 * Description:
1721 * Ends I/O on a number of bytes attached to @req, and sets it up
1722 * for the next range of segments (if any) in the cluster.
1723 *
1724 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001725 * %0 - we are done with this request, call end_that_request_last()
1726 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001727 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001728static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int nr_bytes)
1730{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001731 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct bio *bio;
1733
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001734 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 /*
Tejun Heo924cec72009-04-19 07:00:41 +09001737 * For fs requests, rq is just carrier of independent bio's
1738 * and each partial completion should be handled separately.
1739 * Reset per-request error on each partial completion.
1740 *
1741 * TODO: tj: This is too subtle. It would be better to let
1742 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
Tejun Heo924cec72009-04-19 07:00:41 +09001744 if (blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 req->errors = 0;
1746
Jens Axboe6728cb02008-01-31 13:03:55 +01001747 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1748 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 req->rq_disk ? req->rq_disk->disk_name : "?",
1750 (unsigned long long)req->sector);
1751 }
1752
Jens Axboebc58ba92009-01-23 10:54:44 +01001753 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 total_bytes = bio_nbytes = 0;
1756 while ((bio = req->bio) != NULL) {
1757 int nbytes;
1758
1759 if (nr_bytes >= bio->bi_size) {
1760 req->bio = bio->bi_next;
1761 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001762 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 next_idx = 0;
1764 bio_nbytes = 0;
1765 } else {
1766 int idx = bio->bi_idx + next_idx;
1767
1768 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1769 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001770 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001771 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 break;
1773 }
1774
1775 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1776 BIO_BUG_ON(nbytes > bio->bi_size);
1777
1778 /*
1779 * not a complete bvec done
1780 */
1781 if (unlikely(nbytes > nr_bytes)) {
1782 bio_nbytes += nr_bytes;
1783 total_bytes += nr_bytes;
1784 break;
1785 }
1786
1787 /*
1788 * advance to the next vector
1789 */
1790 next_idx++;
1791 bio_nbytes += nbytes;
1792 }
1793
1794 total_bytes += nbytes;
1795 nr_bytes -= nbytes;
1796
Jens Axboe6728cb02008-01-31 13:03:55 +01001797 bio = req->bio;
1798 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 /*
1800 * end more in this run, or just return 'not-done'
1801 */
1802 if (unlikely(nr_bytes <= 0))
1803 break;
1804 }
1805 }
1806
1807 /*
1808 * completely done
1809 */
1810 if (!req->bio)
1811 return 0;
1812
1813 /*
1814 * if the request wasn't completed, update state
1815 */
1816 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001817 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 bio->bi_idx += next_idx;
1819 bio_iovec(bio)->bv_offset += nr_bytes;
1820 bio_iovec(bio)->bv_len -= nr_bytes;
1821 }
1822
1823 blk_recalc_rq_sectors(req, total_bytes >> 9);
1824 blk_recalc_rq_segments(req);
1825 return 1;
1826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/*
1829 * queue lock must be held
1830 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001831static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001833 if (blk_rq_tagged(req))
1834 blk_queue_end_tag(req->q, req);
1835
1836 if (blk_queued_rq(req))
Tejun Heo53a08802008-12-03 12:41:26 +01001837 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 if (unlikely(laptop_mode) && blk_fs_request(req))
1840 laptop_io_completion();
1841
Mike Andersone78042e2008-10-30 02:16:20 -07001842 blk_delete_timer(req);
1843
Jens Axboebc58ba92009-01-23 10:54:44 +01001844 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001847 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001848 else {
1849 if (blk_bidi_rq(req))
1850 __blk_put_request(req->next_rq->q, req->next_rq);
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854}
1855
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001856/**
1857 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001858 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001859 **/
1860unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001861{
1862 if (blk_fs_request(rq))
1863 return rq->hard_nr_sectors << 9;
1864
1865 return rq->data_len;
1866}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001867EXPORT_SYMBOL_GPL(blk_rq_bytes);
1868
1869/**
1870 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001871 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001872 **/
1873unsigned int blk_rq_cur_bytes(struct request *rq)
1874{
1875 if (blk_fs_request(rq))
1876 return rq->current_nr_sectors << 9;
1877
1878 if (rq->bio)
1879 return rq->bio->bi_size;
1880
1881 return rq->data_len;
1882}
1883EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001884
1885/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001886 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001887 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001888 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001889 *
1890 * Description:
1891 * Ends I/O on the current segment of a request. If that is the only
1892 * remaining segment, the request is also completed and freed.
1893 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001894 * This is a remnant of how older block drivers handled I/O completions.
1895 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001896 * they have a residual value to account for. For that case this function
1897 * isn't really useful, unless the residual just happens to be the
1898 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001899 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001900 **/
1901void end_request(struct request *req, int uptodate)
1902{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001903 int error = 0;
1904
1905 if (uptodate <= 0)
1906 error = uptodate ? uptodate : -EIO;
1907
1908 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910EXPORT_SYMBOL(end_request);
1911
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001912static int end_that_request_data(struct request *rq, int error,
1913 unsigned int nr_bytes, unsigned int bidi_bytes)
1914{
1915 if (rq->bio) {
1916 if (__end_that_request_first(rq, error, nr_bytes))
1917 return 1;
1918
1919 /* Bidi request must be completed as a whole */
1920 if (blk_bidi_rq(rq) &&
1921 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1922 return 1;
1923 }
1924
1925 return 0;
1926}
1927
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001928/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001929 * blk_end_io - Generic end_io function to complete a request.
1930 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001931 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001932 * @nr_bytes: number of bytes to complete @rq
1933 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001934 * @drv_callback: function called between completion of bios in the request
1935 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001936 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001937 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001938 *
1939 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001940 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001941 * If @rq has leftover, sets it up for the next range of segments.
1942 *
1943 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001944 * %0 - we are done with this request
1945 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001946 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001947static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1948 unsigned int bidi_bytes,
1949 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001950{
1951 struct request_queue *q = rq->q;
1952 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001953
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001954 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1955 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001956
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001957 /* Special feature for tricky drivers */
1958 if (drv_callback && drv_callback(rq))
1959 return 1;
1960
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001961 add_disk_randomness(rq->rq_disk);
1962
1963 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001964 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001965 spin_unlock_irqrestore(q->queue_lock, flags);
1966
1967 return 0;
1968}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001969
1970/**
1971 * blk_end_request - Helper function for drivers to complete the request.
1972 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001973 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001974 * @nr_bytes: number of bytes to complete
1975 *
1976 * Description:
1977 * Ends I/O on a number of bytes attached to @rq.
1978 * If @rq has leftover, sets it up for the next range of segments.
1979 *
1980 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001981 * %0 - we are done with this request
1982 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001983 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001984int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001985{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001986 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001987}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001988EXPORT_SYMBOL_GPL(blk_end_request);
1989
1990/**
1991 * __blk_end_request - Helper function for drivers to complete the request.
1992 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001993 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001994 * @nr_bytes: number of bytes to complete
1995 *
1996 * Description:
1997 * Must be called with queue lock held unlike blk_end_request().
1998 *
1999 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002000 * %0 - we are done with this request
2001 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002002 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002003int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002004{
Jens Axboe60540162008-08-26 13:34:34 +02002005 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02002006 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002007
2008 add_disk_randomness(rq->rq_disk);
2009
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002010 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002011
2012 return 0;
2013}
2014EXPORT_SYMBOL_GPL(__blk_end_request);
2015
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002016/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002017 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
2018 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002019 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002020 * @nr_bytes: number of bytes to complete @rq
2021 * @bidi_bytes: number of bytes to complete @rq->next_rq
2022 *
2023 * Description:
2024 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2025 *
2026 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002027 * %0 - we are done with this request
2028 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002029 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002030int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2031 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002032{
2033 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2034}
2035EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2036
2037/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002038 * blk_update_request - Special helper function for request stacking drivers
2039 * @rq: the request being processed
2040 * @error: %0 for success, < %0 for error
2041 * @nr_bytes: number of bytes to complete @rq
2042 *
2043 * Description:
2044 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2045 * the request structure even if @rq doesn't have leftover.
2046 * If @rq has leftover, sets it up for the next range of segments.
2047 *
2048 * This special helper function is only for request stacking drivers
2049 * (e.g. request-based dm) so that they can handle partial completion.
2050 * Actual device drivers should use blk_end_request instead.
2051 */
2052void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2053{
2054 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2055 /*
2056 * These members are not updated in end_that_request_data()
2057 * when all bios are completed.
2058 * Update them so that the request stacking driver can find
2059 * how many bytes remain in the request later.
2060 */
2061 rq->nr_sectors = rq->hard_nr_sectors = 0;
2062 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2063 }
2064}
2065EXPORT_SYMBOL_GPL(blk_update_request);
2066
2067/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002068 * blk_end_request_callback - Special helper function for tricky drivers
2069 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002070 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002071 * @nr_bytes: number of bytes to complete
2072 * @drv_callback: function called between completion of bios in the request
2073 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002074 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002075 * completion of the request.
2076 *
2077 * Description:
2078 * Ends I/O on a number of bytes attached to @rq.
2079 * If @rq has leftover, sets it up for the next range of segments.
2080 *
2081 * This special helper function is used only for existing tricky drivers.
2082 * (e.g. cdrom_newpc_intr() of ide-cd)
2083 * This interface will be removed when such drivers are rewritten.
2084 * Don't use this interface in other places anymore.
2085 *
2086 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002087 * %0 - we are done with this request
2088 * %1 - this request is not freed yet.
2089 * this request still has pending buffers or
2090 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002091 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002092int blk_end_request_callback(struct request *rq, int error,
2093 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002094 int (drv_callback)(struct request *))
2095{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002096 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002097}
2098EXPORT_SYMBOL_GPL(blk_end_request_callback);
2099
Jens Axboe86db1e22008-01-29 14:53:40 +01002100void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2101 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
David Woodhoused628eae2008-08-09 16:22:17 +01002103 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2104 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002105 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
David Woodhousefb2dce82008-08-05 18:01:53 +01002107 if (bio_has_data(bio)) {
2108 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002109 rq->buffer = bio_data(bio);
2110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 rq->current_nr_sectors = bio_cur_sectors(bio);
2112 rq->hard_cur_sectors = rq->current_nr_sectors;
2113 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002114 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
NeilBrown66846572007-08-16 13:31:28 +02002118 if (bio->bi_bdev)
2119 rq->rq_disk = bio->bi_bdev->bd_disk;
2120}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002122/**
2123 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2124 * @q : the queue of the device being checked
2125 *
2126 * Description:
2127 * Check if underlying low-level drivers of a device are busy.
2128 * If the drivers want to export their busy state, they must set own
2129 * exporting function using blk_queue_lld_busy() first.
2130 *
2131 * Basically, this function is used only by request stacking drivers
2132 * to stop dispatching requests to underlying devices when underlying
2133 * devices are busy. This behavior helps more I/O merging on the queue
2134 * of the request stacking driver and prevents I/O throughput regression
2135 * on burst I/O load.
2136 *
2137 * Return:
2138 * 0 - Not busy (The request stacking driver should dispatch request)
2139 * 1 - Busy (The request stacking driver should stop dispatching request)
2140 */
2141int blk_lld_busy(struct request_queue *q)
2142{
2143 if (q->lld_busy_fn)
2144 return q->lld_busy_fn(q);
2145
2146 return 0;
2147}
2148EXPORT_SYMBOL_GPL(blk_lld_busy);
2149
Jens Axboe18887ad2008-07-28 13:08:45 +02002150int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
2152 return queue_work(kblockd_workqueue, work);
2153}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154EXPORT_SYMBOL(kblockd_schedule_work);
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156int __init blk_dev_init(void)
2157{
2158 kblockd_workqueue = create_workqueue("kblockd");
2159 if (!kblockd_workqueue)
2160 panic("Failed to create kblockd\n");
2161
2162 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002163 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Jens Axboe8324aa92008-01-29 14:51:59 +01002165 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002166 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 return 0;
2169}
2170