blob: 1d94f15d7f0d452eb3154e7ce4a9426aa31f1769 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Ingo Molnar0bfc2452008-11-26 11:59:56 +010036EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
Jun'ichi Nomurab0da3f02009-10-01 21:16:13 +020037EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
Li Zefan55782132009-06-09 13:43:05 +080038EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010039
Jens Axboe165125e2007-07-24 09:28:11 +020040static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For the allocated request tables
44 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010045static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * For queue allocation
49 */
Jens Axboe6728cb02008-01-31 13:03:55 +010050struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Controlling structure to kblockd
54 */
Jens Axboeff856ba2006-01-09 16:02:34 +010055static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jens Axboe26b82562008-01-29 13:54:41 +010057static void drive_stat_acct(struct request *rq, int new_io)
58{
Jens Axboe28f13702008-05-07 10:15:46 +020059 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010060 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090061 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010062
Jens Axboec2553b52009-04-24 08:10:11 +020063 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010064 return;
65
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +090067 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jens Axboe28f13702008-05-07 10:15:46 +020069 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020071 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090072 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +020073 part_inc_in_flight(part, rw);
Jens Axboe26b82562008-01-29 13:54:41 +010074 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075
Tejun Heo074a7ac2008-08-25 19:56:14 +090076 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010077}
78
Jens Axboe8324aa92008-01-29 14:51:59 +010079void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int nr;
82
83 nr = q->nr_requests - (q->nr_requests / 8) + 1;
84 if (nr > q->nr_requests)
85 nr = q->nr_requests;
86 q->nr_congestion_on = nr;
87
88 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
89 if (nr < 1)
90 nr = 1;
91 q->nr_congestion_off = nr;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/**
95 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
96 * @bdev: device
97 *
98 * Locates the passed device's request queue and returns the address of its
99 * backing_dev_info
100 *
101 * Will return NULL if the request queue cannot be located.
102 */
103struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
104{
105 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200106 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (q)
109 ret = &q->backing_dev_info;
110 return ret;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(blk_get_backing_dev_info);
113
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200114void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200116 memset(rq, 0, sizeof(*rq));
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700119 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200120 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900122 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200123 INIT_HLIST_NODE(&rq->hash);
124 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200125 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800126 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100128 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900129 rq->start_time = jiffies;
Divyesh Shah91952912010-04-01 15:01:41 -0700130 set_start_time_ns(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200132EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
NeilBrown5bb23a62007-09-27 12:46:13 +0200134static void req_bio_endio(struct request *rq, struct bio *bio,
135 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100136{
Jens Axboe165125e2007-07-24 09:28:11 +0200137 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100138
NeilBrown5bb23a62007-09-27 12:46:13 +0200139 if (&q->bar_rq != rq) {
140 if (error)
141 clear_bit(BIO_UPTODATE, &bio->bi_flags);
142 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
143 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100144
NeilBrown5bb23a62007-09-27 12:46:13 +0200145 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100146 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700147 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200148 nbytes = bio->bi_size;
149 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100150
Keith Mannthey08bafc02008-11-25 10:24:35 +0100151 if (unlikely(rq->cmd_flags & REQ_QUIET))
152 set_bit(BIO_QUIET, &bio->bi_flags);
153
NeilBrown5bb23a62007-09-27 12:46:13 +0200154 bio->bi_size -= nbytes;
155 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200156
157 if (bio_integrity(bio))
158 bio_integrity_advance(bio, nbytes);
159
NeilBrown5bb23a62007-09-27 12:46:13 +0200160 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200161 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 } else {
163
164 /*
165 * Okay, this is the barrier request in progress, just
166 * record the error;
167 */
168 if (error && !q->orderr)
169 q->orderr = error;
170 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100171}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173void blk_dump_rq_flags(struct request *rq, char *msg)
174{
175 int bit;
176
Jens Axboe6728cb02008-01-31 13:03:55 +0100177 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200178 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
179 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Tejun Heo83096eb2009-05-07 22:24:39 +0900181 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
182 (unsigned long long)blk_rq_pos(rq),
183 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900184 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900185 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Jens Axboe4aff5e22006-08-10 08:44:47 +0200187 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100188 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200189 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 printk("%02x ", rq->cmd[bit]);
191 printk("\n");
192 }
193}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194EXPORT_SYMBOL(blk_dump_rq_flags);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * "plug" the device if there are no outstanding requests: this will
198 * force the transfer to start only after we have put all the requests
199 * on the list.
200 *
201 * This is called with interrupts off and no requests on the queue and
202 * with the queue lock held.
203 */
Jens Axboe165125e2007-07-24 09:28:11 +0200204void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 WARN_ON(!irqs_disabled());
207
208 /*
209 * don't plug a stopped queue, it must be paired with blk_start_queue()
210 * which will restart the queueing
211 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200212 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214
Jens Axboee48ec692008-07-03 13:18:54 +0200215 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100217 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220EXPORT_SYMBOL(blk_plug_device);
221
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200222/**
223 * blk_plug_device_unlocked - plug a device without queue lock held
224 * @q: The &struct request_queue to plug
225 *
226 * Description:
227 * Like @blk_plug_device(), but grabs the queue lock and disables
228 * interrupts.
229 **/
230void blk_plug_device_unlocked(struct request_queue *q)
231{
232 unsigned long flags;
233
234 spin_lock_irqsave(q->queue_lock, flags);
235 blk_plug_device(q);
236 spin_unlock_irqrestore(q->queue_lock, flags);
237}
238EXPORT_SYMBOL(blk_plug_device_unlocked);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
241 * remove the queue from the plugged list, if present. called with
242 * queue lock held and interrupts disabled.
243 */
Jens Axboe165125e2007-07-24 09:28:11 +0200244int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 WARN_ON(!irqs_disabled());
247
Jens Axboee48ec692008-07-03 13:18:54 +0200248 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return 0;
250
251 del_timer(&q->unplug_timer);
252 return 1;
253}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254EXPORT_SYMBOL(blk_remove_plug);
255
256/*
257 * remove the plug and let it rip..
258 */
Jens Axboe165125e2007-07-24 09:28:11 +0200259void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200261 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200263 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return;
265
Jens Axboe22e2c502005-06-27 10:55:12 +0200266 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269/**
270 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200271 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
273 * Description:
274 * Linux uses plugging to build bigger requests queues before letting
275 * the device have at them. If a queue is plugged, the I/O scheduler
276 * is still adding and merging requests on the queue. Once the queue
277 * gets unplugged, the request_fn defined for the queue is invoked and
278 * transfers started.
279 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200280void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200282 if (blk_queue_plugged(q)) {
283 spin_lock_irq(q->queue_lock);
284 __generic_unplug_device(q);
285 spin_unlock_irq(q->queue_lock);
286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288EXPORT_SYMBOL(generic_unplug_device);
289
290static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
291 struct page *page)
292{
Jens Axboe165125e2007-07-24 09:28:11 +0200293 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500295 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Jens Axboe86db1e22008-01-29 14:53:40 +0100298void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Jens Axboe165125e2007-07-24 09:28:11 +0200300 struct request_queue *q =
301 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100303 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 q->unplug_fn(q);
305}
306
Jens Axboe86db1e22008-01-29 14:53:40 +0100307void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Jens Axboe165125e2007-07-24 09:28:11 +0200309 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100311 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200312 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500315void blk_unplug(struct request_queue *q)
316{
317 /*
318 * devices don't necessarily have an ->unplug_fn defined
319 */
320 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100321 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500322 q->unplug_fn(q);
323 }
324}
325EXPORT_SYMBOL(blk_unplug);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/**
328 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200329 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
331 * Description:
332 * blk_start_queue() will clear the stop flag on the queue, and call
333 * the request_fn for the queue if it was in a stopped state when
334 * entered. Also see blk_stop_queue(). Queue lock must be held.
335 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200336void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200338 WARN_ON(!irqs_disabled());
339
Nick Piggin75ad23b2008-04-29 14:48:33 +0200340 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900341 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343EXPORT_SYMBOL(blk_start_queue);
344
345/**
346 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200347 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 *
349 * Description:
350 * The Linux block layer assumes that a block driver will consume all
351 * entries on the request queue when the request_fn strategy is called.
352 * Often this will not happen, because of hardware limitations (queue
353 * depth settings). If a device driver gets a 'queue full' response,
354 * or if it simply chooses not to queue more I/O at one point, it can
355 * call this function to prevent the request_fn from being called until
356 * the driver has signalled it's ready to go again. This happens by calling
357 * blk_start_queue() to restart queue operations. Queue lock must be held.
358 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200359void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200362 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364EXPORT_SYMBOL(blk_stop_queue);
365
366/**
367 * blk_sync_queue - cancel any pending callbacks on a queue
368 * @q: the queue
369 *
370 * Description:
371 * The block layer may perform asynchronous callback activity
372 * on a queue, such as calling the unplug function after a timeout.
373 * A block device may call blk_sync_queue to ensure that any
374 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200375 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * that its ->make_request_fn will not re-add plugging prior to calling
377 * this function.
378 *
379 */
380void blk_sync_queue(struct request_queue *q)
381{
382 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100383 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100384 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386EXPORT_SYMBOL(blk_sync_queue);
387
388/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200389 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200391 *
392 * Description:
393 * See @blk_run_queue. This variant must be called with the queue lock
394 * held and interrupts disabled.
395 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200397void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200400
Tejun Heoa538cd02009-04-23 11:05:17 +0900401 if (unlikely(blk_queue_stopped(q)))
402 return;
403
404 if (elv_queue_empty(q))
405 return;
406
Jens Axboedac07ec2006-05-11 08:20:16 +0200407 /*
408 * Only recurse once to avoid overrunning the stack, let the unplug
409 * handling reinvoke the handler shortly if we already got there.
410 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900411 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
412 q->request_fn(q);
413 queue_flag_clear(QUEUE_FLAG_REENTER, q);
414 } else {
415 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
416 kblockd_schedule_work(q, &q->unplug_work);
417 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200418}
419EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200420
Nick Piggin75ad23b2008-04-29 14:48:33 +0200421/**
422 * blk_run_queue - run a single device queue
423 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200424 *
425 * Description:
426 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900427 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200428 */
429void blk_run_queue(struct request_queue *q)
430{
431 unsigned long flags;
432
433 spin_lock_irqsave(q->queue_lock, flags);
434 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 spin_unlock_irqrestore(q->queue_lock, flags);
436}
437EXPORT_SYMBOL(blk_run_queue);
438
Jens Axboe165125e2007-07-24 09:28:11 +0200439void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500440{
441 kobject_put(&q->kobj);
442}
Al Viro483f4af2006-03-18 18:34:37 -0500443
Jens Axboe6728cb02008-01-31 13:03:55 +0100444void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500445{
Jens Axboee3335de92008-09-18 09:22:54 -0700446 /*
447 * We know we have process context here, so we can be a little
448 * cautious and ensure that pending block actions on this device
449 * are done before moving on. Going into this function, we should
450 * not have processes doing IO to this device.
451 */
452 blk_sync_queue(q);
453
Al Viro483f4af2006-03-18 18:34:37 -0500454 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200455 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500456 mutex_unlock(&q->sysfs_lock);
457
458 if (q->elevator)
459 elevator_exit(q->elevator);
460
461 blk_put_queue(q);
462}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463EXPORT_SYMBOL(blk_cleanup_queue);
464
Jens Axboe165125e2007-07-24 09:28:11 +0200465static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct request_list *rl = &q->rq;
468
Jens Axboe1faa16d2009-04-06 14:48:01 +0200469 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
470 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200471 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200472 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
473 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Christoph Lameter19460892005-06-23 00:08:19 -0700475 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
476 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (!rl->rq_pool)
479 return -ENOMEM;
480
481 return 0;
482}
483
Jens Axboe165125e2007-07-24 09:28:11 +0200484struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Christoph Lameter19460892005-06-23 00:08:19 -0700486 return blk_alloc_queue_node(gfp_mask, -1);
487}
488EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Jens Axboe165125e2007-07-24 09:28:11 +0200490struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700491{
Jens Axboe165125e2007-07-24 09:28:11 +0200492 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700493 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700494
Jens Axboe8324aa92008-01-29 14:51:59 +0100495 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700496 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!q)
498 return NULL;
499
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700500 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
501 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200502 q->backing_dev_info.ra_pages =
503 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
504 q->backing_dev_info.state = 0;
505 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200506 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200507
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700508 err = bdi_init(&q->backing_dev_info);
509 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100510 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700511 return NULL;
512 }
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700515 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
516 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200517 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500518
Jens Axboe8324aa92008-01-29 14:51:59 +0100519 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Al Viro483f4af2006-03-18 18:34:37 -0500521 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700522 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return q;
525}
Christoph Lameter19460892005-06-23 00:08:19 -0700526EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528/**
529 * blk_init_queue - prepare a request queue for use with a block device
530 * @rfn: The function to be called to process requests that have been
531 * placed on the queue.
532 * @lock: Request queue spin lock
533 *
534 * Description:
535 * If a block device wishes to use the standard request handling procedures,
536 * which sorts requests and coalesces adjacent requests, then it must
537 * call blk_init_queue(). The function @rfn will be called when there
538 * are requests on the queue that need to be processed. If the device
539 * supports plugging, then @rfn may not be called immediately when requests
540 * are available on the queue, but may be called at some time later instead.
541 * Plugged queues are generally unplugged when a buffer belonging to one
542 * of the requests on the queue is needed, or due to memory pressure.
543 *
544 * @rfn is not required, or even expected, to remove all requests off the
545 * queue, but only as many as it can handle at a time. If it does leave
546 * requests on the queue, it is responsible for arranging that the requests
547 * get dealt with eventually.
548 *
549 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200550 * request queue; this lock will be taken also from interrupt context, so irq
551 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200553 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * it didn't succeed.
555 *
556 * Note:
557 * blk_init_queue() must be paired with a blk_cleanup_queue() call
558 * when the block device is deactivated (such as at module unload).
559 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700560
Jens Axboe165125e2007-07-24 09:28:11 +0200561struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Christoph Lameter19460892005-06-23 00:08:19 -0700563 return blk_init_queue_node(rfn, lock, -1);
564}
565EXPORT_SYMBOL(blk_init_queue);
566
Jens Axboe165125e2007-07-24 09:28:11 +0200567struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700568blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
569{
Jens Axboe165125e2007-07-24 09:28:11 +0200570 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (!q)
573 return NULL;
574
Christoph Lameter19460892005-06-23 00:08:19 -0700575 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500576 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100577 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500578 return NULL;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 q->prep_rq_fn = NULL;
583 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100584 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 q->queue_lock = lock;
586
Jens Axboef3b144a2009-03-06 08:48:33 +0100587 /*
588 * This also sets hw/phys segments, boundary and size
589 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Alan Stern44ec9542007-02-20 11:01:57 -0500592 q->sg_reserved_size = INT_MAX;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /*
595 * all done
596 */
597 if (!elevator_init(q, NULL)) {
598 blk_queue_congestion_threshold(q);
599 return q;
600 }
601
Al Viro8669aaf2006-03-18 13:50:00 -0500602 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return NULL;
604}
Christoph Lameter19460892005-06-23 00:08:19 -0700605EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jens Axboe165125e2007-07-24 09:28:11 +0200607int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700609 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500610 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612 }
613
614 return 1;
615}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Jens Axboe165125e2007-07-24 09:28:11 +0200617static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200619 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200620 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 mempool_free(rq, q->rq.rq_pool);
622}
623
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200624static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200625blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
628
629 if (!rq)
630 return NULL;
631
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200632 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200633
Jerome Marchand42dad762009-04-22 14:01:49 +0200634 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Tejun Heocb98fc82005-10-28 08:29:39 +0200636 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200637 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200638 mempool_free(rq, q->rq.rq_pool);
639 return NULL;
640 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200641 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Tejun Heocb98fc82005-10-28 08:29:39 +0200644 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/*
648 * ioc_batching returns true if the ioc is a valid batching request and
649 * should be given priority access to a request.
650 */
Jens Axboe165125e2007-07-24 09:28:11 +0200651static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 if (!ioc)
654 return 0;
655
656 /*
657 * Make sure the process is able to allocate at least 1 request
658 * even if the batch times out, otherwise we could theoretically
659 * lose wakeups.
660 */
661 return ioc->nr_batch_requests == q->nr_batching ||
662 (ioc->nr_batch_requests > 0
663 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
664}
665
666/*
667 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
668 * will cause the process to be a "batcher" on all queues in the system. This
669 * is the behaviour we want though - once it gets a wakeup it should be given
670 * a nice run.
671 */
Jens Axboe165125e2007-07-24 09:28:11 +0200672static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 if (!ioc || ioc_batching(q, ioc))
675 return;
676
677 ioc->nr_batch_requests = q->nr_batching;
678 ioc->last_waited = jiffies;
679}
680
Jens Axboe1faa16d2009-04-06 14:48:01 +0200681static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct request_list *rl = &q->rq;
684
Jens Axboe1faa16d2009-04-06 14:48:01 +0200685 if (rl->count[sync] < queue_congestion_off_threshold(q))
686 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jens Axboe1faa16d2009-04-06 14:48:01 +0200688 if (rl->count[sync] + 1 <= q->nr_requests) {
689 if (waitqueue_active(&rl->wait[sync]))
690 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Jens Axboe1faa16d2009-04-06 14:48:01 +0200692 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694}
695
696/*
697 * A request has just been released. Account for it, update the full and
698 * congestion status, wake up any waiters. Called under q->queue_lock.
699 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200700static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct request_list *rl = &q->rq;
703
Jens Axboe1faa16d2009-04-06 14:48:01 +0200704 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200705 if (priv)
706 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Jens Axboe1faa16d2009-04-06 14:48:01 +0200708 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Jens Axboe1faa16d2009-04-06 14:48:01 +0200710 if (unlikely(rl->starved[sync ^ 1]))
711 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
Nick Piggind6344532005-06-28 20:45:14 -0700715 * Get a free request, queue_lock must be held.
716 * Returns NULL on failure, with queue_lock held.
717 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Jens Axboe165125e2007-07-24 09:28:11 +0200719static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100720 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct request *rq = NULL;
723 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100724 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200725 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100726 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Jens Axboe7749a8d2006-12-13 13:02:26 +0100728 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100729 if (may_queue == ELV_MQUEUE_NO)
730 goto rq_starved;
731
Jens Axboe1faa16d2009-04-06 14:48:01 +0200732 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
733 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200734 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100735 /*
736 * The queue will fill after this allocation, so set
737 * it as full, and mark this process as "batching".
738 * This process will be allowed to complete a batch of
739 * requests, others will be blocked.
740 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200741 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100742 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200743 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100744 } else {
745 if (may_queue != ELV_MQUEUE_MUST
746 && !ioc_batching(q, ioc)) {
747 /*
748 * The queue is full and the allocating
749 * process is not a "batcher", and not
750 * exempted by the IO scheduler
751 */
752 goto out;
753 }
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200756 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
Jens Axboe082cf692005-06-28 16:35:11 +0200759 /*
760 * Only allow batching queuers to allocate up to 50% over the defined
761 * limit of requests, otherwise we could have thousands of requests
762 * allocated with any setting of ->nr_requests
763 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200764 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200765 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100766
Jens Axboe1faa16d2009-04-06 14:48:01 +0200767 rl->count[is_sync]++;
768 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200769
Jens Axboe64521d12005-10-28 08:30:39 +0200770 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200771 if (priv)
772 rl->elvpriv++;
773
Jerome Marchand42dad762009-04-22 14:01:49 +0200774 if (blk_queue_io_stat(q))
775 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 spin_unlock_irq(q->queue_lock);
777
Jens Axboe7749a8d2006-12-13 13:02:26 +0100778 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100779 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /*
781 * Allocation failed presumably due to memory. Undo anything
782 * we might have messed up.
783 *
784 * Allocating task should really be put onto the front of the
785 * wait queue, but this is pretty rare.
786 */
787 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200788 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 /*
791 * in the very unlikely event that allocation failed and no
792 * requests for this direction was pending, mark us starved
793 * so that freeing of a request in the other direction will
794 * notice us. another possible fix would be to split the
795 * rq mempool into READ and WRITE
796 */
797rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200798 if (unlikely(rl->count[is_sync] == 0))
799 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto out;
802 }
803
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100804 /*
805 * ioc may be NULL here, and ioc_batching will be false. That's
806 * OK, if the queue is under the request limit then requests need
807 * not count toward the nr_batch_requests limit. There will always
808 * be some limit enforced by BLK_BATCH_TIME.
809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (ioc_batching(q, ioc))
811 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100812
Jens Axboe1faa16d2009-04-06 14:48:01 +0200813 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return rq;
816}
817
818/*
819 * No available requests for this queue, unplug the device and wait for some
820 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700821 *
822 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 */
Jens Axboe165125e2007-07-24 09:28:11 +0200824static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200825 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200827 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 struct request *rq;
829
Jens Axboe7749a8d2006-12-13 13:02:26 +0100830 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700831 while (!rq) {
832 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200833 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 struct request_list *rl = &q->rq;
835
Jens Axboe1faa16d2009-04-06 14:48:01 +0200836 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 TASK_UNINTERRUPTIBLE);
838
Jens Axboe1faa16d2009-04-06 14:48:01 +0200839 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200841 __generic_unplug_device(q);
842 spin_unlock_irq(q->queue_lock);
843 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200845 /*
846 * After sleeping, we become a "batching" process and
847 * will be able to allocate at least one request, and
848 * up to a big batch of them for a small period time.
849 * See ioc_batching, ioc_set_batching
850 */
851 ioc = current_io_context(GFP_NOIO, q->node);
852 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100853
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200854 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200855 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200856
857 rq = get_request(q, rw_flags, bio, GFP_NOIO);
858 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 return rq;
861}
862
Jens Axboe165125e2007-07-24 09:28:11 +0200863struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct request *rq;
866
867 BUG_ON(rw != READ && rw != WRITE);
868
Nick Piggind6344532005-06-28 20:45:14 -0700869 spin_lock_irq(q->queue_lock);
870 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200871 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700872 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200873 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700874 if (!rq)
875 spin_unlock_irq(q->queue_lock);
876 }
877 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 return rq;
880}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881EXPORT_SYMBOL(blk_get_request);
882
883/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300884 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700885 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300886 * @bio: The bio describing the memory mappings that will be submitted for IO.
887 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700888 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200889 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300890 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
891 * type commands. Where the struct request needs to be farther initialized by
892 * the caller. It is passed a &struct bio, which describes the memory info of
893 * the I/O transfer.
894 *
895 * The caller of blk_make_request must make sure that bi_io_vec
896 * are set to describe the memory buffers. That bio_data_dir() will return
897 * the needed direction of the request. (And all bio's in the passed bio-chain
898 * are properly set accordingly)
899 *
900 * If called under none-sleepable conditions, mapped bio buffers must not
901 * need bouncing, by calling the appropriate masked or flagged allocator,
902 * suitable for the target device. Otherwise the call to blk_queue_bounce will
903 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200904 *
905 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
906 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
907 * anything but the first bio in the chain. Otherwise you risk waiting for IO
908 * completion of a bio that hasn't been submitted yet, thus resulting in a
909 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
910 * of bio_alloc(), as that avoids the mempool deadlock.
911 * If possible a big IO should be split into smaller parts when allocation
912 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200913 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300914struct request *blk_make_request(struct request_queue *q, struct bio *bio,
915 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200916{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300917 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
918
919 if (unlikely(!rq))
920 return ERR_PTR(-ENOMEM);
921
922 for_each_bio(bio) {
923 struct bio *bounce_bio = bio;
924 int ret;
925
926 blk_queue_bounce(q, &bounce_bio);
927 ret = blk_rq_append_bio(q, rq, bounce_bio);
928 if (unlikely(ret)) {
929 blk_put_request(rq);
930 return ERR_PTR(ret);
931 }
932 }
933
934 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200935}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300936EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200937
938/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * blk_requeue_request - put a request back on queue
940 * @q: request queue where request should be inserted
941 * @rq: request to be inserted
942 *
943 * Description:
944 * Drivers often keep queueing requests until the hardware cannot accept
945 * more, when that condition happens we need to put the request back
946 * on the queue. Must be called with queue lock held.
947 */
Jens Axboe165125e2007-07-24 09:28:11 +0200948void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700950 blk_delete_timer(rq);
951 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100952 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (blk_rq_tagged(rq))
955 blk_queue_end_tag(q, rq);
956
James Bottomleyba396a62009-05-27 14:17:08 +0200957 BUG_ON(blk_queued_rq(rq));
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 elv_requeue_request(q, rq);
960}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961EXPORT_SYMBOL(blk_requeue_request);
962
963/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200964 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * @q: request queue where request should be inserted
966 * @rq: request to be inserted
967 * @at_head: insert request at head or tail of queue
968 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 *
970 * Description:
971 * Many block devices need to execute commands asynchronously, so they don't
972 * block the whole kernel from preemption during request execution. This is
973 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200974 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
975 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 *
977 * We have the option of inserting the head or the tail of the queue.
978 * Typically we use the tail for new ioctls and so forth. We use the head
979 * of the queue for things like a QUEUE_FULL message from a device, or a
980 * host that is unable to accept a particular command.
981 */
Jens Axboe165125e2007-07-24 09:28:11 +0200982void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500983 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Tejun Heo 867d1192005-04-24 02:06:05 -0500985 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 unsigned long flags;
987
988 /*
989 * tell I/O scheduler that this isn't a regular read/write (ie it
990 * must not attempt merges on this) and that it acts as a soft
991 * barrier
992 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200993 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 rq->special = data;
996
997 spin_lock_irqsave(q->queue_lock, flags);
998
999 /*
1000 * If command is tagged, release the tag
1001 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001002 if (blk_rq_tagged(rq))
1003 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001005 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001006 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001007 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 spin_unlock_irqrestore(q->queue_lock, flags);
1009}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010EXPORT_SYMBOL(blk_insert_request);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/*
1013 * add-request adds a request to the linked list.
1014 * queue lock is held and interrupts disabled, as we muck with the
1015 * request queue list.
1016 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001017static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001019 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /*
1022 * elevator indicated where it wants this request to be
1023 * inserted at elevator_merge time
1024 */
1025 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1026}
Jens Axboe6728cb02008-01-31 13:03:55 +01001027
Tejun Heo074a7ac2008-08-25 19:56:14 +09001028static void part_round_stats_single(int cpu, struct hd_struct *part,
1029 unsigned long now)
1030{
1031 if (now == part->stamp)
1032 return;
1033
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001034 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001035 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001036 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001037 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1038 }
1039 part->stamp = now;
1040}
1041
1042/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001043 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1044 * @cpu: cpu number for stats access
1045 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 *
1047 * The average IO queue length and utilisation statistics are maintained
1048 * by observing the current state of the queue length and the amount of
1049 * time it has been in this state for.
1050 *
1051 * Normally, that accounting is done on IO completion, but that can result
1052 * in more than a second's worth of IO being accounted for within any one
1053 * second, leading to >100% utilisation. To deal with that, we call this
1054 * function to do a round-off before returning the results when reading
1055 * /proc/diskstats. This accounts immediately for all queue usage up to
1056 * the current jiffies and restarts the counters again.
1057 */
Tejun Heoc9959052008-08-25 19:47:21 +09001058void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001059{
1060 unsigned long now = jiffies;
1061
Tejun Heo074a7ac2008-08-25 19:56:14 +09001062 if (part->partno)
1063 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1064 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001065}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001066EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068/*
1069 * queue lock must be held
1070 */
Jens Axboe165125e2007-07-24 09:28:11 +02001071void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (unlikely(!q))
1074 return;
1075 if (unlikely(--req->ref_count))
1076 return;
1077
Tejun Heo8922e162005-10-20 16:23:44 +02001078 elv_completed_request(q, req);
1079
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001080 /* this is a bio leak */
1081 WARN_ON(req->bio != NULL);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /*
1084 * Request may not have originated from ll_rw_blk. if not,
1085 * it didn't come out of our reserved rq pools
1086 */
Jens Axboe49171e52006-08-10 08:59:11 +02001087 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001088 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001089 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001092 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001095 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001098EXPORT_SYMBOL_GPL(__blk_put_request);
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100void blk_put_request(struct request *req)
1101{
Tejun Heo8922e162005-10-20 16:23:44 +02001102 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001103 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001105 spin_lock_irqsave(q->queue_lock, flags);
1106 __blk_put_request(q, req);
1107 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109EXPORT_SYMBOL(blk_put_request);
1110
Jens Axboe86db1e22008-01-29 14:53:40 +01001111void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001112{
Jens Axboec7c22e42008-09-13 20:26:01 +02001113 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001114 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001115
1116 /*
Tejun Heoa82afdf2009-07-03 17:48:16 +09001117 * Inherit FAILFAST from bio (for read-ahead, and explicit
1118 * FAILFAST). FAILFAST flags are identical for req and bio.
Tejun Heo52d9e672006-01-06 09:49:58 +01001119 */
Jens Axboe1f98a132009-09-11 14:32:04 +02001120 if (bio_rw_flagged(bio, BIO_RW_AHEAD))
Tejun Heoa82afdf2009-07-03 17:48:16 +09001121 req->cmd_flags |= REQ_FAILFAST_MASK;
1122 else
1123 req->cmd_flags |= bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo52d9e672006-01-06 09:49:58 +01001124
Jens Axboe1f98a132009-09-11 14:32:04 +02001125 if (unlikely(bio_rw_flagged(bio, BIO_RW_DISCARD))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001126 req->cmd_flags |= REQ_DISCARD;
Jens Axboe1f98a132009-09-11 14:32:04 +02001127 if (bio_rw_flagged(bio, BIO_RW_BARRIER))
David Woodhousee17fc0a2008-08-09 16:42:20 +01001128 req->cmd_flags |= REQ_SOFTBARRIER;
Jens Axboe1f98a132009-09-11 14:32:04 +02001129 } else if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER)))
Tejun Heoe4025f62009-04-23 11:05:17 +09001130 req->cmd_flags |= REQ_HARDBARRIER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001131
Jens Axboe1f98a132009-09-11 14:32:04 +02001132 if (bio_rw_flagged(bio, BIO_RW_SYNCIO))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001133 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe1f98a132009-09-11 14:32:04 +02001134 if (bio_rw_flagged(bio, BIO_RW_META))
Jens Axboe5404bc72006-08-10 09:01:02 +02001135 req->cmd_flags |= REQ_RW_META;
Jens Axboe1f98a132009-09-11 14:32:04 +02001136 if (bio_rw_flagged(bio, BIO_RW_NOIDLE))
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001137 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001138
Tejun Heo52d9e672006-01-06 09:49:58 +01001139 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001140 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001141 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001142 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001143}
1144
Jens Axboe644b2d92009-04-06 14:48:06 +02001145/*
1146 * Only disabling plugging for non-rotational devices if it does tagging
1147 * as well, otherwise we do need the proper merging
1148 */
1149static inline bool queue_should_plug(struct request_queue *q)
1150{
Jens Axboe79da06442010-02-23 08:40:43 +01001151 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001152}
1153
Jens Axboe165125e2007-07-24 09:28:11 +02001154static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Nick Piggin450991b2005-06-28 20:45:13 -07001156 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001157 int el_ret;
1158 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001159 const unsigned short prio = bio_prio(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +02001160 const bool sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
1161 const bool unplug = bio_rw_flagged(bio, BIO_RW_UNPLUG);
Tejun Heo80a761f2009-07-03 17:48:17 +09001162 const unsigned int ff = bio->bi_rw & REQ_FAILFAST_MASK;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001163 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Mark McLoughlin6cafb122009-10-24 14:14:31 +02001165 if (bio_rw_flagged(bio, BIO_RW_BARRIER) &&
NeilBrowndb64f682009-06-30 09:35:44 +02001166 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1167 bio_endio(bio, -EOPNOTSUPP);
1168 return 0;
1169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /*
1171 * low level driver can indicate that it wants pages above a
1172 * certain limit bounced to low memory (ie for highmem, or even
1173 * ISA dma in theory)
1174 */
1175 blk_queue_bounce(q, &bio);
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 spin_lock_irq(q->queue_lock);
1178
Jens Axboe1f98a132009-09-11 14:32:04 +02001179 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 goto get_rq;
1181
1182 el_ret = elv_merge(q, &req, bio);
1183 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001184 case ELEVATOR_BACK_MERGE:
1185 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Jens Axboe6728cb02008-01-31 13:03:55 +01001187 if (!ll_back_merge_fn(q, req, bio))
1188 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001190 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001191
Tejun Heo80a761f2009-07-03 17:48:17 +09001192 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1193 blk_rq_set_mixed_merge(req);
1194
Jens Axboe6728cb02008-01-31 13:03:55 +01001195 req->biotail->bi_next = bio;
1196 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001197 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001198 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001199 if (!blk_rq_cpu_valid(req))
1200 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001201 drive_stat_acct(req, 0);
1202 if (!attempt_back_merge(q, req))
1203 elv_merged_request(q, req, el_ret);
1204 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Jens Axboe6728cb02008-01-31 13:03:55 +01001206 case ELEVATOR_FRONT_MERGE:
1207 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Jens Axboe6728cb02008-01-31 13:03:55 +01001209 if (!ll_front_merge_fn(q, req, bio))
1210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001212 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001213
Tejun Heo80a761f2009-07-03 17:48:17 +09001214 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1215 blk_rq_set_mixed_merge(req);
1216 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1217 req->cmd_flags |= ff;
1218 }
1219
Jens Axboe6728cb02008-01-31 13:03:55 +01001220 bio->bi_next = req->bio;
1221 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Jens Axboe6728cb02008-01-31 13:03:55 +01001223 /*
1224 * may not be valid. if the low level driver said
1225 * it didn't need a bounce buffer then it better
1226 * not touch req->buffer either...
1227 */
1228 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001229 req->__sector = bio->bi_sector;
1230 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001231 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001232 if (!blk_rq_cpu_valid(req))
1233 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001234 drive_stat_acct(req, 0);
1235 if (!attempt_front_merge(q, req))
1236 elv_merged_request(q, req, el_ret);
1237 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Jens Axboe6728cb02008-01-31 13:03:55 +01001239 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1240 default:
1241 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001245 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001246 * This sync check and mask will be re-done in init_request_from_bio(),
1247 * but we need to set it earlier to expose the sync flag to the
1248 * rq allocator and io schedulers.
1249 */
1250 rw_flags = bio_data_dir(bio);
1251 if (sync)
1252 rw_flags |= REQ_RW_SYNC;
1253
1254 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001255 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001256 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001257 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001258 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001259
Nick Piggin450991b2005-06-28 20:45:13 -07001260 /*
1261 * After dropping the lock and possibly sleeping here, our request
1262 * may now be mergeable after it had proven unmergeable (above).
1263 * We don't worry about that case for efficiency. It won't happen
1264 * often, and the elevators are able to handle it.
1265 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001266 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Nick Piggin450991b2005-06-28 20:45:13 -07001268 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001269 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1270 bio_flagged(bio, BIO_CPU_AFFINE))
1271 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001272 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001273 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 add_request(q, req);
1275out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001276 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 spin_unlock_irq(q->queue_lock);
1279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282/*
1283 * If bio->bi_dev is a partition, remap the location
1284 */
1285static inline void blk_partition_remap(struct bio *bio)
1286{
1287 struct block_device *bdev = bio->bi_bdev;
1288
Jens Axboebf2de6f2007-09-27 13:01:25 +02001289 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 bio->bi_sector += p->start_sect;
1293 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001294
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001295 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001296 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001297 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299}
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301static void handle_bad_sector(struct bio *bio)
1302{
1303 char b[BDEVNAME_SIZE];
1304
1305 printk(KERN_INFO "attempt to access beyond end of device\n");
1306 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1307 bdevname(bio->bi_bdev, b),
1308 bio->bi_rw,
1309 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1310 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1311
1312 set_bit(BIO_EOF, &bio->bi_flags);
1313}
1314
Akinobu Mitac17bb492006-12-08 02:39:46 -08001315#ifdef CONFIG_FAIL_MAKE_REQUEST
1316
1317static DECLARE_FAULT_ATTR(fail_make_request);
1318
1319static int __init setup_fail_make_request(char *str)
1320{
1321 return setup_fault_attr(&fail_make_request, str);
1322}
1323__setup("fail_make_request=", setup_fail_make_request);
1324
1325static int should_fail_request(struct bio *bio)
1326{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001327 struct hd_struct *part = bio->bi_bdev->bd_part;
1328
1329 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001330 return should_fail(&fail_make_request, bio->bi_size);
1331
1332 return 0;
1333}
1334
1335static int __init fail_make_request_debugfs(void)
1336{
1337 return init_fault_attr_dentries(&fail_make_request,
1338 "fail_make_request");
1339}
1340
1341late_initcall(fail_make_request_debugfs);
1342
1343#else /* CONFIG_FAIL_MAKE_REQUEST */
1344
1345static inline int should_fail_request(struct bio *bio)
1346{
1347 return 0;
1348}
1349
1350#endif /* CONFIG_FAIL_MAKE_REQUEST */
1351
Jens Axboec07e2b42007-07-18 13:27:58 +02001352/*
1353 * Check whether this bio extends beyond the end of the device.
1354 */
1355static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1356{
1357 sector_t maxsector;
1358
1359 if (!nr_sectors)
1360 return 0;
1361
1362 /* Test device or partition size, when known. */
1363 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1364 if (maxsector) {
1365 sector_t sector = bio->bi_sector;
1366
1367 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1368 /*
1369 * This may well happen - the kernel calls bread()
1370 * without checking the size of the device, e.g., when
1371 * mounting a device.
1372 */
1373 handle_bad_sector(bio);
1374 return 1;
1375 }
1376 }
1377
1378 return 0;
1379}
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001382 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 * @bio: The bio describing the location in memory and on the device.
1384 *
1385 * generic_make_request() is used to make I/O requests of block
1386 * devices. It is passed a &struct bio, which describes the I/O that needs
1387 * to be done.
1388 *
1389 * generic_make_request() does not return any status. The
1390 * success/failure status of the request, along with notification of
1391 * completion, is delivered asynchronously through the bio->bi_end_io
1392 * function described (one day) else where.
1393 *
1394 * The caller of generic_make_request must make sure that bi_io_vec
1395 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1396 * set to describe the device address, and the
1397 * bi_end_io and optionally bi_private are set to describe how
1398 * completion notification should be signaled.
1399 *
1400 * generic_make_request and the drivers it calls may use bi_next if this
1401 * bio happens to be merged with someone else, and may change bi_dev and
1402 * bi_sector for remaps as it sees fit. So the values of these fields
1403 * should NOT be depended on after the call to generic_make_request.
1404 */
Neil Brownd89d8792007-05-01 09:53:42 +02001405static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Jens Axboe165125e2007-07-24 09:28:11 +02001407 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001408 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001410 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001411 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Jens Axboec07e2b42007-07-18 13:27:58 +02001415 if (bio_check_eod(bio, nr_sectors))
1416 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /*
1419 * Resolve the mapping until finished. (drivers are
1420 * still free to implement/resolve their own stacking
1421 * by explicitly returning 0)
1422 *
1423 * NOTE: we don't repeat the blk_size check for each new device.
1424 * Stacking drivers are expected to know what they are doing.
1425 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001426 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001427 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 do {
1429 char b[BDEVNAME_SIZE];
1430
1431 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001432 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 printk(KERN_ERR
1434 "generic_make_request: Trying to access "
1435 "nonexistent block-device %s (%Lu)\n",
1436 bdevname(bio->bi_bdev, b),
1437 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001438 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
Christoph Hellwig67efc922009-09-30 13:54:20 +02001441 if (unlikely(!bio_rw_flagged(bio, BIO_RW_DISCARD) &&
1442 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001443 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001444 bdevname(bio->bi_bdev, b),
1445 bio_sectors(bio),
1446 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto end_io;
1448 }
1449
Nick Pigginfde6ad22005-06-23 00:08:53 -07001450 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto end_io;
1452
Akinobu Mitac17bb492006-12-08 02:39:46 -08001453 if (should_fail_request(bio))
1454 goto end_io;
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 /*
1457 * If this device has partitions, remap block n
1458 * of partition p to block n+start(p) of the disk.
1459 */
1460 blk_partition_remap(bio);
1461
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001462 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1463 goto end_io;
1464
NeilBrown5ddfe962006-10-30 22:07:21 -08001465 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001466 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001467
NeilBrown5ddfe962006-10-30 22:07:21 -08001468 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001469 old_dev = bio->bi_bdev->bd_dev;
1470
Jens Axboec07e2b42007-07-18 13:27:58 +02001471 if (bio_check_eod(bio, nr_sectors))
1472 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001473
Jens Axboe1f98a132009-09-11 14:32:04 +02001474 if (bio_rw_flagged(bio, BIO_RW_DISCARD) &&
Christoph Hellwigc15227d2009-09-30 13:52:12 +02001475 !blk_queue_discard(q)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001476 err = -EOPNOTSUPP;
1477 goto end_io;
1478 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001479
Minchan Kim01edede2009-09-08 21:56:38 +02001480 trace_block_bio_queue(q, bio);
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 ret = q->make_request_fn(q, bio);
1483 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001484
1485 return;
1486
1487end_io:
1488 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
Neil Brownd89d8792007-05-01 09:53:42 +02001491/*
1492 * We only want one ->make_request_fn to be active at a time,
1493 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001494 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001495 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001496 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001497 * generic_make_request is currently active in this task or not.
1498 * If it is NULL, then no make_request is active. If it is non-NULL,
1499 * then a make_request is active, and new requests should be added
1500 * at the tail
1501 */
1502void generic_make_request(struct bio *bio)
1503{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001504 struct bio_list bio_list_on_stack;
1505
1506 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001507 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001508 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001509 return;
1510 }
1511 /* following loop may be a bit non-obvious, and so deserves some
1512 * explanation.
1513 * Before entering the loop, bio->bi_next is NULL (as all callers
1514 * ensure that) so we have a list with a single bio.
1515 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001516 * we assign bio_list to a pointer to the bio_list_on_stack,
1517 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001518 * added. __generic_make_request may indeed add some more bios
1519 * through a recursive call to generic_make_request. If it
1520 * did, we find a non-NULL value in bio_list and re-enter the loop
1521 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001522 * of the top of the list (no pretending) and so remove it from
1523 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001524 *
1525 * The loop was structured like this to make only one call to
1526 * __generic_make_request (which is important as it is large and
1527 * inlined) and to keep the structure simple.
1528 */
1529 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001530 bio_list_init(&bio_list_on_stack);
1531 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001532 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001533 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001534 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001535 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001536 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001537}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538EXPORT_SYMBOL(generic_make_request);
1539
1540/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001541 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1543 * @bio: The &struct bio which describes the I/O
1544 *
1545 * submit_bio() is very similar in purpose to generic_make_request(), and
1546 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001547 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 *
1549 */
1550void submit_bio(int rw, struct bio *bio)
1551{
1552 int count = bio_sectors(bio);
1553
Jens Axboe22e2c502005-06-27 10:55:12 +02001554 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Jens Axboebf2de6f2007-09-27 13:01:25 +02001556 /*
1557 * If it's a regular read/write or a barrier with data attached,
1558 * go through the normal accounting stuff before submission.
1559 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001560 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001561 if (rw & WRITE) {
1562 count_vm_events(PGPGOUT, count);
1563 } else {
1564 task_io_account_read(bio->bi_size);
1565 count_vm_events(PGPGIN, count);
1566 }
1567
1568 if (unlikely(block_dump)) {
1569 char b[BDEVNAME_SIZE];
1570 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001571 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001572 (rw & WRITE) ? "WRITE" : "READ",
1573 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001574 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577
1578 generic_make_request(bio);
1579}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580EXPORT_SYMBOL(submit_bio);
1581
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001582/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001583 * blk_rq_check_limits - Helper function to check a request for the queue limit
1584 * @q: the queue
1585 * @rq: the request being checked
1586 *
1587 * Description:
1588 * @rq may have been made based on weaker limitations of upper-level queues
1589 * in request stacking drivers, and it may violate the limitation of @q.
1590 * Since the block layer and the underlying device driver trust @rq
1591 * after it is inserted to @q, it should be checked against @q before
1592 * the insertion using this generic function.
1593 *
1594 * This function should also be useful for request stacking drivers
1595 * in some cases below, so export this fuction.
1596 * Request stacking drivers like request-based dm may change the queue
1597 * limits while requests are in the queue (e.g. dm's table swapping).
1598 * Such request stacking drivers should check those requests agaist
1599 * the new queue limits again when they dispatch those requests,
1600 * although such checkings are also done against the old queue limits
1601 * when submitting requests.
1602 */
1603int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1604{
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001605 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1606 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001607 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1608 return -EIO;
1609 }
1610
1611 /*
1612 * queue's settings related to segment counting like q->bounce_pfn
1613 * may differ from that of other stacking queues.
1614 * Recalculate it to check the request correctly on this queue's
1615 * limitation.
1616 */
1617 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001618 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001619 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1620 return -EIO;
1621 }
1622
1623 return 0;
1624}
1625EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1626
1627/**
1628 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1629 * @q: the queue to submit the request
1630 * @rq: the request being queued
1631 */
1632int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1633{
1634 unsigned long flags;
1635
1636 if (blk_rq_check_limits(q, rq))
1637 return -EIO;
1638
1639#ifdef CONFIG_FAIL_MAKE_REQUEST
1640 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1641 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1642 return -EIO;
1643#endif
1644
1645 spin_lock_irqsave(q->queue_lock, flags);
1646
1647 /*
1648 * Submitting request must be dequeued before calling this function
1649 * because it will be linked to another request_queue
1650 */
1651 BUG_ON(blk_queued_rq(rq));
1652
1653 drive_stat_acct(rq, 1);
1654 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1655
1656 spin_unlock_irqrestore(q->queue_lock, flags);
1657
1658 return 0;
1659}
1660EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1661
Tejun Heo80a761f2009-07-03 17:48:17 +09001662/**
1663 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1664 * @rq: request to examine
1665 *
1666 * Description:
1667 * A request could be merge of IOs which require different failure
1668 * handling. This function determines the number of bytes which
1669 * can be failed from the beginning of the request without
1670 * crossing into area which need to be retried further.
1671 *
1672 * Return:
1673 * The number of bytes to fail.
1674 *
1675 * Context:
1676 * queue_lock must be held.
1677 */
1678unsigned int blk_rq_err_bytes(const struct request *rq)
1679{
1680 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1681 unsigned int bytes = 0;
1682 struct bio *bio;
1683
1684 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1685 return blk_rq_bytes(rq);
1686
1687 /*
1688 * Currently the only 'mixing' which can happen is between
1689 * different fastfail types. We can safely fail portions
1690 * which have all the failfast bits that the first one has -
1691 * the ones which are at least as eager to fail as the first
1692 * one.
1693 */
1694 for (bio = rq->bio; bio; bio = bio->bi_next) {
1695 if ((bio->bi_rw & ff) != ff)
1696 break;
1697 bytes += bio->bi_size;
1698 }
1699
1700 /* this could lead to infinite loop */
1701 BUG_ON(blk_rq_bytes(rq) && !bytes);
1702 return bytes;
1703}
1704EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1705
Jens Axboebc58ba92009-01-23 10:54:44 +01001706static void blk_account_io_completion(struct request *req, unsigned int bytes)
1707{
Jens Axboec2553b52009-04-24 08:10:11 +02001708 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001709 const int rw = rq_data_dir(req);
1710 struct hd_struct *part;
1711 int cpu;
1712
1713 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001714 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001715 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1716 part_stat_unlock();
1717 }
1718}
1719
1720static void blk_account_io_done(struct request *req)
1721{
Jens Axboebc58ba92009-01-23 10:54:44 +01001722 /*
1723 * Account IO completion. bar_rq isn't accounted as a normal
1724 * IO on queueing nor completion. Accounting the containing
1725 * request is enough.
1726 */
Jens Axboec2553b52009-04-24 08:10:11 +02001727 if (blk_do_io_stat(req) && req != &req->q->bar_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001728 unsigned long duration = jiffies - req->start_time;
1729 const int rw = rq_data_dir(req);
1730 struct hd_struct *part;
1731 int cpu;
1732
1733 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001734 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001735
1736 part_stat_inc(cpu, part, ios[rw]);
1737 part_stat_add(cpu, part, ticks[rw], duration);
1738 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001739 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001740
1741 part_stat_unlock();
1742 }
1743}
1744
Tejun Heo53a08802008-12-03 12:41:26 +01001745/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001746 * blk_peek_request - peek at the top of a request queue
1747 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001748 *
1749 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001750 * Return the request at the top of @q. The returned request
1751 * should be started using blk_start_request() before LLD starts
1752 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001753 *
1754 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001755 * Pointer to the request at the top of @q if available. Null
1756 * otherwise.
1757 *
1758 * Context:
1759 * queue_lock must be held.
1760 */
1761struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001762{
1763 struct request *rq;
1764 int ret;
1765
1766 while ((rq = __elv_next_request(q)) != NULL) {
1767 if (!(rq->cmd_flags & REQ_STARTED)) {
1768 /*
1769 * This is the first time the device driver
1770 * sees this request (possibly after
1771 * requeueing). Notify IO scheduler.
1772 */
1773 if (blk_sorted_rq(rq))
1774 elv_activate_rq(q, rq);
1775
1776 /*
1777 * just mark as started even if we don't start
1778 * it, a request that has been delayed should
1779 * not be passed by new incoming requests
1780 */
1781 rq->cmd_flags |= REQ_STARTED;
1782 trace_block_rq_issue(q, rq);
1783 }
1784
1785 if (!q->boundary_rq || q->boundary_rq == rq) {
1786 q->end_sector = rq_end_sector(rq);
1787 q->boundary_rq = NULL;
1788 }
1789
1790 if (rq->cmd_flags & REQ_DONTPREP)
1791 break;
1792
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001793 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001794 /*
1795 * make sure space for the drain appears we
1796 * know we can do this because max_hw_segments
1797 * has been adjusted to be one fewer than the
1798 * device can handle
1799 */
1800 rq->nr_phys_segments++;
1801 }
1802
1803 if (!q->prep_rq_fn)
1804 break;
1805
1806 ret = q->prep_rq_fn(q, rq);
1807 if (ret == BLKPREP_OK) {
1808 break;
1809 } else if (ret == BLKPREP_DEFER) {
1810 /*
1811 * the request may have been (partially) prepped.
1812 * we need to keep this request in the front to
1813 * avoid resource deadlock. REQ_STARTED will
1814 * prevent other fs requests from passing this one.
1815 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001816 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001817 !(rq->cmd_flags & REQ_DONTPREP)) {
1818 /*
1819 * remove the space for the drain we added
1820 * so that we don't add it again
1821 */
1822 --rq->nr_phys_segments;
1823 }
1824
1825 rq = NULL;
1826 break;
1827 } else if (ret == BLKPREP_KILL) {
1828 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001829 /*
1830 * Mark this request as started so we don't trigger
1831 * any debug logic in the end I/O path.
1832 */
1833 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001834 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001835 } else {
1836 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1837 break;
1838 }
1839 }
1840
1841 return rq;
1842}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001843EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001844
Tejun Heo9934c8c2009-05-08 11:54:16 +09001845void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001846{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001847 struct request_queue *q = rq->q;
1848
Tejun Heo158dbda2009-04-23 11:05:18 +09001849 BUG_ON(list_empty(&rq->queuelist));
1850 BUG_ON(ELV_ON_HASH(rq));
1851
1852 list_del_init(&rq->queuelist);
1853
1854 /*
1855 * the time frame between a request being removed from the lists
1856 * and to it is freed is accounted as io that is in progress at
1857 * the driver side.
1858 */
Divyesh Shah91952912010-04-01 15:01:41 -07001859 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001860 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001861 set_io_start_time_ns(rq);
1862 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001863}
1864
Tejun Heo5efccd12009-04-23 11:05:18 +09001865/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001866 * blk_start_request - start request processing on the driver
1867 * @req: request to dequeue
1868 *
1869 * Description:
1870 * Dequeue @req and start timeout timer on it. This hands off the
1871 * request to the driver.
1872 *
1873 * Block internal functions which don't want to start timer should
1874 * call blk_dequeue_request().
1875 *
1876 * Context:
1877 * queue_lock must be held.
1878 */
1879void blk_start_request(struct request *req)
1880{
1881 blk_dequeue_request(req);
1882
1883 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001884 * We are now handing the request to the hardware, initialize
1885 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001886 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001887 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001888 if (unlikely(blk_bidi_rq(req)))
1889 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1890
Tejun Heo9934c8c2009-05-08 11:54:16 +09001891 blk_add_timer(req);
1892}
1893EXPORT_SYMBOL(blk_start_request);
1894
1895/**
1896 * blk_fetch_request - fetch a request from a request queue
1897 * @q: request queue to fetch a request from
1898 *
1899 * Description:
1900 * Return the request at the top of @q. The request is started on
1901 * return and LLD can start processing it immediately.
1902 *
1903 * Return:
1904 * Pointer to the request at the top of @q if available. Null
1905 * otherwise.
1906 *
1907 * Context:
1908 * queue_lock must be held.
1909 */
1910struct request *blk_fetch_request(struct request_queue *q)
1911{
1912 struct request *rq;
1913
1914 rq = blk_peek_request(q);
1915 if (rq)
1916 blk_start_request(rq);
1917 return rq;
1918}
1919EXPORT_SYMBOL(blk_fetch_request);
1920
1921/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001922 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001923 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001924 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001925 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001926 *
1927 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001928 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1929 * the request structure even if @req doesn't have leftover.
1930 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001931 *
1932 * This special helper function is only for request stacking drivers
1933 * (e.g. request-based dm) so that they can handle partial completion.
1934 * Actual device drivers should use blk_end_request instead.
1935 *
1936 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1937 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001938 *
1939 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001940 * %false - this request doesn't have any more data
1941 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001942 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09001943bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001945 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 struct bio *bio;
1947
Tejun Heo2e60e022009-04-23 11:05:18 +09001948 if (!req->bio)
1949 return false;
1950
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001951 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /*
Tejun Heo6f414692009-04-19 07:00:41 +09001954 * For fs requests, rq is just carrier of independent bio's
1955 * and each partial completion should be handled separately.
1956 * Reset per-request error on each partial completion.
1957 *
1958 * TODO: tj: This is too subtle. It would be better to let
1959 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 */
Tejun Heo6f414692009-04-19 07:00:41 +09001961 if (blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 req->errors = 0;
1963
Jens Axboe6728cb02008-01-31 13:03:55 +01001964 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1965 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09001967 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969
Jens Axboebc58ba92009-01-23 10:54:44 +01001970 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 total_bytes = bio_nbytes = 0;
1973 while ((bio = req->bio) != NULL) {
1974 int nbytes;
1975
1976 if (nr_bytes >= bio->bi_size) {
1977 req->bio = bio->bi_next;
1978 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001979 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 next_idx = 0;
1981 bio_nbytes = 0;
1982 } else {
1983 int idx = bio->bi_idx + next_idx;
1984
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001985 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001987 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001988 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 break;
1990 }
1991
1992 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1993 BIO_BUG_ON(nbytes > bio->bi_size);
1994
1995 /*
1996 * not a complete bvec done
1997 */
1998 if (unlikely(nbytes > nr_bytes)) {
1999 bio_nbytes += nr_bytes;
2000 total_bytes += nr_bytes;
2001 break;
2002 }
2003
2004 /*
2005 * advance to the next vector
2006 */
2007 next_idx++;
2008 bio_nbytes += nbytes;
2009 }
2010
2011 total_bytes += nbytes;
2012 nr_bytes -= nbytes;
2013
Jens Axboe6728cb02008-01-31 13:03:55 +01002014 bio = req->bio;
2015 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
2017 * end more in this run, or just return 'not-done'
2018 */
2019 if (unlikely(nr_bytes <= 0))
2020 break;
2021 }
2022 }
2023
2024 /*
2025 * completely done
2026 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002027 if (!req->bio) {
2028 /*
2029 * Reset counters so that the request stacking driver
2030 * can find how many bytes remain in the request
2031 * later.
2032 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002033 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002034 return false;
2035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 /*
2038 * if the request wasn't completed, update state
2039 */
2040 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002041 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 bio->bi_idx += next_idx;
2043 bio_iovec(bio)->bv_offset += nr_bytes;
2044 bio_iovec(bio)->bv_len -= nr_bytes;
2045 }
2046
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002047 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002048 req->buffer = bio_data(req->bio);
2049
2050 /* update sector only for requests with clear definition of sector */
2051 if (blk_fs_request(req) || blk_discard_rq(req))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002052 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002053
Tejun Heo80a761f2009-07-03 17:48:17 +09002054 /* mixed attributes always follow the first bio */
2055 if (req->cmd_flags & REQ_MIXED_MERGE) {
2056 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2057 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2058 }
2059
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002060 /*
2061 * If total number of sectors is less than the first segment
2062 * size, something has gone terribly wrong.
2063 */
2064 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2065 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002066 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002067 }
2068
2069 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002071
Tejun Heo2e60e022009-04-23 11:05:18 +09002072 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
Tejun Heo2e60e022009-04-23 11:05:18 +09002074EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Tejun Heo2e60e022009-04-23 11:05:18 +09002076static bool blk_update_bidi_request(struct request *rq, int error,
2077 unsigned int nr_bytes,
2078 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002079{
Tejun Heo2e60e022009-04-23 11:05:18 +09002080 if (blk_update_request(rq, error, nr_bytes))
2081 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002082
Tejun Heo2e60e022009-04-23 11:05:18 +09002083 /* Bidi request must be completed as a whole */
2084 if (unlikely(blk_bidi_rq(rq)) &&
2085 blk_update_request(rq->next_rq, error, bidi_bytes))
2086 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002087
Tejun Heo2e60e022009-04-23 11:05:18 +09002088 add_disk_randomness(rq->rq_disk);
2089
2090 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093/*
2094 * queue lock must be held
2095 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002096static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002098 if (blk_rq_tagged(req))
2099 blk_queue_end_tag(req->q, req);
2100
James Bottomleyba396a62009-05-27 14:17:08 +02002101 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 if (unlikely(laptop_mode) && blk_fs_request(req))
2104 laptop_io_completion();
2105
Mike Andersone78042e2008-10-30 02:16:20 -07002106 blk_delete_timer(req);
2107
Jens Axboebc58ba92009-01-23 10:54:44 +01002108 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002111 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002112 else {
2113 if (blk_bidi_rq(req))
2114 __blk_put_request(req->next_rq->q, req->next_rq);
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118}
2119
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002120/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002121 * blk_end_bidi_request - Complete a bidi request
2122 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002123 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002124 * @nr_bytes: number of bytes to complete @rq
2125 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002126 *
2127 * Description:
2128 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002129 * Drivers that supports bidi can safely call this member for any
2130 * type of request, bidi or uni. In the later case @bidi_bytes is
2131 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002132 *
2133 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002134 * %false - we are done with this request
2135 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002136 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002137static bool blk_end_bidi_request(struct request *rq, int error,
2138 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002139{
2140 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002141 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002142
Tejun Heo2e60e022009-04-23 11:05:18 +09002143 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2144 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002145
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002146 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002147 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002148 spin_unlock_irqrestore(q->queue_lock, flags);
2149
Tejun Heo2e60e022009-04-23 11:05:18 +09002150 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002151}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002152
2153/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002154 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2155 * @rq: the request to complete
2156 * @error: %0 for success, < %0 for error
2157 * @nr_bytes: number of bytes to complete @rq
2158 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002159 *
2160 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002161 * Identical to blk_end_bidi_request() except that queue lock is
2162 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002163 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002164 * Return:
2165 * %false - we are done with this request
2166 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002167 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002168static bool __blk_end_bidi_request(struct request *rq, int error,
2169 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002170{
Tejun Heo2e60e022009-04-23 11:05:18 +09002171 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2172 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002173
Tejun Heo2e60e022009-04-23 11:05:18 +09002174 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002175
Tejun Heo2e60e022009-04-23 11:05:18 +09002176 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002177}
2178
2179/**
2180 * blk_end_request - Helper function for drivers to complete the request.
2181 * @rq: the request being processed
2182 * @error: %0 for success, < %0 for error
2183 * @nr_bytes: number of bytes to complete
2184 *
2185 * Description:
2186 * Ends I/O on a number of bytes attached to @rq.
2187 * If @rq has leftover, sets it up for the next range of segments.
2188 *
2189 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002190 * %false - we are done with this request
2191 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002192 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002193bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002194{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002195 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002196}
Jens Axboe56ad1742009-07-28 22:11:24 +02002197EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002198
2199/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002200 * blk_end_request_all - Helper function for drives to finish the request.
2201 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002202 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002203 *
2204 * Description:
2205 * Completely finish @rq.
2206 */
2207void blk_end_request_all(struct request *rq, int error)
2208{
2209 bool pending;
2210 unsigned int bidi_bytes = 0;
2211
2212 if (unlikely(blk_bidi_rq(rq)))
2213 bidi_bytes = blk_rq_bytes(rq->next_rq);
2214
2215 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2216 BUG_ON(pending);
2217}
Jens Axboe56ad1742009-07-28 22:11:24 +02002218EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002219
2220/**
2221 * blk_end_request_cur - Helper function to finish the current request chunk.
2222 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002223 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002224 *
2225 * Description:
2226 * Complete the current consecutively mapped chunk from @rq.
2227 *
2228 * Return:
2229 * %false - we are done with this request
2230 * %true - still buffers pending for this request
2231 */
2232bool blk_end_request_cur(struct request *rq, int error)
2233{
2234 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2235}
Jens Axboe56ad1742009-07-28 22:11:24 +02002236EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002237
2238/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002239 * blk_end_request_err - Finish a request till the next failure boundary.
2240 * @rq: the request to finish till the next failure boundary for
2241 * @error: must be negative errno
2242 *
2243 * Description:
2244 * Complete @rq till the next failure boundary.
2245 *
2246 * Return:
2247 * %false - we are done with this request
2248 * %true - still buffers pending for this request
2249 */
2250bool blk_end_request_err(struct request *rq, int error)
2251{
2252 WARN_ON(error >= 0);
2253 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2254}
2255EXPORT_SYMBOL_GPL(blk_end_request_err);
2256
2257/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002258 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002259 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002260 * @error: %0 for success, < %0 for error
2261 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002262 *
2263 * Description:
2264 * Must be called with queue lock held unlike blk_end_request().
2265 *
2266 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002267 * %false - we are done with this request
2268 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002269 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002270bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002271{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002272 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002273}
Jens Axboe56ad1742009-07-28 22:11:24 +02002274EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002275
2276/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002277 * __blk_end_request_all - Helper function for drives to finish the request.
2278 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002279 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002280 *
2281 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002282 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002283 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002284void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002285{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002286 bool pending;
2287 unsigned int bidi_bytes = 0;
2288
2289 if (unlikely(blk_bidi_rq(rq)))
2290 bidi_bytes = blk_rq_bytes(rq->next_rq);
2291
2292 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2293 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002294}
Jens Axboe56ad1742009-07-28 22:11:24 +02002295EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002296
2297/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002298 * __blk_end_request_cur - Helper function to finish the current request chunk.
2299 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002300 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002301 *
2302 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002303 * Complete the current consecutively mapped chunk from @rq. Must
2304 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002305 *
2306 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002307 * %false - we are done with this request
2308 * %true - still buffers pending for this request
2309 */
2310bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002311{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002312 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002313}
Jens Axboe56ad1742009-07-28 22:11:24 +02002314EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002315
Tejun Heo80a761f2009-07-03 17:48:17 +09002316/**
2317 * __blk_end_request_err - Finish a request till the next failure boundary.
2318 * @rq: the request to finish till the next failure boundary for
2319 * @error: must be negative errno
2320 *
2321 * Description:
2322 * Complete @rq till the next failure boundary. Must be called
2323 * with queue lock held.
2324 *
2325 * Return:
2326 * %false - we are done with this request
2327 * %true - still buffers pending for this request
2328 */
2329bool __blk_end_request_err(struct request *rq, int error)
2330{
2331 WARN_ON(error >= 0);
2332 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2333}
2334EXPORT_SYMBOL_GPL(__blk_end_request_err);
2335
Jens Axboe86db1e22008-01-29 14:53:40 +01002336void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2337 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002339 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
2340 rq->cmd_flags |= bio->bi_rw & REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
David Woodhousefb2dce82008-08-05 18:01:53 +01002342 if (bio_has_data(bio)) {
2343 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002344 rq->buffer = bio_data(bio);
2345 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002346 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
NeilBrown66846572007-08-16 13:31:28 +02002349 if (bio->bi_bdev)
2350 rq->rq_disk = bio->bi_bdev->bd_disk;
2351}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002353#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2354/**
2355 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2356 * @rq: the request to be flushed
2357 *
2358 * Description:
2359 * Flush all pages in @rq.
2360 */
2361void rq_flush_dcache_pages(struct request *rq)
2362{
2363 struct req_iterator iter;
2364 struct bio_vec *bvec;
2365
2366 rq_for_each_segment(bvec, rq, iter)
2367 flush_dcache_page(bvec->bv_page);
2368}
2369EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2370#endif
2371
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002372/**
2373 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2374 * @q : the queue of the device being checked
2375 *
2376 * Description:
2377 * Check if underlying low-level drivers of a device are busy.
2378 * If the drivers want to export their busy state, they must set own
2379 * exporting function using blk_queue_lld_busy() first.
2380 *
2381 * Basically, this function is used only by request stacking drivers
2382 * to stop dispatching requests to underlying devices when underlying
2383 * devices are busy. This behavior helps more I/O merging on the queue
2384 * of the request stacking driver and prevents I/O throughput regression
2385 * on burst I/O load.
2386 *
2387 * Return:
2388 * 0 - Not busy (The request stacking driver should dispatch request)
2389 * 1 - Busy (The request stacking driver should stop dispatching request)
2390 */
2391int blk_lld_busy(struct request_queue *q)
2392{
2393 if (q->lld_busy_fn)
2394 return q->lld_busy_fn(q);
2395
2396 return 0;
2397}
2398EXPORT_SYMBOL_GPL(blk_lld_busy);
2399
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002400/**
2401 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2402 * @rq: the clone request to be cleaned up
2403 *
2404 * Description:
2405 * Free all bios in @rq for a cloned request.
2406 */
2407void blk_rq_unprep_clone(struct request *rq)
2408{
2409 struct bio *bio;
2410
2411 while ((bio = rq->bio) != NULL) {
2412 rq->bio = bio->bi_next;
2413
2414 bio_put(bio);
2415 }
2416}
2417EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2418
2419/*
2420 * Copy attributes of the original request to the clone request.
2421 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2422 */
2423static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2424{
2425 dst->cpu = src->cpu;
2426 dst->cmd_flags = (rq_data_dir(src) | REQ_NOMERGE);
2427 dst->cmd_type = src->cmd_type;
2428 dst->__sector = blk_rq_pos(src);
2429 dst->__data_len = blk_rq_bytes(src);
2430 dst->nr_phys_segments = src->nr_phys_segments;
2431 dst->ioprio = src->ioprio;
2432 dst->extra_len = src->extra_len;
2433}
2434
2435/**
2436 * blk_rq_prep_clone - Helper function to setup clone request
2437 * @rq: the request to be setup
2438 * @rq_src: original request to be cloned
2439 * @bs: bio_set that bios for clone are allocated from
2440 * @gfp_mask: memory allocation mask for bio
2441 * @bio_ctr: setup function to be called for each clone bio.
2442 * Returns %0 for success, non %0 for failure.
2443 * @data: private data to be passed to @bio_ctr
2444 *
2445 * Description:
2446 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2447 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2448 * are not copied, and copying such parts is the caller's responsibility.
2449 * Also, pages which the original bios are pointing to are not copied
2450 * and the cloned bios just point same pages.
2451 * So cloned bios must be completed before original bios, which means
2452 * the caller must complete @rq before @rq_src.
2453 */
2454int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2455 struct bio_set *bs, gfp_t gfp_mask,
2456 int (*bio_ctr)(struct bio *, struct bio *, void *),
2457 void *data)
2458{
2459 struct bio *bio, *bio_src;
2460
2461 if (!bs)
2462 bs = fs_bio_set;
2463
2464 blk_rq_init(NULL, rq);
2465
2466 __rq_for_each_bio(bio_src, rq_src) {
2467 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2468 if (!bio)
2469 goto free_and_out;
2470
2471 __bio_clone(bio, bio_src);
2472
2473 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002474 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002475 goto free_and_out;
2476
2477 if (bio_ctr && bio_ctr(bio, bio_src, data))
2478 goto free_and_out;
2479
2480 if (rq->bio) {
2481 rq->biotail->bi_next = bio;
2482 rq->biotail = bio;
2483 } else
2484 rq->bio = rq->biotail = bio;
2485 }
2486
2487 __blk_rq_prep_clone(rq, rq_src);
2488
2489 return 0;
2490
2491free_and_out:
2492 if (bio)
2493 bio_free(bio, bs);
2494 blk_rq_unprep_clone(rq);
2495
2496 return -ENOMEM;
2497}
2498EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2499
Jens Axboe18887ad2008-07-28 13:08:45 +02002500int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
2502 return queue_work(kblockd_workqueue, work);
2503}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504EXPORT_SYMBOL(kblockd_schedule_work);
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506int __init blk_dev_init(void)
2507{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002508 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2509 sizeof(((struct request *)0)->cmd_flags));
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 kblockd_workqueue = create_workqueue("kblockd");
2512 if (!kblockd_workqueue)
2513 panic("Failed to create kblockd\n");
2514
2515 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002516 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Jens Axboe8324aa92008-01-29 14:51:59 +01002518 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002519 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 return 0;
2522}