blob: 3688abff24307eccc0f702541c311e11b71f90d8 [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;
Jens Axboe63a71382008-02-08 12:41:03 +0100134 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100135 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200137EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
NeilBrown5bb23a62007-09-27 12:46:13 +0200139static void req_bio_endio(struct request *rq, struct bio *bio,
140 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100141{
Jens Axboe165125e2007-07-24 09:28:11 +0200142 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100143
NeilBrown5bb23a62007-09-27 12:46:13 +0200144 if (&q->bar_rq != rq) {
145 if (error)
146 clear_bit(BIO_UPTODATE, &bio->bi_flags);
147 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
148 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100151 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700152 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200153 nbytes = bio->bi_size;
154 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100155
Keith Mannthey08bafc02008-11-25 10:24:35 +0100156 if (unlikely(rq->cmd_flags & REQ_QUIET))
157 set_bit(BIO_QUIET, &bio->bi_flags);
158
NeilBrown5bb23a62007-09-27 12:46:13 +0200159 bio->bi_size -= nbytes;
160 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200161
162 if (bio_integrity(bio))
163 bio_integrity_advance(bio, nbytes);
164
NeilBrown5bb23a62007-09-27 12:46:13 +0200165 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200166 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200167 } else {
168
169 /*
170 * Okay, this is the barrier request in progress, just
171 * record the error;
172 */
173 if (error && !q->orderr)
174 q->orderr = error;
175 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178void blk_dump_rq_flags(struct request *rq, char *msg)
179{
180 int bit;
181
Jens Axboe6728cb02008-01-31 13:03:55 +0100182 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200183 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
184 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jens Axboe6728cb02008-01-31 13:03:55 +0100186 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
187 (unsigned long long)rq->sector,
188 rq->nr_sectors,
189 rq->current_nr_sectors);
190 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
191 rq->bio, rq->biotail,
192 rq->buffer, rq->data,
193 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Jens Axboe4aff5e22006-08-10 08:44:47 +0200195 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100196 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200197 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 printk("%02x ", rq->cmd[bit]);
199 printk("\n");
200 }
201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202EXPORT_SYMBOL(blk_dump_rq_flags);
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * "plug" the device if there are no outstanding requests: this will
206 * force the transfer to start only after we have put all the requests
207 * on the list.
208 *
209 * This is called with interrupts off and no requests on the queue and
210 * with the queue lock held.
211 */
Jens Axboe165125e2007-07-24 09:28:11 +0200212void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 WARN_ON(!irqs_disabled());
215
216 /*
217 * don't plug a stopped queue, it must be paired with blk_start_queue()
218 * which will restart the queueing
219 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200220 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return;
222
Jens Axboee48ec692008-07-03 13:18:54 +0200223 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100225 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228EXPORT_SYMBOL(blk_plug_device);
229
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200230/**
231 * blk_plug_device_unlocked - plug a device without queue lock held
232 * @q: The &struct request_queue to plug
233 *
234 * Description:
235 * Like @blk_plug_device(), but grabs the queue lock and disables
236 * interrupts.
237 **/
238void blk_plug_device_unlocked(struct request_queue *q)
239{
240 unsigned long flags;
241
242 spin_lock_irqsave(q->queue_lock, flags);
243 blk_plug_device(q);
244 spin_unlock_irqrestore(q->queue_lock, flags);
245}
246EXPORT_SYMBOL(blk_plug_device_unlocked);
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*
249 * remove the queue from the plugged list, if present. called with
250 * queue lock held and interrupts disabled.
251 */
Jens Axboe165125e2007-07-24 09:28:11 +0200252int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 WARN_ON(!irqs_disabled());
255
Jens Axboee48ec692008-07-03 13:18:54 +0200256 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
258
259 del_timer(&q->unplug_timer);
260 return 1;
261}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262EXPORT_SYMBOL(blk_remove_plug);
263
264/*
265 * remove the plug and let it rip..
266 */
Jens Axboe165125e2007-07-24 09:28:11 +0200267void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200269 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200271 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
273
Jens Axboe22e2c502005-06-27 10:55:12 +0200274 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/**
278 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200279 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 *
281 * Description:
282 * Linux uses plugging to build bigger requests queues before letting
283 * the device have at them. If a queue is plugged, the I/O scheduler
284 * is still adding and merging requests on the queue. Once the queue
285 * gets unplugged, the request_fn defined for the queue is invoked and
286 * transfers started.
287 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200288void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200290 if (blk_queue_plugged(q)) {
291 spin_lock_irq(q->queue_lock);
292 __generic_unplug_device(q);
293 spin_unlock_irq(q->queue_lock);
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296EXPORT_SYMBOL(generic_unplug_device);
297
298static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
299 struct page *page)
300{
Jens Axboe165125e2007-07-24 09:28:11 +0200301 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500303 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Jens Axboe86db1e22008-01-29 14:53:40 +0100306void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Jens Axboe165125e2007-07-24 09:28:11 +0200308 struct request_queue *q =
309 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100311 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 q->unplug_fn(q);
313}
314
Jens Axboe86db1e22008-01-29 14:53:40 +0100315void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Jens Axboe165125e2007-07-24 09:28:11 +0200317 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100319 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200320 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500323void blk_unplug(struct request_queue *q)
324{
325 /*
326 * devices don't necessarily have an ->unplug_fn defined
327 */
328 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100329 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500330 q->unplug_fn(q);
331 }
332}
333EXPORT_SYMBOL(blk_unplug);
334
Jens Axboec7c22e42008-09-13 20:26:01 +0200335static void blk_invoke_request_fn(struct request_queue *q)
336{
Jens Axboe80a4b582008-10-14 09:51:06 +0200337 if (unlikely(blk_queue_stopped(q)))
338 return;
339
Jens Axboec7c22e42008-09-13 20:26:01 +0200340 /*
341 * one level of recursion is ok and is much faster than kicking
342 * the unplug handling
343 */
344 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
345 q->request_fn(q);
346 queue_flag_clear(QUEUE_FLAG_REENTER, q);
347 } else {
348 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
349 kblockd_schedule_work(q, &q->unplug_work);
350 }
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/**
354 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200355 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * Description:
358 * blk_start_queue() will clear the stop flag on the queue, and call
359 * the request_fn for the queue if it was in a stopped state when
360 * entered. Also see blk_stop_queue(). Queue lock must be held.
361 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200362void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200364 WARN_ON(!irqs_disabled());
365
Nick Piggin75ad23b2008-04-29 14:48:33 +0200366 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200367 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369EXPORT_SYMBOL(blk_start_queue);
370
371/**
372 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200373 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *
375 * Description:
376 * The Linux block layer assumes that a block driver will consume all
377 * entries on the request queue when the request_fn strategy is called.
378 * Often this will not happen, because of hardware limitations (queue
379 * depth settings). If a device driver gets a 'queue full' response,
380 * or if it simply chooses not to queue more I/O at one point, it can
381 * call this function to prevent the request_fn from being called until
382 * the driver has signalled it's ready to go again. This happens by calling
383 * blk_start_queue() to restart queue operations. Queue lock must be held.
384 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200385void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
387 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200388 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390EXPORT_SYMBOL(blk_stop_queue);
391
392/**
393 * blk_sync_queue - cancel any pending callbacks on a queue
394 * @q: the queue
395 *
396 * Description:
397 * The block layer may perform asynchronous callback activity
398 * on a queue, such as calling the unplug function after a timeout.
399 * A block device may call blk_sync_queue to ensure that any
400 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200401 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * that its ->make_request_fn will not re-add plugging prior to calling
403 * this function.
404 *
405 */
406void blk_sync_queue(struct request_queue *q)
407{
408 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100409 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100410 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412EXPORT_SYMBOL(blk_sync_queue);
413
414/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200415 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200417 *
418 * Description:
419 * See @blk_run_queue. This variant must be called with the queue lock
420 * held and interrupts disabled.
421 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200423void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200426
427 /*
428 * Only recurse once to avoid overrunning the stack, let the unplug
429 * handling reinvoke the handler shortly if we already got there.
430 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200431 if (!elv_queue_empty(q))
432 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200433}
434EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200435
Nick Piggin75ad23b2008-04-29 14:48:33 +0200436/**
437 * blk_run_queue - run a single device queue
438 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200439 *
440 * Description:
441 * Invoke request handling on this queue, if it has pending work to do.
442 * May be used to restart queueing when a request has completed. Also
443 * See @blk_start_queueing.
444 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200445 */
446void blk_run_queue(struct request_queue *q)
447{
448 unsigned long flags;
449
450 spin_lock_irqsave(q->queue_lock, flags);
451 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 spin_unlock_irqrestore(q->queue_lock, flags);
453}
454EXPORT_SYMBOL(blk_run_queue);
455
Jens Axboe165125e2007-07-24 09:28:11 +0200456void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500457{
458 kobject_put(&q->kobj);
459}
Al Viro483f4af2006-03-18 18:34:37 -0500460
Jens Axboe6728cb02008-01-31 13:03:55 +0100461void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500462{
Jens Axboee3335de2008-09-18 09:22:54 -0700463 /*
464 * We know we have process context here, so we can be a little
465 * cautious and ensure that pending block actions on this device
466 * are done before moving on. Going into this function, we should
467 * not have processes doing IO to this device.
468 */
469 blk_sync_queue(q);
470
Al Viro483f4af2006-03-18 18:34:37 -0500471 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200472 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500473 mutex_unlock(&q->sysfs_lock);
474
475 if (q->elevator)
476 elevator_exit(q->elevator);
477
478 blk_put_queue(q);
479}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480EXPORT_SYMBOL(blk_cleanup_queue);
481
Jens Axboe165125e2007-07-24 09:28:11 +0200482static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct request_list *rl = &q->rq;
485
Jens Axboe1faa16d2009-04-06 14:48:01 +0200486 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
487 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200488 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200489 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
490 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Christoph Lameter19460892005-06-23 00:08:19 -0700492 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
493 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 if (!rl->rq_pool)
496 return -ENOMEM;
497
498 return 0;
499}
500
Jens Axboe165125e2007-07-24 09:28:11 +0200501struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Christoph Lameter19460892005-06-23 00:08:19 -0700503 return blk_alloc_queue_node(gfp_mask, -1);
504}
505EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Jens Axboe165125e2007-07-24 09:28:11 +0200507struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700508{
Jens Axboe165125e2007-07-24 09:28:11 +0200509 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700510 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700511
Jens Axboe8324aa92008-01-29 14:51:59 +0100512 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700513 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (!q)
515 return NULL;
516
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700517 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
518 q->backing_dev_info.unplug_io_data = q;
519 err = bdi_init(&q->backing_dev_info);
520 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100521 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700522 return NULL;
523 }
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700526 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
527 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200528 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500529
Jens Axboe8324aa92008-01-29 14:51:59 +0100530 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Al Viro483f4af2006-03-18 18:34:37 -0500532 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700533 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return q;
536}
Christoph Lameter19460892005-06-23 00:08:19 -0700537EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539/**
540 * blk_init_queue - prepare a request queue for use with a block device
541 * @rfn: The function to be called to process requests that have been
542 * placed on the queue.
543 * @lock: Request queue spin lock
544 *
545 * Description:
546 * If a block device wishes to use the standard request handling procedures,
547 * which sorts requests and coalesces adjacent requests, then it must
548 * call blk_init_queue(). The function @rfn will be called when there
549 * are requests on the queue that need to be processed. If the device
550 * supports plugging, then @rfn may not be called immediately when requests
551 * are available on the queue, but may be called at some time later instead.
552 * Plugged queues are generally unplugged when a buffer belonging to one
553 * of the requests on the queue is needed, or due to memory pressure.
554 *
555 * @rfn is not required, or even expected, to remove all requests off the
556 * queue, but only as many as it can handle at a time. If it does leave
557 * requests on the queue, it is responsible for arranging that the requests
558 * get dealt with eventually.
559 *
560 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200561 * request queue; this lock will be taken also from interrupt context, so irq
562 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200564 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * it didn't succeed.
566 *
567 * Note:
568 * blk_init_queue() must be paired with a blk_cleanup_queue() call
569 * when the block device is deactivated (such as at module unload).
570 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700571
Jens Axboe165125e2007-07-24 09:28:11 +0200572struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Christoph Lameter19460892005-06-23 00:08:19 -0700574 return blk_init_queue_node(rfn, lock, -1);
575}
576EXPORT_SYMBOL(blk_init_queue);
577
Jens Axboe165125e2007-07-24 09:28:11 +0200578struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700579blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
580{
Jens Axboe165125e2007-07-24 09:28:11 +0200581 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (!q)
584 return NULL;
585
Christoph Lameter19460892005-06-23 00:08:19 -0700586 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500587 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100588 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500589 return NULL;
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
152587d2005-04-12 16:22:06 -0500592 /*
593 * if caller didn't supply a lock, they get per-queue locking with
594 * our embedded lock
595 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700596 if (!lock)
152587d2005-04-12 16:22:06 -0500597 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 q->prep_rq_fn = NULL;
601 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100602 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 q->queue_lock = lock;
604
Jens Axboef3b144a2009-03-06 08:48:33 +0100605 /*
606 * This also sets hw/phys segments, boundary and size
607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Alan Stern44ec9542007-02-20 11:01:57 -0500610 q->sg_reserved_size = INT_MAX;
611
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900612 blk_set_cmd_filter_defaults(&q->cmd_filter);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /*
615 * all done
616 */
617 if (!elevator_init(q, NULL)) {
618 blk_queue_congestion_threshold(q);
619 return q;
620 }
621
Al Viro8669aaf2006-03-18 13:50:00 -0500622 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return NULL;
624}
Christoph Lameter19460892005-06-23 00:08:19 -0700625EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Jens Axboe165125e2007-07-24 09:28:11 +0200627int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700629 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500630 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 0;
632 }
633
634 return 1;
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Jens Axboe165125e2007-07-24 09:28:11 +0200637static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200639 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200640 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 mempool_free(rq, q->rq.rq_pool);
642}
643
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200644static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200645blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
648
649 if (!rq)
650 return NULL;
651
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200652 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200653
Jens Axboe49171e52006-08-10 08:59:11 +0200654 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Tejun Heocb98fc82005-10-28 08:29:39 +0200656 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200657 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200658 mempool_free(rq, q->rq.rq_pool);
659 return NULL;
660 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200661 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Tejun Heocb98fc82005-10-28 08:29:39 +0200664 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
668 * ioc_batching returns true if the ioc is a valid batching request and
669 * should be given priority access to a request.
670 */
Jens Axboe165125e2007-07-24 09:28:11 +0200671static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 if (!ioc)
674 return 0;
675
676 /*
677 * Make sure the process is able to allocate at least 1 request
678 * even if the batch times out, otherwise we could theoretically
679 * lose wakeups.
680 */
681 return ioc->nr_batch_requests == q->nr_batching ||
682 (ioc->nr_batch_requests > 0
683 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
684}
685
686/*
687 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
688 * will cause the process to be a "batcher" on all queues in the system. This
689 * is the behaviour we want though - once it gets a wakeup it should be given
690 * a nice run.
691 */
Jens Axboe165125e2007-07-24 09:28:11 +0200692static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 if (!ioc || ioc_batching(q, ioc))
695 return;
696
697 ioc->nr_batch_requests = q->nr_batching;
698 ioc->last_waited = jiffies;
699}
700
Jens Axboe1faa16d2009-04-06 14:48:01 +0200701static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct request_list *rl = &q->rq;
704
Jens Axboe1faa16d2009-04-06 14:48:01 +0200705 if (rl->count[sync] < queue_congestion_off_threshold(q))
706 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Jens Axboe1faa16d2009-04-06 14:48:01 +0200708 if (rl->count[sync] + 1 <= q->nr_requests) {
709 if (waitqueue_active(&rl->wait[sync]))
710 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Jens Axboe1faa16d2009-04-06 14:48:01 +0200712 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714}
715
716/*
717 * A request has just been released. Account for it, update the full and
718 * congestion status, wake up any waiters. Called under q->queue_lock.
719 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200720static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct request_list *rl = &q->rq;
723
Jens Axboe1faa16d2009-04-06 14:48:01 +0200724 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200725 if (priv)
726 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Jens Axboe1faa16d2009-04-06 14:48:01 +0200728 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Jens Axboe1faa16d2009-04-06 14:48:01 +0200730 if (unlikely(rl->starved[sync ^ 1]))
731 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734/*
Nick Piggind6344532005-06-28 20:45:14 -0700735 * Get a free request, queue_lock must be held.
736 * Returns NULL on failure, with queue_lock held.
737 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
Jens Axboe165125e2007-07-24 09:28:11 +0200739static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100740 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 struct request *rq = NULL;
743 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100744 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200745 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100746 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Jens Axboe7749a8d2006-12-13 13:02:26 +0100748 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100749 if (may_queue == ELV_MQUEUE_NO)
750 goto rq_starved;
751
Jens Axboe1faa16d2009-04-06 14:48:01 +0200752 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
753 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200754 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100755 /*
756 * The queue will fill after this allocation, so set
757 * it as full, and mark this process as "batching".
758 * This process will be allowed to complete a batch of
759 * requests, others will be blocked.
760 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200761 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100762 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200763 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100764 } else {
765 if (may_queue != ELV_MQUEUE_MUST
766 && !ioc_batching(q, ioc)) {
767 /*
768 * The queue is full and the allocating
769 * process is not a "batcher", and not
770 * exempted by the IO scheduler
771 */
772 goto out;
773 }
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200776 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Jens Axboe082cf692005-06-28 16:35:11 +0200779 /*
780 * Only allow batching queuers to allocate up to 50% over the defined
781 * limit of requests, otherwise we could have thousands of requests
782 * allocated with any setting of ->nr_requests
783 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200784 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200785 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100786
Jens Axboe1faa16d2009-04-06 14:48:01 +0200787 rl->count[is_sync]++;
788 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200789
Jens Axboe64521d12005-10-28 08:30:39 +0200790 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200791 if (priv)
792 rl->elvpriv++;
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 spin_unlock_irq(q->queue_lock);
795
Jens Axboe7749a8d2006-12-13 13:02:26 +0100796 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100797 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * Allocation failed presumably due to memory. Undo anything
800 * we might have messed up.
801 *
802 * Allocating task should really be put onto the front of the
803 * wait queue, but this is pretty rare.
804 */
805 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200806 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /*
809 * in the very unlikely event that allocation failed and no
810 * requests for this direction was pending, mark us starved
811 * so that freeing of a request in the other direction will
812 * notice us. another possible fix would be to split the
813 * rq mempool into READ and WRITE
814 */
815rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200816 if (unlikely(rl->count[is_sync] == 0))
817 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto out;
820 }
821
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100822 /*
823 * ioc may be NULL here, and ioc_batching will be false. That's
824 * OK, if the queue is under the request limit then requests need
825 * not count toward the nr_batch_requests limit. There will always
826 * be some limit enforced by BLK_BATCH_TIME.
827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (ioc_batching(q, ioc))
829 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100830
Jens Axboe1faa16d2009-04-06 14:48:01 +0200831 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return rq;
834}
835
836/*
837 * No available requests for this queue, unplug the device and wait for some
838 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700839 *
840 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 */
Jens Axboe165125e2007-07-24 09:28:11 +0200842static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200843 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200845 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct request *rq;
847
Jens Axboe7749a8d2006-12-13 13:02:26 +0100848 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700849 while (!rq) {
850 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200851 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 struct request_list *rl = &q->rq;
853
Jens Axboe1faa16d2009-04-06 14:48:01 +0200854 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 TASK_UNINTERRUPTIBLE);
856
Jens Axboe1faa16d2009-04-06 14:48:01 +0200857 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200859 __generic_unplug_device(q);
860 spin_unlock_irq(q->queue_lock);
861 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200863 /*
864 * After sleeping, we become a "batching" process and
865 * will be able to allocate at least one request, and
866 * up to a big batch of them for a small period time.
867 * See ioc_batching, ioc_set_batching
868 */
869 ioc = current_io_context(GFP_NOIO, q->node);
870 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100871
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200872 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200873 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200874
875 rq = get_request(q, rw_flags, bio, GFP_NOIO);
876 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 return rq;
879}
880
Jens Axboe165125e2007-07-24 09:28:11 +0200881struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 struct request *rq;
884
885 BUG_ON(rw != READ && rw != WRITE);
886
Nick Piggind6344532005-06-28 20:45:14 -0700887 spin_lock_irq(q->queue_lock);
888 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200889 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700890 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200891 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700892 if (!rq)
893 spin_unlock_irq(q->queue_lock);
894 }
895 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 return rq;
898}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899EXPORT_SYMBOL(blk_get_request);
900
901/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200902 * blk_start_queueing - initiate dispatch of requests to device
903 * @q: request queue to kick into gear
904 *
905 * This is basically a helper to remove the need to know whether a queue
906 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200907 * for this queue. Should be used to start queueing on a device outside
908 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200909 *
910 * The queue lock must be held with interrupts disabled.
911 */
Jens Axboe165125e2007-07-24 09:28:11 +0200912void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200913{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200914 if (!blk_queue_plugged(q)) {
915 if (unlikely(blk_queue_stopped(q)))
916 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200917 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200918 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200919 __generic_unplug_device(q);
920}
921EXPORT_SYMBOL(blk_start_queueing);
922
923/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * blk_requeue_request - put a request back on queue
925 * @q: request queue where request should be inserted
926 * @rq: request to be inserted
927 *
928 * Description:
929 * Drivers often keep queueing requests until the hardware cannot accept
930 * more, when that condition happens we need to put the request back
931 * on the queue. Must be called with queue lock held.
932 */
Jens Axboe165125e2007-07-24 09:28:11 +0200933void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700935 blk_delete_timer(rq);
936 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100937 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (blk_rq_tagged(rq))
940 blk_queue_end_tag(q, rq);
941
942 elv_requeue_request(q, rq);
943}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944EXPORT_SYMBOL(blk_requeue_request);
945
946/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200947 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * @q: request queue where request should be inserted
949 * @rq: request to be inserted
950 * @at_head: insert request at head or tail of queue
951 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *
953 * Description:
954 * Many block devices need to execute commands asynchronously, so they don't
955 * block the whole kernel from preemption during request execution. This is
956 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200957 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
958 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 *
960 * We have the option of inserting the head or the tail of the queue.
961 * Typically we use the tail for new ioctls and so forth. We use the head
962 * of the queue for things like a QUEUE_FULL message from a device, or a
963 * host that is unable to accept a particular command.
964 */
Jens Axboe165125e2007-07-24 09:28:11 +0200965void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500966 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Tejun Heo 867d1192005-04-24 02:06:05 -0500968 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 unsigned long flags;
970
971 /*
972 * tell I/O scheduler that this isn't a regular read/write (ie it
973 * must not attempt merges on this) and that it acts as a soft
974 * barrier
975 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200976 rq->cmd_type = REQ_TYPE_SPECIAL;
977 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 rq->special = data;
980
981 spin_lock_irqsave(q->queue_lock, flags);
982
983 /*
984 * If command is tagged, release the tag
985 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500986 if (blk_rq_tagged(rq))
987 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200989 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500990 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200991 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 spin_unlock_irqrestore(q->queue_lock, flags);
993}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994EXPORT_SYMBOL(blk_insert_request);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * add-request adds a request to the linked list.
998 * queue lock is held and interrupts disabled, as we muck with the
999 * request queue list.
1000 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001001static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001003 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
1006 * elevator indicated where it wants this request to be
1007 * inserted at elevator_merge time
1008 */
1009 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1010}
Jens Axboe6728cb02008-01-31 13:03:55 +01001011
Tejun Heo074a7ac2008-08-25 19:56:14 +09001012static void part_round_stats_single(int cpu, struct hd_struct *part,
1013 unsigned long now)
1014{
1015 if (now == part->stamp)
1016 return;
1017
1018 if (part->in_flight) {
1019 __part_stat_add(cpu, part, time_in_queue,
1020 part->in_flight * (now - part->stamp));
1021 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1022 }
1023 part->stamp = now;
1024}
1025
1026/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001027 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1028 * @cpu: cpu number for stats access
1029 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 *
1031 * The average IO queue length and utilisation statistics are maintained
1032 * by observing the current state of the queue length and the amount of
1033 * time it has been in this state for.
1034 *
1035 * Normally, that accounting is done on IO completion, but that can result
1036 * in more than a second's worth of IO being accounted for within any one
1037 * second, leading to >100% utilisation. To deal with that, we call this
1038 * function to do a round-off before returning the results when reading
1039 * /proc/diskstats. This accounts immediately for all queue usage up to
1040 * the current jiffies and restarts the counters again.
1041 */
Tejun Heoc9959052008-08-25 19:47:21 +09001042void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001043{
1044 unsigned long now = jiffies;
1045
Tejun Heo074a7ac2008-08-25 19:56:14 +09001046 if (part->partno)
1047 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1048 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001049}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001050EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576af2008-02-08 11:04:35 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/*
1053 * queue lock must be held
1054 */
Jens Axboe165125e2007-07-24 09:28:11 +02001055void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (unlikely(!q))
1058 return;
1059 if (unlikely(--req->ref_count))
1060 return;
1061
Tejun Heo8922e162005-10-20 16:23:44 +02001062 elv_completed_request(q, req);
1063
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001064 /* this is a bio leak */
1065 WARN_ON(req->bio != NULL);
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 /*
1068 * Request may not have originated from ll_rw_blk. if not,
1069 * it didn't come out of our reserved rq pools
1070 */
Jens Axboe49171e52006-08-10 08:59:11 +02001071 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001072 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001073 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001076 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001079 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081}
Mike Christie6e39b692005-11-11 05:30:24 -06001082EXPORT_SYMBOL_GPL(__blk_put_request);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084void blk_put_request(struct request *req)
1085{
Tejun Heo8922e162005-10-20 16:23:44 +02001086 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001087 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001089 spin_lock_irqsave(q->queue_lock, flags);
1090 __blk_put_request(q, req);
1091 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093EXPORT_SYMBOL(blk_put_request);
1094
Jens Axboe86db1e22008-01-29 14:53:40 +01001095void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001096{
Jens Axboec7c22e42008-09-13 20:26:01 +02001097 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001098 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001099
1100 /*
1101 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1102 */
Mike Christie6000a362008-08-19 18:45:30 -05001103 if (bio_rw_ahead(bio))
1104 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1105 REQ_FAILFAST_DRIVER);
1106 if (bio_failfast_dev(bio))
1107 req->cmd_flags |= REQ_FAILFAST_DEV;
1108 if (bio_failfast_transport(bio))
1109 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1110 if (bio_failfast_driver(bio))
1111 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001112
1113 /*
1114 * REQ_BARRIER implies no merging, but lets make it explicit
1115 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001116 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001117 req->cmd_flags |= REQ_DISCARD;
1118 if (bio_barrier(bio))
1119 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001120 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001121 } else if (unlikely(bio_barrier(bio)))
1122 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001123
Jens Axboeb31dc662006-06-13 08:26:10 +02001124 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001125 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe213d9412009-01-06 09:16:05 +01001126 if (bio_unplug(bio))
1127 req->cmd_flags |= REQ_UNPLUG;
Jens Axboe5404bc72006-08-10 09:01:02 +02001128 if (bio_rw_meta(bio))
1129 req->cmd_flags |= REQ_RW_META;
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001130 if (bio_noidle(bio))
1131 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001132
Tejun Heo52d9e672006-01-06 09:49:58 +01001133 req->errors = 0;
1134 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001135 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001136 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001137 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001138}
1139
Jens Axboe644b2d92009-04-06 14:48:06 +02001140/*
1141 * Only disabling plugging for non-rotational devices if it does tagging
1142 * as well, otherwise we do need the proper merging
1143 */
1144static inline bool queue_should_plug(struct request_queue *q)
1145{
1146 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
1147}
1148
Jens Axboe165125e2007-07-24 09:28:11 +02001149static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Nick Piggin450991b2005-06-28 20:45:13 -07001151 struct request *req;
Tejun Heoa7384672008-11-28 13:32:03 +09001152 int el_ret, nr_sectors;
Jens Axboe51da90f2006-07-18 04:14:45 +02001153 const unsigned short prio = bio_prio(bio);
1154 const int sync = bio_sync(bio);
Jens Axboe213d9412009-01-06 09:16:05 +01001155 const int unplug = bio_unplug(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001156 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /*
1161 * low level driver can indicate that it wants pages above a
1162 * certain limit bounced to low memory (ie for highmem, or even
1163 * ISA dma in theory)
1164 */
1165 blk_queue_bounce(q, &bio);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 spin_lock_irq(q->queue_lock);
1168
Tejun Heoa7384672008-11-28 13:32:03 +09001169 if (unlikely(bio_barrier(bio)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 goto get_rq;
1171
1172 el_ret = elv_merge(q, &req, bio);
1173 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001174 case ELEVATOR_BACK_MERGE:
1175 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Jens Axboe6728cb02008-01-31 13:03:55 +01001177 if (!ll_back_merge_fn(q, req, bio))
1178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001180 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001181
Jens Axboe6728cb02008-01-31 13:03:55 +01001182 req->biotail->bi_next = bio;
1183 req->biotail = bio;
1184 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1185 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001186 if (!blk_rq_cpu_valid(req))
1187 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001188 drive_stat_acct(req, 0);
1189 if (!attempt_back_merge(q, req))
1190 elv_merged_request(q, req, el_ret);
1191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Jens Axboe6728cb02008-01-31 13:03:55 +01001193 case ELEVATOR_FRONT_MERGE:
1194 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jens Axboe6728cb02008-01-31 13:03:55 +01001196 if (!ll_front_merge_fn(q, req, bio))
1197 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001199 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001200
Jens Axboe6728cb02008-01-31 13:03:55 +01001201 bio->bi_next = req->bio;
1202 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Jens Axboe6728cb02008-01-31 13:03:55 +01001204 /*
1205 * may not be valid. if the low level driver said
1206 * it didn't need a bounce buffer then it better
1207 * not touch req->buffer either...
1208 */
1209 req->buffer = bio_data(bio);
1210 req->current_nr_sectors = bio_cur_sectors(bio);
1211 req->hard_cur_sectors = req->current_nr_sectors;
1212 req->sector = req->hard_sector = bio->bi_sector;
1213 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1214 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001215 if (!blk_rq_cpu_valid(req))
1216 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001217 drive_stat_acct(req, 0);
1218 if (!attempt_front_merge(q, req))
1219 elv_merged_request(q, req, el_ret);
1220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Jens Axboe6728cb02008-01-31 13:03:55 +01001222 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1223 default:
1224 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001228 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001229 * This sync check and mask will be re-done in init_request_from_bio(),
1230 * but we need to set it earlier to expose the sync flag to the
1231 * rq allocator and io schedulers.
1232 */
1233 rw_flags = bio_data_dir(bio);
1234 if (sync)
1235 rw_flags |= REQ_RW_SYNC;
1236
1237 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001238 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001239 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001240 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001241 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001242
Nick Piggin450991b2005-06-28 20:45:13 -07001243 /*
1244 * After dropping the lock and possibly sleeping here, our request
1245 * may now be mergeable after it had proven unmergeable (above).
1246 * We don't worry about that case for efficiency. It won't happen
1247 * often, and the elevators are able to handle it.
1248 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001249 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Nick Piggin450991b2005-06-28 20:45:13 -07001251 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001252 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1253 bio_flagged(bio, BIO_CPU_AFFINE))
1254 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001255 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001256 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 add_request(q, req);
1258out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001259 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 spin_unlock_irq(q->queue_lock);
1262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265/*
1266 * If bio->bi_dev is a partition, remap the location
1267 */
1268static inline void blk_partition_remap(struct bio *bio)
1269{
1270 struct block_device *bdev = bio->bi_bdev;
1271
Jens Axboebf2de6f2007-09-27 13:01:25 +02001272 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 bio->bi_sector += p->start_sect;
1276 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001277
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001278 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001279 bdev->bd_dev, bio->bi_sector,
1280 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282}
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284static void handle_bad_sector(struct bio *bio)
1285{
1286 char b[BDEVNAME_SIZE];
1287
1288 printk(KERN_INFO "attempt to access beyond end of device\n");
1289 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1290 bdevname(bio->bi_bdev, b),
1291 bio->bi_rw,
1292 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1293 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1294
1295 set_bit(BIO_EOF, &bio->bi_flags);
1296}
1297
Akinobu Mitac17bb492006-12-08 02:39:46 -08001298#ifdef CONFIG_FAIL_MAKE_REQUEST
1299
1300static DECLARE_FAULT_ATTR(fail_make_request);
1301
1302static int __init setup_fail_make_request(char *str)
1303{
1304 return setup_fault_attr(&fail_make_request, str);
1305}
1306__setup("fail_make_request=", setup_fail_make_request);
1307
1308static int should_fail_request(struct bio *bio)
1309{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001310 struct hd_struct *part = bio->bi_bdev->bd_part;
1311
1312 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001313 return should_fail(&fail_make_request, bio->bi_size);
1314
1315 return 0;
1316}
1317
1318static int __init fail_make_request_debugfs(void)
1319{
1320 return init_fault_attr_dentries(&fail_make_request,
1321 "fail_make_request");
1322}
1323
1324late_initcall(fail_make_request_debugfs);
1325
1326#else /* CONFIG_FAIL_MAKE_REQUEST */
1327
1328static inline int should_fail_request(struct bio *bio)
1329{
1330 return 0;
1331}
1332
1333#endif /* CONFIG_FAIL_MAKE_REQUEST */
1334
Jens Axboec07e2b42007-07-18 13:27:58 +02001335/*
1336 * Check whether this bio extends beyond the end of the device.
1337 */
1338static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1339{
1340 sector_t maxsector;
1341
1342 if (!nr_sectors)
1343 return 0;
1344
1345 /* Test device or partition size, when known. */
1346 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1347 if (maxsector) {
1348 sector_t sector = bio->bi_sector;
1349
1350 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1351 /*
1352 * This may well happen - the kernel calls bread()
1353 * without checking the size of the device, e.g., when
1354 * mounting a device.
1355 */
1356 handle_bad_sector(bio);
1357 return 1;
1358 }
1359 }
1360
1361 return 0;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001365 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 * @bio: The bio describing the location in memory and on the device.
1367 *
1368 * generic_make_request() is used to make I/O requests of block
1369 * devices. It is passed a &struct bio, which describes the I/O that needs
1370 * to be done.
1371 *
1372 * generic_make_request() does not return any status. The
1373 * success/failure status of the request, along with notification of
1374 * completion, is delivered asynchronously through the bio->bi_end_io
1375 * function described (one day) else where.
1376 *
1377 * The caller of generic_make_request must make sure that bi_io_vec
1378 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1379 * set to describe the device address, and the
1380 * bi_end_io and optionally bi_private are set to describe how
1381 * completion notification should be signaled.
1382 *
1383 * generic_make_request and the drivers it calls may use bi_next if this
1384 * bio happens to be merged with someone else, and may change bi_dev and
1385 * bi_sector for remaps as it sees fit. So the values of these fields
1386 * should NOT be depended on after the call to generic_make_request.
1387 */
Neil Brownd89d8792007-05-01 09:53:42 +02001388static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Jens Axboe165125e2007-07-24 09:28:11 +02001390 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001391 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001393 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001394 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Jens Axboec07e2b42007-07-18 13:27:58 +02001398 if (bio_check_eod(bio, nr_sectors))
1399 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /*
1402 * Resolve the mapping until finished. (drivers are
1403 * still free to implement/resolve their own stacking
1404 * by explicitly returning 0)
1405 *
1406 * NOTE: we don't repeat the blk_size check for each new device.
1407 * Stacking drivers are expected to know what they are doing.
1408 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001409 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001410 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 do {
1412 char b[BDEVNAME_SIZE];
1413
1414 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001415 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 printk(KERN_ERR
1417 "generic_make_request: Trying to access "
1418 "nonexistent block-device %s (%Lu)\n",
1419 bdevname(bio->bi_bdev, b),
1420 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001421 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423
Jens Axboe4fa253f2007-07-18 13:13:10 +02001424 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001425 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 bdevname(bio->bi_bdev, b),
1427 bio_sectors(bio),
1428 q->max_hw_sectors);
1429 goto end_io;
1430 }
1431
Nick Pigginfde6ad22005-06-23 00:08:53 -07001432 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 goto end_io;
1434
Akinobu Mitac17bb492006-12-08 02:39:46 -08001435 if (should_fail_request(bio))
1436 goto end_io;
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /*
1439 * If this device has partitions, remap block n
1440 * of partition p to block n+start(p) of the disk.
1441 */
1442 blk_partition_remap(bio);
1443
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001444 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1445 goto end_io;
1446
NeilBrown5ddfe962006-10-30 22:07:21 -08001447 if (old_sector != -1)
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001448 trace_block_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001449 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001450
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001451 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001452
NeilBrown5ddfe962006-10-30 22:07:21 -08001453 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001454 old_dev = bio->bi_bdev->bd_dev;
1455
Jens Axboec07e2b42007-07-18 13:27:58 +02001456 if (bio_check_eod(bio, nr_sectors))
1457 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001458
1459 if (bio_discard(bio) && !q->prepare_discard_fn) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001460 err = -EOPNOTSUPP;
1461 goto end_io;
1462 }
Jens Axboecec07072009-01-13 15:28:32 +01001463 if (bio_barrier(bio) && bio_has_data(bio) &&
1464 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1465 err = -EOPNOTSUPP;
1466 goto end_io;
1467 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 ret = q->make_request_fn(q, bio);
1470 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001471
1472 return;
1473
1474end_io:
1475 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Neil Brownd89d8792007-05-01 09:53:42 +02001478/*
1479 * We only want one ->make_request_fn to be active at a time,
1480 * else stack usage with stacked devices could be a problem.
1481 * So use current->bio_{list,tail} to keep a list of requests
1482 * submited by a make_request_fn function.
1483 * current->bio_tail is also used as a flag to say if
1484 * generic_make_request is currently active in this task or not.
1485 * If it is NULL, then no make_request is active. If it is non-NULL,
1486 * then a make_request is active, and new requests should be added
1487 * at the tail
1488 */
1489void generic_make_request(struct bio *bio)
1490{
1491 if (current->bio_tail) {
1492 /* make_request is active */
1493 *(current->bio_tail) = bio;
1494 bio->bi_next = NULL;
1495 current->bio_tail = &bio->bi_next;
1496 return;
1497 }
1498 /* following loop may be a bit non-obvious, and so deserves some
1499 * explanation.
1500 * Before entering the loop, bio->bi_next is NULL (as all callers
1501 * ensure that) so we have a list with a single bio.
1502 * We pretend that we have just taken it off a longer list, so
1503 * we assign bio_list to the next (which is NULL) and bio_tail
1504 * to &bio_list, thus initialising the bio_list of new bios to be
1505 * added. __generic_make_request may indeed add some more bios
1506 * through a recursive call to generic_make_request. If it
1507 * did, we find a non-NULL value in bio_list and re-enter the loop
1508 * from the top. In this case we really did just take the bio
1509 * of the top of the list (no pretending) and so fixup bio_list and
1510 * bio_tail or bi_next, and call into __generic_make_request again.
1511 *
1512 * The loop was structured like this to make only one call to
1513 * __generic_make_request (which is important as it is large and
1514 * inlined) and to keep the structure simple.
1515 */
1516 BUG_ON(bio->bi_next);
1517 do {
1518 current->bio_list = bio->bi_next;
1519 if (bio->bi_next == NULL)
1520 current->bio_tail = &current->bio_list;
1521 else
1522 bio->bi_next = NULL;
1523 __generic_make_request(bio);
1524 bio = current->bio_list;
1525 } while (bio);
1526 current->bio_tail = NULL; /* deactivate */
1527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528EXPORT_SYMBOL(generic_make_request);
1529
1530/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001531 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1533 * @bio: The &struct bio which describes the I/O
1534 *
1535 * submit_bio() is very similar in purpose to generic_make_request(), and
1536 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001537 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 *
1539 */
1540void submit_bio(int rw, struct bio *bio)
1541{
1542 int count = bio_sectors(bio);
1543
Jens Axboe22e2c502005-06-27 10:55:12 +02001544 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Jens Axboebf2de6f2007-09-27 13:01:25 +02001546 /*
1547 * If it's a regular read/write or a barrier with data attached,
1548 * go through the normal accounting stuff before submission.
1549 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001550 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001551 if (rw & WRITE) {
1552 count_vm_events(PGPGOUT, count);
1553 } else {
1554 task_io_account_read(bio->bi_size);
1555 count_vm_events(PGPGIN, count);
1556 }
1557
1558 if (unlikely(block_dump)) {
1559 char b[BDEVNAME_SIZE];
1560 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001561 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001562 (rw & WRITE) ? "WRITE" : "READ",
1563 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001564 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567
1568 generic_make_request(bio);
1569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570EXPORT_SYMBOL(submit_bio);
1571
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001572/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001573 * blk_rq_check_limits - Helper function to check a request for the queue limit
1574 * @q: the queue
1575 * @rq: the request being checked
1576 *
1577 * Description:
1578 * @rq may have been made based on weaker limitations of upper-level queues
1579 * in request stacking drivers, and it may violate the limitation of @q.
1580 * Since the block layer and the underlying device driver trust @rq
1581 * after it is inserted to @q, it should be checked against @q before
1582 * the insertion using this generic function.
1583 *
1584 * This function should also be useful for request stacking drivers
1585 * in some cases below, so export this fuction.
1586 * Request stacking drivers like request-based dm may change the queue
1587 * limits while requests are in the queue (e.g. dm's table swapping).
1588 * Such request stacking drivers should check those requests agaist
1589 * the new queue limits again when they dispatch those requests,
1590 * although such checkings are also done against the old queue limits
1591 * when submitting requests.
1592 */
1593int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1594{
1595 if (rq->nr_sectors > q->max_sectors ||
1596 rq->data_len > q->max_hw_sectors << 9) {
1597 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1598 return -EIO;
1599 }
1600
1601 /*
1602 * queue's settings related to segment counting like q->bounce_pfn
1603 * may differ from that of other stacking queues.
1604 * Recalculate it to check the request correctly on this queue's
1605 * limitation.
1606 */
1607 blk_recalc_rq_segments(rq);
1608 if (rq->nr_phys_segments > q->max_phys_segments ||
1609 rq->nr_phys_segments > q->max_hw_segments) {
1610 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1611 return -EIO;
1612 }
1613
1614 return 0;
1615}
1616EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1617
1618/**
1619 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1620 * @q: the queue to submit the request
1621 * @rq: the request being queued
1622 */
1623int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1624{
1625 unsigned long flags;
1626
1627 if (blk_rq_check_limits(q, rq))
1628 return -EIO;
1629
1630#ifdef CONFIG_FAIL_MAKE_REQUEST
1631 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1632 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1633 return -EIO;
1634#endif
1635
1636 spin_lock_irqsave(q->queue_lock, flags);
1637
1638 /*
1639 * Submitting request must be dequeued before calling this function
1640 * because it will be linked to another request_queue
1641 */
1642 BUG_ON(blk_queued_rq(rq));
1643
1644 drive_stat_acct(rq, 1);
1645 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1646
1647 spin_unlock_irqrestore(q->queue_lock, flags);
1648
1649 return 0;
1650}
1651EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1652
1653/**
Tejun Heo53a08802008-12-03 12:41:26 +01001654 * blkdev_dequeue_request - dequeue request and start timeout timer
1655 * @req: request to dequeue
1656 *
1657 * Dequeue @req and start timeout timer on it. This hands off the
1658 * request to the driver.
1659 *
1660 * Block internal functions which don't want to start timer should
1661 * call elv_dequeue_request().
1662 */
1663void blkdev_dequeue_request(struct request *req)
1664{
1665 elv_dequeue_request(req->q, req);
1666
1667 /*
1668 * We are now handing the request to the hardware, add the
1669 * timeout handler.
1670 */
1671 blk_add_timer(req);
1672}
1673EXPORT_SYMBOL(blkdev_dequeue_request);
1674
Jens Axboebc58ba92009-01-23 10:54:44 +01001675static void blk_account_io_completion(struct request *req, unsigned int bytes)
1676{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001677 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001678 return;
1679
1680 if (blk_fs_request(req)) {
1681 const int rw = rq_data_dir(req);
1682 struct hd_struct *part;
1683 int cpu;
1684
1685 cpu = part_stat_lock();
1686 part = disk_map_sector_rcu(req->rq_disk, req->sector);
1687 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1688 part_stat_unlock();
1689 }
1690}
1691
1692static void blk_account_io_done(struct request *req)
1693{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001694 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001695 return;
1696
1697 /*
1698 * Account IO completion. bar_rq isn't accounted as a normal
1699 * IO on queueing nor completion. Accounting the containing
1700 * request is enough.
1701 */
1702 if (blk_fs_request(req) && req != &req->q->bar_rq) {
1703 unsigned long duration = jiffies - req->start_time;
1704 const int rw = rq_data_dir(req);
1705 struct hd_struct *part;
1706 int cpu;
1707
1708 cpu = part_stat_lock();
Jerome Marchand26308ea2009-03-27 10:31:51 +01001709 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Jens Axboebc58ba92009-01-23 10:54:44 +01001710
1711 part_stat_inc(cpu, part, ios[rw]);
1712 part_stat_add(cpu, part, ticks[rw], duration);
1713 part_round_stats(cpu, part);
1714 part_dec_in_flight(part);
1715
1716 part_stat_unlock();
1717 }
1718}
1719
Tejun Heo53a08802008-12-03 12:41:26 +01001720/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001721 * __end_that_request_first - end I/O on a request
1722 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001723 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001724 * @nr_bytes: number of bytes to complete
1725 *
1726 * Description:
1727 * Ends I/O on a number of bytes attached to @req, and sets it up
1728 * for the next range of segments (if any) in the cluster.
1729 *
1730 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001731 * %0 - we are done with this request, call end_that_request_last()
1732 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001733 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001734static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 int nr_bytes)
1736{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001737 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 struct bio *bio;
1739
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001740 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001743 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * sense key with us all the way through
1745 */
1746 if (!blk_pc_request(req))
1747 req->errors = 0;
1748
Jens Axboe6728cb02008-01-31 13:03:55 +01001749 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1750 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 req->rq_disk ? req->rq_disk->disk_name : "?",
1752 (unsigned long long)req->sector);
1753 }
1754
Jens Axboebc58ba92009-01-23 10:54:44 +01001755 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 total_bytes = bio_nbytes = 0;
1758 while ((bio = req->bio) != NULL) {
1759 int nbytes;
1760
1761 if (nr_bytes >= bio->bi_size) {
1762 req->bio = bio->bi_next;
1763 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001764 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 next_idx = 0;
1766 bio_nbytes = 0;
1767 } else {
1768 int idx = bio->bi_idx + next_idx;
1769
1770 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1771 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001772 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001773 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 break;
1775 }
1776
1777 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1778 BIO_BUG_ON(nbytes > bio->bi_size);
1779
1780 /*
1781 * not a complete bvec done
1782 */
1783 if (unlikely(nbytes > nr_bytes)) {
1784 bio_nbytes += nr_bytes;
1785 total_bytes += nr_bytes;
1786 break;
1787 }
1788
1789 /*
1790 * advance to the next vector
1791 */
1792 next_idx++;
1793 bio_nbytes += nbytes;
1794 }
1795
1796 total_bytes += nbytes;
1797 nr_bytes -= nbytes;
1798
Jens Axboe6728cb02008-01-31 13:03:55 +01001799 bio = req->bio;
1800 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 /*
1802 * end more in this run, or just return 'not-done'
1803 */
1804 if (unlikely(nr_bytes <= 0))
1805 break;
1806 }
1807 }
1808
1809 /*
1810 * completely done
1811 */
1812 if (!req->bio)
1813 return 0;
1814
1815 /*
1816 * if the request wasn't completed, update state
1817 */
1818 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001819 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 bio->bi_idx += next_idx;
1821 bio_iovec(bio)->bv_offset += nr_bytes;
1822 bio_iovec(bio)->bv_len -= nr_bytes;
1823 }
1824
1825 blk_recalc_rq_sectors(req, total_bytes >> 9);
1826 blk_recalc_rq_segments(req);
1827 return 1;
1828}
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830/*
1831 * queue lock must be held
1832 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001833static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001835 if (blk_rq_tagged(req))
1836 blk_queue_end_tag(req->q, req);
1837
1838 if (blk_queued_rq(req))
Tejun Heo53a08802008-12-03 12:41:26 +01001839 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 if (unlikely(laptop_mode) && blk_fs_request(req))
1842 laptop_io_completion();
1843
Mike Andersone78042e52008-10-30 02:16:20 -07001844 blk_delete_timer(req);
1845
Jens Axboebc58ba92009-01-23 10:54:44 +01001846 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001849 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001850 else {
1851 if (blk_bidi_rq(req))
1852 __blk_put_request(req->next_rq->q, req->next_rq);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856}
1857
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001858/**
1859 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001860 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001861 **/
1862unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001863{
1864 if (blk_fs_request(rq))
1865 return rq->hard_nr_sectors << 9;
1866
1867 return rq->data_len;
1868}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001869EXPORT_SYMBOL_GPL(blk_rq_bytes);
1870
1871/**
1872 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001873 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001874 **/
1875unsigned int blk_rq_cur_bytes(struct request *rq)
1876{
1877 if (blk_fs_request(rq))
1878 return rq->current_nr_sectors << 9;
1879
1880 if (rq->bio)
1881 return rq->bio->bi_size;
1882
1883 return rq->data_len;
1884}
1885EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001886
1887/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001888 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001889 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001890 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001891 *
1892 * Description:
1893 * Ends I/O on the current segment of a request. If that is the only
1894 * remaining segment, the request is also completed and freed.
1895 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001896 * This is a remnant of how older block drivers handled I/O completions.
1897 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001898 * they have a residual value to account for. For that case this function
1899 * isn't really useful, unless the residual just happens to be the
1900 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001901 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001902 **/
1903void end_request(struct request *req, int uptodate)
1904{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001905 int error = 0;
1906
1907 if (uptodate <= 0)
1908 error = uptodate ? uptodate : -EIO;
1909
1910 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001911}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912EXPORT_SYMBOL(end_request);
1913
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001914static int end_that_request_data(struct request *rq, int error,
1915 unsigned int nr_bytes, unsigned int bidi_bytes)
1916{
1917 if (rq->bio) {
1918 if (__end_that_request_first(rq, error, nr_bytes))
1919 return 1;
1920
1921 /* Bidi request must be completed as a whole */
1922 if (blk_bidi_rq(rq) &&
1923 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1924 return 1;
1925 }
1926
1927 return 0;
1928}
1929
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001930/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001931 * blk_end_io - Generic end_io function to complete a request.
1932 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001933 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001934 * @nr_bytes: number of bytes to complete @rq
1935 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001936 * @drv_callback: function called between completion of bios in the request
1937 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001938 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001939 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001940 *
1941 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001942 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001943 * If @rq has leftover, sets it up for the next range of segments.
1944 *
1945 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001946 * %0 - we are done with this request
1947 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001948 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001949static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1950 unsigned int bidi_bytes,
1951 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001952{
1953 struct request_queue *q = rq->q;
1954 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001955
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001956 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1957 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001958
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001959 /* Special feature for tricky drivers */
1960 if (drv_callback && drv_callback(rq))
1961 return 1;
1962
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001963 add_disk_randomness(rq->rq_disk);
1964
1965 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001966 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001967 spin_unlock_irqrestore(q->queue_lock, flags);
1968
1969 return 0;
1970}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001971
1972/**
1973 * blk_end_request - Helper function for drivers to complete the request.
1974 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001975 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001976 * @nr_bytes: number of bytes to complete
1977 *
1978 * Description:
1979 * Ends I/O on a number of bytes attached to @rq.
1980 * If @rq has leftover, sets it up for the next range of segments.
1981 *
1982 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001983 * %0 - we are done with this request
1984 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001985 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001986int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001987{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001988 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001989}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001990EXPORT_SYMBOL_GPL(blk_end_request);
1991
1992/**
1993 * __blk_end_request - Helper function for drivers to complete the request.
1994 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001995 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001996 * @nr_bytes: number of bytes to complete
1997 *
1998 * Description:
1999 * Must be called with queue lock held unlike blk_end_request().
2000 *
2001 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002002 * %0 - we are done with this request
2003 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002004 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002005int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002006{
Jens Axboe60540162008-08-26 13:34:34 +02002007 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02002008 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002009
2010 add_disk_randomness(rq->rq_disk);
2011
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002012 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002013
2014 return 0;
2015}
2016EXPORT_SYMBOL_GPL(__blk_end_request);
2017
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002018/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002019 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
2020 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002021 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002022 * @nr_bytes: number of bytes to complete @rq
2023 * @bidi_bytes: number of bytes to complete @rq->next_rq
2024 *
2025 * Description:
2026 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2027 *
2028 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002029 * %0 - we are done with this request
2030 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002031 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002032int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2033 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002034{
2035 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2036}
2037EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2038
2039/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002040 * blk_update_request - Special helper function for request stacking drivers
2041 * @rq: the request being processed
2042 * @error: %0 for success, < %0 for error
2043 * @nr_bytes: number of bytes to complete @rq
2044 *
2045 * Description:
2046 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2047 * the request structure even if @rq doesn't have leftover.
2048 * If @rq has leftover, sets it up for the next range of segments.
2049 *
2050 * This special helper function is only for request stacking drivers
2051 * (e.g. request-based dm) so that they can handle partial completion.
2052 * Actual device drivers should use blk_end_request instead.
2053 */
2054void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2055{
2056 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2057 /*
2058 * These members are not updated in end_that_request_data()
2059 * when all bios are completed.
2060 * Update them so that the request stacking driver can find
2061 * how many bytes remain in the request later.
2062 */
2063 rq->nr_sectors = rq->hard_nr_sectors = 0;
2064 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2065 }
2066}
2067EXPORT_SYMBOL_GPL(blk_update_request);
2068
2069/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002070 * blk_end_request_callback - Special helper function for tricky drivers
2071 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002072 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002073 * @nr_bytes: number of bytes to complete
2074 * @drv_callback: function called between completion of bios in the request
2075 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002076 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002077 * completion of the request.
2078 *
2079 * Description:
2080 * Ends I/O on a number of bytes attached to @rq.
2081 * If @rq has leftover, sets it up for the next range of segments.
2082 *
2083 * This special helper function is used only for existing tricky drivers.
2084 * (e.g. cdrom_newpc_intr() of ide-cd)
2085 * This interface will be removed when such drivers are rewritten.
2086 * Don't use this interface in other places anymore.
2087 *
2088 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002089 * %0 - we are done with this request
2090 * %1 - this request is not freed yet.
2091 * this request still has pending buffers or
2092 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002093 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002094int blk_end_request_callback(struct request *rq, int error,
2095 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002096 int (drv_callback)(struct request *))
2097{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002098 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002099}
2100EXPORT_SYMBOL_GPL(blk_end_request_callback);
2101
Jens Axboe86db1e22008-01-29 14:53:40 +01002102void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2103 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
David Woodhoused628eae2008-08-09 16:22:17 +01002105 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2106 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002107 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
David Woodhousefb2dce82008-08-05 18:01:53 +01002109 if (bio_has_data(bio)) {
2110 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002111 rq->buffer = bio_data(bio);
2112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 rq->current_nr_sectors = bio_cur_sectors(bio);
2114 rq->hard_cur_sectors = rq->current_nr_sectors;
2115 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002116 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
NeilBrown66846572007-08-16 13:31:28 +02002120 if (bio->bi_bdev)
2121 rq->rq_disk = bio->bi_bdev->bd_disk;
2122}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002124/**
2125 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2126 * @q : the queue of the device being checked
2127 *
2128 * Description:
2129 * Check if underlying low-level drivers of a device are busy.
2130 * If the drivers want to export their busy state, they must set own
2131 * exporting function using blk_queue_lld_busy() first.
2132 *
2133 * Basically, this function is used only by request stacking drivers
2134 * to stop dispatching requests to underlying devices when underlying
2135 * devices are busy. This behavior helps more I/O merging on the queue
2136 * of the request stacking driver and prevents I/O throughput regression
2137 * on burst I/O load.
2138 *
2139 * Return:
2140 * 0 - Not busy (The request stacking driver should dispatch request)
2141 * 1 - Busy (The request stacking driver should stop dispatching request)
2142 */
2143int blk_lld_busy(struct request_queue *q)
2144{
2145 if (q->lld_busy_fn)
2146 return q->lld_busy_fn(q);
2147
2148 return 0;
2149}
2150EXPORT_SYMBOL_GPL(blk_lld_busy);
2151
Jens Axboe18887ad2008-07-28 13:08:45 +02002152int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
2154 return queue_work(kblockd_workqueue, work);
2155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156EXPORT_SYMBOL(kblockd_schedule_work);
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158int __init blk_dev_init(void)
2159{
2160 kblockd_workqueue = create_workqueue("kblockd");
2161 if (!kblockd_workqueue)
2162 panic("Failed to create kblockd\n");
2163
2164 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002165 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Jens Axboe8324aa92008-01-29 14:51:59 +01002167 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002168 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return 0;
2171}
2172