blob: 66c3cfe94d0ad3efc68b4379290435f257c414a4 [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
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200187 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
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
Mike Snitzer1abec4f2010-05-25 13:15:15 -0400470 if (unlikely(rl->rq_pool))
471 return 0;
472
Jens Axboe1faa16d2009-04-06 14:48:01 +0200473 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
474 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200475 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200476 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
477 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Christoph Lameter19460892005-06-23 00:08:19 -0700479 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
480 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 if (!rl->rq_pool)
483 return -ENOMEM;
484
485 return 0;
486}
487
Jens Axboe165125e2007-07-24 09:28:11 +0200488struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Christoph Lameter19460892005-06-23 00:08:19 -0700490 return blk_alloc_queue_node(gfp_mask, -1);
491}
492EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Jens Axboe165125e2007-07-24 09:28:11 +0200494struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700495{
Jens Axboe165125e2007-07-24 09:28:11 +0200496 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700497 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700498
Jens Axboe8324aa92008-01-29 14:51:59 +0100499 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700500 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (!q)
502 return NULL;
503
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700504 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
505 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200506 q->backing_dev_info.ra_pages =
507 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
508 q->backing_dev_info.state = 0;
509 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Jens Axboed9938312009-06-12 14:45:52 +0200510 q->backing_dev_info.name = "block";
Jens Axboe0989a022009-06-12 14:42:56 +0200511
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 err = bdi_init(&q->backing_dev_info);
513 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700515 return NULL;
516 }
517
Matthew Garrett31373d02010-04-06 14:25:14 +0200518 setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
519 laptop_mode_timer_fn, (unsigned long) q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700521 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
522 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200523 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500524
Jens Axboe8324aa92008-01-29 14:51:59 +0100525 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Al Viro483f4af2006-03-18 18:34:37 -0500527 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700528 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return q;
531}
Christoph Lameter19460892005-06-23 00:08:19 -0700532EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534/**
535 * blk_init_queue - prepare a request queue for use with a block device
536 * @rfn: The function to be called to process requests that have been
537 * placed on the queue.
538 * @lock: Request queue spin lock
539 *
540 * Description:
541 * If a block device wishes to use the standard request handling procedures,
542 * which sorts requests and coalesces adjacent requests, then it must
543 * call blk_init_queue(). The function @rfn will be called when there
544 * are requests on the queue that need to be processed. If the device
545 * supports plugging, then @rfn may not be called immediately when requests
546 * are available on the queue, but may be called at some time later instead.
547 * Plugged queues are generally unplugged when a buffer belonging to one
548 * of the requests on the queue is needed, or due to memory pressure.
549 *
550 * @rfn is not required, or even expected, to remove all requests off the
551 * queue, but only as many as it can handle at a time. If it does leave
552 * requests on the queue, it is responsible for arranging that the requests
553 * get dealt with eventually.
554 *
555 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200556 * request queue; this lock will be taken also from interrupt context, so irq
557 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200559 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * it didn't succeed.
561 *
562 * Note:
563 * blk_init_queue() must be paired with a blk_cleanup_queue() call
564 * when the block device is deactivated (such as at module unload).
565 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700566
Jens Axboe165125e2007-07-24 09:28:11 +0200567struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Christoph Lameter19460892005-06-23 00:08:19 -0700569 return blk_init_queue_node(rfn, lock, -1);
570}
571EXPORT_SYMBOL(blk_init_queue);
572
Jens Axboe165125e2007-07-24 09:28:11 +0200573struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700574blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
575{
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600576 struct request_queue *uninit_q, *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600578 uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
579 if (!uninit_q)
580 return NULL;
581
582 q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
583 if (!q)
584 blk_cleanup_queue(uninit_q);
585
586 return q;
Mike Snitzer01effb02010-05-11 08:57:42 +0200587}
588EXPORT_SYMBOL(blk_init_queue_node);
589
590struct request_queue *
591blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
592 spinlock_t *lock)
593{
594 return blk_init_allocated_queue_node(q, rfn, lock, -1);
595}
596EXPORT_SYMBOL(blk_init_allocated_queue);
597
598struct request_queue *
599blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
600 spinlock_t *lock, int node_id)
601{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!q)
603 return NULL;
604
Christoph Lameter19460892005-06-23 00:08:19 -0700605 q->node = node_id;
Mike Snitzerc86d1b82010-06-03 11:34:52 -0600606 if (blk_init_free_list(q))
Al Viro8669aaf2006-03-18 13:50:00 -0500607 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 q->prep_rq_fn = NULL;
611 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100612 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 q->queue_lock = lock;
614
Jens Axboef3b144a2009-03-06 08:48:33 +0100615 /*
616 * This also sets hw/phys segments, boundary and size
617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Alan Stern44ec9542007-02-20 11:01:57 -0500620 q->sg_reserved_size = INT_MAX;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /*
623 * all done
624 */
625 if (!elevator_init(q, NULL)) {
626 blk_queue_congestion_threshold(q);
627 return q;
628 }
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return NULL;
631}
Mike Snitzer01effb02010-05-11 08:57:42 +0200632EXPORT_SYMBOL(blk_init_allocated_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jens Axboe165125e2007-07-24 09:28:11 +0200634int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700636 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500637 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639 }
640
641 return 1;
642}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Jens Axboe165125e2007-07-24 09:28:11 +0200644static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200646 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200647 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 mempool_free(rq, q->rq.rq_pool);
649}
650
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200651static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200652blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
655
656 if (!rq)
657 return NULL;
658
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200659 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200660
Jerome Marchand42dad762009-04-22 14:01:49 +0200661 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Tejun Heocb98fc82005-10-28 08:29:39 +0200663 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200664 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200665 mempool_free(rq, q->rq.rq_pool);
666 return NULL;
667 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200668 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Tejun Heocb98fc82005-10-28 08:29:39 +0200671 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
674/*
675 * ioc_batching returns true if the ioc is a valid batching request and
676 * should be given priority access to a request.
677 */
Jens Axboe165125e2007-07-24 09:28:11 +0200678static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 if (!ioc)
681 return 0;
682
683 /*
684 * Make sure the process is able to allocate at least 1 request
685 * even if the batch times out, otherwise we could theoretically
686 * lose wakeups.
687 */
688 return ioc->nr_batch_requests == q->nr_batching ||
689 (ioc->nr_batch_requests > 0
690 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
691}
692
693/*
694 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
695 * will cause the process to be a "batcher" on all queues in the system. This
696 * is the behaviour we want though - once it gets a wakeup it should be given
697 * a nice run.
698 */
Jens Axboe165125e2007-07-24 09:28:11 +0200699static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 if (!ioc || ioc_batching(q, ioc))
702 return;
703
704 ioc->nr_batch_requests = q->nr_batching;
705 ioc->last_waited = jiffies;
706}
707
Jens Axboe1faa16d2009-04-06 14:48:01 +0200708static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct request_list *rl = &q->rq;
711
Jens Axboe1faa16d2009-04-06 14:48:01 +0200712 if (rl->count[sync] < queue_congestion_off_threshold(q))
713 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Jens Axboe1faa16d2009-04-06 14:48:01 +0200715 if (rl->count[sync] + 1 <= q->nr_requests) {
716 if (waitqueue_active(&rl->wait[sync]))
717 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Jens Axboe1faa16d2009-04-06 14:48:01 +0200719 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721}
722
723/*
724 * A request has just been released. Account for it, update the full and
725 * congestion status, wake up any waiters. Called under q->queue_lock.
726 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200727static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct request_list *rl = &q->rq;
730
Jens Axboe1faa16d2009-04-06 14:48:01 +0200731 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200732 if (priv)
733 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Jens Axboe1faa16d2009-04-06 14:48:01 +0200735 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jens Axboe1faa16d2009-04-06 14:48:01 +0200737 if (unlikely(rl->starved[sync ^ 1]))
738 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741/*
Nick Piggind6344532005-06-28 20:45:14 -0700742 * Get a free request, queue_lock must be held.
743 * Returns NULL on failure, with queue_lock held.
744 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
Jens Axboe165125e2007-07-24 09:28:11 +0200746static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100747 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 struct request *rq = NULL;
750 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100751 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200752 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100753 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Jens Axboe7749a8d2006-12-13 13:02:26 +0100755 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100756 if (may_queue == ELV_MQUEUE_NO)
757 goto rq_starved;
758
Jens Axboe1faa16d2009-04-06 14:48:01 +0200759 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
760 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200761 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100762 /*
763 * The queue will fill after this allocation, so set
764 * it as full, and mark this process as "batching".
765 * This process will be allowed to complete a batch of
766 * requests, others will be blocked.
767 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200768 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100769 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200770 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100771 } else {
772 if (may_queue != ELV_MQUEUE_MUST
773 && !ioc_batching(q, ioc)) {
774 /*
775 * The queue is full and the allocating
776 * process is not a "batcher", and not
777 * exempted by the IO scheduler
778 */
779 goto out;
780 }
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200783 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Jens Axboe082cf692005-06-28 16:35:11 +0200786 /*
787 * Only allow batching queuers to allocate up to 50% over the defined
788 * limit of requests, otherwise we could have thousands of requests
789 * allocated with any setting of ->nr_requests
790 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200791 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200792 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100793
Jens Axboe1faa16d2009-04-06 14:48:01 +0200794 rl->count[is_sync]++;
795 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200796
Jens Axboe64521d12005-10-28 08:30:39 +0200797 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200798 if (priv)
799 rl->elvpriv++;
800
Jerome Marchand42dad762009-04-22 14:01:49 +0200801 if (blk_queue_io_stat(q))
802 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 spin_unlock_irq(q->queue_lock);
804
Jens Axboe7749a8d2006-12-13 13:02:26 +0100805 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100806 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * Allocation failed presumably due to memory. Undo anything
809 * we might have messed up.
810 *
811 * Allocating task should really be put onto the front of the
812 * wait queue, but this is pretty rare.
813 */
814 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200815 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /*
818 * in the very unlikely event that allocation failed and no
819 * requests for this direction was pending, mark us starved
820 * so that freeing of a request in the other direction will
821 * notice us. another possible fix would be to split the
822 * rq mempool into READ and WRITE
823 */
824rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200825 if (unlikely(rl->count[is_sync] == 0))
826 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto out;
829 }
830
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100831 /*
832 * ioc may be NULL here, and ioc_batching will be false. That's
833 * OK, if the queue is under the request limit then requests need
834 * not count toward the nr_batch_requests limit. There will always
835 * be some limit enforced by BLK_BATCH_TIME.
836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (ioc_batching(q, ioc))
838 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100839
Jens Axboe1faa16d2009-04-06 14:48:01 +0200840 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return rq;
843}
844
845/*
846 * No available requests for this queue, unplug the device and wait for some
847 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700848 *
849 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
Jens Axboe165125e2007-07-24 09:28:11 +0200851static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200852 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200854 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct request *rq;
856
Jens Axboe7749a8d2006-12-13 13:02:26 +0100857 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700858 while (!rq) {
859 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200860 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct request_list *rl = &q->rq;
862
Jens Axboe1faa16d2009-04-06 14:48:01 +0200863 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 TASK_UNINTERRUPTIBLE);
865
Jens Axboe1faa16d2009-04-06 14:48:01 +0200866 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200868 __generic_unplug_device(q);
869 spin_unlock_irq(q->queue_lock);
870 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200872 /*
873 * After sleeping, we become a "batching" process and
874 * will be able to allocate at least one request, and
875 * up to a big batch of them for a small period time.
876 * See ioc_batching, ioc_set_batching
877 */
878 ioc = current_io_context(GFP_NOIO, q->node);
879 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100880
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200881 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200882 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200883
884 rq = get_request(q, rw_flags, bio, GFP_NOIO);
885 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 return rq;
888}
889
Jens Axboe165125e2007-07-24 09:28:11 +0200890struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 struct request *rq;
893
894 BUG_ON(rw != READ && rw != WRITE);
895
Nick Piggind6344532005-06-28 20:45:14 -0700896 spin_lock_irq(q->queue_lock);
897 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200898 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700899 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200900 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700901 if (!rq)
902 spin_unlock_irq(q->queue_lock);
903 }
904 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 return rq;
907}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908EXPORT_SYMBOL(blk_get_request);
909
910/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300911 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700912 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300913 * @bio: The bio describing the memory mappings that will be submitted for IO.
914 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700915 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200916 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300917 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
918 * type commands. Where the struct request needs to be farther initialized by
919 * the caller. It is passed a &struct bio, which describes the memory info of
920 * the I/O transfer.
921 *
922 * The caller of blk_make_request must make sure that bi_io_vec
923 * are set to describe the memory buffers. That bio_data_dir() will return
924 * the needed direction of the request. (And all bio's in the passed bio-chain
925 * are properly set accordingly)
926 *
927 * If called under none-sleepable conditions, mapped bio buffers must not
928 * need bouncing, by calling the appropriate masked or flagged allocator,
929 * suitable for the target device. Otherwise the call to blk_queue_bounce will
930 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200931 *
932 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
933 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
934 * anything but the first bio in the chain. Otherwise you risk waiting for IO
935 * completion of a bio that hasn't been submitted yet, thus resulting in a
936 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
937 * of bio_alloc(), as that avoids the mempool deadlock.
938 * If possible a big IO should be split into smaller parts when allocation
939 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200940 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300941struct request *blk_make_request(struct request_queue *q, struct bio *bio,
942 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200943{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300944 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
945
946 if (unlikely(!rq))
947 return ERR_PTR(-ENOMEM);
948
949 for_each_bio(bio) {
950 struct bio *bounce_bio = bio;
951 int ret;
952
953 blk_queue_bounce(q, &bounce_bio);
954 ret = blk_rq_append_bio(q, rq, bounce_bio);
955 if (unlikely(ret)) {
956 blk_put_request(rq);
957 return ERR_PTR(ret);
958 }
959 }
960
961 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200962}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300963EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200964
965/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 * blk_requeue_request - put a request back on queue
967 * @q: request queue where request should be inserted
968 * @rq: request to be inserted
969 *
970 * Description:
971 * Drivers often keep queueing requests until the hardware cannot accept
972 * more, when that condition happens we need to put the request back
973 * on the queue. Must be called with queue lock held.
974 */
Jens Axboe165125e2007-07-24 09:28:11 +0200975void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700977 blk_delete_timer(rq);
978 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100979 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (blk_rq_tagged(rq))
982 blk_queue_end_tag(q, rq);
983
James Bottomleyba396a62009-05-27 14:17:08 +0200984 BUG_ON(blk_queued_rq(rq));
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 elv_requeue_request(q, rq);
987}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988EXPORT_SYMBOL(blk_requeue_request);
989
990/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200991 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 * @q: request queue where request should be inserted
993 * @rq: request to be inserted
994 * @at_head: insert request at head or tail of queue
995 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 *
997 * Description:
998 * Many block devices need to execute commands asynchronously, so they don't
999 * block the whole kernel from preemption during request execution. This is
1000 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +02001001 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1002 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 *
1004 * We have the option of inserting the head or the tail of the queue.
1005 * Typically we use the tail for new ioctls and so forth. We use the head
1006 * of the queue for things like a QUEUE_FULL message from a device, or a
1007 * host that is unable to accept a particular command.
1008 */
Jens Axboe165125e2007-07-24 09:28:11 +02001009void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05001010 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Tejun Heo 867d1192005-04-24 02:06:05 -05001012 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 unsigned long flags;
1014
1015 /*
1016 * tell I/O scheduler that this isn't a regular read/write (ie it
1017 * must not attempt merges on this) and that it acts as a soft
1018 * barrier
1019 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001020 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 rq->special = data;
1023
1024 spin_lock_irqsave(q->queue_lock, flags);
1025
1026 /*
1027 * If command is tagged, release the tag
1028 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001029 if (blk_rq_tagged(rq))
1030 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001032 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001033 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001034 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 spin_unlock_irqrestore(q->queue_lock, flags);
1036}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037EXPORT_SYMBOL(blk_insert_request);
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * add-request adds a request to the linked list.
1041 * queue lock is held and interrupts disabled, as we muck with the
1042 * request queue list.
1043 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001044static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001046 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /*
1049 * elevator indicated where it wants this request to be
1050 * inserted at elevator_merge time
1051 */
1052 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1053}
Jens Axboe6728cb02008-01-31 13:03:55 +01001054
Tejun Heo074a7ac2008-08-25 19:56:14 +09001055static void part_round_stats_single(int cpu, struct hd_struct *part,
1056 unsigned long now)
1057{
1058 if (now == part->stamp)
1059 return;
1060
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001061 if (part_in_flight(part)) {
Tejun Heo074a7ac2008-08-25 19:56:14 +09001062 __part_stat_add(cpu, part, time_in_queue,
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001063 part_in_flight(part) * (now - part->stamp));
Tejun Heo074a7ac2008-08-25 19:56:14 +09001064 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1065 }
1066 part->stamp = now;
1067}
1068
1069/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001070 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1071 * @cpu: cpu number for stats access
1072 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 *
1074 * The average IO queue length and utilisation statistics are maintained
1075 * by observing the current state of the queue length and the amount of
1076 * time it has been in this state for.
1077 *
1078 * Normally, that accounting is done on IO completion, but that can result
1079 * in more than a second's worth of IO being accounted for within any one
1080 * second, leading to >100% utilisation. To deal with that, we call this
1081 * function to do a round-off before returning the results when reading
1082 * /proc/diskstats. This accounts immediately for all queue usage up to
1083 * the current jiffies and restarts the counters again.
1084 */
Tejun Heoc9959052008-08-25 19:47:21 +09001085void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001086{
1087 unsigned long now = jiffies;
1088
Tejun Heo074a7ac2008-08-25 19:56:14 +09001089 if (part->partno)
1090 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1091 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001092}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001093EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095/*
1096 * queue lock must be held
1097 */
Jens Axboe165125e2007-07-24 09:28:11 +02001098void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (unlikely(!q))
1101 return;
1102 if (unlikely(--req->ref_count))
1103 return;
1104
Tejun Heo8922e162005-10-20 16:23:44 +02001105 elv_completed_request(q, req);
1106
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001107 /* this is a bio leak */
1108 WARN_ON(req->bio != NULL);
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * Request may not have originated from ll_rw_blk. if not,
1112 * it didn't come out of our reserved rq pools
1113 */
Jens Axboe49171e52006-08-10 08:59:11 +02001114 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001115 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001116 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001119 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001122 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001125EXPORT_SYMBOL_GPL(__blk_put_request);
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127void blk_put_request(struct request *req)
1128{
Tejun Heo8922e162005-10-20 16:23:44 +02001129 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001130 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001132 spin_lock_irqsave(q->queue_lock, flags);
1133 __blk_put_request(q, req);
1134 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136EXPORT_SYMBOL(blk_put_request);
1137
Jens Axboe86db1e22008-01-29 14:53:40 +01001138void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001139{
Jens Axboec7c22e42008-09-13 20:26:01 +02001140 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001141 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001142
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001143 req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1144 if (bio->bi_rw & REQ_RAHEAD)
Tejun Heoa82afdf2009-07-03 17:48:16 +09001145 req->cmd_flags |= REQ_FAILFAST_MASK;
Jens Axboeb31dc662006-06-13 08:26:10 +02001146
Tejun Heo52d9e672006-01-06 09:49:58 +01001147 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001148 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001149 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001150 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001151}
1152
Jens Axboe644b2d92009-04-06 14:48:06 +02001153/*
1154 * Only disabling plugging for non-rotational devices if it does tagging
1155 * as well, otherwise we do need the proper merging
1156 */
1157static inline bool queue_should_plug(struct request_queue *q)
1158{
Jens Axboe79da06442010-02-23 08:40:43 +01001159 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
Jens Axboe644b2d92009-04-06 14:48:06 +02001160}
1161
Jens Axboe165125e2007-07-24 09:28:11 +02001162static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Nick Piggin450991b2005-06-28 20:45:13 -07001164 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001165 int el_ret;
1166 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001167 const unsigned short prio = bio_prio(bio);
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001168 const bool sync = (bio->bi_rw & REQ_SYNC);
1169 const bool unplug = (bio->bi_rw & REQ_UNPLUG);
Tejun Heo80a761f2009-07-03 17:48:17 +09001170 const unsigned int ff = bio->bi_rw & REQ_FAILFAST_MASK;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001171 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001173 if ((bio->bi_rw & REQ_HARDBARRIER) &&
NeilBrowndb64f682009-06-30 09:35:44 +02001174 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1175 bio_endio(bio, -EOPNOTSUPP);
1176 return 0;
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /*
1179 * low level driver can indicate that it wants pages above a
1180 * certain limit bounced to low memory (ie for highmem, or even
1181 * ISA dma in theory)
1182 */
1183 blk_queue_bounce(q, &bio);
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 spin_lock_irq(q->queue_lock);
1186
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001187 if (unlikely((bio->bi_rw & REQ_HARDBARRIER)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 goto get_rq;
1189
1190 el_ret = elv_merge(q, &req, bio);
1191 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001192 case ELEVATOR_BACK_MERGE:
1193 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Jens Axboe6728cb02008-01-31 13:03:55 +01001195 if (!ll_back_merge_fn(q, req, bio))
1196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001198 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001199
Tejun Heo80a761f2009-07-03 17:48:17 +09001200 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1201 blk_rq_set_mixed_merge(req);
1202
Jens Axboe6728cb02008-01-31 13:03:55 +01001203 req->biotail->bi_next = bio;
1204 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001205 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001206 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001207 if (!blk_rq_cpu_valid(req))
1208 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001209 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001210 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001211 if (!attempt_back_merge(q, req))
1212 elv_merged_request(q, req, el_ret);
1213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jens Axboe6728cb02008-01-31 13:03:55 +01001215 case ELEVATOR_FRONT_MERGE:
1216 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Jens Axboe6728cb02008-01-31 13:03:55 +01001218 if (!ll_front_merge_fn(q, req, bio))
1219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001221 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001222
Tejun Heo80a761f2009-07-03 17:48:17 +09001223 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff) {
1224 blk_rq_set_mixed_merge(req);
1225 req->cmd_flags &= ~REQ_FAILFAST_MASK;
1226 req->cmd_flags |= ff;
1227 }
1228
Jens Axboe6728cb02008-01-31 13:03:55 +01001229 bio->bi_next = req->bio;
1230 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Jens Axboe6728cb02008-01-31 13:03:55 +01001232 /*
1233 * may not be valid. if the low level driver said
1234 * it didn't need a bounce buffer then it better
1235 * not touch req->buffer either...
1236 */
1237 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001238 req->__sector = bio->bi_sector;
1239 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001240 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001241 if (!blk_rq_cpu_valid(req))
1242 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001243 drive_stat_acct(req, 0);
Divyesh Shah812d4022010-04-08 21:14:23 -07001244 elv_bio_merged(q, req, bio);
Jens Axboe6728cb02008-01-31 13:03:55 +01001245 if (!attempt_front_merge(q, req))
1246 elv_merged_request(q, req, el_ret);
1247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Jens Axboe6728cb02008-01-31 13:03:55 +01001249 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1250 default:
1251 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001255 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001256 * This sync check and mask will be re-done in init_request_from_bio(),
1257 * but we need to set it earlier to expose the sync flag to the
1258 * rq allocator and io schedulers.
1259 */
1260 rw_flags = bio_data_dir(bio);
1261 if (sync)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001262 rw_flags |= REQ_SYNC;
Jens Axboe7749a8d2006-12-13 13:02:26 +01001263
1264 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001265 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001266 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001267 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001268 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001269
Nick Piggin450991b2005-06-28 20:45:13 -07001270 /*
1271 * After dropping the lock and possibly sleeping here, our request
1272 * may now be mergeable after it had proven unmergeable (above).
1273 * We don't worry about that case for efficiency. It won't happen
1274 * often, and the elevators are able to handle it.
1275 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001276 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Nick Piggin450991b2005-06-28 20:45:13 -07001278 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001279 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1280 bio_flagged(bio, BIO_CPU_AFFINE))
1281 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001282 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001283 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 add_request(q, req);
1285out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001286 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 spin_unlock_irq(q->queue_lock);
1289 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292/*
1293 * If bio->bi_dev is a partition, remap the location
1294 */
1295static inline void blk_partition_remap(struct bio *bio)
1296{
1297 struct block_device *bdev = bio->bi_bdev;
1298
Jens Axboebf2de6f2007-09-27 13:01:25 +02001299 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 bio->bi_sector += p->start_sect;
1303 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001304
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001305 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001306 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001307 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311static void handle_bad_sector(struct bio *bio)
1312{
1313 char b[BDEVNAME_SIZE];
1314
1315 printk(KERN_INFO "attempt to access beyond end of device\n");
1316 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1317 bdevname(bio->bi_bdev, b),
1318 bio->bi_rw,
1319 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1320 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1321
1322 set_bit(BIO_EOF, &bio->bi_flags);
1323}
1324
Akinobu Mitac17bb492006-12-08 02:39:46 -08001325#ifdef CONFIG_FAIL_MAKE_REQUEST
1326
1327static DECLARE_FAULT_ATTR(fail_make_request);
1328
1329static int __init setup_fail_make_request(char *str)
1330{
1331 return setup_fault_attr(&fail_make_request, str);
1332}
1333__setup("fail_make_request=", setup_fail_make_request);
1334
1335static int should_fail_request(struct bio *bio)
1336{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001337 struct hd_struct *part = bio->bi_bdev->bd_part;
1338
1339 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001340 return should_fail(&fail_make_request, bio->bi_size);
1341
1342 return 0;
1343}
1344
1345static int __init fail_make_request_debugfs(void)
1346{
1347 return init_fault_attr_dentries(&fail_make_request,
1348 "fail_make_request");
1349}
1350
1351late_initcall(fail_make_request_debugfs);
1352
1353#else /* CONFIG_FAIL_MAKE_REQUEST */
1354
1355static inline int should_fail_request(struct bio *bio)
1356{
1357 return 0;
1358}
1359
1360#endif /* CONFIG_FAIL_MAKE_REQUEST */
1361
Jens Axboec07e2b42007-07-18 13:27:58 +02001362/*
1363 * Check whether this bio extends beyond the end of the device.
1364 */
1365static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1366{
1367 sector_t maxsector;
1368
1369 if (!nr_sectors)
1370 return 0;
1371
1372 /* Test device or partition size, when known. */
1373 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1374 if (maxsector) {
1375 sector_t sector = bio->bi_sector;
1376
1377 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1378 /*
1379 * This may well happen - the kernel calls bread()
1380 * without checking the size of the device, e.g., when
1381 * mounting a device.
1382 */
1383 handle_bad_sector(bio);
1384 return 1;
1385 }
1386 }
1387
1388 return 0;
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001392 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * @bio: The bio describing the location in memory and on the device.
1394 *
1395 * generic_make_request() is used to make I/O requests of block
1396 * devices. It is passed a &struct bio, which describes the I/O that needs
1397 * to be done.
1398 *
1399 * generic_make_request() does not return any status. The
1400 * success/failure status of the request, along with notification of
1401 * completion, is delivered asynchronously through the bio->bi_end_io
1402 * function described (one day) else where.
1403 *
1404 * The caller of generic_make_request must make sure that bi_io_vec
1405 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1406 * set to describe the device address, and the
1407 * bi_end_io and optionally bi_private are set to describe how
1408 * completion notification should be signaled.
1409 *
1410 * generic_make_request and the drivers it calls may use bi_next if this
1411 * bio happens to be merged with someone else, and may change bi_dev and
1412 * bi_sector for remaps as it sees fit. So the values of these fields
1413 * should NOT be depended on after the call to generic_make_request.
1414 */
Neil Brownd89d8792007-05-01 09:53:42 +02001415static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Jens Axboe165125e2007-07-24 09:28:11 +02001417 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001418 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001420 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001421 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Jens Axboec07e2b42007-07-18 13:27:58 +02001425 if (bio_check_eod(bio, nr_sectors))
1426 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 /*
1429 * Resolve the mapping until finished. (drivers are
1430 * still free to implement/resolve their own stacking
1431 * by explicitly returning 0)
1432 *
1433 * NOTE: we don't repeat the blk_size check for each new device.
1434 * Stacking drivers are expected to know what they are doing.
1435 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001436 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001437 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 do {
1439 char b[BDEVNAME_SIZE];
1440
1441 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001442 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 printk(KERN_ERR
1444 "generic_make_request: Trying to access "
1445 "nonexistent block-device %s (%Lu)\n",
1446 bdevname(bio->bi_bdev, b),
1447 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001448 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001451 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
Christoph Hellwig67efc922009-09-30 13:54:20 +02001452 nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001453 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001454 bdevname(bio->bi_bdev, b),
1455 bio_sectors(bio),
1456 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto end_io;
1458 }
1459
Nick Pigginfde6ad22005-06-23 00:08:53 -07001460 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto end_io;
1462
Akinobu Mitac17bb492006-12-08 02:39:46 -08001463 if (should_fail_request(bio))
1464 goto end_io;
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /*
1467 * If this device has partitions, remap block n
1468 * of partition p to block n+start(p) of the disk.
1469 */
1470 blk_partition_remap(bio);
1471
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001472 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1473 goto end_io;
1474
NeilBrown5ddfe962006-10-30 22:07:21 -08001475 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001476 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001477
NeilBrown5ddfe962006-10-30 22:07:21 -08001478 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001479 old_dev = bio->bi_bdev->bd_dev;
1480
Jens Axboec07e2b42007-07-18 13:27:58 +02001481 if (bio_check_eod(bio, nr_sectors))
1482 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001483
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001484 if ((bio->bi_rw & REQ_DISCARD) && !blk_queue_discard(q)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001485 err = -EOPNOTSUPP;
1486 goto end_io;
1487 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001488
Minchan Kim01edede2009-09-08 21:56:38 +02001489 trace_block_bio_queue(q, bio);
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 ret = q->make_request_fn(q, bio);
1492 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001493
1494 return;
1495
1496end_io:
1497 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
Neil Brownd89d8792007-05-01 09:53:42 +02001500/*
1501 * We only want one ->make_request_fn to be active at a time,
1502 * else stack usage with stacked devices could be a problem.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001503 * So use current->bio_list to keep a list of requests
Neil Brownd89d8792007-05-01 09:53:42 +02001504 * submited by a make_request_fn function.
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001505 * current->bio_list is also used as a flag to say if
Neil Brownd89d8792007-05-01 09:53:42 +02001506 * generic_make_request is currently active in this task or not.
1507 * If it is NULL, then no make_request is active. If it is non-NULL,
1508 * then a make_request is active, and new requests should be added
1509 * at the tail
1510 */
1511void generic_make_request(struct bio *bio)
1512{
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001513 struct bio_list bio_list_on_stack;
1514
1515 if (current->bio_list) {
Neil Brownd89d8792007-05-01 09:53:42 +02001516 /* make_request is active */
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001517 bio_list_add(current->bio_list, bio);
Neil Brownd89d8792007-05-01 09:53:42 +02001518 return;
1519 }
1520 /* following loop may be a bit non-obvious, and so deserves some
1521 * explanation.
1522 * Before entering the loop, bio->bi_next is NULL (as all callers
1523 * ensure that) so we have a list with a single bio.
1524 * We pretend that we have just taken it off a longer list, so
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001525 * we assign bio_list to a pointer to the bio_list_on_stack,
1526 * thus initialising the bio_list of new bios to be
Neil Brownd89d8792007-05-01 09:53:42 +02001527 * added. __generic_make_request may indeed add some more bios
1528 * through a recursive call to generic_make_request. If it
1529 * did, we find a non-NULL value in bio_list and re-enter the loop
1530 * from the top. In this case we really did just take the bio
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001531 * of the top of the list (no pretending) and so remove it from
1532 * bio_list, and call into __generic_make_request again.
Neil Brownd89d8792007-05-01 09:53:42 +02001533 *
1534 * The loop was structured like this to make only one call to
1535 * __generic_make_request (which is important as it is large and
1536 * inlined) and to keep the structure simple.
1537 */
1538 BUG_ON(bio->bi_next);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001539 bio_list_init(&bio_list_on_stack);
1540 current->bio_list = &bio_list_on_stack;
Neil Brownd89d8792007-05-01 09:53:42 +02001541 do {
Neil Brownd89d8792007-05-01 09:53:42 +02001542 __generic_make_request(bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001543 bio = bio_list_pop(current->bio_list);
Neil Brownd89d8792007-05-01 09:53:42 +02001544 } while (bio);
Akinobu Mitabddd87c2010-02-23 08:55:42 +01001545 current->bio_list = NULL; /* deactivate */
Neil Brownd89d8792007-05-01 09:53:42 +02001546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547EXPORT_SYMBOL(generic_make_request);
1548
1549/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001550 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1552 * @bio: The &struct bio which describes the I/O
1553 *
1554 * submit_bio() is very similar in purpose to generic_make_request(), and
1555 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001556 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 *
1558 */
1559void submit_bio(int rw, struct bio *bio)
1560{
1561 int count = bio_sectors(bio);
1562
Jens Axboe22e2c502005-06-27 10:55:12 +02001563 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Jens Axboebf2de6f2007-09-27 13:01:25 +02001565 /*
1566 * If it's a regular read/write or a barrier with data attached,
1567 * go through the normal accounting stuff before submission.
1568 */
Tao Ma1b999732010-06-24 07:43:57 +08001569 if (bio_has_data(bio) && !(rw & (1 << BIO_RW_DISCARD))) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001570 if (rw & WRITE) {
1571 count_vm_events(PGPGOUT, count);
1572 } else {
1573 task_io_account_read(bio->bi_size);
1574 count_vm_events(PGPGIN, count);
1575 }
1576
1577 if (unlikely(block_dump)) {
1578 char b[BDEVNAME_SIZE];
1579 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001580 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001581 (rw & WRITE) ? "WRITE" : "READ",
1582 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001583 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
1587 generic_make_request(bio);
1588}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589EXPORT_SYMBOL(submit_bio);
1590
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001591/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001592 * blk_rq_check_limits - Helper function to check a request for the queue limit
1593 * @q: the queue
1594 * @rq: the request being checked
1595 *
1596 * Description:
1597 * @rq may have been made based on weaker limitations of upper-level queues
1598 * in request stacking drivers, and it may violate the limitation of @q.
1599 * Since the block layer and the underlying device driver trust @rq
1600 * after it is inserted to @q, it should be checked against @q before
1601 * the insertion using this generic function.
1602 *
1603 * This function should also be useful for request stacking drivers
1604 * in some cases below, so export this fuction.
1605 * Request stacking drivers like request-based dm may change the queue
1606 * limits while requests are in the queue (e.g. dm's table swapping).
1607 * Such request stacking drivers should check those requests agaist
1608 * the new queue limits again when they dispatch those requests,
1609 * although such checkings are also done against the old queue limits
1610 * when submitting requests.
1611 */
1612int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1613{
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001614 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1615 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001616 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1617 return -EIO;
1618 }
1619
1620 /*
1621 * queue's settings related to segment counting like q->bounce_pfn
1622 * may differ from that of other stacking queues.
1623 * Recalculate it to check the request correctly on this queue's
1624 * limitation.
1625 */
1626 blk_recalc_rq_segments(rq);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001627 if (rq->nr_phys_segments > queue_max_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001628 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1629 return -EIO;
1630 }
1631
1632 return 0;
1633}
1634EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1635
1636/**
1637 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1638 * @q: the queue to submit the request
1639 * @rq: the request being queued
1640 */
1641int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1642{
1643 unsigned long flags;
1644
1645 if (blk_rq_check_limits(q, rq))
1646 return -EIO;
1647
1648#ifdef CONFIG_FAIL_MAKE_REQUEST
1649 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1650 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1651 return -EIO;
1652#endif
1653
1654 spin_lock_irqsave(q->queue_lock, flags);
1655
1656 /*
1657 * Submitting request must be dequeued before calling this function
1658 * because it will be linked to another request_queue
1659 */
1660 BUG_ON(blk_queued_rq(rq));
1661
1662 drive_stat_acct(rq, 1);
1663 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1664
1665 spin_unlock_irqrestore(q->queue_lock, flags);
1666
1667 return 0;
1668}
1669EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1670
Tejun Heo80a761f2009-07-03 17:48:17 +09001671/**
1672 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1673 * @rq: request to examine
1674 *
1675 * Description:
1676 * A request could be merge of IOs which require different failure
1677 * handling. This function determines the number of bytes which
1678 * can be failed from the beginning of the request without
1679 * crossing into area which need to be retried further.
1680 *
1681 * Return:
1682 * The number of bytes to fail.
1683 *
1684 * Context:
1685 * queue_lock must be held.
1686 */
1687unsigned int blk_rq_err_bytes(const struct request *rq)
1688{
1689 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1690 unsigned int bytes = 0;
1691 struct bio *bio;
1692
1693 if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1694 return blk_rq_bytes(rq);
1695
1696 /*
1697 * Currently the only 'mixing' which can happen is between
1698 * different fastfail types. We can safely fail portions
1699 * which have all the failfast bits that the first one has -
1700 * the ones which are at least as eager to fail as the first
1701 * one.
1702 */
1703 for (bio = rq->bio; bio; bio = bio->bi_next) {
1704 if ((bio->bi_rw & ff) != ff)
1705 break;
1706 bytes += bio->bi_size;
1707 }
1708
1709 /* this could lead to infinite loop */
1710 BUG_ON(blk_rq_bytes(rq) && !bytes);
1711 return bytes;
1712}
1713EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1714
Jens Axboebc58ba92009-01-23 10:54:44 +01001715static void blk_account_io_completion(struct request *req, unsigned int bytes)
1716{
Jens Axboec2553b52009-04-24 08:10:11 +02001717 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001718 const int rw = rq_data_dir(req);
1719 struct hd_struct *part;
1720 int cpu;
1721
1722 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001723 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001724 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1725 part_stat_unlock();
1726 }
1727}
1728
1729static void blk_account_io_done(struct request *req)
1730{
Jens Axboebc58ba92009-01-23 10:54:44 +01001731 /*
1732 * Account IO completion. bar_rq isn't accounted as a normal
1733 * IO on queueing nor completion. Accounting the containing
1734 * request is enough.
1735 */
Jens Axboec2553b52009-04-24 08:10:11 +02001736 if (blk_do_io_stat(req) && req != &req->q->bar_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001737 unsigned long duration = jiffies - req->start_time;
1738 const int rw = rq_data_dir(req);
1739 struct hd_struct *part;
1740 int cpu;
1741
1742 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001743 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001744
1745 part_stat_inc(cpu, part, ios[rw]);
1746 part_stat_add(cpu, part, ticks[rw], duration);
1747 part_round_stats(cpu, part);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001748 part_dec_in_flight(part, rw);
Jens Axboebc58ba92009-01-23 10:54:44 +01001749
1750 part_stat_unlock();
1751 }
1752}
1753
Tejun Heo53a08802008-12-03 12:41:26 +01001754/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001755 * blk_peek_request - peek at the top of a request queue
1756 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001757 *
1758 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001759 * Return the request at the top of @q. The returned request
1760 * should be started using blk_start_request() before LLD starts
1761 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001762 *
1763 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001764 * Pointer to the request at the top of @q if available. Null
1765 * otherwise.
1766 *
1767 * Context:
1768 * queue_lock must be held.
1769 */
1770struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001771{
1772 struct request *rq;
1773 int ret;
1774
1775 while ((rq = __elv_next_request(q)) != NULL) {
1776 if (!(rq->cmd_flags & REQ_STARTED)) {
1777 /*
1778 * This is the first time the device driver
1779 * sees this request (possibly after
1780 * requeueing). Notify IO scheduler.
1781 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001782 if (rq->cmd_flags & REQ_SORTED)
Tejun Heo158dbda2009-04-23 11:05:18 +09001783 elv_activate_rq(q, rq);
1784
1785 /*
1786 * just mark as started even if we don't start
1787 * it, a request that has been delayed should
1788 * not be passed by new incoming requests
1789 */
1790 rq->cmd_flags |= REQ_STARTED;
1791 trace_block_rq_issue(q, rq);
1792 }
1793
1794 if (!q->boundary_rq || q->boundary_rq == rq) {
1795 q->end_sector = rq_end_sector(rq);
1796 q->boundary_rq = NULL;
1797 }
1798
1799 if (rq->cmd_flags & REQ_DONTPREP)
1800 break;
1801
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001802 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001803 /*
1804 * make sure space for the drain appears we
1805 * know we can do this because max_hw_segments
1806 * has been adjusted to be one fewer than the
1807 * device can handle
1808 */
1809 rq->nr_phys_segments++;
1810 }
1811
1812 if (!q->prep_rq_fn)
1813 break;
1814
1815 ret = q->prep_rq_fn(q, rq);
1816 if (ret == BLKPREP_OK) {
1817 break;
1818 } else if (ret == BLKPREP_DEFER) {
1819 /*
1820 * the request may have been (partially) prepped.
1821 * we need to keep this request in the front to
1822 * avoid resource deadlock. REQ_STARTED will
1823 * prevent other fs requests from passing this one.
1824 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001825 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001826 !(rq->cmd_flags & REQ_DONTPREP)) {
1827 /*
1828 * remove the space for the drain we added
1829 * so that we don't add it again
1830 */
1831 --rq->nr_phys_segments;
1832 }
1833
1834 rq = NULL;
1835 break;
1836 } else if (ret == BLKPREP_KILL) {
1837 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001838 /*
1839 * Mark this request as started so we don't trigger
1840 * any debug logic in the end I/O path.
1841 */
1842 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001843 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001844 } else {
1845 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1846 break;
1847 }
1848 }
1849
1850 return rq;
1851}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001852EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001853
Tejun Heo9934c8c2009-05-08 11:54:16 +09001854void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001855{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001856 struct request_queue *q = rq->q;
1857
Tejun Heo158dbda2009-04-23 11:05:18 +09001858 BUG_ON(list_empty(&rq->queuelist));
1859 BUG_ON(ELV_ON_HASH(rq));
1860
1861 list_del_init(&rq->queuelist);
1862
1863 /*
1864 * the time frame between a request being removed from the lists
1865 * and to it is freed is accounted as io that is in progress at
1866 * the driver side.
1867 */
Divyesh Shah91952912010-04-01 15:01:41 -07001868 if (blk_account_rq(rq)) {
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001869 q->in_flight[rq_is_sync(rq)]++;
Divyesh Shah91952912010-04-01 15:01:41 -07001870 set_io_start_time_ns(rq);
1871 }
Tejun Heo158dbda2009-04-23 11:05:18 +09001872}
1873
Tejun Heo5efccd12009-04-23 11:05:18 +09001874/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001875 * blk_start_request - start request processing on the driver
1876 * @req: request to dequeue
1877 *
1878 * Description:
1879 * Dequeue @req and start timeout timer on it. This hands off the
1880 * request to the driver.
1881 *
1882 * Block internal functions which don't want to start timer should
1883 * call blk_dequeue_request().
1884 *
1885 * Context:
1886 * queue_lock must be held.
1887 */
1888void blk_start_request(struct request *req)
1889{
1890 blk_dequeue_request(req);
1891
1892 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001893 * We are now handing the request to the hardware, initialize
1894 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001895 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001896 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001897 if (unlikely(blk_bidi_rq(req)))
1898 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1899
Tejun Heo9934c8c2009-05-08 11:54:16 +09001900 blk_add_timer(req);
1901}
1902EXPORT_SYMBOL(blk_start_request);
1903
1904/**
1905 * blk_fetch_request - fetch a request from a request queue
1906 * @q: request queue to fetch a request from
1907 *
1908 * Description:
1909 * Return the request at the top of @q. The request is started on
1910 * return and LLD can start processing it immediately.
1911 *
1912 * Return:
1913 * Pointer to the request at the top of @q if available. Null
1914 * otherwise.
1915 *
1916 * Context:
1917 * queue_lock must be held.
1918 */
1919struct request *blk_fetch_request(struct request_queue *q)
1920{
1921 struct request *rq;
1922
1923 rq = blk_peek_request(q);
1924 if (rq)
1925 blk_start_request(rq);
1926 return rq;
1927}
1928EXPORT_SYMBOL(blk_fetch_request);
1929
1930/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001931 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001932 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001933 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001934 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001935 *
1936 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001937 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1938 * the request structure even if @req doesn't have leftover.
1939 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001940 *
1941 * This special helper function is only for request stacking drivers
1942 * (e.g. request-based dm) so that they can handle partial completion.
1943 * Actual device drivers should use blk_end_request instead.
1944 *
1945 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1946 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001947 *
1948 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001949 * %false - this request doesn't have any more data
1950 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001951 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09001952bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001954 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 struct bio *bio;
1956
Tejun Heo2e60e022009-04-23 11:05:18 +09001957 if (!req->bio)
1958 return false;
1959
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001960 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /*
Tejun Heo6f414692009-04-19 07:00:41 +09001963 * For fs requests, rq is just carrier of independent bio's
1964 * and each partial completion should be handled separately.
1965 * Reset per-request error on each partial completion.
1966 *
1967 * TODO: tj: This is too subtle. It would be better to let
1968 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001970 if (req->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 req->errors = 0;
1972
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001973 if (error && req->cmd_type == REQ_TYPE_FS &&
1974 !(req->cmd_flags & REQ_QUIET)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001975 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09001977 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979
Jens Axboebc58ba92009-01-23 10:54:44 +01001980 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 total_bytes = bio_nbytes = 0;
1983 while ((bio = req->bio) != NULL) {
1984 int nbytes;
1985
1986 if (nr_bytes >= bio->bi_size) {
1987 req->bio = bio->bi_next;
1988 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001989 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 next_idx = 0;
1991 bio_nbytes = 0;
1992 } else {
1993 int idx = bio->bi_idx + next_idx;
1994
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001995 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001997 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001998 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 break;
2000 }
2001
2002 nbytes = bio_iovec_idx(bio, idx)->bv_len;
2003 BIO_BUG_ON(nbytes > bio->bi_size);
2004
2005 /*
2006 * not a complete bvec done
2007 */
2008 if (unlikely(nbytes > nr_bytes)) {
2009 bio_nbytes += nr_bytes;
2010 total_bytes += nr_bytes;
2011 break;
2012 }
2013
2014 /*
2015 * advance to the next vector
2016 */
2017 next_idx++;
2018 bio_nbytes += nbytes;
2019 }
2020
2021 total_bytes += nbytes;
2022 nr_bytes -= nbytes;
2023
Jens Axboe6728cb02008-01-31 13:03:55 +01002024 bio = req->bio;
2025 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 /*
2027 * end more in this run, or just return 'not-done'
2028 */
2029 if (unlikely(nr_bytes <= 0))
2030 break;
2031 }
2032 }
2033
2034 /*
2035 * completely done
2036 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002037 if (!req->bio) {
2038 /*
2039 * Reset counters so that the request stacking driver
2040 * can find how many bytes remain in the request
2041 * later.
2042 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002043 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09002044 return false;
2045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 /*
2048 * if the request wasn't completed, update state
2049 */
2050 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02002051 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 bio->bi_idx += next_idx;
2053 bio_iovec(bio)->bv_offset += nr_bytes;
2054 bio_iovec(bio)->bv_len -= nr_bytes;
2055 }
2056
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002057 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002058 req->buffer = bio_data(req->bio);
2059
2060 /* update sector only for requests with clear definition of sector */
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002061 if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002062 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002063
Tejun Heo80a761f2009-07-03 17:48:17 +09002064 /* mixed attributes always follow the first bio */
2065 if (req->cmd_flags & REQ_MIXED_MERGE) {
2066 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2067 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2068 }
2069
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002070 /*
2071 * If total number of sectors is less than the first segment
2072 * size, something has gone terribly wrong.
2073 */
2074 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2075 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002076 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002077 }
2078
2079 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002081
Tejun Heo2e60e022009-04-23 11:05:18 +09002082 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
Tejun Heo2e60e022009-04-23 11:05:18 +09002084EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Tejun Heo2e60e022009-04-23 11:05:18 +09002086static bool blk_update_bidi_request(struct request *rq, int error,
2087 unsigned int nr_bytes,
2088 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002089{
Tejun Heo2e60e022009-04-23 11:05:18 +09002090 if (blk_update_request(rq, error, nr_bytes))
2091 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002092
Tejun Heo2e60e022009-04-23 11:05:18 +09002093 /* Bidi request must be completed as a whole */
2094 if (unlikely(blk_bidi_rq(rq)) &&
2095 blk_update_request(rq->next_rq, error, bidi_bytes))
2096 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002097
Jens Axboee2e1a142010-06-09 10:42:09 +02002098 if (blk_queue_add_random(rq->q))
2099 add_disk_randomness(rq->rq_disk);
Tejun Heo2e60e022009-04-23 11:05:18 +09002100
2101 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104/*
2105 * queue lock must be held
2106 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002107static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002109 if (blk_rq_tagged(req))
2110 blk_queue_end_tag(req->q, req);
2111
James Bottomleyba396a62009-05-27 14:17:08 +02002112 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Christoph Hellwig33659eb2010-08-07 18:17:56 +02002114 if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
Matthew Garrett31373d02010-04-06 14:25:14 +02002115 laptop_io_completion(&req->q->backing_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Mike Andersone78042e2008-10-30 02:16:20 -07002117 blk_delete_timer(req);
2118
Jens Axboebc58ba92009-01-23 10:54:44 +01002119 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002122 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002123 else {
2124 if (blk_bidi_rq(req))
2125 __blk_put_request(req->next_rq->q, req->next_rq);
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129}
2130
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002131/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002132 * blk_end_bidi_request - Complete a bidi request
2133 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002134 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002135 * @nr_bytes: number of bytes to complete @rq
2136 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002137 *
2138 * Description:
2139 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002140 * Drivers that supports bidi can safely call this member for any
2141 * type of request, bidi or uni. In the later case @bidi_bytes is
2142 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002143 *
2144 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002145 * %false - we are done with this request
2146 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002147 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002148static bool blk_end_bidi_request(struct request *rq, int error,
2149 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002150{
2151 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002152 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002153
Tejun Heo2e60e022009-04-23 11:05:18 +09002154 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2155 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002156
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002157 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002158 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002159 spin_unlock_irqrestore(q->queue_lock, flags);
2160
Tejun Heo2e60e022009-04-23 11:05:18 +09002161 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002162}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002163
2164/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002165 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2166 * @rq: the request to complete
2167 * @error: %0 for success, < %0 for error
2168 * @nr_bytes: number of bytes to complete @rq
2169 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002170 *
2171 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002172 * Identical to blk_end_bidi_request() except that queue lock is
2173 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002174 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002175 * Return:
2176 * %false - we are done with this request
2177 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002178 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002179static bool __blk_end_bidi_request(struct request *rq, int error,
2180 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002181{
Tejun Heo2e60e022009-04-23 11:05:18 +09002182 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2183 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002184
Tejun Heo2e60e022009-04-23 11:05:18 +09002185 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002186
Tejun Heo2e60e022009-04-23 11:05:18 +09002187 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002188}
2189
2190/**
2191 * blk_end_request - Helper function for drivers to complete the request.
2192 * @rq: the request being processed
2193 * @error: %0 for success, < %0 for error
2194 * @nr_bytes: number of bytes to complete
2195 *
2196 * Description:
2197 * Ends I/O on a number of bytes attached to @rq.
2198 * If @rq has leftover, sets it up for the next range of segments.
2199 *
2200 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002201 * %false - we are done with this request
2202 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002203 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002204bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002205{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002206 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002207}
Jens Axboe56ad1742009-07-28 22:11:24 +02002208EXPORT_SYMBOL(blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002209
2210/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002211 * blk_end_request_all - Helper function for drives to finish the request.
2212 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002213 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002214 *
2215 * Description:
2216 * Completely finish @rq.
2217 */
2218void blk_end_request_all(struct request *rq, int error)
2219{
2220 bool pending;
2221 unsigned int bidi_bytes = 0;
2222
2223 if (unlikely(blk_bidi_rq(rq)))
2224 bidi_bytes = blk_rq_bytes(rq->next_rq);
2225
2226 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2227 BUG_ON(pending);
2228}
Jens Axboe56ad1742009-07-28 22:11:24 +02002229EXPORT_SYMBOL(blk_end_request_all);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002230
2231/**
2232 * blk_end_request_cur - Helper function to finish the current request chunk.
2233 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002234 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002235 *
2236 * Description:
2237 * Complete the current consecutively mapped chunk from @rq.
2238 *
2239 * Return:
2240 * %false - we are done with this request
2241 * %true - still buffers pending for this request
2242 */
2243bool blk_end_request_cur(struct request *rq, int error)
2244{
2245 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2246}
Jens Axboe56ad1742009-07-28 22:11:24 +02002247EXPORT_SYMBOL(blk_end_request_cur);
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002248
2249/**
Tejun Heo80a761f2009-07-03 17:48:17 +09002250 * blk_end_request_err - Finish a request till the next failure boundary.
2251 * @rq: the request to finish till the next failure boundary for
2252 * @error: must be negative errno
2253 *
2254 * Description:
2255 * Complete @rq till the next failure boundary.
2256 *
2257 * Return:
2258 * %false - we are done with this request
2259 * %true - still buffers pending for this request
2260 */
2261bool blk_end_request_err(struct request *rq, int error)
2262{
2263 WARN_ON(error >= 0);
2264 return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2265}
2266EXPORT_SYMBOL_GPL(blk_end_request_err);
2267
2268/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002269 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002270 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002271 * @error: %0 for success, < %0 for error
2272 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002273 *
2274 * Description:
2275 * Must be called with queue lock held unlike blk_end_request().
2276 *
2277 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002278 * %false - we are done with this request
2279 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002280 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002281bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002282{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002283 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002284}
Jens Axboe56ad1742009-07-28 22:11:24 +02002285EXPORT_SYMBOL(__blk_end_request);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002286
2287/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002288 * __blk_end_request_all - Helper function for drives to finish the request.
2289 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002290 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002291 *
2292 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002293 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002294 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002295void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002296{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002297 bool pending;
2298 unsigned int bidi_bytes = 0;
2299
2300 if (unlikely(blk_bidi_rq(rq)))
2301 bidi_bytes = blk_rq_bytes(rq->next_rq);
2302
2303 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2304 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002305}
Jens Axboe56ad1742009-07-28 22:11:24 +02002306EXPORT_SYMBOL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002307
2308/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002309 * __blk_end_request_cur - Helper function to finish the current request chunk.
2310 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002311 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002312 *
2313 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002314 * Complete the current consecutively mapped chunk from @rq. Must
2315 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002316 *
2317 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002318 * %false - we are done with this request
2319 * %true - still buffers pending for this request
2320 */
2321bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002322{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002323 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002324}
Jens Axboe56ad1742009-07-28 22:11:24 +02002325EXPORT_SYMBOL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002326
Tejun Heo80a761f2009-07-03 17:48:17 +09002327/**
2328 * __blk_end_request_err - Finish a request till the next failure boundary.
2329 * @rq: the request to finish till the next failure boundary for
2330 * @error: must be negative errno
2331 *
2332 * Description:
2333 * Complete @rq till the next failure boundary. Must be called
2334 * with queue lock held.
2335 *
2336 * Return:
2337 * %false - we are done with this request
2338 * %true - still buffers pending for this request
2339 */
2340bool __blk_end_request_err(struct request *rq, int error)
2341{
2342 WARN_ON(error >= 0);
2343 return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2344}
2345EXPORT_SYMBOL_GPL(__blk_end_request_err);
2346
Jens Axboe86db1e22008-01-29 14:53:40 +01002347void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2348 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Tejun Heoa82afdf2009-07-03 17:48:16 +09002350 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02002351 rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
David Woodhousefb2dce82008-08-05 18:01:53 +01002353 if (bio_has_data(bio)) {
2354 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002355 rq->buffer = bio_data(bio);
2356 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002357 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
NeilBrown66846572007-08-16 13:31:28 +02002360 if (bio->bi_bdev)
2361 rq->rq_disk = bio->bi_bdev->bd_disk;
2362}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Ilya Loginov2d4dc892009-11-26 09:16:19 +01002364#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2365/**
2366 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2367 * @rq: the request to be flushed
2368 *
2369 * Description:
2370 * Flush all pages in @rq.
2371 */
2372void rq_flush_dcache_pages(struct request *rq)
2373{
2374 struct req_iterator iter;
2375 struct bio_vec *bvec;
2376
2377 rq_for_each_segment(bvec, rq, iter)
2378 flush_dcache_page(bvec->bv_page);
2379}
2380EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2381#endif
2382
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002383/**
2384 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2385 * @q : the queue of the device being checked
2386 *
2387 * Description:
2388 * Check if underlying low-level drivers of a device are busy.
2389 * If the drivers want to export their busy state, they must set own
2390 * exporting function using blk_queue_lld_busy() first.
2391 *
2392 * Basically, this function is used only by request stacking drivers
2393 * to stop dispatching requests to underlying devices when underlying
2394 * devices are busy. This behavior helps more I/O merging on the queue
2395 * of the request stacking driver and prevents I/O throughput regression
2396 * on burst I/O load.
2397 *
2398 * Return:
2399 * 0 - Not busy (The request stacking driver should dispatch request)
2400 * 1 - Busy (The request stacking driver should stop dispatching request)
2401 */
2402int blk_lld_busy(struct request_queue *q)
2403{
2404 if (q->lld_busy_fn)
2405 return q->lld_busy_fn(q);
2406
2407 return 0;
2408}
2409EXPORT_SYMBOL_GPL(blk_lld_busy);
2410
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002411/**
2412 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2413 * @rq: the clone request to be cleaned up
2414 *
2415 * Description:
2416 * Free all bios in @rq for a cloned request.
2417 */
2418void blk_rq_unprep_clone(struct request *rq)
2419{
2420 struct bio *bio;
2421
2422 while ((bio = rq->bio) != NULL) {
2423 rq->bio = bio->bi_next;
2424
2425 bio_put(bio);
2426 }
2427}
2428EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2429
2430/*
2431 * Copy attributes of the original request to the clone request.
2432 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2433 */
2434static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2435{
2436 dst->cpu = src->cpu;
2437 dst->cmd_flags = (rq_data_dir(src) | REQ_NOMERGE);
2438 dst->cmd_type = src->cmd_type;
2439 dst->__sector = blk_rq_pos(src);
2440 dst->__data_len = blk_rq_bytes(src);
2441 dst->nr_phys_segments = src->nr_phys_segments;
2442 dst->ioprio = src->ioprio;
2443 dst->extra_len = src->extra_len;
2444}
2445
2446/**
2447 * blk_rq_prep_clone - Helper function to setup clone request
2448 * @rq: the request to be setup
2449 * @rq_src: original request to be cloned
2450 * @bs: bio_set that bios for clone are allocated from
2451 * @gfp_mask: memory allocation mask for bio
2452 * @bio_ctr: setup function to be called for each clone bio.
2453 * Returns %0 for success, non %0 for failure.
2454 * @data: private data to be passed to @bio_ctr
2455 *
2456 * Description:
2457 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2458 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2459 * are not copied, and copying such parts is the caller's responsibility.
2460 * Also, pages which the original bios are pointing to are not copied
2461 * and the cloned bios just point same pages.
2462 * So cloned bios must be completed before original bios, which means
2463 * the caller must complete @rq before @rq_src.
2464 */
2465int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2466 struct bio_set *bs, gfp_t gfp_mask,
2467 int (*bio_ctr)(struct bio *, struct bio *, void *),
2468 void *data)
2469{
2470 struct bio *bio, *bio_src;
2471
2472 if (!bs)
2473 bs = fs_bio_set;
2474
2475 blk_rq_init(NULL, rq);
2476
2477 __rq_for_each_bio(bio_src, rq_src) {
2478 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2479 if (!bio)
2480 goto free_and_out;
2481
2482 __bio_clone(bio, bio_src);
2483
2484 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002485 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002486 goto free_and_out;
2487
2488 if (bio_ctr && bio_ctr(bio, bio_src, data))
2489 goto free_and_out;
2490
2491 if (rq->bio) {
2492 rq->biotail->bi_next = bio;
2493 rq->biotail = bio;
2494 } else
2495 rq->bio = rq->biotail = bio;
2496 }
2497
2498 __blk_rq_prep_clone(rq, rq_src);
2499
2500 return 0;
2501
2502free_and_out:
2503 if (bio)
2504 bio_free(bio, bs);
2505 blk_rq_unprep_clone(rq);
2506
2507 return -ENOMEM;
2508}
2509EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2510
Jens Axboe18887ad2008-07-28 13:08:45 +02002511int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
2513 return queue_work(kblockd_workqueue, work);
2514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515EXPORT_SYMBOL(kblockd_schedule_work);
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517int __init blk_dev_init(void)
2518{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002519 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2520 sizeof(((struct request *)0)->cmd_flags));
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 kblockd_workqueue = create_workqueue("kblockd");
2523 if (!kblockd_workqueue)
2524 panic("Failed to create kblockd\n");
2525
2526 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002527 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Jens Axboe8324aa92008-01-29 14:51:59 +01002529 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002530 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return 0;
2533}