blob: 04267d66a2b95da5174b1cfeebbb90dcc17f0450 [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
Jens Axboe165125e2007-07-24 09:28:11 +020035static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * For the allocated request tables
39 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010040static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For queue allocation
44 */
Jens Axboe6728cb02008-01-31 13:03:55 +010045struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * Controlling structure to kblockd
49 */
Jens Axboeff856ba2006-01-09 16:02:34 +010050static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Jens Axboe26b82562008-01-29 13:54:41 +010052static void drive_stat_acct(struct request *rq, int new_io)
53{
Jens Axboe28f13702008-05-07 10:15:46 +020054 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010055 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090056 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010057
58 if (!blk_fs_request(rq) || !rq->rq_disk)
59 return;
60
Tejun Heo074a7ac2008-08-25 19:56:14 +090061 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020062 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090063
Jens Axboe28f13702008-05-07 10:15:46 +020064 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090065 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020066 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090067 part_round_stats(cpu, part);
68 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010069 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020070
Tejun Heo074a7ac2008-08-25 19:56:14 +090071 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010072}
73
Jens Axboe8324aa92008-01-29 14:51:59 +010074void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 int nr;
77
78 nr = q->nr_requests - (q->nr_requests / 8) + 1;
79 if (nr > q->nr_requests)
80 nr = q->nr_requests;
81 q->nr_congestion_on = nr;
82
83 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
84 if (nr < 1)
85 nr = 1;
86 q->nr_congestion_off = nr;
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/**
90 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
91 * @bdev: device
92 *
93 * Locates the passed device's request queue and returns the address of its
94 * backing_dev_info
95 *
96 * Will return NULL if the request queue cannot be located.
97 */
98struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
99{
100 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200101 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 if (q)
104 ret = &q->backing_dev_info;
105 return ret;
106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107EXPORT_SYMBOL(blk_get_backing_dev_info);
108
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200109void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200111 memset(rq, 0, sizeof(*rq));
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700114 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200115 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100116 rq->q = q;
117 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200118 INIT_HLIST_NODE(&rq->hash);
119 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200120 rq->cmd = rq->__cmd;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100122 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200124EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
NeilBrown5bb23a62007-09-27 12:46:13 +0200126static void req_bio_endio(struct request *rq, struct bio *bio,
127 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100128{
Jens Axboe165125e2007-07-24 09:28:11 +0200129 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100130
NeilBrown5bb23a62007-09-27 12:46:13 +0200131 if (&q->bar_rq != rq) {
132 if (error)
133 clear_bit(BIO_UPTODATE, &bio->bi_flags);
134 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
135 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100136
NeilBrown5bb23a62007-09-27 12:46:13 +0200137 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100138 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700139 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200140 nbytes = bio->bi_size;
141 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100142
NeilBrown5bb23a62007-09-27 12:46:13 +0200143 bio->bi_size -= nbytes;
144 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200145
146 if (bio_integrity(bio))
147 bio_integrity_advance(bio, nbytes);
148
NeilBrown5bb23a62007-09-27 12:46:13 +0200149 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200150 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200151 } else {
152
153 /*
154 * Okay, this is the barrier request in progress, just
155 * record the error;
156 */
157 if (error && !q->orderr)
158 q->orderr = error;
159 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162void blk_dump_rq_flags(struct request *rq, char *msg)
163{
164 int bit;
165
Jens Axboe6728cb02008-01-31 13:03:55 +0100166 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200167 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
168 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Jens Axboe6728cb02008-01-31 13:03:55 +0100170 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
171 (unsigned long long)rq->sector,
172 rq->nr_sectors,
173 rq->current_nr_sectors);
174 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
175 rq->bio, rq->biotail,
176 rq->buffer, rq->data,
177 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jens Axboe4aff5e22006-08-10 08:44:47 +0200179 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100180 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200181 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 printk("%02x ", rq->cmd[bit]);
183 printk("\n");
184 }
185}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186EXPORT_SYMBOL(blk_dump_rq_flags);
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*
189 * "plug" the device if there are no outstanding requests: this will
190 * force the transfer to start only after we have put all the requests
191 * on the list.
192 *
193 * This is called with interrupts off and no requests on the queue and
194 * with the queue lock held.
195 */
Jens Axboe165125e2007-07-24 09:28:11 +0200196void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 WARN_ON(!irqs_disabled());
199
200 /*
201 * don't plug a stopped queue, it must be paired with blk_start_queue()
202 * which will restart the queueing
203 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200204 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return;
206
Jens Axboee48ec692008-07-03 13:18:54 +0200207 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100209 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212EXPORT_SYMBOL(blk_plug_device);
213
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200214/**
215 * blk_plug_device_unlocked - plug a device without queue lock held
216 * @q: The &struct request_queue to plug
217 *
218 * Description:
219 * Like @blk_plug_device(), but grabs the queue lock and disables
220 * interrupts.
221 **/
222void blk_plug_device_unlocked(struct request_queue *q)
223{
224 unsigned long flags;
225
226 spin_lock_irqsave(q->queue_lock, flags);
227 blk_plug_device(q);
228 spin_unlock_irqrestore(q->queue_lock, flags);
229}
230EXPORT_SYMBOL(blk_plug_device_unlocked);
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*
233 * remove the queue from the plugged list, if present. called with
234 * queue lock held and interrupts disabled.
235 */
Jens Axboe165125e2007-07-24 09:28:11 +0200236int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 WARN_ON(!irqs_disabled());
239
Jens Axboee48ec692008-07-03 13:18:54 +0200240 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242
243 del_timer(&q->unplug_timer);
244 return 1;
245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246EXPORT_SYMBOL(blk_remove_plug);
247
248/*
249 * remove the plug and let it rip..
250 */
Jens Axboe165125e2007-07-24 09:28:11 +0200251void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200253 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return;
255
256 if (!blk_remove_plug(q))
257 return;
258
Jens Axboe22e2c502005-06-27 10:55:12 +0200259 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262/**
263 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200264 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
266 * Description:
267 * Linux uses plugging to build bigger requests queues before letting
268 * the device have at them. If a queue is plugged, the I/O scheduler
269 * is still adding and merging requests on the queue. Once the queue
270 * gets unplugged, the request_fn defined for the queue is invoked and
271 * transfers started.
272 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200273void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200275 if (blk_queue_plugged(q)) {
276 spin_lock_irq(q->queue_lock);
277 __generic_unplug_device(q);
278 spin_unlock_irq(q->queue_lock);
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281EXPORT_SYMBOL(generic_unplug_device);
282
283static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
284 struct page *page)
285{
Jens Axboe165125e2007-07-24 09:28:11 +0200286 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500288 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Jens Axboe86db1e22008-01-29 14:53:40 +0100291void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Jens Axboe165125e2007-07-24 09:28:11 +0200293 struct request_queue *q =
294 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100296 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 q->unplug_fn(q);
298}
299
Jens Axboe86db1e22008-01-29 14:53:40 +0100300void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Jens Axboe165125e2007-07-24 09:28:11 +0200302 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100304 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200305 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500308void blk_unplug(struct request_queue *q)
309{
310 /*
311 * devices don't necessarily have an ->unplug_fn defined
312 */
313 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100314 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500315 q->unplug_fn(q);
316 }
317}
318EXPORT_SYMBOL(blk_unplug);
319
Jens Axboec7c22e42008-09-13 20:26:01 +0200320static void blk_invoke_request_fn(struct request_queue *q)
321{
Jens Axboe80a4b582008-10-14 09:51:06 +0200322 if (unlikely(blk_queue_stopped(q)))
323 return;
324
Jens Axboec7c22e42008-09-13 20:26:01 +0200325 /*
326 * one level of recursion is ok and is much faster than kicking
327 * the unplug handling
328 */
329 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
330 q->request_fn(q);
331 queue_flag_clear(QUEUE_FLAG_REENTER, q);
332 } else {
333 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
334 kblockd_schedule_work(q, &q->unplug_work);
335 }
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/**
339 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200340 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 *
342 * Description:
343 * blk_start_queue() will clear the stop flag on the queue, and call
344 * the request_fn for the queue if it was in a stopped state when
345 * entered. Also see blk_stop_queue(). Queue lock must be held.
346 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200347void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200349 WARN_ON(!irqs_disabled());
350
Nick Piggin75ad23b2008-04-29 14:48:33 +0200351 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200352 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354EXPORT_SYMBOL(blk_start_queue);
355
356/**
357 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200358 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
360 * Description:
361 * The Linux block layer assumes that a block driver will consume all
362 * entries on the request queue when the request_fn strategy is called.
363 * Often this will not happen, because of hardware limitations (queue
364 * depth settings). If a device driver gets a 'queue full' response,
365 * or if it simply chooses not to queue more I/O at one point, it can
366 * call this function to prevent the request_fn from being called until
367 * the driver has signalled it's ready to go again. This happens by calling
368 * blk_start_queue() to restart queue operations. Queue lock must be held.
369 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200370void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200373 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375EXPORT_SYMBOL(blk_stop_queue);
376
377/**
378 * blk_sync_queue - cancel any pending callbacks on a queue
379 * @q: the queue
380 *
381 * Description:
382 * The block layer may perform asynchronous callback activity
383 * on a queue, such as calling the unplug function after a timeout.
384 * A block device may call blk_sync_queue to ensure that any
385 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200386 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * that its ->make_request_fn will not re-add plugging prior to calling
388 * this function.
389 *
390 */
391void blk_sync_queue(struct request_queue *q)
392{
393 del_timer_sync(&q->unplug_timer);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200394 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396EXPORT_SYMBOL(blk_sync_queue);
397
398/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200399 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200401 *
402 * Description:
403 * See @blk_run_queue. This variant must be called with the queue lock
404 * held and interrupts disabled.
405 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200407void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200410
411 /*
412 * Only recurse once to avoid overrunning the stack, let the unplug
413 * handling reinvoke the handler shortly if we already got there.
414 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200415 if (!elv_queue_empty(q))
416 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200417}
418EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200419
Nick Piggin75ad23b2008-04-29 14:48:33 +0200420/**
421 * blk_run_queue - run a single device queue
422 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200423 *
424 * Description:
425 * Invoke request handling on this queue, if it has pending work to do.
426 * May be used to restart queueing when a request has completed. Also
427 * See @blk_start_queueing.
428 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200429 */
430void blk_run_queue(struct request_queue *q)
431{
432 unsigned long flags;
433
434 spin_lock_irqsave(q->queue_lock, flags);
435 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 spin_unlock_irqrestore(q->queue_lock, flags);
437}
438EXPORT_SYMBOL(blk_run_queue);
439
Jens Axboe165125e2007-07-24 09:28:11 +0200440void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500441{
442 kobject_put(&q->kobj);
443}
Al Viro483f4af2006-03-18 18:34:37 -0500444
Jens Axboe6728cb02008-01-31 13:03:55 +0100445void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500446{
Jens Axboee3335de92008-09-18 09:22:54 -0700447 /*
448 * We know we have process context here, so we can be a little
449 * cautious and ensure that pending block actions on this device
450 * are done before moving on. Going into this function, we should
451 * not have processes doing IO to this device.
452 */
453 blk_sync_queue(q);
454
Al Viro483f4af2006-03-18 18:34:37 -0500455 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200456 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500457 mutex_unlock(&q->sysfs_lock);
458
459 if (q->elevator)
460 elevator_exit(q->elevator);
461
462 blk_put_queue(q);
463}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464EXPORT_SYMBOL(blk_cleanup_queue);
465
Jens Axboe165125e2007-07-24 09:28:11 +0200466static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct request_list *rl = &q->rq;
469
470 rl->count[READ] = rl->count[WRITE] = 0;
471 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200472 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 init_waitqueue_head(&rl->wait[READ]);
474 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Christoph Lameter19460892005-06-23 00:08:19 -0700476 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
477 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (!rl->rq_pool)
480 return -ENOMEM;
481
482 return 0;
483}
484
Jens Axboe165125e2007-07-24 09:28:11 +0200485struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Christoph Lameter19460892005-06-23 00:08:19 -0700487 return blk_alloc_queue_node(gfp_mask, -1);
488}
489EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jens Axboe165125e2007-07-24 09:28:11 +0200491struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700492{
Jens Axboe165125e2007-07-24 09:28:11 +0200493 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700494 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700495
Jens Axboe8324aa92008-01-29 14:51:59 +0100496 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700497 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!q)
499 return NULL;
500
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700501 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
502 q->backing_dev_info.unplug_io_data = q;
503 err = bdi_init(&q->backing_dev_info);
504 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100505 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700506 return NULL;
507 }
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700510 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
511 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200512 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500513
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Al Viro483f4af2006-03-18 18:34:37 -0500516 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700517 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return q;
520}
Christoph Lameter19460892005-06-23 00:08:19 -0700521EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523/**
524 * blk_init_queue - prepare a request queue for use with a block device
525 * @rfn: The function to be called to process requests that have been
526 * placed on the queue.
527 * @lock: Request queue spin lock
528 *
529 * Description:
530 * If a block device wishes to use the standard request handling procedures,
531 * which sorts requests and coalesces adjacent requests, then it must
532 * call blk_init_queue(). The function @rfn will be called when there
533 * are requests on the queue that need to be processed. If the device
534 * supports plugging, then @rfn may not be called immediately when requests
535 * are available on the queue, but may be called at some time later instead.
536 * Plugged queues are generally unplugged when a buffer belonging to one
537 * of the requests on the queue is needed, or due to memory pressure.
538 *
539 * @rfn is not required, or even expected, to remove all requests off the
540 * queue, but only as many as it can handle at a time. If it does leave
541 * requests on the queue, it is responsible for arranging that the requests
542 * get dealt with eventually.
543 *
544 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200545 * request queue; this lock will be taken also from interrupt context, so irq
546 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200548 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 * it didn't succeed.
550 *
551 * Note:
552 * blk_init_queue() must be paired with a blk_cleanup_queue() call
553 * when the block device is deactivated (such as at module unload).
554 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700555
Jens Axboe165125e2007-07-24 09:28:11 +0200556struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Christoph Lameter19460892005-06-23 00:08:19 -0700558 return blk_init_queue_node(rfn, lock, -1);
559}
560EXPORT_SYMBOL(blk_init_queue);
561
Jens Axboe165125e2007-07-24 09:28:11 +0200562struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700563blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
564{
Jens Axboe165125e2007-07-24 09:28:11 +0200565 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 if (!q)
568 return NULL;
569
Christoph Lameter19460892005-06-23 00:08:19 -0700570 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500571 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100572 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500573 return NULL;
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
152587d2005-04-12 16:22:06 -0500576 /*
577 * if caller didn't supply a lock, they get per-queue locking with
578 * our embedded lock
579 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700580 if (!lock)
152587d2005-04-12 16:22:06 -0500581 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 q->prep_rq_fn = NULL;
585 q->unplug_fn = generic_unplug_device;
Kiyoshi Ueda4ee5eaf2008-09-18 10:46:13 -0400586 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER |
587 1 << QUEUE_FLAG_STACKABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 q->queue_lock = lock;
589
590 blk_queue_segment_boundary(q, 0xffffffff);
591
592 blk_queue_make_request(q, __make_request);
593 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
594
595 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
596 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
597
Alan Stern44ec9542007-02-20 11:01:57 -0500598 q->sg_reserved_size = INT_MAX;
599
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900600 blk_set_cmd_filter_defaults(&q->cmd_filter);
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /*
603 * all done
604 */
605 if (!elevator_init(q, NULL)) {
606 blk_queue_congestion_threshold(q);
607 return q;
608 }
609
Al Viro8669aaf2006-03-18 13:50:00 -0500610 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return NULL;
612}
Christoph Lameter19460892005-06-23 00:08:19 -0700613EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Jens Axboe165125e2007-07-24 09:28:11 +0200615int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700617 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500618 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return 0;
620 }
621
622 return 1;
623}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Jens Axboe165125e2007-07-24 09:28:11 +0200625static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200627 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200628 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 mempool_free(rq, q->rq.rq_pool);
630}
631
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200632static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200633blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
636
637 if (!rq)
638 return NULL;
639
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200640 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200641
Jens Axboe49171e52006-08-10 08:59:11 +0200642 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Tejun Heocb98fc82005-10-28 08:29:39 +0200644 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200645 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200646 mempool_free(rq, q->rq.rq_pool);
647 return NULL;
648 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200649 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Tejun Heocb98fc82005-10-28 08:29:39 +0200652 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655/*
656 * ioc_batching returns true if the ioc is a valid batching request and
657 * should be given priority access to a request.
658 */
Jens Axboe165125e2007-07-24 09:28:11 +0200659static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 if (!ioc)
662 return 0;
663
664 /*
665 * Make sure the process is able to allocate at least 1 request
666 * even if the batch times out, otherwise we could theoretically
667 * lose wakeups.
668 */
669 return ioc->nr_batch_requests == q->nr_batching ||
670 (ioc->nr_batch_requests > 0
671 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
672}
673
674/*
675 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
676 * will cause the process to be a "batcher" on all queues in the system. This
677 * is the behaviour we want though - once it gets a wakeup it should be given
678 * a nice run.
679 */
Jens Axboe165125e2007-07-24 09:28:11 +0200680static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 if (!ioc || ioc_batching(q, ioc))
683 return;
684
685 ioc->nr_batch_requests = q->nr_batching;
686 ioc->last_waited = jiffies;
687}
688
Jens Axboe165125e2007-07-24 09:28:11 +0200689static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct request_list *rl = &q->rq;
692
693 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700694 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (waitqueue_active(&rl->wait[rw]))
698 wake_up(&rl->wait[rw]);
699
700 blk_clear_queue_full(q, rw);
701 }
702}
703
704/*
705 * A request has just been released. Account for it, update the full and
706 * congestion status, wake up any waiters. Called under q->queue_lock.
707 */
Jens Axboe165125e2007-07-24 09:28:11 +0200708static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct request_list *rl = &q->rq;
711
712 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200713 if (priv)
714 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 __freed_request(q, rw);
717
718 if (unlikely(rl->starved[rw ^ 1]))
719 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
723/*
Nick Piggind6344532005-06-28 20:45:14 -0700724 * Get a free request, queue_lock must be held.
725 * Returns NULL on failure, with queue_lock held.
726 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 */
Jens Axboe165125e2007-07-24 09:28:11 +0200728static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100729 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct request *rq = NULL;
732 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100733 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100734 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100735 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jens Axboe7749a8d2006-12-13 13:02:26 +0100737 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100738 if (may_queue == ELV_MQUEUE_NO)
739 goto rq_starved;
740
741 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
742 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200743 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100744 /*
745 * The queue will fill after this allocation, so set
746 * it as full, and mark this process as "batching".
747 * This process will be allowed to complete a batch of
748 * requests, others will be blocked.
749 */
750 if (!blk_queue_full(q, rw)) {
751 ioc_set_batching(q, ioc);
752 blk_set_queue_full(q, rw);
753 } else {
754 if (may_queue != ELV_MQUEUE_MUST
755 && !ioc_batching(q, ioc)) {
756 /*
757 * The queue is full and the allocating
758 * process is not a "batcher", and not
759 * exempted by the IO scheduler
760 */
761 goto out;
762 }
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700765 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Jens Axboe082cf692005-06-28 16:35:11 +0200768 /*
769 * Only allow batching queuers to allocate up to 50% over the defined
770 * limit of requests, otherwise we could have thousands of requests
771 * allocated with any setting of ->nr_requests
772 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100773 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200774 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 rl->count[rw]++;
777 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200778
Jens Axboe64521d12005-10-28 08:30:39 +0200779 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200780 if (priv)
781 rl->elvpriv++;
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 spin_unlock_irq(q->queue_lock);
784
Jens Axboe7749a8d2006-12-13 13:02:26 +0100785 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100786 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /*
788 * Allocation failed presumably due to memory. Undo anything
789 * we might have messed up.
790 *
791 * Allocating task should really be put onto the front of the
792 * wait queue, but this is pretty rare.
793 */
794 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200795 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 /*
798 * in the very unlikely event that allocation failed and no
799 * requests for this direction was pending, mark us starved
800 * so that freeing of a request in the other direction will
801 * notice us. another possible fix would be to split the
802 * rq mempool into READ and WRITE
803 */
804rq_starved:
805 if (unlikely(rl->count[rw] == 0))
806 rl->starved[rw] = 1;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 goto out;
809 }
810
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100811 /*
812 * ioc may be NULL here, and ioc_batching will be false. That's
813 * OK, if the queue is under the request limit then requests need
814 * not count toward the nr_batch_requests limit. There will always
815 * be some limit enforced by BLK_BATCH_TIME.
816 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (ioc_batching(q, ioc))
818 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100819
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100820 trace_block_getrq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return rq;
823}
824
825/*
826 * No available requests for this queue, unplug the device and wait for some
827 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700828 *
829 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 */
Jens Axboe165125e2007-07-24 09:28:11 +0200831static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200832 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100834 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct request *rq;
836
Jens Axboe7749a8d2006-12-13 13:02:26 +0100837 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700838 while (!rq) {
839 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200840 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct request_list *rl = &q->rq;
842
843 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
844 TASK_UNINTERRUPTIBLE);
845
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100846 trace_block_sleeprq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200848 __generic_unplug_device(q);
849 spin_unlock_irq(q->queue_lock);
850 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200852 /*
853 * After sleeping, we become a "batching" process and
854 * will be able to allocate at least one request, and
855 * up to a big batch of them for a small period time.
856 * See ioc_batching, ioc_set_batching
857 */
858 ioc = current_io_context(GFP_NOIO, q->node);
859 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100860
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200861 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 finish_wait(&rl->wait[rw], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200863
864 rq = get_request(q, rw_flags, bio, GFP_NOIO);
865 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 return rq;
868}
869
Jens Axboe165125e2007-07-24 09:28:11 +0200870struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 struct request *rq;
873
874 BUG_ON(rw != READ && rw != WRITE);
875
Nick Piggind6344532005-06-28 20:45:14 -0700876 spin_lock_irq(q->queue_lock);
877 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200878 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700879 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200880 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700881 if (!rq)
882 spin_unlock_irq(q->queue_lock);
883 }
884 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 return rq;
887}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888EXPORT_SYMBOL(blk_get_request);
889
890/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200891 * blk_start_queueing - initiate dispatch of requests to device
892 * @q: request queue to kick into gear
893 *
894 * This is basically a helper to remove the need to know whether a queue
895 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200896 * for this queue. Should be used to start queueing on a device outside
897 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200898 *
899 * The queue lock must be held with interrupts disabled.
900 */
Jens Axboe165125e2007-07-24 09:28:11 +0200901void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200902{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200903 if (!blk_queue_plugged(q)) {
904 if (unlikely(blk_queue_stopped(q)))
905 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200906 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200907 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200908 __generic_unplug_device(q);
909}
910EXPORT_SYMBOL(blk_start_queueing);
911
912/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * blk_requeue_request - put a request back on queue
914 * @q: request queue where request should be inserted
915 * @rq: request to be inserted
916 *
917 * Description:
918 * Drivers often keep queueing requests until the hardware cannot accept
919 * more, when that condition happens we need to put the request back
920 * on the queue. Must be called with queue lock held.
921 */
Jens Axboe165125e2007-07-24 09:28:11 +0200922void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700924 blk_delete_timer(rq);
925 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100926 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (blk_rq_tagged(rq))
929 blk_queue_end_tag(q, rq);
930
931 elv_requeue_request(q, rq);
932}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933EXPORT_SYMBOL(blk_requeue_request);
934
935/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200936 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * @q: request queue where request should be inserted
938 * @rq: request to be inserted
939 * @at_head: insert request at head or tail of queue
940 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
942 * Description:
943 * Many block devices need to execute commands asynchronously, so they don't
944 * block the whole kernel from preemption during request execution. This is
945 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200946 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
947 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 *
949 * We have the option of inserting the head or the tail of the queue.
950 * Typically we use the tail for new ioctls and so forth. We use the head
951 * of the queue for things like a QUEUE_FULL message from a device, or a
952 * host that is unable to accept a particular command.
953 */
Jens Axboe165125e2007-07-24 09:28:11 +0200954void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500955 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Tejun Heo 867d1192005-04-24 02:06:05 -0500957 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 unsigned long flags;
959
960 /*
961 * tell I/O scheduler that this isn't a regular read/write (ie it
962 * must not attempt merges on this) and that it acts as a soft
963 * barrier
964 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200965 rq->cmd_type = REQ_TYPE_SPECIAL;
966 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 rq->special = data;
969
970 spin_lock_irqsave(q->queue_lock, flags);
971
972 /*
973 * If command is tagged, release the tag
974 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500975 if (blk_rq_tagged(rq))
976 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200978 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500979 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200980 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 spin_unlock_irqrestore(q->queue_lock, flags);
982}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983EXPORT_SYMBOL(blk_insert_request);
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/*
986 * add-request adds a request to the linked list.
987 * queue lock is held and interrupts disabled, as we muck with the
988 * request queue list.
989 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100990static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200992 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /*
995 * elevator indicated where it wants this request to be
996 * inserted at elevator_merge time
997 */
998 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
999}
Jens Axboe6728cb02008-01-31 13:03:55 +01001000
Tejun Heo074a7ac2008-08-25 19:56:14 +09001001static void part_round_stats_single(int cpu, struct hd_struct *part,
1002 unsigned long now)
1003{
1004 if (now == part->stamp)
1005 return;
1006
1007 if (part->in_flight) {
1008 __part_stat_add(cpu, part, time_in_queue,
1009 part->in_flight * (now - part->stamp));
1010 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1011 }
1012 part->stamp = now;
1013}
1014
1015/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001016 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1017 * @cpu: cpu number for stats access
1018 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 *
1020 * The average IO queue length and utilisation statistics are maintained
1021 * by observing the current state of the queue length and the amount of
1022 * time it has been in this state for.
1023 *
1024 * Normally, that accounting is done on IO completion, but that can result
1025 * in more than a second's worth of IO being accounted for within any one
1026 * second, leading to >100% utilisation. To deal with that, we call this
1027 * function to do a round-off before returning the results when reading
1028 * /proc/diskstats. This accounts immediately for all queue usage up to
1029 * the current jiffies and restarts the counters again.
1030 */
Tejun Heoc9959052008-08-25 19:47:21 +09001031void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001032{
1033 unsigned long now = jiffies;
1034
Tejun Heo074a7ac2008-08-25 19:56:14 +09001035 if (part->partno)
1036 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1037 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001038}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001039EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
1042 * queue lock must be held
1043 */
Jens Axboe165125e2007-07-24 09:28:11 +02001044void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (unlikely(!q))
1047 return;
1048 if (unlikely(--req->ref_count))
1049 return;
1050
Tejun Heo8922e162005-10-20 16:23:44 +02001051 elv_completed_request(q, req);
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /*
1054 * Request may not have originated from ll_rw_blk. if not,
1055 * it didn't come out of our reserved rq pools
1056 */
Jens Axboe49171e52006-08-10 08:59:11 +02001057 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001059 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001062 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001065 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001068EXPORT_SYMBOL_GPL(__blk_put_request);
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070void blk_put_request(struct request *req)
1071{
Tejun Heo8922e162005-10-20 16:23:44 +02001072 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001073 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001075 spin_lock_irqsave(q->queue_lock, flags);
1076 __blk_put_request(q, req);
1077 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079EXPORT_SYMBOL(blk_put_request);
1080
Jens Axboe86db1e22008-01-29 14:53:40 +01001081void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001082{
Jens Axboec7c22e42008-09-13 20:26:01 +02001083 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001084 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001085
1086 /*
1087 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1088 */
Mike Christie6000a362008-08-19 18:45:30 -05001089 if (bio_rw_ahead(bio))
1090 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1091 REQ_FAILFAST_DRIVER);
1092 if (bio_failfast_dev(bio))
1093 req->cmd_flags |= REQ_FAILFAST_DEV;
1094 if (bio_failfast_transport(bio))
1095 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1096 if (bio_failfast_driver(bio))
1097 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001098
1099 /*
1100 * REQ_BARRIER implies no merging, but lets make it explicit
1101 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001102 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001103 req->cmd_flags |= REQ_DISCARD;
1104 if (bio_barrier(bio))
1105 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001106 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001107 } else if (unlikely(bio_barrier(bio)))
1108 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001109
Jens Axboeb31dc662006-06-13 08:26:10 +02001110 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001111 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001112 if (bio_rw_meta(bio))
1113 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001114
Tejun Heo52d9e672006-01-06 09:49:58 +01001115 req->errors = 0;
1116 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001117 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001118 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001119 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001120}
1121
Jens Axboe165125e2007-07-24 09:28:11 +02001122static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Nick Piggin450991b2005-06-28 20:45:13 -07001124 struct request *req;
David Woodhousefb2dce82008-08-05 18:01:53 +01001125 int el_ret, nr_sectors, barrier, discard, err;
Jens Axboe51da90f2006-07-18 04:14:45 +02001126 const unsigned short prio = bio_prio(bio);
1127 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001128 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 /*
1133 * low level driver can indicate that it wants pages above a
1134 * certain limit bounced to low memory (ie for highmem, or even
1135 * ISA dma in theory)
1136 */
1137 blk_queue_bounce(q, &bio);
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 barrier = bio_barrier(bio);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001140 if (unlikely(barrier) && bio_has_data(bio) &&
1141 (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 err = -EOPNOTSUPP;
1143 goto end_io;
1144 }
1145
David Woodhousefb2dce82008-08-05 18:01:53 +01001146 discard = bio_discard(bio);
1147 if (unlikely(discard) && !q->prepare_discard_fn) {
1148 err = -EOPNOTSUPP;
1149 goto end_io;
1150 }
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 spin_lock_irq(q->queue_lock);
1153
Nick Piggin450991b2005-06-28 20:45:13 -07001154 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 goto get_rq;
1156
1157 el_ret = elv_merge(q, &req, bio);
1158 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001159 case ELEVATOR_BACK_MERGE:
1160 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Jens Axboe6728cb02008-01-31 13:03:55 +01001162 if (!ll_back_merge_fn(q, req, bio))
1163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001165 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001166
Jens Axboe6728cb02008-01-31 13:03:55 +01001167 req->biotail->bi_next = bio;
1168 req->biotail = bio;
1169 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1170 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001171 if (!blk_rq_cpu_valid(req))
1172 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001173 drive_stat_acct(req, 0);
1174 if (!attempt_back_merge(q, req))
1175 elv_merged_request(q, req, el_ret);
1176 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jens Axboe6728cb02008-01-31 13:03:55 +01001178 case ELEVATOR_FRONT_MERGE:
1179 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Jens Axboe6728cb02008-01-31 13:03:55 +01001181 if (!ll_front_merge_fn(q, req, bio))
1182 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001184 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001185
Jens Axboe6728cb02008-01-31 13:03:55 +01001186 bio->bi_next = req->bio;
1187 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Jens Axboe6728cb02008-01-31 13:03:55 +01001189 /*
1190 * may not be valid. if the low level driver said
1191 * it didn't need a bounce buffer then it better
1192 * not touch req->buffer either...
1193 */
1194 req->buffer = bio_data(bio);
1195 req->current_nr_sectors = bio_cur_sectors(bio);
1196 req->hard_cur_sectors = req->current_nr_sectors;
1197 req->sector = req->hard_sector = bio->bi_sector;
1198 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1199 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001200 if (!blk_rq_cpu_valid(req))
1201 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001202 drive_stat_acct(req, 0);
1203 if (!attempt_front_merge(q, req))
1204 elv_merged_request(q, req, el_ret);
1205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Jens Axboe6728cb02008-01-31 13:03:55 +01001207 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1208 default:
1209 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001213 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001214 * This sync check and mask will be re-done in init_request_from_bio(),
1215 * but we need to set it earlier to expose the sync flag to the
1216 * rq allocator and io schedulers.
1217 */
1218 rw_flags = bio_data_dir(bio);
1219 if (sync)
1220 rw_flags |= REQ_RW_SYNC;
1221
1222 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001223 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001224 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001225 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001226 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001227
Nick Piggin450991b2005-06-28 20:45:13 -07001228 /*
1229 * After dropping the lock and possibly sleeping here, our request
1230 * may now be mergeable after it had proven unmergeable (above).
1231 * We don't worry about that case for efficiency. It won't happen
1232 * often, and the elevators are able to handle it.
1233 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001234 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Nick Piggin450991b2005-06-28 20:45:13 -07001236 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001237 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1238 bio_flagged(bio, BIO_CPU_AFFINE))
1239 req->cpu = blk_cpu_to_group(smp_processor_id());
Nick Piggin450991b2005-06-28 20:45:13 -07001240 if (elv_queue_empty(q))
1241 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 add_request(q, req);
1243out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001244 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 spin_unlock_irq(q->queue_lock);
1247 return 0;
1248
1249end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001250 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252}
1253
1254/*
1255 * If bio->bi_dev is a partition, remap the location
1256 */
1257static inline void blk_partition_remap(struct bio *bio)
1258{
1259 struct block_device *bdev = bio->bi_bdev;
1260
Jens Axboebf2de6f2007-09-27 13:01:25 +02001261 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 bio->bi_sector += p->start_sect;
1265 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001266
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001267 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001268 bdev->bd_dev, bio->bi_sector,
1269 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271}
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273static void handle_bad_sector(struct bio *bio)
1274{
1275 char b[BDEVNAME_SIZE];
1276
1277 printk(KERN_INFO "attempt to access beyond end of device\n");
1278 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1279 bdevname(bio->bi_bdev, b),
1280 bio->bi_rw,
1281 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1282 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1283
1284 set_bit(BIO_EOF, &bio->bi_flags);
1285}
1286
Akinobu Mitac17bb492006-12-08 02:39:46 -08001287#ifdef CONFIG_FAIL_MAKE_REQUEST
1288
1289static DECLARE_FAULT_ATTR(fail_make_request);
1290
1291static int __init setup_fail_make_request(char *str)
1292{
1293 return setup_fault_attr(&fail_make_request, str);
1294}
1295__setup("fail_make_request=", setup_fail_make_request);
1296
1297static int should_fail_request(struct bio *bio)
1298{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001299 struct hd_struct *part = bio->bi_bdev->bd_part;
1300
1301 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001302 return should_fail(&fail_make_request, bio->bi_size);
1303
1304 return 0;
1305}
1306
1307static int __init fail_make_request_debugfs(void)
1308{
1309 return init_fault_attr_dentries(&fail_make_request,
1310 "fail_make_request");
1311}
1312
1313late_initcall(fail_make_request_debugfs);
1314
1315#else /* CONFIG_FAIL_MAKE_REQUEST */
1316
1317static inline int should_fail_request(struct bio *bio)
1318{
1319 return 0;
1320}
1321
1322#endif /* CONFIG_FAIL_MAKE_REQUEST */
1323
Jens Axboec07e2b42007-07-18 13:27:58 +02001324/*
1325 * Check whether this bio extends beyond the end of the device.
1326 */
1327static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1328{
1329 sector_t maxsector;
1330
1331 if (!nr_sectors)
1332 return 0;
1333
1334 /* Test device or partition size, when known. */
1335 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1336 if (maxsector) {
1337 sector_t sector = bio->bi_sector;
1338
1339 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1340 /*
1341 * This may well happen - the kernel calls bread()
1342 * without checking the size of the device, e.g., when
1343 * mounting a device.
1344 */
1345 handle_bad_sector(bio);
1346 return 1;
1347 }
1348 }
1349
1350 return 0;
1351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001354 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 * @bio: The bio describing the location in memory and on the device.
1356 *
1357 * generic_make_request() is used to make I/O requests of block
1358 * devices. It is passed a &struct bio, which describes the I/O that needs
1359 * to be done.
1360 *
1361 * generic_make_request() does not return any status. The
1362 * success/failure status of the request, along with notification of
1363 * completion, is delivered asynchronously through the bio->bi_end_io
1364 * function described (one day) else where.
1365 *
1366 * The caller of generic_make_request must make sure that bi_io_vec
1367 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1368 * set to describe the device address, and the
1369 * bi_end_io and optionally bi_private are set to describe how
1370 * completion notification should be signaled.
1371 *
1372 * generic_make_request and the drivers it calls may use bi_next if this
1373 * bio happens to be merged with someone else, and may change bi_dev and
1374 * bi_sector for remaps as it sees fit. So the values of these fields
1375 * should NOT be depended on after the call to generic_make_request.
1376 */
Neil Brownd89d8792007-05-01 09:53:42 +02001377static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Jens Axboe165125e2007-07-24 09:28:11 +02001379 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001380 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001382 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001383 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Jens Axboec07e2b42007-07-18 13:27:58 +02001387 if (bio_check_eod(bio, nr_sectors))
1388 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /*
1391 * Resolve the mapping until finished. (drivers are
1392 * still free to implement/resolve their own stacking
1393 * by explicitly returning 0)
1394 *
1395 * NOTE: we don't repeat the blk_size check for each new device.
1396 * Stacking drivers are expected to know what they are doing.
1397 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001398 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001399 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 do {
1401 char b[BDEVNAME_SIZE];
1402
1403 q = bdev_get_queue(bio->bi_bdev);
1404 if (!q) {
1405 printk(KERN_ERR
1406 "generic_make_request: Trying to access "
1407 "nonexistent block-device %s (%Lu)\n",
1408 bdevname(bio->bi_bdev, b),
1409 (long long) bio->bi_sector);
1410end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001411 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 break;
1413 }
1414
Jens Axboe4fa253f2007-07-18 13:13:10 +02001415 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001416 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 bdevname(bio->bi_bdev, b),
1418 bio_sectors(bio),
1419 q->max_hw_sectors);
1420 goto end_io;
1421 }
1422
Nick Pigginfde6ad22005-06-23 00:08:53 -07001423 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 goto end_io;
1425
Akinobu Mitac17bb492006-12-08 02:39:46 -08001426 if (should_fail_request(bio))
1427 goto end_io;
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /*
1430 * If this device has partitions, remap block n
1431 * of partition p to block n+start(p) of the disk.
1432 */
1433 blk_partition_remap(bio);
1434
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001435 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1436 goto end_io;
1437
NeilBrown5ddfe962006-10-30 22:07:21 -08001438 if (old_sector != -1)
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001439 trace_block_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001440 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001441
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001442 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001443
NeilBrown5ddfe962006-10-30 22:07:21 -08001444 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001445 old_dev = bio->bi_bdev->bd_dev;
1446
Jens Axboec07e2b42007-07-18 13:27:58 +02001447 if (bio_check_eod(bio, nr_sectors))
1448 goto end_io;
David Woodhousefb2dce82008-08-05 18:01:53 +01001449 if ((bio_empty_barrier(bio) && !q->prepare_flush_fn) ||
1450 (bio_discard(bio) && !q->prepare_discard_fn)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001451 err = -EOPNOTSUPP;
1452 goto end_io;
1453 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 ret = q->make_request_fn(q, bio);
1456 } while (ret);
1457}
1458
Neil Brownd89d8792007-05-01 09:53:42 +02001459/*
1460 * We only want one ->make_request_fn to be active at a time,
1461 * else stack usage with stacked devices could be a problem.
1462 * So use current->bio_{list,tail} to keep a list of requests
1463 * submited by a make_request_fn function.
1464 * current->bio_tail is also used as a flag to say if
1465 * generic_make_request is currently active in this task or not.
1466 * If it is NULL, then no make_request is active. If it is non-NULL,
1467 * then a make_request is active, and new requests should be added
1468 * at the tail
1469 */
1470void generic_make_request(struct bio *bio)
1471{
1472 if (current->bio_tail) {
1473 /* make_request is active */
1474 *(current->bio_tail) = bio;
1475 bio->bi_next = NULL;
1476 current->bio_tail = &bio->bi_next;
1477 return;
1478 }
1479 /* following loop may be a bit non-obvious, and so deserves some
1480 * explanation.
1481 * Before entering the loop, bio->bi_next is NULL (as all callers
1482 * ensure that) so we have a list with a single bio.
1483 * We pretend that we have just taken it off a longer list, so
1484 * we assign bio_list to the next (which is NULL) and bio_tail
1485 * to &bio_list, thus initialising the bio_list of new bios to be
1486 * added. __generic_make_request may indeed add some more bios
1487 * through a recursive call to generic_make_request. If it
1488 * did, we find a non-NULL value in bio_list and re-enter the loop
1489 * from the top. In this case we really did just take the bio
1490 * of the top of the list (no pretending) and so fixup bio_list and
1491 * bio_tail or bi_next, and call into __generic_make_request again.
1492 *
1493 * The loop was structured like this to make only one call to
1494 * __generic_make_request (which is important as it is large and
1495 * inlined) and to keep the structure simple.
1496 */
1497 BUG_ON(bio->bi_next);
1498 do {
1499 current->bio_list = bio->bi_next;
1500 if (bio->bi_next == NULL)
1501 current->bio_tail = &current->bio_list;
1502 else
1503 bio->bi_next = NULL;
1504 __generic_make_request(bio);
1505 bio = current->bio_list;
1506 } while (bio);
1507 current->bio_tail = NULL; /* deactivate */
1508}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509EXPORT_SYMBOL(generic_make_request);
1510
1511/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001512 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1514 * @bio: The &struct bio which describes the I/O
1515 *
1516 * submit_bio() is very similar in purpose to generic_make_request(), and
1517 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001518 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 *
1520 */
1521void submit_bio(int rw, struct bio *bio)
1522{
1523 int count = bio_sectors(bio);
1524
Jens Axboe22e2c502005-06-27 10:55:12 +02001525 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Jens Axboebf2de6f2007-09-27 13:01:25 +02001527 /*
1528 * If it's a regular read/write or a barrier with data attached,
1529 * go through the normal accounting stuff before submission.
1530 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001531 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001532 if (rw & WRITE) {
1533 count_vm_events(PGPGOUT, count);
1534 } else {
1535 task_io_account_read(bio->bi_size);
1536 count_vm_events(PGPGIN, count);
1537 }
1538
1539 if (unlikely(block_dump)) {
1540 char b[BDEVNAME_SIZE];
1541 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001542 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001543 (rw & WRITE) ? "WRITE" : "READ",
1544 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001545 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
1548
1549 generic_make_request(bio);
1550}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551EXPORT_SYMBOL(submit_bio);
1552
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001553/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001554 * blk_rq_check_limits - Helper function to check a request for the queue limit
1555 * @q: the queue
1556 * @rq: the request being checked
1557 *
1558 * Description:
1559 * @rq may have been made based on weaker limitations of upper-level queues
1560 * in request stacking drivers, and it may violate the limitation of @q.
1561 * Since the block layer and the underlying device driver trust @rq
1562 * after it is inserted to @q, it should be checked against @q before
1563 * the insertion using this generic function.
1564 *
1565 * This function should also be useful for request stacking drivers
1566 * in some cases below, so export this fuction.
1567 * Request stacking drivers like request-based dm may change the queue
1568 * limits while requests are in the queue (e.g. dm's table swapping).
1569 * Such request stacking drivers should check those requests agaist
1570 * the new queue limits again when they dispatch those requests,
1571 * although such checkings are also done against the old queue limits
1572 * when submitting requests.
1573 */
1574int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1575{
1576 if (rq->nr_sectors > q->max_sectors ||
1577 rq->data_len > q->max_hw_sectors << 9) {
1578 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1579 return -EIO;
1580 }
1581
1582 /*
1583 * queue's settings related to segment counting like q->bounce_pfn
1584 * may differ from that of other stacking queues.
1585 * Recalculate it to check the request correctly on this queue's
1586 * limitation.
1587 */
1588 blk_recalc_rq_segments(rq);
1589 if (rq->nr_phys_segments > q->max_phys_segments ||
1590 rq->nr_phys_segments > q->max_hw_segments) {
1591 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1592 return -EIO;
1593 }
1594
1595 return 0;
1596}
1597EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1598
1599/**
1600 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1601 * @q: the queue to submit the request
1602 * @rq: the request being queued
1603 */
1604int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1605{
1606 unsigned long flags;
1607
1608 if (blk_rq_check_limits(q, rq))
1609 return -EIO;
1610
1611#ifdef CONFIG_FAIL_MAKE_REQUEST
1612 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1613 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1614 return -EIO;
1615#endif
1616
1617 spin_lock_irqsave(q->queue_lock, flags);
1618
1619 /*
1620 * Submitting request must be dequeued before calling this function
1621 * because it will be linked to another request_queue
1622 */
1623 BUG_ON(blk_queued_rq(rq));
1624
1625 drive_stat_acct(rq, 1);
1626 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1627
1628 spin_unlock_irqrestore(q->queue_lock, flags);
1629
1630 return 0;
1631}
1632EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1633
1634/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001635 * __end_that_request_first - end I/O on a request
1636 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001637 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001638 * @nr_bytes: number of bytes to complete
1639 *
1640 * Description:
1641 * Ends I/O on a number of bytes attached to @req, and sets it up
1642 * for the next range of segments (if any) in the cluster.
1643 *
1644 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001645 * %0 - we are done with this request, call end_that_request_last()
1646 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001647 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001648static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 int nr_bytes)
1650{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001651 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 struct bio *bio;
1653
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001654 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001657 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * sense key with us all the way through
1659 */
1660 if (!blk_pc_request(req))
1661 req->errors = 0;
1662
Jens Axboe6728cb02008-01-31 13:03:55 +01001663 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1664 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 req->rq_disk ? req->rq_disk->disk_name : "?",
1666 (unsigned long long)req->sector);
1667 }
1668
Jens Axboed72d9042005-11-01 08:35:42 +01001669 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01001670 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001671 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001672 int cpu;
Jens Axboea3623572005-11-01 09:26:16 +01001673
Tejun Heo074a7ac2008-08-25 19:56:14 +09001674 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001675 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001676 part_stat_add(cpu, part, sectors[rw], nr_bytes >> 9);
1677 part_stat_unlock();
Jens Axboed72d9042005-11-01 08:35:42 +01001678 }
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 total_bytes = bio_nbytes = 0;
1681 while ((bio = req->bio) != NULL) {
1682 int nbytes;
1683
Jens Axboebf2de6f2007-09-27 13:01:25 +02001684 /*
1685 * For an empty barrier request, the low level driver must
1686 * store a potential error location in ->sector. We pass
1687 * that back up in ->bi_sector.
1688 */
1689 if (blk_empty_barrier(req))
1690 bio->bi_sector = req->sector;
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (nr_bytes >= bio->bi_size) {
1693 req->bio = bio->bi_next;
1694 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001695 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 next_idx = 0;
1697 bio_nbytes = 0;
1698 } else {
1699 int idx = bio->bi_idx + next_idx;
1700
1701 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1702 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001703 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001704 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 break;
1706 }
1707
1708 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1709 BIO_BUG_ON(nbytes > bio->bi_size);
1710
1711 /*
1712 * not a complete bvec done
1713 */
1714 if (unlikely(nbytes > nr_bytes)) {
1715 bio_nbytes += nr_bytes;
1716 total_bytes += nr_bytes;
1717 break;
1718 }
1719
1720 /*
1721 * advance to the next vector
1722 */
1723 next_idx++;
1724 bio_nbytes += nbytes;
1725 }
1726
1727 total_bytes += nbytes;
1728 nr_bytes -= nbytes;
1729
Jens Axboe6728cb02008-01-31 13:03:55 +01001730 bio = req->bio;
1731 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 /*
1733 * end more in this run, or just return 'not-done'
1734 */
1735 if (unlikely(nr_bytes <= 0))
1736 break;
1737 }
1738 }
1739
1740 /*
1741 * completely done
1742 */
1743 if (!req->bio)
1744 return 0;
1745
1746 /*
1747 * if the request wasn't completed, update state
1748 */
1749 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001750 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 bio->bi_idx += next_idx;
1752 bio_iovec(bio)->bv_offset += nr_bytes;
1753 bio_iovec(bio)->bv_len -= nr_bytes;
1754 }
1755
1756 blk_recalc_rq_sectors(req, total_bytes >> 9);
1757 blk_recalc_rq_segments(req);
1758 return 1;
1759}
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761/*
1762 * queue lock must be held
1763 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001764static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001767
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001768 if (blk_rq_tagged(req))
1769 blk_queue_end_tag(req->q, req);
1770
1771 if (blk_queued_rq(req))
1772 blkdev_dequeue_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 if (unlikely(laptop_mode) && blk_fs_request(req))
1775 laptop_io_completion();
1776
Mike Andersone78042e2008-10-30 02:16:20 -07001777 blk_delete_timer(req);
1778
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001779 /*
1780 * Account IO completion. bar_rq isn't accounted as a normal
1781 * IO on queueing nor completion. Accounting the containing
1782 * request is enough.
1783 */
1784 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001786 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001787 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001788 int cpu;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001789
Tejun Heo074a7ac2008-08-25 19:56:14 +09001790 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001791 part = disk_map_sector_rcu(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001792
Tejun Heo074a7ac2008-08-25 19:56:14 +09001793 part_stat_inc(cpu, part, ios[rw]);
1794 part_stat_add(cpu, part, ticks[rw], duration);
1795 part_round_stats(cpu, part);
1796 part_dec_in_flight(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001797
Tejun Heo074a7ac2008-08-25 19:56:14 +09001798 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001802 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001803 else {
1804 if (blk_bidi_rq(req))
1805 __blk_put_request(req->next_rq->q, req->next_rq);
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809}
1810
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001811/**
1812 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001813 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001814 **/
1815unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001816{
1817 if (blk_fs_request(rq))
1818 return rq->hard_nr_sectors << 9;
1819
1820 return rq->data_len;
1821}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001822EXPORT_SYMBOL_GPL(blk_rq_bytes);
1823
1824/**
1825 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001826 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001827 **/
1828unsigned int blk_rq_cur_bytes(struct request *rq)
1829{
1830 if (blk_fs_request(rq))
1831 return rq->current_nr_sectors << 9;
1832
1833 if (rq->bio)
1834 return rq->bio->bi_size;
1835
1836 return rq->data_len;
1837}
1838EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001839
1840/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001841 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001842 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001843 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001844 *
1845 * Description:
1846 * Ends I/O on the current segment of a request. If that is the only
1847 * remaining segment, the request is also completed and freed.
1848 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001849 * This is a remnant of how older block drivers handled I/O completions.
1850 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001851 * they have a residual value to account for. For that case this function
1852 * isn't really useful, unless the residual just happens to be the
1853 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001854 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001855 **/
1856void end_request(struct request *req, int uptodate)
1857{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001858 int error = 0;
1859
1860 if (uptodate <= 0)
1861 error = uptodate ? uptodate : -EIO;
1862
1863 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001864}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865EXPORT_SYMBOL(end_request);
1866
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001867static int end_that_request_data(struct request *rq, int error,
1868 unsigned int nr_bytes, unsigned int bidi_bytes)
1869{
1870 if (rq->bio) {
1871 if (__end_that_request_first(rq, error, nr_bytes))
1872 return 1;
1873
1874 /* Bidi request must be completed as a whole */
1875 if (blk_bidi_rq(rq) &&
1876 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1877 return 1;
1878 }
1879
1880 return 0;
1881}
1882
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001883/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001884 * blk_end_io - Generic end_io function to complete a request.
1885 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001886 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001887 * @nr_bytes: number of bytes to complete @rq
1888 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001889 * @drv_callback: function called between completion of bios in the request
1890 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001891 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001892 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001893 *
1894 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001895 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001896 * If @rq has leftover, sets it up for the next range of segments.
1897 *
1898 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001899 * %0 - we are done with this request
1900 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001901 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001902static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1903 unsigned int bidi_bytes,
1904 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001905{
1906 struct request_queue *q = rq->q;
1907 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001908
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001909 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1910 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001911
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001912 /* Special feature for tricky drivers */
1913 if (drv_callback && drv_callback(rq))
1914 return 1;
1915
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001916 add_disk_randomness(rq->rq_disk);
1917
1918 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001919 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001920 spin_unlock_irqrestore(q->queue_lock, flags);
1921
1922 return 0;
1923}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001924
1925/**
1926 * blk_end_request - Helper function for drivers to complete the request.
1927 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001928 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001929 * @nr_bytes: number of bytes to complete
1930 *
1931 * Description:
1932 * Ends I/O on a number of bytes attached to @rq.
1933 * If @rq has leftover, sets it up for the next range of segments.
1934 *
1935 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001936 * %0 - we are done with this request
1937 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001938 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001939int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001940{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001941 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001942}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001943EXPORT_SYMBOL_GPL(blk_end_request);
1944
1945/**
1946 * __blk_end_request - Helper function for drivers to complete the request.
1947 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001948 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001949 * @nr_bytes: number of bytes to complete
1950 *
1951 * Description:
1952 * Must be called with queue lock held unlike blk_end_request().
1953 *
1954 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001955 * %0 - we are done with this request
1956 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001957 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001958int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001959{
Jens Axboe60540162008-08-26 13:34:34 +02001960 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02001961 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001962
1963 add_disk_randomness(rq->rq_disk);
1964
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001965 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001966
1967 return 0;
1968}
1969EXPORT_SYMBOL_GPL(__blk_end_request);
1970
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001971/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001972 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1973 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001974 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001975 * @nr_bytes: number of bytes to complete @rq
1976 * @bidi_bytes: number of bytes to complete @rq->next_rq
1977 *
1978 * Description:
1979 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
1980 *
1981 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001982 * %0 - we are done with this request
1983 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001984 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001985int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
1986 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001987{
1988 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
1989}
1990EXPORT_SYMBOL_GPL(blk_end_bidi_request);
1991
1992/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001993 * blk_update_request - Special helper function for request stacking drivers
1994 * @rq: the request being processed
1995 * @error: %0 for success, < %0 for error
1996 * @nr_bytes: number of bytes to complete @rq
1997 *
1998 * Description:
1999 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2000 * the request structure even if @rq doesn't have leftover.
2001 * If @rq has leftover, sets it up for the next range of segments.
2002 *
2003 * This special helper function is only for request stacking drivers
2004 * (e.g. request-based dm) so that they can handle partial completion.
2005 * Actual device drivers should use blk_end_request instead.
2006 */
2007void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2008{
2009 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2010 /*
2011 * These members are not updated in end_that_request_data()
2012 * when all bios are completed.
2013 * Update them so that the request stacking driver can find
2014 * how many bytes remain in the request later.
2015 */
2016 rq->nr_sectors = rq->hard_nr_sectors = 0;
2017 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2018 }
2019}
2020EXPORT_SYMBOL_GPL(blk_update_request);
2021
2022/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002023 * blk_end_request_callback - Special helper function for tricky drivers
2024 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002025 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002026 * @nr_bytes: number of bytes to complete
2027 * @drv_callback: function called between completion of bios in the request
2028 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002029 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002030 * completion of the request.
2031 *
2032 * Description:
2033 * Ends I/O on a number of bytes attached to @rq.
2034 * If @rq has leftover, sets it up for the next range of segments.
2035 *
2036 * This special helper function is used only for existing tricky drivers.
2037 * (e.g. cdrom_newpc_intr() of ide-cd)
2038 * This interface will be removed when such drivers are rewritten.
2039 * Don't use this interface in other places anymore.
2040 *
2041 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002042 * %0 - we are done with this request
2043 * %1 - this request is not freed yet.
2044 * this request still has pending buffers or
2045 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002046 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002047int blk_end_request_callback(struct request *rq, int error,
2048 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002049 int (drv_callback)(struct request *))
2050{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002051 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002052}
2053EXPORT_SYMBOL_GPL(blk_end_request_callback);
2054
Jens Axboe86db1e22008-01-29 14:53:40 +01002055void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2056 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
David Woodhoused628eae2008-08-09 16:22:17 +01002058 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2059 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002060 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
David Woodhousefb2dce82008-08-05 18:01:53 +01002062 if (bio_has_data(bio)) {
2063 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002064 rq->buffer = bio_data(bio);
2065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 rq->current_nr_sectors = bio_cur_sectors(bio);
2067 rq->hard_cur_sectors = rq->current_nr_sectors;
2068 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002069 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
NeilBrown66846572007-08-16 13:31:28 +02002073 if (bio->bi_bdev)
2074 rq->rq_disk = bio->bi_bdev->bd_disk;
2075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002077/**
2078 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2079 * @q : the queue of the device being checked
2080 *
2081 * Description:
2082 * Check if underlying low-level drivers of a device are busy.
2083 * If the drivers want to export their busy state, they must set own
2084 * exporting function using blk_queue_lld_busy() first.
2085 *
2086 * Basically, this function is used only by request stacking drivers
2087 * to stop dispatching requests to underlying devices when underlying
2088 * devices are busy. This behavior helps more I/O merging on the queue
2089 * of the request stacking driver and prevents I/O throughput regression
2090 * on burst I/O load.
2091 *
2092 * Return:
2093 * 0 - Not busy (The request stacking driver should dispatch request)
2094 * 1 - Busy (The request stacking driver should stop dispatching request)
2095 */
2096int blk_lld_busy(struct request_queue *q)
2097{
2098 if (q->lld_busy_fn)
2099 return q->lld_busy_fn(q);
2100
2101 return 0;
2102}
2103EXPORT_SYMBOL_GPL(blk_lld_busy);
2104
Jens Axboe18887ad2008-07-28 13:08:45 +02002105int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 return queue_work(kblockd_workqueue, work);
2108}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109EXPORT_SYMBOL(kblockd_schedule_work);
2110
Andrew Morton19a75d82007-05-09 02:33:56 -07002111void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002113 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
Andrew Morton19a75d82007-05-09 02:33:56 -07002115EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117int __init blk_dev_init(void)
2118{
2119 kblockd_workqueue = create_workqueue("kblockd");
2120 if (!kblockd_workqueue)
2121 panic("Failed to create kblockd\n");
2122
2123 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002124 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Jens Axboe8324aa92008-01-29 14:51:59 +01002126 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002127 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return 0;
2130}
2131