blob: 4b1b29ef2cb07bbda1a223bc8f6d2b619abb6c7a [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
Matthew Garrett31373d02010-04-06 14:25:14 +0200454 del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500455 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200456 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500457 mutex_unlock(&q->sysfs_lock);
458
459 if (q->elevator)
460 elevator_exit(q->elevator);
461
462 blk_put_queue(q);
463}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464EXPORT_SYMBOL(blk_cleanup_queue);
465
Jens Axboe165125e2007-07-24 09:28:11 +0200466static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct request_list *rl = &q->rq;
469
Jens Axboe1faa16d2009-04-06 14:48:01 +0200470 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
471 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200472 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200473 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
474 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Christoph Lameter19460892005-06-23 00:08:19 -0700476 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
477 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (!rl->rq_pool)
480 return -ENOMEM;
481
482 return 0;
483}
484
Jens Axboe165125e2007-07-24 09:28:11 +0200485struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Christoph Lameter19460892005-06-23 00:08:19 -0700487 return blk_alloc_queue_node(gfp_mask, -1);
488}
489EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jens Axboe165125e2007-07-24 09:28:11 +0200491struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700492{
Jens Axboe165125e2007-07-24 09:28:11 +0200493 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700494 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700495
Jens Axboe8324aa92008-01-29 14:51:59 +0100496 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700497 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!q)
499 return NULL;
500
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700501 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
502 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200503 q->backing_dev_info.ra_pages =
504 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
505 q->backing_dev_info.state = 0;
506 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200507 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200508
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700509 err = bdi_init(&q->backing_dev_info);
510 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100511 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 return NULL;
513 }
514
Matthew Garrett31373d02010-04-06 14:25:14 +0200515 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
516 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700518 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
519 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200520 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500521
Jens Axboe8324aa92008-01-29 14:51:59 +0100522 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Al Viro483f4af2006-03-18 18:34:37 -0500524 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700525 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return q;
528}
Christoph Lameter19460892005-06-23 00:08:19 -0700529EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531/**
532 * blk_init_queue - prepare a request queue for use with a block device
533 * @rfn: The function to be called to process requests that have been
534 * placed on the queue.
535 * @lock: Request queue spin lock
536 *
537 * Description:
538 * If a block device wishes to use the standard request handling procedures,
539 * which sorts requests and coalesces adjacent requests, then it must
540 * call blk_init_queue(). The function @rfn will be called when there
541 * are requests on the queue that need to be processed. If the device
542 * supports plugging, then @rfn may not be called immediately when requests
543 * are available on the queue, but may be called at some time later instead.
544 * Plugged queues are generally unplugged when a buffer belonging to one
545 * of the requests on the queue is needed, or due to memory pressure.
546 *
547 * @rfn is not required, or even expected, to remove all requests off the
548 * queue, but only as many as it can handle at a time. If it does leave
549 * requests on the queue, it is responsible for arranging that the requests
550 * get dealt with eventually.
551 *
552 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200553 * request queue; this lock will be taken also from interrupt context, so irq
554 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200556 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * it didn't succeed.
558 *
559 * Note:
560 * blk_init_queue() must be paired with a blk_cleanup_queue() call
561 * when the block device is deactivated (such as at module unload).
562 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700563
Jens Axboe165125e2007-07-24 09:28:11 +0200564struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Christoph Lameter19460892005-06-23 00:08:19 -0700566 return blk_init_queue_node(rfn, lock, -1);
567}
568EXPORT_SYMBOL(blk_init_queue);
569
Jens Axboe165125e2007-07-24 09:28:11 +0200570struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700571blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
572{
Jens Axboe165125e2007-07-24 09:28:11 +0200573 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (!q)
576 return NULL;
577
Christoph Lameter19460892005-06-23 00:08:19 -0700578 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500579 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100580 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500581 return NULL;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 q->prep_rq_fn = NULL;
586 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100587 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 q->queue_lock = lock;
589
Jens Axboef3b144a2009-03-06 08:48:33 +0100590 /*
591 * This also sets hw/phys segments, boundary and size
592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Alan Stern44ec9542007-02-20 11:01:57 -0500595 q->sg_reserved_size = INT_MAX;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /*
598 * all done
599 */
600 if (!elevator_init(q, NULL)) {
601 blk_queue_congestion_threshold(q);
602 return q;
603 }
604
Al Viro8669aaf2006-03-18 13:50:00 -0500605 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return NULL;
607}
Christoph Lameter19460892005-06-23 00:08:19 -0700608EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Jens Axboe165125e2007-07-24 09:28:11 +0200610int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700612 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500613 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return 0;
615 }
616
617 return 1;
618}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Jens Axboe165125e2007-07-24 09:28:11 +0200620static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200622 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200623 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 mempool_free(rq, q->rq.rq_pool);
625}
626
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200627static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200628blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
631
632 if (!rq)
633 return NULL;
634
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200635 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200636
Jerome Marchand42dad762009-04-22 14:01:49 +0200637 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Tejun Heocb98fc82005-10-28 08:29:39 +0200639 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200640 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200641 mempool_free(rq, q->rq.rq_pool);
642 return NULL;
643 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200644 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Tejun Heocb98fc82005-10-28 08:29:39 +0200647 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650/*
651 * ioc_batching returns true if the ioc is a valid batching request and
652 * should be given priority access to a request.
653 */
Jens Axboe165125e2007-07-24 09:28:11 +0200654static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 if (!ioc)
657 return 0;
658
659 /*
660 * Make sure the process is able to allocate at least 1 request
661 * even if the batch times out, otherwise we could theoretically
662 * lose wakeups.
663 */
664 return ioc->nr_batch_requests == q->nr_batching ||
665 (ioc->nr_batch_requests > 0
666 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
667}
668
669/*
670 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
671 * will cause the process to be a "batcher" on all queues in the system. This
672 * is the behaviour we want though - once it gets a wakeup it should be given
673 * a nice run.
674 */
Jens Axboe165125e2007-07-24 09:28:11 +0200675static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 if (!ioc || ioc_batching(q, ioc))
678 return;
679
680 ioc->nr_batch_requests = q->nr_batching;
681 ioc->last_waited = jiffies;
682}
683
Jens Axboe1faa16d2009-04-06 14:48:01 +0200684static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 struct request_list *rl = &q->rq;
687
Jens Axboe1faa16d2009-04-06 14:48:01 +0200688 if (rl->count[sync] < queue_congestion_off_threshold(q))
689 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Jens Axboe1faa16d2009-04-06 14:48:01 +0200691 if (rl->count[sync] + 1 <= q->nr_requests) {
692 if (waitqueue_active(&rl->wait[sync]))
693 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Jens Axboe1faa16d2009-04-06 14:48:01 +0200695 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697}
698
699/*
700 * A request has just been released. Account for it, update the full and
701 * congestion status, wake up any waiters. Called under q->queue_lock.
702 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200703static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 struct request_list *rl = &q->rq;
706
Jens Axboe1faa16d2009-04-06 14:48:01 +0200707 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200708 if (priv)
709 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jens Axboe1faa16d2009-04-06 14:48:01 +0200711 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Jens Axboe1faa16d2009-04-06 14:48:01 +0200713 if (unlikely(rl->starved[sync ^ 1]))
714 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/*
Nick Piggind6344532005-06-28 20:45:14 -0700718 * Get a free request, queue_lock must be held.
719 * Returns NULL on failure, with queue_lock held.
720 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
Jens Axboe165125e2007-07-24 09:28:11 +0200722static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100723 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 struct request *rq = NULL;
726 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100727 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200728 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100729 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jens Axboe7749a8d2006-12-13 13:02:26 +0100731 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100732 if (may_queue == ELV_MQUEUE_NO)
733 goto rq_starved;
734
Jens Axboe1faa16d2009-04-06 14:48:01 +0200735 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
736 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200737 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100738 /*
739 * The queue will fill after this allocation, so set
740 * it as full, and mark this process as "batching".
741 * This process will be allowed to complete a batch of
742 * requests, others will be blocked.
743 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200744 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100745 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200746 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100747 } else {
748 if (may_queue != ELV_MQUEUE_MUST
749 && !ioc_batching(q, ioc)) {
750 /*
751 * The queue is full and the allocating
752 * process is not a "batcher", and not
753 * exempted by the IO scheduler
754 */
755 goto out;
756 }
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200759 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761
Jens Axboe082cf692005-06-28 16:35:11 +0200762 /*
763 * Only allow batching queuers to allocate up to 50% over the defined
764 * limit of requests, otherwise we could have thousands of requests
765 * allocated with any setting of ->nr_requests
766 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200767 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200768 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100769
Jens Axboe1faa16d2009-04-06 14:48:01 +0200770 rl->count[is_sync]++;
771 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200772
Jens Axboe64521d12005-10-28 08:30:39 +0200773 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200774 if (priv)
775 rl->elvpriv++;
776
Jerome Marchand42dad762009-04-22 14:01:49 +0200777 if (blk_queue_io_stat(q))
778 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 spin_unlock_irq(q->queue_lock);
780
Jens Axboe7749a8d2006-12-13 13:02:26 +0100781 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100782 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Allocation failed presumably due to memory. Undo anything
785 * we might have messed up.
786 *
787 * Allocating task should really be put onto the front of the
788 * wait queue, but this is pretty rare.
789 */
790 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200791 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
794 * in the very unlikely event that allocation failed and no
795 * requests for this direction was pending, mark us starved
796 * so that freeing of a request in the other direction will
797 * notice us. another possible fix would be to split the
798 * rq mempool into READ and WRITE
799 */
800rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200801 if (unlikely(rl->count[is_sync] == 0))
802 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 goto out;
805 }
806
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100807 /*
808 * ioc may be NULL here, and ioc_batching will be false. That's
809 * OK, if the queue is under the request limit then requests need
810 * not count toward the nr_batch_requests limit. There will always
811 * be some limit enforced by BLK_BATCH_TIME.
812 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (ioc_batching(q, ioc))
814 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100815
Jens Axboe1faa16d2009-04-06 14:48:01 +0200816 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return rq;
819}
820
821/*
822 * No available requests for this queue, unplug the device and wait for some
823 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700824 *
825 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Jens Axboe165125e2007-07-24 09:28:11 +0200827static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200828 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200830 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct request *rq;
832
Jens Axboe7749a8d2006-12-13 13:02:26 +0100833 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700834 while (!rq) {
835 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200836 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct request_list *rl = &q->rq;
838
Jens Axboe1faa16d2009-04-06 14:48:01 +0200839 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 TASK_UNINTERRUPTIBLE);
841
Jens Axboe1faa16d2009-04-06 14:48:01 +0200842 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200844 __generic_unplug_device(q);
845 spin_unlock_irq(q->queue_lock);
846 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200848 /*
849 * After sleeping, we become a "batching" process and
850 * will be able to allocate at least one request, and
851 * up to a big batch of them for a small period time.
852 * See ioc_batching, ioc_set_batching
853 */
854 ioc = current_io_context(GFP_NOIO, q->node);
855 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100856
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200857 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200858 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200859
860 rq = get_request(q, rw_flags, bio, GFP_NOIO);
861 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 return rq;
864}
865
Jens Axboe165125e2007-07-24 09:28:11 +0200866struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct request *rq;
869
870 BUG_ON(rw != READ && rw != WRITE);
871
Nick Piggind6344532005-06-28 20:45:14 -0700872 spin_lock_irq(q->queue_lock);
873 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200874 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700875 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200876 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700877 if (!rq)
878 spin_unlock_irq(q->queue_lock);
879 }
880 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 return rq;
883}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884EXPORT_SYMBOL(blk_get_request);
885
886/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300887 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700888 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300889 * @bio: The bio describing the memory mappings that will be submitted for IO.
890 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700891 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200892 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300893 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
894 * type commands. Where the struct request needs to be farther initialized by
895 * the caller. It is passed a &struct bio, which describes the memory info of
896 * the I/O transfer.
897 *
898 * The caller of blk_make_request must make sure that bi_io_vec
899 * are set to describe the memory buffers. That bio_data_dir() will return
900 * the needed direction of the request. (And all bio's in the passed bio-chain
901 * are properly set accordingly)
902 *
903 * If called under none-sleepable conditions, mapped bio buffers must not
904 * need bouncing, by calling the appropriate masked or flagged allocator,
905 * suitable for the target device. Otherwise the call to blk_queue_bounce will
906 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200907 *
908 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
909 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
910 * anything but the first bio in the chain. Otherwise you risk waiting for IO
911 * completion of a bio that hasn't been submitted yet, thus resulting in a
912 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
913 * of bio_alloc(), as that avoids the mempool deadlock.
914 * If possible a big IO should be split into smaller parts when allocation
915 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200916 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300917struct request *blk_make_request(struct request_queue *q, struct bio *bio,
918 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200919{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300920 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
921
922 if (unlikely(!rq))
923 return ERR_PTR(-ENOMEM);
924
925 for_each_bio(bio) {
926 struct bio *bounce_bio = bio;
927 int ret;
928
929 blk_queue_bounce(q, &bounce_bio);
930 ret = blk_rq_append_bio(q, rq, bounce_bio);
931 if (unlikely(ret)) {
932 blk_put_request(rq);
933 return ERR_PTR(ret);
934 }
935 }
936
937 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200938}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300939EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200940
941/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * blk_requeue_request - put a request back on queue
943 * @q: request queue where request should be inserted
944 * @rq: request to be inserted
945 *
946 * Description:
947 * Drivers often keep queueing requests until the hardware cannot accept
948 * more, when that condition happens we need to put the request back
949 * on the queue. Must be called with queue lock held.
950 */
Jens Axboe165125e2007-07-24 09:28:11 +0200951void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700953 blk_delete_timer(rq);
954 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100955 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (blk_rq_tagged(rq))
958 blk_queue_end_tag(q, rq);
959
James Bottomleyba396a62009-05-27 14:17:08 +0200960 BUG_ON(blk_queued_rq(rq));
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 elv_requeue_request(q, rq);
963}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964EXPORT_SYMBOL(blk_requeue_request);
965
966/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200967 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * @q: request queue where request should be inserted
969 * @rq: request to be inserted
970 * @at_head: insert request at head or tail of queue
971 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *
973 * Description:
974 * Many block devices need to execute commands asynchronously, so they don't
975 * block the whole kernel from preemption during request execution. This is
976 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200977 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
978 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 *
980 * We have the option of inserting the head or the tail of the queue.
981 * Typically we use the tail for new ioctls and so forth. We use the head
982 * of the queue for things like a QUEUE_FULL message from a device, or a
983 * host that is unable to accept a particular command.
984 */
Jens Axboe165125e2007-07-24 09:28:11 +0200985void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500986 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Tejun Heo 867d1192005-04-24 02:06:05 -0500988 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 unsigned long flags;
990
991 /*
992 * tell I/O scheduler that this isn't a regular read/write (ie it
993 * must not attempt merges on this) and that it acts as a soft
994 * barrier
995 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200996 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 rq->special = data;
999
1000 spin_lock_irqsave(q->queue_lock, flags);
1001
1002 /*
1003 * If command is tagged, release the tag
1004 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001005 if (blk_rq_tagged(rq))
1006 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001008 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001009 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001010 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 spin_unlock_irqrestore(q->queue_lock, flags);
1012}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013EXPORT_SYMBOL(blk_insert_request);
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015/*
1016 * add-request adds a request to the linked list.
1017 * queue lock is held and interrupts disabled, as we muck with the
1018 * request queue list.
1019 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001020static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001022 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /*
1025 * elevator indicated where it wants this request to be
1026 * inserted at elevator_merge time
1027 */
1028 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1029}
Jens Axboe6728cb02008-01-31 13:03:55 +01001030
Tejun Heo074a7ac2008-08-25 19:56:14 +09001031static void part_round_stats_single(int cpu, struct hd_struct *part,
1032 unsigned long now)
1033{
1034 if (now == part->stamp)
1035 return;
1036
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001037 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001038 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001039 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001040 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1041 }
1042 part->stamp = now;
1043}
1044
1045/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001046 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1047 * @cpu: cpu number for stats access
1048 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 *
1050 * The average IO queue length and utilisation statistics are maintained
1051 * by observing the current state of the queue length and the amount of
1052 * time it has been in this state for.
1053 *
1054 * Normally, that accounting is done on IO completion, but that can result
1055 * in more than a second's worth of IO being accounted for within any one
1056 * second, leading to >100% utilisation. To deal with that, we call this
1057 * function to do a round-off before returning the results when reading
1058 * /proc/diskstats. This accounts immediately for all queue usage up to
1059 * the current jiffies and restarts the counters again.
1060 */
Tejun Heoc9959052008-08-25 19:47:21 +09001061void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001062{
1063 unsigned long now = jiffies;
1064
Tejun Heo074a7ac2008-08-25 19:56:14 +09001065 if (part->partno)
1066 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1067 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001068}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001069EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/*
1072 * queue lock must be held
1073 */
Jens Axboe165125e2007-07-24 09:28:11 +02001074void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (unlikely(!q))
1077 return;
1078 if (unlikely(--req->ref_count))
1079 return;
1080
Tejun Heo8922e162005-10-20 16:23:44 +02001081 elv_completed_request(q, req);
1082
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001083 /* this is a bio leak */
1084 WARN_ON(req->bio != NULL);
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /*
1087 * Request may not have originated from ll_rw_blk. if not,
1088 * it didn't come out of our reserved rq pools
1089 */
Jens Axboe49171e52006-08-10 08:59:11 +02001090 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001091 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001092 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001095 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001098 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001101EXPORT_SYMBOL_GPL(__blk_put_request);
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103void blk_put_request(struct request *req)
1104{
Tejun Heo8922e162005-10-20 16:23:44 +02001105 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001106 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001108 spin_lock_irqsave(q->queue_lock, flags);
1109 __blk_put_request(q, req);
1110 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112EXPORT_SYMBOL(blk_put_request);
1113
Jens Axboe86db1e22008-01-29 14:53:40 +01001114void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001115{
Jens Axboec7c22e42008-09-13 20:26:01 +02001116 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001117 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001118
1119 /*
Tejun Heoa82afdf2009-07-03 17:48:16 +09001120 * Inherit FAILFAST from bio (for read-ahead, and explicit
1121 * FAILFAST). FAILFAST flags are identical for req and bio.
Tejun Heo52d9e672006-01-06 09:49:58 +01001122 */
Jens Axboe1f98a132009-09-11 14:32:04 +02001123 if (bio_rw_flagged(bio, BIO_RW_AHEAD))
Tejun Heoa82afdf2009-07-03 17:48:16 +09001124 req->cmd_flags |= REQ_FAILFAST_MASK;
1125 else
1126 req->cmd_flags |= bio->bi_rw & REQ_FAILFAST_MASK;
Tejun Heo52d9e672006-01-06 09:49:58 +01001127
Jens Axboe1f98a132009-09-11 14:32:04 +02001128 if (unlikely(bio_rw_flagged(bio, BIO_RW_DISCARD))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001129 req->cmd_flags |= REQ_DISCARD;
Jens Axboe1f98a132009-09-11 14:32:04 +02001130 if (bio_rw_flagged(bio, BIO_RW_BARRIER))
David Woodhousee17fc0a2008-08-09 16:42:20 +01001131 req->cmd_flags |= REQ_SOFTBARRIER;
Jens Axboe1f98a132009-09-11 14:32:04 +02001132 } else if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER)))
Tejun Heoe4025f62009-04-23 11:05:17 +09001133 req->cmd_flags |= REQ_HARDBARRIER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001134
Jens Axboe1f98a132009-09-11 14:32:04 +02001135 if (bio_rw_flagged(bio, BIO_RW_SYNCIO))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001136 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe1f98a132009-09-11 14:32:04 +02001137 if (bio_rw_flagged(bio, BIO_RW_META))
Jens Axboe5404bc72006-08-10 09:01:02 +02001138 req->cmd_flags |= REQ_RW_META;
Jens Axboe1f98a132009-09-11 14:32:04 +02001139 if (bio_rw_flagged(bio, BIO_RW_NOIDLE))
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001140 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001141
Tejun Heo52d9e672006-01-06 09:49:58 +01001142 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001143 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001144 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001145 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001146}
1147
Jens Axboe644b2d92009-04-06 14:48:06 +02001148/*
1149 * Only disabling plugging for non-rotational devices if it does tagging
1150 * as well, otherwise we do need the proper merging
1151 */
1152static inline bool queue_should_plug(struct request_queue *q)
1153{
Jens Axboe79da06442010-02-23 08:40:43 +01001154 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001155}
1156
Jens Axboe165125e2007-07-24 09:28:11 +02001157static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Nick Piggin450991b2005-06-28 20:45:13 -07001159 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001160 int el_ret;
1161 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001162 const unsigned short prio = bio_prio(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +02001163 const bool sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
1164 const bool unplug = bio_rw_flagged(bio, BIO_RW_UNPLUG);
Tejun Heo80a761f2009-07-03 17:48:17 +09001165 const unsigned int ff = bio->bi_rw & REQ_FAILFAST_MASK;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001166 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Mark McLoughlin6cafb122009-10-24 14:14:31 +02001168 if (bio_rw_flagged(bio, BIO_RW_BARRIER) &&
NeilBrowndb64f682009-06-30 09:35:44 +02001169 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1170 bio_endio(bio, -EOPNOTSUPP);
1171 return 0;
1172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /*
1174 * low level driver can indicate that it wants pages above a
1175 * certain limit bounced to low memory (ie for highmem, or even
1176 * ISA dma in theory)
1177 */
1178 blk_queue_bounce(q, &bio);
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 spin_lock_irq(q->queue_lock);
1181
Jens Axboe1f98a132009-09-11 14:32:04 +02001182 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto get_rq;
1184
1185 el_ret = elv_merge(q, &req, bio);
1186 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001187 case ELEVATOR_BACK_MERGE:
1188 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Jens Axboe6728cb02008-01-31 13:03:55 +01001190 if (!ll_back_merge_fn(q, req, bio))
1191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001193 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001194
Tejun Heo80a761f2009-07-03 17:48:17 +09001195 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1196 blk_rq_set_mixed_merge(req);
1197
Jens Axboe6728cb02008-01-31 13:03:55 +01001198 req->biotail->bi_next = bio;
1199 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001200 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001201 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001202 if (!blk_rq_cpu_valid(req))
1203 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001204 drive_stat_acct(req, 0);
1205 if (!attempt_back_merge(q, req))
1206 elv_merged_request(q, req, el_ret);
1207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Jens Axboe6728cb02008-01-31 13:03:55 +01001209 case ELEVATOR_FRONT_MERGE:
1210 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Jens Axboe6728cb02008-01-31 13:03:55 +01001212 if (!ll_front_merge_fn(q, req, bio))
1213 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001215 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001216
Tejun Heo80a761f2009-07-03 17:48:17 +09001217 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1218 blk_rq_set_mixed_merge(req);
1219 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1220 req->cmd_flags |= ff;
1221 }
1222
Jens Axboe6728cb02008-01-31 13:03:55 +01001223 bio->bi_next = req->bio;
1224 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Jens Axboe6728cb02008-01-31 13:03:55 +01001226 /*
1227 * may not be valid. if the low level driver said
1228 * it didn't need a bounce buffer then it better
1229 * not touch req->buffer either...
1230 */
1231 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001232 req->__sector = bio->bi_sector;
1233 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001234 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001235 if (!blk_rq_cpu_valid(req))
1236 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001237 drive_stat_acct(req, 0);
1238 if (!attempt_front_merge(q, req))
1239 elv_merged_request(q, req, el_ret);
1240 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Jens Axboe6728cb02008-01-31 13:03:55 +01001242 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1243 default:
1244 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001248 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001249 * This sync check and mask will be re-done in init_request_from_bio(),
1250 * but we need to set it earlier to expose the sync flag to the
1251 * rq allocator and io schedulers.
1252 */
1253 rw_flags = bio_data_dir(bio);
1254 if (sync)
1255 rw_flags |= REQ_RW_SYNC;
1256
1257 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001258 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001259 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001260 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001261 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001262
Nick Piggin450991b2005-06-28 20:45:13 -07001263 /*
1264 * After dropping the lock and possibly sleeping here, our request
1265 * may now be mergeable after it had proven unmergeable (above).
1266 * We don't worry about that case for efficiency. It won't happen
1267 * often, and the elevators are able to handle it.
1268 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001269 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Nick Piggin450991b2005-06-28 20:45:13 -07001271 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001272 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1273 bio_flagged(bio, BIO_CPU_AFFINE))
1274 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001275 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001276 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 add_request(q, req);
1278out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001279 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 spin_unlock_irq(q->queue_lock);
1282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285/*
1286 * If bio->bi_dev is a partition, remap the location
1287 */
1288static inline void blk_partition_remap(struct bio *bio)
1289{
1290 struct block_device *bdev = bio->bi_bdev;
1291
Jens Axboebf2de6f2007-09-27 13:01:25 +02001292 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 bio->bi_sector += p->start_sect;
1296 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001297
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001298 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001299 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001300 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302}
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304static void handle_bad_sector(struct bio *bio)
1305{
1306 char b[BDEVNAME_SIZE];
1307
1308 printk(KERN_INFO "attempt to access beyond end of device\n");
1309 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1310 bdevname(bio->bi_bdev, b),
1311 bio->bi_rw,
1312 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1313 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1314
1315 set_bit(BIO_EOF, &bio->bi_flags);
1316}
1317
Akinobu Mitac17bb492006-12-08 02:39:46 -08001318#ifdef CONFIG_FAIL_MAKE_REQUEST
1319
1320static DECLARE_FAULT_ATTR(fail_make_request);
1321
1322static int __init setup_fail_make_request(char *str)
1323{
1324 return setup_fault_attr(&fail_make_request, str);
1325}
1326__setup("fail_make_request=", setup_fail_make_request);
1327
1328static int should_fail_request(struct bio *bio)
1329{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001330 struct hd_struct *part = bio->bi_bdev->bd_part;
1331
1332 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001333 return should_fail(&fail_make_request, bio->bi_size);
1334
1335 return 0;
1336}
1337
1338static int __init fail_make_request_debugfs(void)
1339{
1340 return init_fault_attr_dentries(&fail_make_request,
1341 "fail_make_request");
1342}
1343
1344late_initcall(fail_make_request_debugfs);
1345
1346#else /* CONFIG_FAIL_MAKE_REQUEST */
1347
1348static inline int should_fail_request(struct bio *bio)
1349{
1350 return 0;
1351}
1352
1353#endif /* CONFIG_FAIL_MAKE_REQUEST */
1354
Jens Axboec07e2b42007-07-18 13:27:58 +02001355/*
1356 * Check whether this bio extends beyond the end of the device.
1357 */
1358static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1359{
1360 sector_t maxsector;
1361
1362 if (!nr_sectors)
1363 return 0;
1364
1365 /* Test device or partition size, when known. */
1366 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1367 if (maxsector) {
1368 sector_t sector = bio->bi_sector;
1369
1370 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1371 /*
1372 * This may well happen - the kernel calls bread()
1373 * without checking the size of the device, e.g., when
1374 * mounting a device.
1375 */
1376 handle_bad_sector(bio);
1377 return 1;
1378 }
1379 }
1380
1381 return 0;
1382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001385 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 * @bio: The bio describing the location in memory and on the device.
1387 *
1388 * generic_make_request() is used to make I/O requests of block
1389 * devices. It is passed a &struct bio, which describes the I/O that needs
1390 * to be done.
1391 *
1392 * generic_make_request() does not return any status. The
1393 * success/failure status of the request, along with notification of
1394 * completion, is delivered asynchronously through the bio->bi_end_io
1395 * function described (one day) else where.
1396 *
1397 * The caller of generic_make_request must make sure that bi_io_vec
1398 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1399 * set to describe the device address, and the
1400 * bi_end_io and optionally bi_private are set to describe how
1401 * completion notification should be signaled.
1402 *
1403 * generic_make_request and the drivers it calls may use bi_next if this
1404 * bio happens to be merged with someone else, and may change bi_dev and
1405 * bi_sector for remaps as it sees fit. So the values of these fields
1406 * should NOT be depended on after the call to generic_make_request.
1407 */
Neil Brownd89d8792007-05-01 09:53:42 +02001408static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Jens Axboe165125e2007-07-24 09:28:11 +02001410 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001411 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001413 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001414 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Jens Axboec07e2b42007-07-18 13:27:58 +02001418 if (bio_check_eod(bio, nr_sectors))
1419 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /*
1422 * Resolve the mapping until finished. (drivers are
1423 * still free to implement/resolve their own stacking
1424 * by explicitly returning 0)
1425 *
1426 * NOTE: we don't repeat the blk_size check for each new device.
1427 * Stacking drivers are expected to know what they are doing.
1428 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001429 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001430 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 do {
1432 char b[BDEVNAME_SIZE];
1433
1434 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001435 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 printk(KERN_ERR
1437 "generic_make_request: Trying to access "
1438 "nonexistent block-device %s (%Lu)\n",
1439 bdevname(bio->bi_bdev, b),
1440 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001441 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
Christoph Hellwig67efc922009-09-30 13:54:20 +02001444 if (unlikely(!bio_rw_flagged(bio, BIO_RW_DISCARD) &&
1445 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001446 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001447 bdevname(bio->bi_bdev, b),
1448 bio_sectors(bio),
1449 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 goto end_io;
1451 }
1452
Nick Pigginfde6ad22005-06-23 00:08:53 -07001453 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 goto end_io;
1455
Akinobu Mitac17bb492006-12-08 02:39:46 -08001456 if (should_fail_request(bio))
1457 goto end_io;
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /*
1460 * If this device has partitions, remap block n
1461 * of partition p to block n+start(p) of the disk.
1462 */
1463 blk_partition_remap(bio);
1464
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001465 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1466 goto end_io;
1467
NeilBrown5ddfe962006-10-30 22:07:21 -08001468 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001469 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001470
NeilBrown5ddfe962006-10-30 22:07:21 -08001471 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001472 old_dev = bio->bi_bdev->bd_dev;
1473
Jens Axboec07e2b42007-07-18 13:27:58 +02001474 if (bio_check_eod(bio, nr_sectors))
1475 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001476
Jens Axboe1f98a132009-09-11 14:32:04 +02001477 if (bio_rw_flagged(bio, BIO_RW_DISCARD) &&
Christoph Hellwigc15227d2009-09-30 13:52:12 +02001478 !blk_queue_discard(q)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001479 err = -EOPNOTSUPP;
1480 goto end_io;
1481 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001482
Minchan Kim01edede2009-09-08 21:56:38 +02001483 trace_block_bio_queue(q, bio);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 ret = q->make_request_fn(q, bio);
1486 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001487
1488 return;
1489
1490end_io:
1491 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Neil Brownd89d8792007-05-01 09:53:42 +02001494/*
1495 * We only want one ->make_request_fn to be active at a time,
1496 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001497 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001498 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001499 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001500 * generic_make_request is currently active in this task or not.
1501 * If it is NULL, then no make_request is active. If it is non-NULL,
1502 * then a make_request is active, and new requests should be added
1503 * at the tail
1504 */
1505void generic_make_request(struct bio *bio)
1506{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001507 struct bio_list bio_list_on_stack;
1508
1509 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001510 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001511 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001512 return;
1513 }
1514 /* following loop may be a bit non-obvious, and so deserves some
1515 * explanation.
1516 * Before entering the loop, bio->bi_next is NULL (as all callers
1517 * ensure that) so we have a list with a single bio.
1518 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001519 * we assign bio_list to a pointer to the bio_list_on_stack,
1520 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001521 * added. __generic_make_request may indeed add some more bios
1522 * through a recursive call to generic_make_request. If it
1523 * did, we find a non-NULL value in bio_list and re-enter the loop
1524 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001525 * of the top of the list (no pretending) and so remove it from
1526 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001527 *
1528 * The loop was structured like this to make only one call to
1529 * __generic_make_request (which is important as it is large and
1530 * inlined) and to keep the structure simple.
1531 */
1532 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001533 bio_list_init(&bio_list_on_stack);
1534 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001535 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001536 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001537 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001538 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001539 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001540}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541EXPORT_SYMBOL(generic_make_request);
1542
1543/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001544 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1546 * @bio: The &struct bio which describes the I/O
1547 *
1548 * submit_bio() is very similar in purpose to generic_make_request(), and
1549 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001550 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 *
1552 */
1553void submit_bio(int rw, struct bio *bio)
1554{
1555 int count = bio_sectors(bio);
1556
Jens Axboe22e2c502005-06-27 10:55:12 +02001557 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Jens Axboebf2de6f2007-09-27 13:01:25 +02001559 /*
1560 * If it's a regular read/write or a barrier with data attached,
1561 * go through the normal accounting stuff before submission.
1562 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001563 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001564 if (rw & WRITE) {
1565 count_vm_events(PGPGOUT, count);
1566 } else {
1567 task_io_account_read(bio->bi_size);
1568 count_vm_events(PGPGIN, count);
1569 }
1570
1571 if (unlikely(block_dump)) {
1572 char b[BDEVNAME_SIZE];
1573 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001574 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001575 (rw & WRITE) ? "WRITE" : "READ",
1576 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001577 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
1581 generic_make_request(bio);
1582}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583EXPORT_SYMBOL(submit_bio);
1584
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001585/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001586 * blk_rq_check_limits - Helper function to check a request for the queue limit
1587 * @q: the queue
1588 * @rq: the request being checked
1589 *
1590 * Description:
1591 * @rq may have been made based on weaker limitations of upper-level queues
1592 * in request stacking drivers, and it may violate the limitation of @q.
1593 * Since the block layer and the underlying device driver trust @rq
1594 * after it is inserted to @q, it should be checked against @q before
1595 * the insertion using this generic function.
1596 *
1597 * This function should also be useful for request stacking drivers
1598 * in some cases below, so export this fuction.
1599 * Request stacking drivers like request-based dm may change the queue
1600 * limits while requests are in the queue (e.g. dm's table swapping).
1601 * Such request stacking drivers should check those requests agaist
1602 * the new queue limits again when they dispatch those requests,
1603 * although such checkings are also done against the old queue limits
1604 * when submitting requests.
1605 */
1606int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1607{
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001608 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1609 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001610 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1611 return -EIO;
1612 }
1613
1614 /*
1615 * queue's settings related to segment counting like q->bounce_pfn
1616 * may differ from that of other stacking queues.
1617 * Recalculate it to check the request correctly on this queue's
1618 * limitation.
1619 */
1620 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001621 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001622 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1623 return -EIO;
1624 }
1625
1626 return 0;
1627}
1628EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1629
1630/**
1631 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1632 * @q: the queue to submit the request
1633 * @rq: the request being queued
1634 */
1635int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1636{
1637 unsigned long flags;
1638
1639 if (blk_rq_check_limits(q, rq))
1640 return -EIO;
1641
1642#ifdef CONFIG_FAIL_MAKE_REQUEST
1643 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1644 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1645 return -EIO;
1646#endif
1647
1648 spin_lock_irqsave(q->queue_lock, flags);
1649
1650 /*
1651 * Submitting request must be dequeued before calling this function
1652 * because it will be linked to another request_queue
1653 */
1654 BUG_ON(blk_queued_rq(rq));
1655
1656 drive_stat_acct(rq, 1);
1657 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1658
1659 spin_unlock_irqrestore(q->queue_lock, flags);
1660
1661 return 0;
1662}
1663EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1664
Tejun Heo80a761f2009-07-03 17:48:17 +09001665/**
1666 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1667 * @rq: request to examine
1668 *
1669 * Description:
1670 * A request could be merge of IOs which require different failure
1671 * handling. This function determines the number of bytes which
1672 * can be failed from the beginning of the request without
1673 * crossing into area which need to be retried further.
1674 *
1675 * Return:
1676 * The number of bytes to fail.
1677 *
1678 * Context:
1679 * queue_lock must be held.
1680 */
1681unsigned int blk_rq_err_bytes(const struct request *rq)
1682{
1683 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1684 unsigned int bytes = 0;
1685 struct bio *bio;
1686
1687 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1688 return blk_rq_bytes(rq);
1689
1690 /*
1691 * Currently the only 'mixing' which can happen is between
1692 * different fastfail types. We can safely fail portions
1693 * which have all the failfast bits that the first one has -
1694 * the ones which are at least as eager to fail as the first
1695 * one.
1696 */
1697 for (bio = rq->bio; bio; bio = bio->bi_next) {
1698 if ((bio->bi_rw & ff) != ff)
1699 break;
1700 bytes += bio->bi_size;
1701 }
1702
1703 /* this could lead to infinite loop */
1704 BUG_ON(blk_rq_bytes(rq) && !bytes);
1705 return bytes;
1706}
1707EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1708
Jens Axboebc58ba92009-01-23 10:54:44 +01001709static void blk_account_io_completion(struct request *req, unsigned int bytes)
1710{
Jens Axboec2553b52009-04-24 08:10:11 +02001711 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001712 const int rw = rq_data_dir(req);
1713 struct hd_struct *part;
1714 int cpu;
1715
1716 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001717 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001718 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1719 part_stat_unlock();
1720 }
1721}
1722
1723static void blk_account_io_done(struct request *req)
1724{
Jens Axboebc58ba92009-01-23 10:54:44 +01001725 /*
1726 * Account IO completion. bar_rq isn't accounted as a normal
1727 * IO on queueing nor completion. Accounting the containing
1728 * request is enough.
1729 */
Jens Axboec2553b52009-04-24 08:10:11 +02001730 if (blk_do_io_stat(req) && req != &req->q->bar_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001731 unsigned long duration = jiffies - req->start_time;
1732 const int rw = rq_data_dir(req);
1733 struct hd_struct *part;
1734 int cpu;
1735
1736 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001737 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001738
1739 part_stat_inc(cpu, part, ios[rw]);
1740 part_stat_add(cpu, part, ticks[rw], duration);
1741 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001742 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001743
1744 part_stat_unlock();
1745 }
1746}
1747
Tejun Heo53a08802008-12-03 12:41:26 +01001748/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001749 * blk_peek_request - peek at the top of a request queue
1750 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001751 *
1752 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001753 * Return the request at the top of @q. The returned request
1754 * should be started using blk_start_request() before LLD starts
1755 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001756 *
1757 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001758 * Pointer to the request at the top of @q if available. Null
1759 * otherwise.
1760 *
1761 * Context:
1762 * queue_lock must be held.
1763 */
1764struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001765{
1766 struct request *rq;
1767 int ret;
1768
1769 while ((rq = __elv_next_request(q)) != NULL) {
1770 if (!(rq->cmd_flags & REQ_STARTED)) {
1771 /*
1772 * This is the first time the device driver
1773 * sees this request (possibly after
1774 * requeueing). Notify IO scheduler.
1775 */
1776 if (blk_sorted_rq(rq))
1777 elv_activate_rq(q, rq);
1778
1779 /*
1780 * just mark as started even if we don't start
1781 * it, a request that has been delayed should
1782 * not be passed by new incoming requests
1783 */
1784 rq->cmd_flags |= REQ_STARTED;
1785 trace_block_rq_issue(q, rq);
1786 }
1787
1788 if (!q->boundary_rq || q->boundary_rq == rq) {
1789 q->end_sector = rq_end_sector(rq);
1790 q->boundary_rq = NULL;
1791 }
1792
1793 if (rq->cmd_flags & REQ_DONTPREP)
1794 break;
1795
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001796 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001797 /*
1798 * make sure space for the drain appears we
1799 * know we can do this because max_hw_segments
1800 * has been adjusted to be one fewer than the
1801 * device can handle
1802 */
1803 rq->nr_phys_segments++;
1804 }
1805
1806 if (!q->prep_rq_fn)
1807 break;
1808
1809 ret = q->prep_rq_fn(q, rq);
1810 if (ret == BLKPREP_OK) {
1811 break;
1812 } else if (ret == BLKPREP_DEFER) {
1813 /*
1814 * the request may have been (partially) prepped.
1815 * we need to keep this request in the front to
1816 * avoid resource deadlock. REQ_STARTED will
1817 * prevent other fs requests from passing this one.
1818 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001819 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001820 !(rq->cmd_flags & REQ_DONTPREP)) {
1821 /*
1822 * remove the space for the drain we added
1823 * so that we don't add it again
1824 */
1825 --rq->nr_phys_segments;
1826 }
1827
1828 rq = NULL;
1829 break;
1830 } else if (ret == BLKPREP_KILL) {
1831 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001832 /*
1833 * Mark this request as started so we don't trigger
1834 * any debug logic in the end I/O path.
1835 */
1836 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001837 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001838 } else {
1839 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1840 break;
1841 }
1842 }
1843
1844 return rq;
1845}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001846EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001847
Tejun Heo9934c8c2009-05-08 11:54:16 +09001848void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001849{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001850 struct request_queue *q = rq->q;
1851
Tejun Heo158dbda2009-04-23 11:05:18 +09001852 BUG_ON(list_empty(&rq->queuelist));
1853 BUG_ON(ELV_ON_HASH(rq));
1854
1855 list_del_init(&rq->queuelist);
1856
1857 /*
1858 * the time frame between a request being removed from the lists
1859 * and to it is freed is accounted as io that is in progress at
1860 * the driver side.
1861 */
Divyesh Shah91952912010-04-01 15:01:41 -07001862 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001863 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001864 set_io_start_time_ns(rq);
1865 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001866}
1867
Tejun Heo5efccd12009-04-23 11:05:18 +09001868/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001869 * blk_start_request - start request processing on the driver
1870 * @req: request to dequeue
1871 *
1872 * Description:
1873 * Dequeue @req and start timeout timer on it. This hands off the
1874 * request to the driver.
1875 *
1876 * Block internal functions which don't want to start timer should
1877 * call blk_dequeue_request().
1878 *
1879 * Context:
1880 * queue_lock must be held.
1881 */
1882void blk_start_request(struct request *req)
1883{
1884 blk_dequeue_request(req);
1885
1886 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001887 * We are now handing the request to the hardware, initialize
1888 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001889 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001890 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001891 if (unlikely(blk_bidi_rq(req)))
1892 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1893
Tejun Heo9934c8c2009-05-08 11:54:16 +09001894 blk_add_timer(req);
1895}
1896EXPORT_SYMBOL(blk_start_request);
1897
1898/**
1899 * blk_fetch_request - fetch a request from a request queue
1900 * @q: request queue to fetch a request from
1901 *
1902 * Description:
1903 * Return the request at the top of @q. The request is started on
1904 * return and LLD can start processing it immediately.
1905 *
1906 * Return:
1907 * Pointer to the request at the top of @q if available. Null
1908 * otherwise.
1909 *
1910 * Context:
1911 * queue_lock must be held.
1912 */
1913struct request *blk_fetch_request(struct request_queue *q)
1914{
1915 struct request *rq;
1916
1917 rq = blk_peek_request(q);
1918 if (rq)
1919 blk_start_request(rq);
1920 return rq;
1921}
1922EXPORT_SYMBOL(blk_fetch_request);
1923
1924/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001925 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001926 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001927 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001928 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001929 *
1930 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001931 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1932 * the request structure even if @req doesn't have leftover.
1933 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001934 *
1935 * This special helper function is only for request stacking drivers
1936 * (e.g. request-based dm) so that they can handle partial completion.
1937 * Actual device drivers should use blk_end_request instead.
1938 *
1939 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1940 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001941 *
1942 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001943 * %false - this request doesn't have any more data
1944 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001945 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09001946bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001948 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 struct bio *bio;
1950
Tejun Heo2e60e022009-04-23 11:05:18 +09001951 if (!req->bio)
1952 return false;
1953
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001954 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /*
Tejun Heo6f414692009-04-19 07:00:41 +09001957 * For fs requests, rq is just carrier of independent bio's
1958 * and each partial completion should be handled separately.
1959 * Reset per-request error on each partial completion.
1960 *
1961 * TODO: tj: This is too subtle. It would be better to let
1962 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 */
Tejun Heo6f414692009-04-19 07:00:41 +09001964 if (blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 req->errors = 0;
1966
Jens Axboe6728cb02008-01-31 13:03:55 +01001967 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1968 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09001970 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
1972
Jens Axboebc58ba92009-01-23 10:54:44 +01001973 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 total_bytes = bio_nbytes = 0;
1976 while ((bio = req->bio) != NULL) {
1977 int nbytes;
1978
1979 if (nr_bytes >= bio->bi_size) {
1980 req->bio = bio->bi_next;
1981 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001982 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 next_idx = 0;
1984 bio_nbytes = 0;
1985 } else {
1986 int idx = bio->bi_idx + next_idx;
1987
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001988 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001990 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001991 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 break;
1993 }
1994
1995 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1996 BIO_BUG_ON(nbytes > bio->bi_size);
1997
1998 /*
1999 * not a complete bvec done
2000 */
2001 if (unlikely(nbytes > nr_bytes)) {
2002 bio_nbytes += nr_bytes;
2003 total_bytes += nr_bytes;
2004 break;
2005 }
2006
2007 /*
2008 * advance to the next vector
2009 */
2010 next_idx++;
2011 bio_nbytes += nbytes;
2012 }
2013
2014 total_bytes += nbytes;
2015 nr_bytes -= nbytes;
2016
Jens Axboe6728cb02008-01-31 13:03:55 +01002017 bio = req->bio;
2018 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 /*
2020 * end more in this run, or just return 'not-done'
2021 */
2022 if (unlikely(nr_bytes <= 0))
2023 break;
2024 }
2025 }
2026
2027 /*
2028 * completely done
2029 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002030 if (!req->bio) {
2031 /*
2032 * Reset counters so that the request stacking driver
2033 * can find how many bytes remain in the request
2034 * later.
2035 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002036 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002037 return false;
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 /*
2041 * if the request wasn't completed, update state
2042 */
2043 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002044 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 bio->bi_idx += next_idx;
2046 bio_iovec(bio)->bv_offset += nr_bytes;
2047 bio_iovec(bio)->bv_len -= nr_bytes;
2048 }
2049
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002050 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002051 req->buffer = bio_data(req->bio);
2052
2053 /* update sector only for requests with clear definition of sector */
2054 if (blk_fs_request(req) || blk_discard_rq(req))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002055 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002056
Tejun Heo80a761f2009-07-03 17:48:17 +09002057 /* mixed attributes always follow the first bio */
2058 if (req->cmd_flags & REQ_MIXED_MERGE) {
2059 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2060 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2061 }
2062
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002063 /*
2064 * If total number of sectors is less than the first segment
2065 * size, something has gone terribly wrong.
2066 */
2067 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2068 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002069 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002070 }
2071
2072 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002074
Tejun Heo2e60e022009-04-23 11:05:18 +09002075 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
Tejun Heo2e60e022009-04-23 11:05:18 +09002077EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Tejun Heo2e60e022009-04-23 11:05:18 +09002079static bool blk_update_bidi_request(struct request *rq, int error,
2080 unsigned int nr_bytes,
2081 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002082{
Tejun Heo2e60e022009-04-23 11:05:18 +09002083 if (blk_update_request(rq, error, nr_bytes))
2084 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002085
Tejun Heo2e60e022009-04-23 11:05:18 +09002086 /* Bidi request must be completed as a whole */
2087 if (unlikely(blk_bidi_rq(rq)) &&
2088 blk_update_request(rq->next_rq, error, bidi_bytes))
2089 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002090
Tejun Heo2e60e022009-04-23 11:05:18 +09002091 add_disk_randomness(rq->rq_disk);
2092
2093 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096/*
2097 * queue lock must be held
2098 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002099static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002101 if (blk_rq_tagged(req))
2102 blk_queue_end_tag(req->q, req);
2103
James Bottomleyba396a62009-05-27 14:17:08 +02002104 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 if (unlikely(laptop_mode) && blk_fs_request(req))
Matthew Garrett31373d02010-04-06 14:25:14 +02002107 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Mike Andersone78042e2008-10-30 02:16:20 -07002109 blk_delete_timer(req);
2110
Jens Axboebc58ba92009-01-23 10:54:44 +01002111 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002114 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002115 else {
2116 if (blk_bidi_rq(req))
2117 __blk_put_request(req->next_rq->q, req->next_rq);
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121}
2122
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002123/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002124 * blk_end_bidi_request - Complete a bidi request
2125 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002126 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002127 * @nr_bytes: number of bytes to complete @rq
2128 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002129 *
2130 * Description:
2131 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002132 * Drivers that supports bidi can safely call this member for any
2133 * type of request, bidi or uni. In the later case @bidi_bytes is
2134 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002135 *
2136 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002137 * %false - we are done with this request
2138 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002139 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002140static bool blk_end_bidi_request(struct request *rq, int error,
2141 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002142{
2143 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002144 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002145
Tejun Heo2e60e022009-04-23 11:05:18 +09002146 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2147 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002148
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002149 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002150 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002151 spin_unlock_irqrestore(q->queue_lock, flags);
2152
Tejun Heo2e60e022009-04-23 11:05:18 +09002153 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002154}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002155
2156/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002157 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2158 * @rq: the request to complete
2159 * @error: %0 for success, < %0 for error
2160 * @nr_bytes: number of bytes to complete @rq
2161 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002162 *
2163 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002164 * Identical to blk_end_bidi_request() except that queue lock is
2165 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002166 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002167 * Return:
2168 * %false - we are done with this request
2169 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002170 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002171static bool __blk_end_bidi_request(struct request *rq, int error,
2172 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002173{
Tejun Heo2e60e022009-04-23 11:05:18 +09002174 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2175 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002176
Tejun Heo2e60e022009-04-23 11:05:18 +09002177 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002178
Tejun Heo2e60e022009-04-23 11:05:18 +09002179 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002180}
2181
2182/**
2183 * blk_end_request - Helper function for drivers to complete the request.
2184 * @rq: the request being processed
2185 * @error: %0 for success, < %0 for error
2186 * @nr_bytes: number of bytes to complete
2187 *
2188 * Description:
2189 * Ends I/O on a number of bytes attached to @rq.
2190 * If @rq has leftover, sets it up for the next range of segments.
2191 *
2192 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002193 * %false - we are done with this request
2194 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002195 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002196bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002197{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002198 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002199}
Jens Axboe56ad1742009-07-28 22:11:24 +02002200EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002201
2202/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002203 * blk_end_request_all - Helper function for drives to finish the request.
2204 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002205 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002206 *
2207 * Description:
2208 * Completely finish @rq.
2209 */
2210void blk_end_request_all(struct request *rq, int error)
2211{
2212 bool pending;
2213 unsigned int bidi_bytes = 0;
2214
2215 if (unlikely(blk_bidi_rq(rq)))
2216 bidi_bytes = blk_rq_bytes(rq->next_rq);
2217
2218 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2219 BUG_ON(pending);
2220}
Jens Axboe56ad1742009-07-28 22:11:24 +02002221EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002222
2223/**
2224 * blk_end_request_cur - Helper function to finish the current request chunk.
2225 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002226 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002227 *
2228 * Description:
2229 * Complete the current consecutively mapped chunk from @rq.
2230 *
2231 * Return:
2232 * %false - we are done with this request
2233 * %true - still buffers pending for this request
2234 */
2235bool blk_end_request_cur(struct request *rq, int error)
2236{
2237 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2238}
Jens Axboe56ad1742009-07-28 22:11:24 +02002239EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002240
2241/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002242 * blk_end_request_err - Finish a request till the next failure boundary.
2243 * @rq: the request to finish till the next failure boundary for
2244 * @error: must be negative errno
2245 *
2246 * Description:
2247 * Complete @rq till the next failure boundary.
2248 *
2249 * Return:
2250 * %false - we are done with this request
2251 * %true - still buffers pending for this request
2252 */
2253bool blk_end_request_err(struct request *rq, int error)
2254{
2255 WARN_ON(error >= 0);
2256 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2257}
2258EXPORT_SYMBOL_GPL(blk_end_request_err);
2259
2260/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002261 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002262 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002263 * @error: %0 for success, < %0 for error
2264 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002265 *
2266 * Description:
2267 * Must be called with queue lock held unlike blk_end_request().
2268 *
2269 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002270 * %false - we are done with this request
2271 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002272 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002273bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002274{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002275 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002276}
Jens Axboe56ad1742009-07-28 22:11:24 +02002277EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002278
2279/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002280 * __blk_end_request_all - Helper function for drives to finish the request.
2281 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002282 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002283 *
2284 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002285 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002286 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002287void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002288{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002289 bool pending;
2290 unsigned int bidi_bytes = 0;
2291
2292 if (unlikely(blk_bidi_rq(rq)))
2293 bidi_bytes = blk_rq_bytes(rq->next_rq);
2294
2295 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2296 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002297}
Jens Axboe56ad1742009-07-28 22:11:24 +02002298EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002299
2300/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002301 * __blk_end_request_cur - Helper function to finish the current request chunk.
2302 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002303 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002304 *
2305 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002306 * Complete the current consecutively mapped chunk from @rq. Must
2307 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002308 *
2309 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002310 * %false - we are done with this request
2311 * %true - still buffers pending for this request
2312 */
2313bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002314{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002315 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002316}
Jens Axboe56ad1742009-07-28 22:11:24 +02002317EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002318
Tejun Heo80a761f2009-07-03 17:48:17 +09002319/**
2320 * __blk_end_request_err - Finish a request till the next failure boundary.
2321 * @rq: the request to finish till the next failure boundary for
2322 * @error: must be negative errno
2323 *
2324 * Description:
2325 * Complete @rq till the next failure boundary. Must be called
2326 * with queue lock held.
2327 *
2328 * Return:
2329 * %false - we are done with this request
2330 * %true - still buffers pending for this request
2331 */
2332bool __blk_end_request_err(struct request *rq, int error)
2333{
2334 WARN_ON(error >= 0);
2335 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2336}
2337EXPORT_SYMBOL_GPL(__blk_end_request_err);
2338
Jens Axboe86db1e22008-01-29 14:53:40 +01002339void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2340 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002342 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
2343 rq->cmd_flags |= bio->bi_rw & REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
David Woodhousefb2dce82008-08-05 18:01:53 +01002345 if (bio_has_data(bio)) {
2346 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002347 rq->buffer = bio_data(bio);
2348 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002349 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
NeilBrown66846572007-08-16 13:31:28 +02002352 if (bio->bi_bdev)
2353 rq->rq_disk = bio->bi_bdev->bd_disk;
2354}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002356#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2357/**
2358 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2359 * @rq: the request to be flushed
2360 *
2361 * Description:
2362 * Flush all pages in @rq.
2363 */
2364void rq_flush_dcache_pages(struct request *rq)
2365{
2366 struct req_iterator iter;
2367 struct bio_vec *bvec;
2368
2369 rq_for_each_segment(bvec, rq, iter)
2370 flush_dcache_page(bvec->bv_page);
2371}
2372EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2373#endif
2374
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002375/**
2376 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2377 * @q : the queue of the device being checked
2378 *
2379 * Description:
2380 * Check if underlying low-level drivers of a device are busy.
2381 * If the drivers want to export their busy state, they must set own
2382 * exporting function using blk_queue_lld_busy() first.
2383 *
2384 * Basically, this function is used only by request stacking drivers
2385 * to stop dispatching requests to underlying devices when underlying
2386 * devices are busy. This behavior helps more I/O merging on the queue
2387 * of the request stacking driver and prevents I/O throughput regression
2388 * on burst I/O load.
2389 *
2390 * Return:
2391 * 0 - Not busy (The request stacking driver should dispatch request)
2392 * 1 - Busy (The request stacking driver should stop dispatching request)
2393 */
2394int blk_lld_busy(struct request_queue *q)
2395{
2396 if (q->lld_busy_fn)
2397 return q->lld_busy_fn(q);
2398
2399 return 0;
2400}
2401EXPORT_SYMBOL_GPL(blk_lld_busy);
2402
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002403/**
2404 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2405 * @rq: the clone request to be cleaned up
2406 *
2407 * Description:
2408 * Free all bios in @rq for a cloned request.
2409 */
2410void blk_rq_unprep_clone(struct request *rq)
2411{
2412 struct bio *bio;
2413
2414 while ((bio = rq->bio) != NULL) {
2415 rq->bio = bio->bi_next;
2416
2417 bio_put(bio);
2418 }
2419}
2420EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2421
2422/*
2423 * Copy attributes of the original request to the clone request.
2424 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2425 */
2426static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2427{
2428 dst->cpu = src->cpu;
2429 dst->cmd_flags = (rq_data_dir(src) | REQ_NOMERGE);
2430 dst->cmd_type = src->cmd_type;
2431 dst->__sector = blk_rq_pos(src);
2432 dst->__data_len = blk_rq_bytes(src);
2433 dst->nr_phys_segments = src->nr_phys_segments;
2434 dst->ioprio = src->ioprio;
2435 dst->extra_len = src->extra_len;
2436}
2437
2438/**
2439 * blk_rq_prep_clone - Helper function to setup clone request
2440 * @rq: the request to be setup
2441 * @rq_src: original request to be cloned
2442 * @bs: bio_set that bios for clone are allocated from
2443 * @gfp_mask: memory allocation mask for bio
2444 * @bio_ctr: setup function to be called for each clone bio.
2445 * Returns %0 for success, non %0 for failure.
2446 * @data: private data to be passed to @bio_ctr
2447 *
2448 * Description:
2449 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2450 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2451 * are not copied, and copying such parts is the caller's responsibility.
2452 * Also, pages which the original bios are pointing to are not copied
2453 * and the cloned bios just point same pages.
2454 * So cloned bios must be completed before original bios, which means
2455 * the caller must complete @rq before @rq_src.
2456 */
2457int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2458 struct bio_set *bs, gfp_t gfp_mask,
2459 int (*bio_ctr)(struct bio *, struct bio *, void *),
2460 void *data)
2461{
2462 struct bio *bio, *bio_src;
2463
2464 if (!bs)
2465 bs = fs_bio_set;
2466
2467 blk_rq_init(NULL, rq);
2468
2469 __rq_for_each_bio(bio_src, rq_src) {
2470 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2471 if (!bio)
2472 goto free_and_out;
2473
2474 __bio_clone(bio, bio_src);
2475
2476 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002477 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002478 goto free_and_out;
2479
2480 if (bio_ctr && bio_ctr(bio, bio_src, data))
2481 goto free_and_out;
2482
2483 if (rq->bio) {
2484 rq->biotail->bi_next = bio;
2485 rq->biotail = bio;
2486 } else
2487 rq->bio = rq->biotail = bio;
2488 }
2489
2490 __blk_rq_prep_clone(rq, rq_src);
2491
2492 return 0;
2493
2494free_and_out:
2495 if (bio)
2496 bio_free(bio, bs);
2497 blk_rq_unprep_clone(rq);
2498
2499 return -ENOMEM;
2500}
2501EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2502
Jens Axboe18887ad2008-07-28 13:08:45 +02002503int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
2505 return queue_work(kblockd_workqueue, work);
2506}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507EXPORT_SYMBOL(kblockd_schedule_work);
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509int __init blk_dev_init(void)
2510{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002511 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2512 sizeof(((struct request *)0)->cmd_flags));
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 kblockd_workqueue = create_workqueue("kblockd");
2515 if (!kblockd_workqueue)
2516 panic("Failed to create kblockd\n");
2517
2518 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002519 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Jens Axboe8324aa92008-01-29 14:51:59 +01002521 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002522 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return 0;
2525}