blob: 859879d0a0bfb07433e3fab3801beb5ee3a7350b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Jens Axboe2056a782006-03-23 20:00:26 +010029#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080030#include <linux/fault-inject.h>
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +010031#include <trace/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jens Axboe8324aa92008-01-29 14:51:59 +010033#include "blk.h"
34
Ingo Molnar0bfc2452008-11-26 11:59:56 +010035DEFINE_TRACE(block_plug);
36DEFINE_TRACE(block_unplug_io);
37DEFINE_TRACE(block_unplug_timer);
38DEFINE_TRACE(block_getrq);
39DEFINE_TRACE(block_sleeprq);
40DEFINE_TRACE(block_rq_requeue);
41DEFINE_TRACE(block_bio_backmerge);
42DEFINE_TRACE(block_bio_frontmerge);
43DEFINE_TRACE(block_bio_queue);
44DEFINE_TRACE(block_rq_complete);
45DEFINE_TRACE(block_remap); /* Also used in drivers/md/dm.c */
46EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
47
Jens Axboe165125e2007-07-24 09:28:11 +020048static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * For the allocated request tables
52 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010053static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 * For queue allocation
57 */
Jens Axboe6728cb02008-01-31 13:03:55 +010058struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * Controlling structure to kblockd
62 */
Jens Axboeff856ba2006-01-09 16:02:34 +010063static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jens Axboe26b82562008-01-29 13:54:41 +010065static void drive_stat_acct(struct request *rq, int new_io)
66{
Jens Axboebc58ba92009-01-23 10:54:44 +010067 struct gendisk *disk = rq->rq_disk;
Jens Axboe28f13702008-05-07 10:15:46 +020068 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010069 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090070 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010071
Jens Axboefb8ec182009-02-02 08:42:32 +010072 if (!blk_fs_request(rq) || !disk || !blk_do_io_stat(disk->queue))
Jens Axboe26b82562008-01-29 13:54:41 +010073 return;
74
Tejun Heo074a7ac2008-08-25 19:56:14 +090075 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020076 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090077
Jens Axboe28f13702008-05-07 10:15:46 +020078 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090079 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020080 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090081 part_round_stats(cpu, part);
82 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010083 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020084
Tejun Heo074a7ac2008-08-25 19:56:14 +090085 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010086}
87
Jens Axboe8324aa92008-01-29 14:51:59 +010088void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 int nr;
91
92 nr = q->nr_requests - (q->nr_requests / 8) + 1;
93 if (nr > q->nr_requests)
94 nr = q->nr_requests;
95 q->nr_congestion_on = nr;
96
97 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
98 if (nr < 1)
99 nr = 1;
100 q->nr_congestion_off = nr;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/**
104 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
105 * @bdev: device
106 *
107 * Locates the passed device's request queue and returns the address of its
108 * backing_dev_info
109 *
110 * Will return NULL if the request queue cannot be located.
111 */
112struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
113{
114 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200115 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (q)
118 ret = &q->backing_dev_info;
119 return ret;
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121EXPORT_SYMBOL(blk_get_backing_dev_info);
122
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200123void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200125 memset(rq, 0, sizeof(*rq));
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700128 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200129 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100130 rq->q = q;
131 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200132 INIT_HLIST_NODE(&rq->hash);
133 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200134 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800135 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100136 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100137 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200139EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
NeilBrown5bb23a62007-09-27 12:46:13 +0200141static void req_bio_endio(struct request *rq, struct bio *bio,
142 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100143{
Jens Axboe165125e2007-07-24 09:28:11 +0200144 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100145
NeilBrown5bb23a62007-09-27 12:46:13 +0200146 if (&q->bar_rq != rq) {
147 if (error)
148 clear_bit(BIO_UPTODATE, &bio->bi_flags);
149 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
150 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100151
NeilBrown5bb23a62007-09-27 12:46:13 +0200152 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100153 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700154 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200155 nbytes = bio->bi_size;
156 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100157
Keith Mannthey08bafc02008-11-25 10:24:35 +0100158 if (unlikely(rq->cmd_flags & REQ_QUIET))
159 set_bit(BIO_QUIET, &bio->bi_flags);
160
NeilBrown5bb23a62007-09-27 12:46:13 +0200161 bio->bi_size -= nbytes;
162 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200163
164 if (bio_integrity(bio))
165 bio_integrity_advance(bio, nbytes);
166
NeilBrown5bb23a62007-09-27 12:46:13 +0200167 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200168 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200169 } else {
170
171 /*
172 * Okay, this is the barrier request in progress, just
173 * record the error;
174 */
175 if (error && !q->orderr)
176 q->orderr = error;
177 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180void blk_dump_rq_flags(struct request *rq, char *msg)
181{
182 int bit;
183
Jens Axboe6728cb02008-01-31 13:03:55 +0100184 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200185 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
186 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Jens Axboe6728cb02008-01-31 13:03:55 +0100188 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
189 (unsigned long long)rq->sector,
190 rq->nr_sectors,
191 rq->current_nr_sectors);
192 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
193 rq->bio, rq->biotail,
194 rq->buffer, rq->data,
195 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Jens Axboe4aff5e22006-08-10 08:44:47 +0200197 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100198 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200199 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 printk("%02x ", rq->cmd[bit]);
201 printk("\n");
202 }
203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204EXPORT_SYMBOL(blk_dump_rq_flags);
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*
207 * "plug" the device if there are no outstanding requests: this will
208 * force the transfer to start only after we have put all the requests
209 * on the list.
210 *
211 * This is called with interrupts off and no requests on the queue and
212 * with the queue lock held.
213 */
Jens Axboe165125e2007-07-24 09:28:11 +0200214void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 WARN_ON(!irqs_disabled());
217
218 /*
219 * don't plug a stopped queue, it must be paired with blk_start_queue()
220 * which will restart the queueing
221 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200222 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return;
224
Jens Axboee48ec692008-07-03 13:18:54 +0200225 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100227 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230EXPORT_SYMBOL(blk_plug_device);
231
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200232/**
233 * blk_plug_device_unlocked - plug a device without queue lock held
234 * @q: The &struct request_queue to plug
235 *
236 * Description:
237 * Like @blk_plug_device(), but grabs the queue lock and disables
238 * interrupts.
239 **/
240void blk_plug_device_unlocked(struct request_queue *q)
241{
242 unsigned long flags;
243
244 spin_lock_irqsave(q->queue_lock, flags);
245 blk_plug_device(q);
246 spin_unlock_irqrestore(q->queue_lock, flags);
247}
248EXPORT_SYMBOL(blk_plug_device_unlocked);
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
251 * remove the queue from the plugged list, if present. called with
252 * queue lock held and interrupts disabled.
253 */
Jens Axboe165125e2007-07-24 09:28:11 +0200254int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 WARN_ON(!irqs_disabled());
257
Jens Axboee48ec692008-07-03 13:18:54 +0200258 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260
261 del_timer(&q->unplug_timer);
262 return 1;
263}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264EXPORT_SYMBOL(blk_remove_plug);
265
266/*
267 * remove the plug and let it rip..
268 */
Jens Axboe165125e2007-07-24 09:28:11 +0200269void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200271 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200273 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return;
275
Jens Axboe22e2c502005-06-27 10:55:12 +0200276 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279/**
280 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200281 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *
283 * Description:
284 * Linux uses plugging to build bigger requests queues before letting
285 * the device have at them. If a queue is plugged, the I/O scheduler
286 * is still adding and merging requests on the queue. Once the queue
287 * gets unplugged, the request_fn defined for the queue is invoked and
288 * transfers started.
289 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200290void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200292 if (blk_queue_plugged(q)) {
293 spin_lock_irq(q->queue_lock);
294 __generic_unplug_device(q);
295 spin_unlock_irq(q->queue_lock);
296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298EXPORT_SYMBOL(generic_unplug_device);
299
300static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
301 struct page *page)
302{
Jens Axboe165125e2007-07-24 09:28:11 +0200303 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500305 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Jens Axboe86db1e22008-01-29 14:53:40 +0100308void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Jens Axboe165125e2007-07-24 09:28:11 +0200310 struct request_queue *q =
311 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100313 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 q->unplug_fn(q);
315}
316
Jens Axboe86db1e22008-01-29 14:53:40 +0100317void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Jens Axboe165125e2007-07-24 09:28:11 +0200319 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100321 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200322 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500325void blk_unplug(struct request_queue *q)
326{
327 /*
328 * devices don't necessarily have an ->unplug_fn defined
329 */
330 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100331 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500332 q->unplug_fn(q);
333 }
334}
335EXPORT_SYMBOL(blk_unplug);
336
Jens Axboec7c22e42008-09-13 20:26:01 +0200337static void blk_invoke_request_fn(struct request_queue *q)
338{
Jens Axboe80a4b582008-10-14 09:51:06 +0200339 if (unlikely(blk_queue_stopped(q)))
340 return;
341
Jens Axboec7c22e42008-09-13 20:26:01 +0200342 /*
343 * one level of recursion is ok and is much faster than kicking
344 * the unplug handling
345 */
346 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
347 q->request_fn(q);
348 queue_flag_clear(QUEUE_FLAG_REENTER, q);
349 } else {
350 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
351 kblockd_schedule_work(q, &q->unplug_work);
352 }
353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/**
356 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200357 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 *
359 * Description:
360 * blk_start_queue() will clear the stop flag on the queue, and call
361 * the request_fn for the queue if it was in a stopped state when
362 * entered. Also see blk_stop_queue(). Queue lock must be held.
363 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200364void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200366 WARN_ON(!irqs_disabled());
367
Nick Piggin75ad23b2008-04-29 14:48:33 +0200368 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200369 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371EXPORT_SYMBOL(blk_start_queue);
372
373/**
374 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200375 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *
377 * Description:
378 * The Linux block layer assumes that a block driver will consume all
379 * entries on the request queue when the request_fn strategy is called.
380 * Often this will not happen, because of hardware limitations (queue
381 * depth settings). If a device driver gets a 'queue full' response,
382 * or if it simply chooses not to queue more I/O at one point, it can
383 * call this function to prevent the request_fn from being called until
384 * the driver has signalled it's ready to go again. This happens by calling
385 * blk_start_queue() to restart queue operations. Queue lock must be held.
386 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200387void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200390 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392EXPORT_SYMBOL(blk_stop_queue);
393
394/**
395 * blk_sync_queue - cancel any pending callbacks on a queue
396 * @q: the queue
397 *
398 * Description:
399 * The block layer may perform asynchronous callback activity
400 * on a queue, such as calling the unplug function after a timeout.
401 * A block device may call blk_sync_queue to ensure that any
402 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200403 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * that its ->make_request_fn will not re-add plugging prior to calling
405 * this function.
406 *
407 */
408void blk_sync_queue(struct request_queue *q)
409{
410 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100411 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100412 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414EXPORT_SYMBOL(blk_sync_queue);
415
416/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200417 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200419 *
420 * Description:
421 * See @blk_run_queue. This variant must be called with the queue lock
422 * held and interrupts disabled.
423 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200425void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200428
429 /*
430 * Only recurse once to avoid overrunning the stack, let the unplug
431 * handling reinvoke the handler shortly if we already got there.
432 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200433 if (!elv_queue_empty(q))
434 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200435}
436EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200437
Nick Piggin75ad23b2008-04-29 14:48:33 +0200438/**
439 * blk_run_queue - run a single device queue
440 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200441 *
442 * Description:
443 * Invoke request handling on this queue, if it has pending work to do.
444 * May be used to restart queueing when a request has completed. Also
445 * See @blk_start_queueing.
446 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200447 */
448void blk_run_queue(struct request_queue *q)
449{
450 unsigned long flags;
451
452 spin_lock_irqsave(q->queue_lock, flags);
453 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 spin_unlock_irqrestore(q->queue_lock, flags);
455}
456EXPORT_SYMBOL(blk_run_queue);
457
Jens Axboe165125e2007-07-24 09:28:11 +0200458void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500459{
460 kobject_put(&q->kobj);
461}
Al Viro483f4af2006-03-18 18:34:37 -0500462
Jens Axboe6728cb02008-01-31 13:03:55 +0100463void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500464{
Jens Axboee3335de92008-09-18 09:22:54 -0700465 /*
466 * We know we have process context here, so we can be a little
467 * cautious and ensure that pending block actions on this device
468 * are done before moving on. Going into this function, we should
469 * not have processes doing IO to this device.
470 */
471 blk_sync_queue(q);
472
Al Viro483f4af2006-03-18 18:34:37 -0500473 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200474 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500475 mutex_unlock(&q->sysfs_lock);
476
477 if (q->elevator)
478 elevator_exit(q->elevator);
479
480 blk_put_queue(q);
481}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482EXPORT_SYMBOL(blk_cleanup_queue);
483
Jens Axboe165125e2007-07-24 09:28:11 +0200484static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct request_list *rl = &q->rq;
487
488 rl->count[READ] = rl->count[WRITE] = 0;
489 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200490 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 init_waitqueue_head(&rl->wait[READ]);
492 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Christoph Lameter19460892005-06-23 00:08:19 -0700494 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
495 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 if (!rl->rq_pool)
498 return -ENOMEM;
499
500 return 0;
501}
502
Jens Axboe165125e2007-07-24 09:28:11 +0200503struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Christoph Lameter19460892005-06-23 00:08:19 -0700505 return blk_alloc_queue_node(gfp_mask, -1);
506}
507EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jens Axboe165125e2007-07-24 09:28:11 +0200509struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700510{
Jens Axboe165125e2007-07-24 09:28:11 +0200511 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700512 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700513
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700515 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!q)
517 return NULL;
518
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700519 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
520 q->backing_dev_info.unplug_io_data = q;
521 err = bdi_init(&q->backing_dev_info);
522 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100523 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700524 return NULL;
525 }
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700528 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
529 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200530 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500531
Jens Axboe8324aa92008-01-29 14:51:59 +0100532 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Al Viro483f4af2006-03-18 18:34:37 -0500534 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700535 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return q;
538}
Christoph Lameter19460892005-06-23 00:08:19 -0700539EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541/**
542 * blk_init_queue - prepare a request queue for use with a block device
543 * @rfn: The function to be called to process requests that have been
544 * placed on the queue.
545 * @lock: Request queue spin lock
546 *
547 * Description:
548 * If a block device wishes to use the standard request handling procedures,
549 * which sorts requests and coalesces adjacent requests, then it must
550 * call blk_init_queue(). The function @rfn will be called when there
551 * are requests on the queue that need to be processed. If the device
552 * supports plugging, then @rfn may not be called immediately when requests
553 * are available on the queue, but may be called at some time later instead.
554 * Plugged queues are generally unplugged when a buffer belonging to one
555 * of the requests on the queue is needed, or due to memory pressure.
556 *
557 * @rfn is not required, or even expected, to remove all requests off the
558 * queue, but only as many as it can handle at a time. If it does leave
559 * requests on the queue, it is responsible for arranging that the requests
560 * get dealt with eventually.
561 *
562 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200563 * request queue; this lock will be taken also from interrupt context, so irq
564 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200566 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * it didn't succeed.
568 *
569 * Note:
570 * blk_init_queue() must be paired with a blk_cleanup_queue() call
571 * when the block device is deactivated (such as at module unload).
572 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700573
Jens Axboe165125e2007-07-24 09:28:11 +0200574struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Christoph Lameter19460892005-06-23 00:08:19 -0700576 return blk_init_queue_node(rfn, lock, -1);
577}
578EXPORT_SYMBOL(blk_init_queue);
579
Jens Axboe165125e2007-07-24 09:28:11 +0200580struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700581blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
582{
Jens Axboe165125e2007-07-24 09:28:11 +0200583 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (!q)
586 return NULL;
587
Christoph Lameter19460892005-06-23 00:08:19 -0700588 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500589 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100590 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500591 return NULL;
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
152587d2005-04-12 16:22:06 -0500594 /*
595 * if caller didn't supply a lock, they get per-queue locking with
596 * our embedded lock
597 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700598 if (!lock)
152587d2005-04-12 16:22:06 -0500599 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 q->prep_rq_fn = NULL;
603 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100604 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 q->queue_lock = lock;
606
Milan Broz0e435ac2008-12-03 12:55:08 +0100607 blk_queue_segment_boundary(q, BLK_SEG_BOUNDARY_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 blk_queue_make_request(q, __make_request);
610 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
611
612 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
613 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
614
Alan Stern44ec9542007-02-20 11:01:57 -0500615 q->sg_reserved_size = INT_MAX;
616
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900617 blk_set_cmd_filter_defaults(&q->cmd_filter);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * all done
621 */
622 if (!elevator_init(q, NULL)) {
623 blk_queue_congestion_threshold(q);
624 return q;
625 }
626
Al Viro8669aaf2006-03-18 13:50:00 -0500627 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return NULL;
629}
Christoph Lameter19460892005-06-23 00:08:19 -0700630EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Jens Axboe165125e2007-07-24 09:28:11 +0200632int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700634 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500635 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637 }
638
639 return 1;
640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Jens Axboe165125e2007-07-24 09:28:11 +0200642static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200644 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200645 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 mempool_free(rq, q->rq.rq_pool);
647}
648
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200649static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200650blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
653
654 if (!rq)
655 return NULL;
656
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200657 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200658
Jens Axboe49171e52006-08-10 08:59:11 +0200659 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Tejun Heocb98fc82005-10-28 08:29:39 +0200661 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200662 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200663 mempool_free(rq, q->rq.rq_pool);
664 return NULL;
665 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200666 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Tejun Heocb98fc82005-10-28 08:29:39 +0200669 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672/*
673 * ioc_batching returns true if the ioc is a valid batching request and
674 * should be given priority access to a request.
675 */
Jens Axboe165125e2007-07-24 09:28:11 +0200676static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 if (!ioc)
679 return 0;
680
681 /*
682 * Make sure the process is able to allocate at least 1 request
683 * even if the batch times out, otherwise we could theoretically
684 * lose wakeups.
685 */
686 return ioc->nr_batch_requests == q->nr_batching ||
687 (ioc->nr_batch_requests > 0
688 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
689}
690
691/*
692 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
693 * will cause the process to be a "batcher" on all queues in the system. This
694 * is the behaviour we want though - once it gets a wakeup it should be given
695 * a nice run.
696 */
Jens Axboe165125e2007-07-24 09:28:11 +0200697static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 if (!ioc || ioc_batching(q, ioc))
700 return;
701
702 ioc->nr_batch_requests = q->nr_batching;
703 ioc->last_waited = jiffies;
704}
705
Jens Axboe165125e2007-07-24 09:28:11 +0200706static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct request_list *rl = &q->rq;
709
710 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700711 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (waitqueue_active(&rl->wait[rw]))
715 wake_up(&rl->wait[rw]);
716
717 blk_clear_queue_full(q, rw);
718 }
719}
720
721/*
722 * A request has just been released. Account for it, update the full and
723 * congestion status, wake up any waiters. Called under q->queue_lock.
724 */
Jens Axboe165125e2007-07-24 09:28:11 +0200725static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct request_list *rl = &q->rq;
728
729 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200730 if (priv)
731 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 __freed_request(q, rw);
734
735 if (unlikely(rl->starved[rw ^ 1]))
736 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
740/*
Nick Piggind6344532005-06-28 20:45:14 -0700741 * Get a free request, queue_lock must be held.
742 * Returns NULL on failure, with queue_lock held.
743 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 */
Jens Axboe165125e2007-07-24 09:28:11 +0200745static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100746 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 struct request *rq = NULL;
749 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100750 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100751 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100752 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Jens Axboe7749a8d2006-12-13 13:02:26 +0100754 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100755 if (may_queue == ELV_MQUEUE_NO)
756 goto rq_starved;
757
758 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
759 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200760 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100761 /*
762 * The queue will fill after this allocation, so set
763 * it as full, and mark this process as "batching".
764 * This process will be allowed to complete a batch of
765 * requests, others will be blocked.
766 */
767 if (!blk_queue_full(q, rw)) {
768 ioc_set_batching(q, ioc);
769 blk_set_queue_full(q, rw);
770 } else {
771 if (may_queue != ELV_MQUEUE_MUST
772 && !ioc_batching(q, ioc)) {
773 /*
774 * The queue is full and the allocating
775 * process is not a "batcher", and not
776 * exempted by the IO scheduler
777 */
778 goto out;
779 }
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700782 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
Jens Axboe082cf692005-06-28 16:35:11 +0200785 /*
786 * Only allow batching queuers to allocate up to 50% over the defined
787 * limit of requests, otherwise we could have thousands of requests
788 * allocated with any setting of ->nr_requests
789 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100790 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200791 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 rl->count[rw]++;
794 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200795
Jens Axboe64521d12005-10-28 08:30:39 +0200796 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200797 if (priv)
798 rl->elvpriv++;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 spin_unlock_irq(q->queue_lock);
801
Jens Axboe7749a8d2006-12-13 13:02:26 +0100802 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100803 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /*
805 * Allocation failed presumably due to memory. Undo anything
806 * we might have messed up.
807 *
808 * Allocating task should really be put onto the front of the
809 * wait queue, but this is pretty rare.
810 */
811 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200812 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /*
815 * in the very unlikely event that allocation failed and no
816 * requests for this direction was pending, mark us starved
817 * so that freeing of a request in the other direction will
818 * notice us. another possible fix would be to split the
819 * rq mempool into READ and WRITE
820 */
821rq_starved:
822 if (unlikely(rl->count[rw] == 0))
823 rl->starved[rw] = 1;
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto out;
826 }
827
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100828 /*
829 * ioc may be NULL here, and ioc_batching will be false. That's
830 * OK, if the queue is under the request limit then requests need
831 * not count toward the nr_batch_requests limit. There will always
832 * be some limit enforced by BLK_BATCH_TIME.
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (ioc_batching(q, ioc))
835 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100836
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100837 trace_block_getrq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return rq;
840}
841
842/*
843 * No available requests for this queue, unplug the device and wait for some
844 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700845 *
846 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
Jens Axboe165125e2007-07-24 09:28:11 +0200848static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200849 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100851 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 struct request *rq;
853
Jens Axboe7749a8d2006-12-13 13:02:26 +0100854 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700855 while (!rq) {
856 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200857 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 struct request_list *rl = &q->rq;
859
860 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
861 TASK_UNINTERRUPTIBLE);
862
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100863 trace_block_sleeprq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200865 __generic_unplug_device(q);
866 spin_unlock_irq(q->queue_lock);
867 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200869 /*
870 * After sleeping, we become a "batching" process and
871 * will be able to allocate at least one request, and
872 * up to a big batch of them for a small period time.
873 * See ioc_batching, ioc_set_batching
874 */
875 ioc = current_io_context(GFP_NOIO, q->node);
876 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100877
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200878 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 finish_wait(&rl->wait[rw], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200880
881 rq = get_request(q, rw_flags, bio, GFP_NOIO);
882 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 return rq;
885}
886
Jens Axboe165125e2007-07-24 09:28:11 +0200887struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct request *rq;
890
891 BUG_ON(rw != READ && rw != WRITE);
892
Nick Piggind6344532005-06-28 20:45:14 -0700893 spin_lock_irq(q->queue_lock);
894 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200895 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700896 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200897 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700898 if (!rq)
899 spin_unlock_irq(q->queue_lock);
900 }
901 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 return rq;
904}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905EXPORT_SYMBOL(blk_get_request);
906
907/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200908 * blk_start_queueing - initiate dispatch of requests to device
909 * @q: request queue to kick into gear
910 *
911 * This is basically a helper to remove the need to know whether a queue
912 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200913 * for this queue. Should be used to start queueing on a device outside
914 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200915 *
916 * The queue lock must be held with interrupts disabled.
917 */
Jens Axboe165125e2007-07-24 09:28:11 +0200918void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200919{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200920 if (!blk_queue_plugged(q)) {
921 if (unlikely(blk_queue_stopped(q)))
922 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200923 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200924 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200925 __generic_unplug_device(q);
926}
927EXPORT_SYMBOL(blk_start_queueing);
928
929/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 * blk_requeue_request - put a request back on queue
931 * @q: request queue where request should be inserted
932 * @rq: request to be inserted
933 *
934 * Description:
935 * Drivers often keep queueing requests until the hardware cannot accept
936 * more, when that condition happens we need to put the request back
937 * on the queue. Must be called with queue lock held.
938 */
Jens Axboe165125e2007-07-24 09:28:11 +0200939void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700941 blk_delete_timer(rq);
942 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100943 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (blk_rq_tagged(rq))
946 blk_queue_end_tag(q, rq);
947
948 elv_requeue_request(q, rq);
949}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950EXPORT_SYMBOL(blk_requeue_request);
951
952/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200953 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * @q: request queue where request should be inserted
955 * @rq: request to be inserted
956 * @at_head: insert request at head or tail of queue
957 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 *
959 * Description:
960 * Many block devices need to execute commands asynchronously, so they don't
961 * block the whole kernel from preemption during request execution. This is
962 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200963 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
964 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 *
966 * We have the option of inserting the head or the tail of the queue.
967 * Typically we use the tail for new ioctls and so forth. We use the head
968 * of the queue for things like a QUEUE_FULL message from a device, or a
969 * host that is unable to accept a particular command.
970 */
Jens Axboe165125e2007-07-24 09:28:11 +0200971void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500972 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Tejun Heo 867d1192005-04-24 02:06:05 -0500974 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 unsigned long flags;
976
977 /*
978 * tell I/O scheduler that this isn't a regular read/write (ie it
979 * must not attempt merges on this) and that it acts as a soft
980 * barrier
981 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200982 rq->cmd_type = REQ_TYPE_SPECIAL;
983 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 rq->special = data;
986
987 spin_lock_irqsave(q->queue_lock, flags);
988
989 /*
990 * If command is tagged, release the tag
991 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500992 if (blk_rq_tagged(rq))
993 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200995 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500996 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200997 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 spin_unlock_irqrestore(q->queue_lock, flags);
999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000EXPORT_SYMBOL(blk_insert_request);
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
1003 * add-request adds a request to the linked list.
1004 * queue lock is held and interrupts disabled, as we muck with the
1005 * request queue list.
1006 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001007static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001009 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /*
1012 * elevator indicated where it wants this request to be
1013 * inserted at elevator_merge time
1014 */
1015 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1016}
Jens Axboe6728cb02008-01-31 13:03:55 +01001017
Tejun Heo074a7ac2008-08-25 19:56:14 +09001018static void part_round_stats_single(int cpu, struct hd_struct *part,
1019 unsigned long now)
1020{
1021 if (now == part->stamp)
1022 return;
1023
1024 if (part->in_flight) {
1025 __part_stat_add(cpu, part, time_in_queue,
1026 part->in_flight * (now - part->stamp));
1027 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1028 }
1029 part->stamp = now;
1030}
1031
1032/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001033 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1034 * @cpu: cpu number for stats access
1035 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 *
1037 * The average IO queue length and utilisation statistics are maintained
1038 * by observing the current state of the queue length and the amount of
1039 * time it has been in this state for.
1040 *
1041 * Normally, that accounting is done on IO completion, but that can result
1042 * in more than a second's worth of IO being accounted for within any one
1043 * second, leading to >100% utilisation. To deal with that, we call this
1044 * function to do a round-off before returning the results when reading
1045 * /proc/diskstats. This accounts immediately for all queue usage up to
1046 * the current jiffies and restarts the counters again.
1047 */
Tejun Heoc9959052008-08-25 19:47:21 +09001048void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001049{
1050 unsigned long now = jiffies;
1051
Tejun Heo074a7ac2008-08-25 19:56:14 +09001052 if (part->partno)
1053 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1054 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001055}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001056EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/*
1059 * queue lock must be held
1060 */
Jens Axboe165125e2007-07-24 09:28:11 +02001061void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (unlikely(!q))
1064 return;
1065 if (unlikely(--req->ref_count))
1066 return;
1067
Tejun Heo8922e162005-10-20 16:23:44 +02001068 elv_completed_request(q, req);
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /*
1071 * Request may not have originated from ll_rw_blk. if not,
1072 * it didn't come out of our reserved rq pools
1073 */
Jens Axboe49171e52006-08-10 08:59:11 +02001074 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001076 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001079 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001082 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001085EXPORT_SYMBOL_GPL(__blk_put_request);
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087void blk_put_request(struct request *req)
1088{
Tejun Heo8922e162005-10-20 16:23:44 +02001089 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001090 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001092 spin_lock_irqsave(q->queue_lock, flags);
1093 __blk_put_request(q, req);
1094 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096EXPORT_SYMBOL(blk_put_request);
1097
Jens Axboe86db1e22008-01-29 14:53:40 +01001098void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001099{
Jens Axboec7c22e42008-09-13 20:26:01 +02001100 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001101 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001102
1103 /*
1104 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1105 */
Mike Christie6000a362008-08-19 18:45:30 -05001106 if (bio_rw_ahead(bio))
1107 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1108 REQ_FAILFAST_DRIVER);
1109 if (bio_failfast_dev(bio))
1110 req->cmd_flags |= REQ_FAILFAST_DEV;
1111 if (bio_failfast_transport(bio))
1112 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1113 if (bio_failfast_driver(bio))
1114 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001115
1116 /*
1117 * REQ_BARRIER implies no merging, but lets make it explicit
1118 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001119 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001120 req->cmd_flags |= REQ_DISCARD;
1121 if (bio_barrier(bio))
1122 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001123 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001124 } else if (unlikely(bio_barrier(bio)))
1125 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001126
Jens Axboeb31dc662006-06-13 08:26:10 +02001127 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001128 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe213d9412009-01-06 09:16:05 +01001129 if (bio_unplug(bio))
1130 req->cmd_flags |= REQ_UNPLUG;
Jens Axboe5404bc72006-08-10 09:01:02 +02001131 if (bio_rw_meta(bio))
1132 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001133
Tejun Heo52d9e672006-01-06 09:49:58 +01001134 req->errors = 0;
1135 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001136 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001137 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001138 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001139}
1140
Jens Axboe165125e2007-07-24 09:28:11 +02001141static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Nick Piggin450991b2005-06-28 20:45:13 -07001143 struct request *req;
Tejun Heoa7384672008-11-28 13:32:03 +09001144 int el_ret, nr_sectors;
Jens Axboe51da90f2006-07-18 04:14:45 +02001145 const unsigned short prio = bio_prio(bio);
1146 const int sync = bio_sync(bio);
Jens Axboe213d9412009-01-06 09:16:05 +01001147 const int unplug = bio_unplug(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001148 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 /*
1153 * low level driver can indicate that it wants pages above a
1154 * certain limit bounced to low memory (ie for highmem, or even
1155 * ISA dma in theory)
1156 */
1157 blk_queue_bounce(q, &bio);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 spin_lock_irq(q->queue_lock);
1160
Tejun Heoa7384672008-11-28 13:32:03 +09001161 if (unlikely(bio_barrier(bio)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 goto get_rq;
1163
1164 el_ret = elv_merge(q, &req, bio);
1165 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001166 case ELEVATOR_BACK_MERGE:
1167 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Jens Axboe6728cb02008-01-31 13:03:55 +01001169 if (!ll_back_merge_fn(q, req, bio))
1170 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001172 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001173
Jens Axboe6728cb02008-01-31 13:03:55 +01001174 req->biotail->bi_next = bio;
1175 req->biotail = bio;
1176 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1177 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001178 if (!blk_rq_cpu_valid(req))
1179 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001180 drive_stat_acct(req, 0);
1181 if (!attempt_back_merge(q, req))
1182 elv_merged_request(q, req, el_ret);
1183 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Jens Axboe6728cb02008-01-31 13:03:55 +01001185 case ELEVATOR_FRONT_MERGE:
1186 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Jens Axboe6728cb02008-01-31 13:03:55 +01001188 if (!ll_front_merge_fn(q, req, bio))
1189 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001191 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001192
Jens Axboe6728cb02008-01-31 13:03:55 +01001193 bio->bi_next = req->bio;
1194 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jens Axboe6728cb02008-01-31 13:03:55 +01001196 /*
1197 * may not be valid. if the low level driver said
1198 * it didn't need a bounce buffer then it better
1199 * not touch req->buffer either...
1200 */
1201 req->buffer = bio_data(bio);
1202 req->current_nr_sectors = bio_cur_sectors(bio);
1203 req->hard_cur_sectors = req->current_nr_sectors;
1204 req->sector = req->hard_sector = bio->bi_sector;
1205 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1206 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);
1210 if (!attempt_front_merge(q, req))
1211 elv_merged_request(q, req, el_ret);
1212 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jens Axboe6728cb02008-01-31 13:03:55 +01001214 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1215 default:
1216 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001220 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001221 * This sync check and mask will be re-done in init_request_from_bio(),
1222 * but we need to set it earlier to expose the sync flag to the
1223 * rq allocator and io schedulers.
1224 */
1225 rw_flags = bio_data_dir(bio);
1226 if (sync)
1227 rw_flags |= REQ_RW_SYNC;
1228
1229 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001230 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001231 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001232 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001233 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001234
Nick Piggin450991b2005-06-28 20:45:13 -07001235 /*
1236 * After dropping the lock and possibly sleeping here, our request
1237 * may now be mergeable after it had proven unmergeable (above).
1238 * We don't worry about that case for efficiency. It won't happen
1239 * often, and the elevators are able to handle it.
1240 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001241 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Nick Piggin450991b2005-06-28 20:45:13 -07001243 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001244 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1245 bio_flagged(bio, BIO_CPU_AFFINE))
1246 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboea31a9732008-10-17 13:58:29 +02001247 if (!blk_queue_nonrot(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001248 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 add_request(q, req);
1250out:
Jens Axboe213d9412009-01-06 09:16:05 +01001251 if (unplug || blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 spin_unlock_irq(q->queue_lock);
1254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257/*
1258 * If bio->bi_dev is a partition, remap the location
1259 */
1260static inline void blk_partition_remap(struct bio *bio)
1261{
1262 struct block_device *bdev = bio->bi_bdev;
1263
Jens Axboebf2de6f2007-09-27 13:01:25 +02001264 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 bio->bi_sector += p->start_sect;
1268 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001269
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001270 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001271 bdev->bd_dev, bio->bi_sector,
1272 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274}
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static void handle_bad_sector(struct bio *bio)
1277{
1278 char b[BDEVNAME_SIZE];
1279
1280 printk(KERN_INFO "attempt to access beyond end of device\n");
1281 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1282 bdevname(bio->bi_bdev, b),
1283 bio->bi_rw,
1284 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1285 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1286
1287 set_bit(BIO_EOF, &bio->bi_flags);
1288}
1289
Akinobu Mitac17bb492006-12-08 02:39:46 -08001290#ifdef CONFIG_FAIL_MAKE_REQUEST
1291
1292static DECLARE_FAULT_ATTR(fail_make_request);
1293
1294static int __init setup_fail_make_request(char *str)
1295{
1296 return setup_fault_attr(&fail_make_request, str);
1297}
1298__setup("fail_make_request=", setup_fail_make_request);
1299
1300static int should_fail_request(struct bio *bio)
1301{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001302 struct hd_struct *part = bio->bi_bdev->bd_part;
1303
1304 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001305 return should_fail(&fail_make_request, bio->bi_size);
1306
1307 return 0;
1308}
1309
1310static int __init fail_make_request_debugfs(void)
1311{
1312 return init_fault_attr_dentries(&fail_make_request,
1313 "fail_make_request");
1314}
1315
1316late_initcall(fail_make_request_debugfs);
1317
1318#else /* CONFIG_FAIL_MAKE_REQUEST */
1319
1320static inline int should_fail_request(struct bio *bio)
1321{
1322 return 0;
1323}
1324
1325#endif /* CONFIG_FAIL_MAKE_REQUEST */
1326
Jens Axboec07e2b42007-07-18 13:27:58 +02001327/*
1328 * Check whether this bio extends beyond the end of the device.
1329 */
1330static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1331{
1332 sector_t maxsector;
1333
1334 if (!nr_sectors)
1335 return 0;
1336
1337 /* Test device or partition size, when known. */
1338 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1339 if (maxsector) {
1340 sector_t sector = bio->bi_sector;
1341
1342 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1343 /*
1344 * This may well happen - the kernel calls bread()
1345 * without checking the size of the device, e.g., when
1346 * mounting a device.
1347 */
1348 handle_bad_sector(bio);
1349 return 1;
1350 }
1351 }
1352
1353 return 0;
1354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001357 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * @bio: The bio describing the location in memory and on the device.
1359 *
1360 * generic_make_request() is used to make I/O requests of block
1361 * devices. It is passed a &struct bio, which describes the I/O that needs
1362 * to be done.
1363 *
1364 * generic_make_request() does not return any status. The
1365 * success/failure status of the request, along with notification of
1366 * completion, is delivered asynchronously through the bio->bi_end_io
1367 * function described (one day) else where.
1368 *
1369 * The caller of generic_make_request must make sure that bi_io_vec
1370 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1371 * set to describe the device address, and the
1372 * bi_end_io and optionally bi_private are set to describe how
1373 * completion notification should be signaled.
1374 *
1375 * generic_make_request and the drivers it calls may use bi_next if this
1376 * bio happens to be merged with someone else, and may change bi_dev and
1377 * bi_sector for remaps as it sees fit. So the values of these fields
1378 * should NOT be depended on after the call to generic_make_request.
1379 */
Neil Brownd89d8792007-05-01 09:53:42 +02001380static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Jens Axboe165125e2007-07-24 09:28:11 +02001382 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001383 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001385 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001386 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Jens Axboec07e2b42007-07-18 13:27:58 +02001390 if (bio_check_eod(bio, nr_sectors))
1391 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /*
1394 * Resolve the mapping until finished. (drivers are
1395 * still free to implement/resolve their own stacking
1396 * by explicitly returning 0)
1397 *
1398 * NOTE: we don't repeat the blk_size check for each new device.
1399 * Stacking drivers are expected to know what they are doing.
1400 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001401 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001402 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 do {
1404 char b[BDEVNAME_SIZE];
1405
1406 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001407 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 printk(KERN_ERR
1409 "generic_make_request: Trying to access "
1410 "nonexistent block-device %s (%Lu)\n",
1411 bdevname(bio->bi_bdev, b),
1412 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001413 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
Jens Axboe4fa253f2007-07-18 13:13:10 +02001416 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001417 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 bdevname(bio->bi_bdev, b),
1419 bio_sectors(bio),
1420 q->max_hw_sectors);
1421 goto end_io;
1422 }
1423
Nick Pigginfde6ad22005-06-23 00:08:53 -07001424 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto end_io;
1426
Akinobu Mitac17bb492006-12-08 02:39:46 -08001427 if (should_fail_request(bio))
1428 goto end_io;
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /*
1431 * If this device has partitions, remap block n
1432 * of partition p to block n+start(p) of the disk.
1433 */
1434 blk_partition_remap(bio);
1435
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001436 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1437 goto end_io;
1438
NeilBrown5ddfe962006-10-30 22:07:21 -08001439 if (old_sector != -1)
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001440 trace_block_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001441 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001442
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001443 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001444
NeilBrown5ddfe962006-10-30 22:07:21 -08001445 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001446 old_dev = bio->bi_bdev->bd_dev;
1447
Jens Axboec07e2b42007-07-18 13:27:58 +02001448 if (bio_check_eod(bio, nr_sectors))
1449 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001450
1451 if (bio_discard(bio) && !q->prepare_discard_fn) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001452 err = -EOPNOTSUPP;
1453 goto end_io;
1454 }
Jens Axboecec07072009-01-13 15:28:32 +01001455 if (bio_barrier(bio) && bio_has_data(bio) &&
1456 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1457 err = -EOPNOTSUPP;
1458 goto end_io;
1459 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 ret = q->make_request_fn(q, bio);
1462 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001463
1464 return;
1465
1466end_io:
1467 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Neil Brownd89d8792007-05-01 09:53:42 +02001470/*
1471 * We only want one ->make_request_fn to be active at a time,
1472 * else stack usage with stacked devices could be a problem.
1473 * So use current->bio_{list,tail} to keep a list of requests
1474 * submited by a make_request_fn function.
1475 * current->bio_tail is also used as a flag to say if
1476 * generic_make_request is currently active in this task or not.
1477 * If it is NULL, then no make_request is active. If it is non-NULL,
1478 * then a make_request is active, and new requests should be added
1479 * at the tail
1480 */
1481void generic_make_request(struct bio *bio)
1482{
1483 if (current->bio_tail) {
1484 /* make_request is active */
1485 *(current->bio_tail) = bio;
1486 bio->bi_next = NULL;
1487 current->bio_tail = &bio->bi_next;
1488 return;
1489 }
1490 /* following loop may be a bit non-obvious, and so deserves some
1491 * explanation.
1492 * Before entering the loop, bio->bi_next is NULL (as all callers
1493 * ensure that) so we have a list with a single bio.
1494 * We pretend that we have just taken it off a longer list, so
1495 * we assign bio_list to the next (which is NULL) and bio_tail
1496 * to &bio_list, thus initialising the bio_list of new bios to be
1497 * added. __generic_make_request may indeed add some more bios
1498 * through a recursive call to generic_make_request. If it
1499 * did, we find a non-NULL value in bio_list and re-enter the loop
1500 * from the top. In this case we really did just take the bio
1501 * of the top of the list (no pretending) and so fixup bio_list and
1502 * bio_tail or bi_next, and call into __generic_make_request again.
1503 *
1504 * The loop was structured like this to make only one call to
1505 * __generic_make_request (which is important as it is large and
1506 * inlined) and to keep the structure simple.
1507 */
1508 BUG_ON(bio->bi_next);
1509 do {
1510 current->bio_list = bio->bi_next;
1511 if (bio->bi_next == NULL)
1512 current->bio_tail = &current->bio_list;
1513 else
1514 bio->bi_next = NULL;
1515 __generic_make_request(bio);
1516 bio = current->bio_list;
1517 } while (bio);
1518 current->bio_tail = NULL; /* deactivate */
1519}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520EXPORT_SYMBOL(generic_make_request);
1521
1522/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001523 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1525 * @bio: The &struct bio which describes the I/O
1526 *
1527 * submit_bio() is very similar in purpose to generic_make_request(), and
1528 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001529 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 *
1531 */
1532void submit_bio(int rw, struct bio *bio)
1533{
1534 int count = bio_sectors(bio);
1535
Jens Axboe22e2c502005-06-27 10:55:12 +02001536 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jens Axboebf2de6f2007-09-27 13:01:25 +02001538 /*
1539 * If it's a regular read/write or a barrier with data attached,
1540 * go through the normal accounting stuff before submission.
1541 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001542 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001543 if (rw & WRITE) {
1544 count_vm_events(PGPGOUT, count);
1545 } else {
1546 task_io_account_read(bio->bi_size);
1547 count_vm_events(PGPGIN, count);
1548 }
1549
1550 if (unlikely(block_dump)) {
1551 char b[BDEVNAME_SIZE];
1552 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001553 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001554 (rw & WRITE) ? "WRITE" : "READ",
1555 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001556 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
1560 generic_make_request(bio);
1561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562EXPORT_SYMBOL(submit_bio);
1563
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001564/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001565 * blk_rq_check_limits - Helper function to check a request for the queue limit
1566 * @q: the queue
1567 * @rq: the request being checked
1568 *
1569 * Description:
1570 * @rq may have been made based on weaker limitations of upper-level queues
1571 * in request stacking drivers, and it may violate the limitation of @q.
1572 * Since the block layer and the underlying device driver trust @rq
1573 * after it is inserted to @q, it should be checked against @q before
1574 * the insertion using this generic function.
1575 *
1576 * This function should also be useful for request stacking drivers
1577 * in some cases below, so export this fuction.
1578 * Request stacking drivers like request-based dm may change the queue
1579 * limits while requests are in the queue (e.g. dm's table swapping).
1580 * Such request stacking drivers should check those requests agaist
1581 * the new queue limits again when they dispatch those requests,
1582 * although such checkings are also done against the old queue limits
1583 * when submitting requests.
1584 */
1585int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1586{
1587 if (rq->nr_sectors > q->max_sectors ||
1588 rq->data_len > q->max_hw_sectors << 9) {
1589 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1590 return -EIO;
1591 }
1592
1593 /*
1594 * queue's settings related to segment counting like q->bounce_pfn
1595 * may differ from that of other stacking queues.
1596 * Recalculate it to check the request correctly on this queue's
1597 * limitation.
1598 */
1599 blk_recalc_rq_segments(rq);
1600 if (rq->nr_phys_segments > q->max_phys_segments ||
1601 rq->nr_phys_segments > q->max_hw_segments) {
1602 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1603 return -EIO;
1604 }
1605
1606 return 0;
1607}
1608EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1609
1610/**
1611 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1612 * @q: the queue to submit the request
1613 * @rq: the request being queued
1614 */
1615int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1616{
1617 unsigned long flags;
1618
1619 if (blk_rq_check_limits(q, rq))
1620 return -EIO;
1621
1622#ifdef CONFIG_FAIL_MAKE_REQUEST
1623 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1624 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1625 return -EIO;
1626#endif
1627
1628 spin_lock_irqsave(q->queue_lock, flags);
1629
1630 /*
1631 * Submitting request must be dequeued before calling this function
1632 * because it will be linked to another request_queue
1633 */
1634 BUG_ON(blk_queued_rq(rq));
1635
1636 drive_stat_acct(rq, 1);
1637 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1638
1639 spin_unlock_irqrestore(q->queue_lock, flags);
1640
1641 return 0;
1642}
1643EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1644
1645/**
Tejun Heo53a08802008-12-03 12:41:26 +01001646 * blkdev_dequeue_request - dequeue request and start timeout timer
1647 * @req: request to dequeue
1648 *
1649 * Dequeue @req and start timeout timer on it. This hands off the
1650 * request to the driver.
1651 *
1652 * Block internal functions which don't want to start timer should
1653 * call elv_dequeue_request().
1654 */
1655void blkdev_dequeue_request(struct request *req)
1656{
1657 elv_dequeue_request(req->q, req);
1658
1659 /*
1660 * We are now handing the request to the hardware, add the
1661 * timeout handler.
1662 */
1663 blk_add_timer(req);
1664}
1665EXPORT_SYMBOL(blkdev_dequeue_request);
1666
Jens Axboebc58ba92009-01-23 10:54:44 +01001667static void blk_account_io_completion(struct request *req, unsigned int bytes)
1668{
1669 struct gendisk *disk = req->rq_disk;
1670
Jens Axboefb8ec182009-02-02 08:42:32 +01001671 if (!disk || !blk_do_io_stat(disk->queue))
Jens Axboebc58ba92009-01-23 10:54:44 +01001672 return;
1673
1674 if (blk_fs_request(req)) {
1675 const int rw = rq_data_dir(req);
1676 struct hd_struct *part;
1677 int cpu;
1678
1679 cpu = part_stat_lock();
1680 part = disk_map_sector_rcu(req->rq_disk, req->sector);
1681 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1682 part_stat_unlock();
1683 }
1684}
1685
1686static void blk_account_io_done(struct request *req)
1687{
1688 struct gendisk *disk = req->rq_disk;
1689
Jens Axboefb8ec182009-02-02 08:42:32 +01001690 if (!disk || !blk_do_io_stat(disk->queue))
Jens Axboebc58ba92009-01-23 10:54:44 +01001691 return;
1692
1693 /*
1694 * Account IO completion. bar_rq isn't accounted as a normal
1695 * IO on queueing nor completion. Accounting the containing
1696 * request is enough.
1697 */
1698 if (blk_fs_request(req) && req != &req->q->bar_rq) {
1699 unsigned long duration = jiffies - req->start_time;
1700 const int rw = rq_data_dir(req);
1701 struct hd_struct *part;
1702 int cpu;
1703
1704 cpu = part_stat_lock();
1705 part = disk_map_sector_rcu(disk, req->sector);
1706
1707 part_stat_inc(cpu, part, ios[rw]);
1708 part_stat_add(cpu, part, ticks[rw], duration);
1709 part_round_stats(cpu, part);
1710 part_dec_in_flight(part);
1711
1712 part_stat_unlock();
1713 }
1714}
1715
Tejun Heo53a08802008-12-03 12:41:26 +01001716/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001717 * __end_that_request_first - end I/O on a request
1718 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001719 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001720 * @nr_bytes: number of bytes to complete
1721 *
1722 * Description:
1723 * Ends I/O on a number of bytes attached to @req, and sets it up
1724 * for the next range of segments (if any) in the cluster.
1725 *
1726 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001727 * %0 - we are done with this request, call end_that_request_last()
1728 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001729 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001730static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 int nr_bytes)
1732{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001733 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 struct bio *bio;
1735
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001736 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001739 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 * sense key with us all the way through
1741 */
1742 if (!blk_pc_request(req))
1743 req->errors = 0;
1744
Jens Axboe6728cb02008-01-31 13:03:55 +01001745 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1746 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 req->rq_disk ? req->rq_disk->disk_name : "?",
1748 (unsigned long long)req->sector);
1749 }
1750
Jens Axboebc58ba92009-01-23 10:54:44 +01001751 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 total_bytes = bio_nbytes = 0;
1754 while ((bio = req->bio) != NULL) {
1755 int nbytes;
1756
1757 if (nr_bytes >= bio->bi_size) {
1758 req->bio = bio->bi_next;
1759 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001760 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 next_idx = 0;
1762 bio_nbytes = 0;
1763 } else {
1764 int idx = bio->bi_idx + next_idx;
1765
1766 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1767 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001768 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001769 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 break;
1771 }
1772
1773 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1774 BIO_BUG_ON(nbytes > bio->bi_size);
1775
1776 /*
1777 * not a complete bvec done
1778 */
1779 if (unlikely(nbytes > nr_bytes)) {
1780 bio_nbytes += nr_bytes;
1781 total_bytes += nr_bytes;
1782 break;
1783 }
1784
1785 /*
1786 * advance to the next vector
1787 */
1788 next_idx++;
1789 bio_nbytes += nbytes;
1790 }
1791
1792 total_bytes += nbytes;
1793 nr_bytes -= nbytes;
1794
Jens Axboe6728cb02008-01-31 13:03:55 +01001795 bio = req->bio;
1796 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 /*
1798 * end more in this run, or just return 'not-done'
1799 */
1800 if (unlikely(nr_bytes <= 0))
1801 break;
1802 }
1803 }
1804
1805 /*
1806 * completely done
1807 */
1808 if (!req->bio)
1809 return 0;
1810
1811 /*
1812 * if the request wasn't completed, update state
1813 */
1814 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001815 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 bio->bi_idx += next_idx;
1817 bio_iovec(bio)->bv_offset += nr_bytes;
1818 bio_iovec(bio)->bv_len -= nr_bytes;
1819 }
1820
1821 blk_recalc_rq_sectors(req, total_bytes >> 9);
1822 blk_recalc_rq_segments(req);
1823 return 1;
1824}
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826/*
1827 * queue lock must be held
1828 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001829static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001831 if (blk_rq_tagged(req))
1832 blk_queue_end_tag(req->q, req);
1833
1834 if (blk_queued_rq(req))
Tejun Heo53a08802008-12-03 12:41:26 +01001835 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 if (unlikely(laptop_mode) && blk_fs_request(req))
1838 laptop_io_completion();
1839
Mike Andersone78042e2008-10-30 02:16:20 -07001840 blk_delete_timer(req);
1841
Jens Axboebc58ba92009-01-23 10:54:44 +01001842 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001845 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001846 else {
1847 if (blk_bidi_rq(req))
1848 __blk_put_request(req->next_rq->q, req->next_rq);
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852}
1853
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001854/**
1855 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001856 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001857 **/
1858unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001859{
1860 if (blk_fs_request(rq))
1861 return rq->hard_nr_sectors << 9;
1862
1863 return rq->data_len;
1864}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001865EXPORT_SYMBOL_GPL(blk_rq_bytes);
1866
1867/**
1868 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001869 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001870 **/
1871unsigned int blk_rq_cur_bytes(struct request *rq)
1872{
1873 if (blk_fs_request(rq))
1874 return rq->current_nr_sectors << 9;
1875
1876 if (rq->bio)
1877 return rq->bio->bi_size;
1878
1879 return rq->data_len;
1880}
1881EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001882
1883/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001884 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001885 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001886 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001887 *
1888 * Description:
1889 * Ends I/O on the current segment of a request. If that is the only
1890 * remaining segment, the request is also completed and freed.
1891 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001892 * This is a remnant of how older block drivers handled I/O completions.
1893 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001894 * they have a residual value to account for. For that case this function
1895 * isn't really useful, unless the residual just happens to be the
1896 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001897 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001898 **/
1899void end_request(struct request *req, int uptodate)
1900{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001901 int error = 0;
1902
1903 if (uptodate <= 0)
1904 error = uptodate ? uptodate : -EIO;
1905
1906 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001907}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908EXPORT_SYMBOL(end_request);
1909
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001910static int end_that_request_data(struct request *rq, int error,
1911 unsigned int nr_bytes, unsigned int bidi_bytes)
1912{
1913 if (rq->bio) {
1914 if (__end_that_request_first(rq, error, nr_bytes))
1915 return 1;
1916
1917 /* Bidi request must be completed as a whole */
1918 if (blk_bidi_rq(rq) &&
1919 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1920 return 1;
1921 }
1922
1923 return 0;
1924}
1925
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001926/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001927 * blk_end_io - Generic end_io function to complete a request.
1928 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001929 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001930 * @nr_bytes: number of bytes to complete @rq
1931 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001932 * @drv_callback: function called between completion of bios in the request
1933 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001934 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001935 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001936 *
1937 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001938 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001939 * If @rq has leftover, sets it up for the next range of segments.
1940 *
1941 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001942 * %0 - we are done with this request
1943 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001944 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001945static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1946 unsigned int bidi_bytes,
1947 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001948{
1949 struct request_queue *q = rq->q;
1950 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001951
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001952 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1953 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001954
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001955 /* Special feature for tricky drivers */
1956 if (drv_callback && drv_callback(rq))
1957 return 1;
1958
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001959 add_disk_randomness(rq->rq_disk);
1960
1961 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001962 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001963 spin_unlock_irqrestore(q->queue_lock, flags);
1964
1965 return 0;
1966}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001967
1968/**
1969 * blk_end_request - Helper function for drivers to complete the request.
1970 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001971 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001972 * @nr_bytes: number of bytes to complete
1973 *
1974 * Description:
1975 * Ends I/O on a number of bytes attached to @rq.
1976 * If @rq has leftover, sets it up for the next range of segments.
1977 *
1978 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001979 * %0 - we are done with this request
1980 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001981 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001982int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001983{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001984 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001985}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001986EXPORT_SYMBOL_GPL(blk_end_request);
1987
1988/**
1989 * __blk_end_request - Helper function for drivers to complete the request.
1990 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001991 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001992 * @nr_bytes: number of bytes to complete
1993 *
1994 * Description:
1995 * Must be called with queue lock held unlike blk_end_request().
1996 *
1997 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001998 * %0 - we are done with this request
1999 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002000 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002001int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002002{
Jens Axboe60540162008-08-26 13:34:34 +02002003 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02002004 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002005
2006 add_disk_randomness(rq->rq_disk);
2007
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002008 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002009
2010 return 0;
2011}
2012EXPORT_SYMBOL_GPL(__blk_end_request);
2013
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002014/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002015 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
2016 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002017 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002018 * @nr_bytes: number of bytes to complete @rq
2019 * @bidi_bytes: number of bytes to complete @rq->next_rq
2020 *
2021 * Description:
2022 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2023 *
2024 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002025 * %0 - we are done with this request
2026 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002027 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002028int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2029 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002030{
2031 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2032}
2033EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2034
2035/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002036 * blk_update_request - Special helper function for request stacking drivers
2037 * @rq: the request being processed
2038 * @error: %0 for success, < %0 for error
2039 * @nr_bytes: number of bytes to complete @rq
2040 *
2041 * Description:
2042 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2043 * the request structure even if @rq doesn't have leftover.
2044 * If @rq has leftover, sets it up for the next range of segments.
2045 *
2046 * This special helper function is only for request stacking drivers
2047 * (e.g. request-based dm) so that they can handle partial completion.
2048 * Actual device drivers should use blk_end_request instead.
2049 */
2050void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2051{
2052 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2053 /*
2054 * These members are not updated in end_that_request_data()
2055 * when all bios are completed.
2056 * Update them so that the request stacking driver can find
2057 * how many bytes remain in the request later.
2058 */
2059 rq->nr_sectors = rq->hard_nr_sectors = 0;
2060 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2061 }
2062}
2063EXPORT_SYMBOL_GPL(blk_update_request);
2064
2065/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002066 * blk_end_request_callback - Special helper function for tricky drivers
2067 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002068 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002069 * @nr_bytes: number of bytes to complete
2070 * @drv_callback: function called between completion of bios in the request
2071 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002072 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002073 * completion of the request.
2074 *
2075 * Description:
2076 * Ends I/O on a number of bytes attached to @rq.
2077 * If @rq has leftover, sets it up for the next range of segments.
2078 *
2079 * This special helper function is used only for existing tricky drivers.
2080 * (e.g. cdrom_newpc_intr() of ide-cd)
2081 * This interface will be removed when such drivers are rewritten.
2082 * Don't use this interface in other places anymore.
2083 *
2084 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002085 * %0 - we are done with this request
2086 * %1 - this request is not freed yet.
2087 * this request still has pending buffers or
2088 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002089 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002090int blk_end_request_callback(struct request *rq, int error,
2091 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002092 int (drv_callback)(struct request *))
2093{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002094 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002095}
2096EXPORT_SYMBOL_GPL(blk_end_request_callback);
2097
Jens Axboe86db1e22008-01-29 14:53:40 +01002098void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2099 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
David Woodhoused628eae2008-08-09 16:22:17 +01002101 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2102 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002103 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
David Woodhousefb2dce82008-08-05 18:01:53 +01002105 if (bio_has_data(bio)) {
2106 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002107 rq->buffer = bio_data(bio);
2108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 rq->current_nr_sectors = bio_cur_sectors(bio);
2110 rq->hard_cur_sectors = rq->current_nr_sectors;
2111 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002112 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
NeilBrown66846572007-08-16 13:31:28 +02002116 if (bio->bi_bdev)
2117 rq->rq_disk = bio->bi_bdev->bd_disk;
2118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002120/**
2121 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2122 * @q : the queue of the device being checked
2123 *
2124 * Description:
2125 * Check if underlying low-level drivers of a device are busy.
2126 * If the drivers want to export their busy state, they must set own
2127 * exporting function using blk_queue_lld_busy() first.
2128 *
2129 * Basically, this function is used only by request stacking drivers
2130 * to stop dispatching requests to underlying devices when underlying
2131 * devices are busy. This behavior helps more I/O merging on the queue
2132 * of the request stacking driver and prevents I/O throughput regression
2133 * on burst I/O load.
2134 *
2135 * Return:
2136 * 0 - Not busy (The request stacking driver should dispatch request)
2137 * 1 - Busy (The request stacking driver should stop dispatching request)
2138 */
2139int blk_lld_busy(struct request_queue *q)
2140{
2141 if (q->lld_busy_fn)
2142 return q->lld_busy_fn(q);
2143
2144 return 0;
2145}
2146EXPORT_SYMBOL_GPL(blk_lld_busy);
2147
Jens Axboe18887ad2008-07-28 13:08:45 +02002148int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
2150 return queue_work(kblockd_workqueue, work);
2151}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152EXPORT_SYMBOL(kblockd_schedule_work);
2153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154int __init blk_dev_init(void)
2155{
2156 kblockd_workqueue = create_workqueue("kblockd");
2157 if (!kblockd_workqueue)
2158 panic("Failed to create kblockd\n");
2159
2160 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002161 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Jens Axboe8324aa92008-01-29 14:51:59 +01002163 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002164 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return 0;
2167}
2168