blob: 243d18b4ceb0ba312c9d8427c00cd02a6c3ae88a [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 Axboe28f13702008-05-07 10:15:46 +020067 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010068 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090069 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010070
71 if (!blk_fs_request(rq) || !rq->rq_disk)
72 return;
73
Tejun Heo074a7ac2008-08-25 19:56:14 +090074 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090076
Jens Axboe28f13702008-05-07 10:15:46 +020077 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090078 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020079 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090080 part_round_stats(cpu, part);
81 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010082 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020083
Tejun Heo074a7ac2008-08-25 19:56:14 +090084 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010085}
86
Jens Axboe8324aa92008-01-29 14:51:59 +010087void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 int nr;
90
91 nr = q->nr_requests - (q->nr_requests / 8) + 1;
92 if (nr > q->nr_requests)
93 nr = q->nr_requests;
94 q->nr_congestion_on = nr;
95
96 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
97 if (nr < 1)
98 nr = 1;
99 q->nr_congestion_off = nr;
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/**
103 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
104 * @bdev: device
105 *
106 * Locates the passed device's request queue and returns the address of its
107 * backing_dev_info
108 *
109 * Will return NULL if the request queue cannot be located.
110 */
111struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
112{
113 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200114 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (q)
117 ret = &q->backing_dev_info;
118 return ret;
119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120EXPORT_SYMBOL(blk_get_backing_dev_info);
121
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200122void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200124 memset(rq, 0, sizeof(*rq));
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700127 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200128 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100129 rq->q = q;
130 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200131 INIT_HLIST_NODE(&rq->hash);
132 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200133 rq->cmd = rq->__cmd;
Jens Axboe63a71382008-02-08 12:41:03 +0100134 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100135 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200137EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
NeilBrown5bb23a62007-09-27 12:46:13 +0200139static void req_bio_endio(struct request *rq, struct bio *bio,
140 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100141{
Jens Axboe165125e2007-07-24 09:28:11 +0200142 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100143
NeilBrown5bb23a62007-09-27 12:46:13 +0200144 if (&q->bar_rq != rq) {
145 if (error)
146 clear_bit(BIO_UPTODATE, &bio->bi_flags);
147 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
148 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100151 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700152 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200153 nbytes = bio->bi_size;
154 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100155
NeilBrown5bb23a62007-09-27 12:46:13 +0200156 bio->bi_size -= nbytes;
157 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200158
159 if (bio_integrity(bio))
160 bio_integrity_advance(bio, nbytes);
161
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200163 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200164 } else {
165
166 /*
167 * Okay, this is the barrier request in progress, just
168 * record the error;
169 */
170 if (error && !q->orderr)
171 q->orderr = error;
172 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100173}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175void blk_dump_rq_flags(struct request *rq, char *msg)
176{
177 int bit;
178
Jens Axboe6728cb02008-01-31 13:03:55 +0100179 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200180 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
181 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jens Axboe6728cb02008-01-31 13:03:55 +0100183 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
184 (unsigned long long)rq->sector,
185 rq->nr_sectors,
186 rq->current_nr_sectors);
187 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
188 rq->bio, rq->biotail,
189 rq->buffer, rq->data,
190 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jens Axboe4aff5e22006-08-10 08:44:47 +0200192 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100193 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200194 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 printk("%02x ", rq->cmd[bit]);
196 printk("\n");
197 }
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199EXPORT_SYMBOL(blk_dump_rq_flags);
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
202 * "plug" the device if there are no outstanding requests: this will
203 * force the transfer to start only after we have put all the requests
204 * on the list.
205 *
206 * This is called with interrupts off and no requests on the queue and
207 * with the queue lock held.
208 */
Jens Axboe165125e2007-07-24 09:28:11 +0200209void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 WARN_ON(!irqs_disabled());
212
213 /*
214 * don't plug a stopped queue, it must be paired with blk_start_queue()
215 * which will restart the queueing
216 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200217 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return;
219
Jens Axboee48ec692008-07-03 13:18:54 +0200220 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100222 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225EXPORT_SYMBOL(blk_plug_device);
226
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200227/**
228 * blk_plug_device_unlocked - plug a device without queue lock held
229 * @q: The &struct request_queue to plug
230 *
231 * Description:
232 * Like @blk_plug_device(), but grabs the queue lock and disables
233 * interrupts.
234 **/
235void blk_plug_device_unlocked(struct request_queue *q)
236{
237 unsigned long flags;
238
239 spin_lock_irqsave(q->queue_lock, flags);
240 blk_plug_device(q);
241 spin_unlock_irqrestore(q->queue_lock, flags);
242}
243EXPORT_SYMBOL(blk_plug_device_unlocked);
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/*
246 * remove the queue from the plugged list, if present. called with
247 * queue lock held and interrupts disabled.
248 */
Jens Axboe165125e2007-07-24 09:28:11 +0200249int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 WARN_ON(!irqs_disabled());
252
Jens Axboee48ec692008-07-03 13:18:54 +0200253 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255
256 del_timer(&q->unplug_timer);
257 return 1;
258}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259EXPORT_SYMBOL(blk_remove_plug);
260
261/*
262 * remove the plug and let it rip..
263 */
Jens Axboe165125e2007-07-24 09:28:11 +0200264void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200266 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return;
268
269 if (!blk_remove_plug(q))
270 return;
271
Jens Axboe22e2c502005-06-27 10:55:12 +0200272 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275/**
276 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200277 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
279 * Description:
280 * Linux uses plugging to build bigger requests queues before letting
281 * the device have at them. If a queue is plugged, the I/O scheduler
282 * is still adding and merging requests on the queue. Once the queue
283 * gets unplugged, the request_fn defined for the queue is invoked and
284 * transfers started.
285 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200286void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200288 if (blk_queue_plugged(q)) {
289 spin_lock_irq(q->queue_lock);
290 __generic_unplug_device(q);
291 spin_unlock_irq(q->queue_lock);
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294EXPORT_SYMBOL(generic_unplug_device);
295
296static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
297 struct page *page)
298{
Jens Axboe165125e2007-07-24 09:28:11 +0200299 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500301 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Jens Axboe86db1e22008-01-29 14:53:40 +0100304void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Jens Axboe165125e2007-07-24 09:28:11 +0200306 struct request_queue *q =
307 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100309 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 q->unplug_fn(q);
311}
312
Jens Axboe86db1e22008-01-29 14:53:40 +0100313void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Jens Axboe165125e2007-07-24 09:28:11 +0200315 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100317 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200318 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500321void blk_unplug(struct request_queue *q)
322{
323 /*
324 * devices don't necessarily have an ->unplug_fn defined
325 */
326 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100327 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500328 q->unplug_fn(q);
329 }
330}
331EXPORT_SYMBOL(blk_unplug);
332
Jens Axboec7c22e42008-09-13 20:26:01 +0200333static void blk_invoke_request_fn(struct request_queue *q)
334{
Jens Axboe80a4b582008-10-14 09:51:06 +0200335 if (unlikely(blk_queue_stopped(q)))
336 return;
337
Jens Axboec7c22e42008-09-13 20:26:01 +0200338 /*
339 * one level of recursion is ok and is much faster than kicking
340 * the unplug handling
341 */
342 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
343 q->request_fn(q);
344 queue_flag_clear(QUEUE_FLAG_REENTER, q);
345 } else {
346 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
347 kblockd_schedule_work(q, &q->unplug_work);
348 }
349}
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/**
352 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200353 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 *
355 * Description:
356 * blk_start_queue() will clear the stop flag on the queue, and call
357 * the request_fn for the queue if it was in a stopped state when
358 * entered. Also see blk_stop_queue(). Queue lock must be held.
359 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200360void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200362 WARN_ON(!irqs_disabled());
363
Nick Piggin75ad23b2008-04-29 14:48:33 +0200364 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200365 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367EXPORT_SYMBOL(blk_start_queue);
368
369/**
370 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200371 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
373 * Description:
374 * The Linux block layer assumes that a block driver will consume all
375 * entries on the request queue when the request_fn strategy is called.
376 * Often this will not happen, because of hardware limitations (queue
377 * depth settings). If a device driver gets a 'queue full' response,
378 * or if it simply chooses not to queue more I/O at one point, it can
379 * call this function to prevent the request_fn from being called until
380 * the driver has signalled it's ready to go again. This happens by calling
381 * blk_start_queue() to restart queue operations. Queue lock must be held.
382 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200383void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200386 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388EXPORT_SYMBOL(blk_stop_queue);
389
390/**
391 * blk_sync_queue - cancel any pending callbacks on a queue
392 * @q: the queue
393 *
394 * Description:
395 * The block layer may perform asynchronous callback activity
396 * on a queue, such as calling the unplug function after a timeout.
397 * A block device may call blk_sync_queue to ensure that any
398 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200399 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * that its ->make_request_fn will not re-add plugging prior to calling
401 * this function.
402 *
403 */
404void blk_sync_queue(struct request_queue *q)
405{
406 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100407 del_timer_sync(&q->timeout);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200408 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410EXPORT_SYMBOL(blk_sync_queue);
411
412/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200413 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200415 *
416 * Description:
417 * See @blk_run_queue. This variant must be called with the queue lock
418 * held and interrupts disabled.
419 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200421void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200424
425 /*
426 * Only recurse once to avoid overrunning the stack, let the unplug
427 * handling reinvoke the handler shortly if we already got there.
428 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200429 if (!elv_queue_empty(q))
430 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200431}
432EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200433
Nick Piggin75ad23b2008-04-29 14:48:33 +0200434/**
435 * blk_run_queue - run a single device queue
436 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200437 *
438 * Description:
439 * Invoke request handling on this queue, if it has pending work to do.
440 * May be used to restart queueing when a request has completed. Also
441 * See @blk_start_queueing.
442 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200443 */
444void blk_run_queue(struct request_queue *q)
445{
446 unsigned long flags;
447
448 spin_lock_irqsave(q->queue_lock, flags);
449 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 spin_unlock_irqrestore(q->queue_lock, flags);
451}
452EXPORT_SYMBOL(blk_run_queue);
453
Jens Axboe165125e2007-07-24 09:28:11 +0200454void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500455{
456 kobject_put(&q->kobj);
457}
Al Viro483f4af2006-03-18 18:34:37 -0500458
Jens Axboe6728cb02008-01-31 13:03:55 +0100459void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500460{
Jens Axboee3335de92008-09-18 09:22:54 -0700461 /*
462 * We know we have process context here, so we can be a little
463 * cautious and ensure that pending block actions on this device
464 * are done before moving on. Going into this function, we should
465 * not have processes doing IO to this device.
466 */
467 blk_sync_queue(q);
468
Al Viro483f4af2006-03-18 18:34:37 -0500469 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200470 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500471 mutex_unlock(&q->sysfs_lock);
472
473 if (q->elevator)
474 elevator_exit(q->elevator);
475
476 blk_put_queue(q);
477}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478EXPORT_SYMBOL(blk_cleanup_queue);
479
Jens Axboe165125e2007-07-24 09:28:11 +0200480static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct request_list *rl = &q->rq;
483
484 rl->count[READ] = rl->count[WRITE] = 0;
485 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200486 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 init_waitqueue_head(&rl->wait[READ]);
488 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Christoph Lameter19460892005-06-23 00:08:19 -0700490 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
491 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (!rl->rq_pool)
494 return -ENOMEM;
495
496 return 0;
497}
498
Jens Axboe165125e2007-07-24 09:28:11 +0200499struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Christoph Lameter19460892005-06-23 00:08:19 -0700501 return blk_alloc_queue_node(gfp_mask, -1);
502}
503EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Jens Axboe165125e2007-07-24 09:28:11 +0200505struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700506{
Jens Axboe165125e2007-07-24 09:28:11 +0200507 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700508 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700509
Jens Axboe8324aa92008-01-29 14:51:59 +0100510 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700511 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!q)
513 return NULL;
514
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700515 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
516 q->backing_dev_info.unplug_io_data = q;
517 err = bdi_init(&q->backing_dev_info);
518 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100519 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700520 return NULL;
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700524 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
525 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200526 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500527
Jens Axboe8324aa92008-01-29 14:51:59 +0100528 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Al Viro483f4af2006-03-18 18:34:37 -0500530 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700531 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return q;
534}
Christoph Lameter19460892005-06-23 00:08:19 -0700535EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537/**
538 * blk_init_queue - prepare a request queue for use with a block device
539 * @rfn: The function to be called to process requests that have been
540 * placed on the queue.
541 * @lock: Request queue spin lock
542 *
543 * Description:
544 * If a block device wishes to use the standard request handling procedures,
545 * which sorts requests and coalesces adjacent requests, then it must
546 * call blk_init_queue(). The function @rfn will be called when there
547 * are requests on the queue that need to be processed. If the device
548 * supports plugging, then @rfn may not be called immediately when requests
549 * are available on the queue, but may be called at some time later instead.
550 * Plugged queues are generally unplugged when a buffer belonging to one
551 * of the requests on the queue is needed, or due to memory pressure.
552 *
553 * @rfn is not required, or even expected, to remove all requests off the
554 * queue, but only as many as it can handle at a time. If it does leave
555 * requests on the queue, it is responsible for arranging that the requests
556 * get dealt with eventually.
557 *
558 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200559 * request queue; this lock will be taken also from interrupt context, so irq
560 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200562 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 * it didn't succeed.
564 *
565 * Note:
566 * blk_init_queue() must be paired with a blk_cleanup_queue() call
567 * when the block device is deactivated (such as at module unload).
568 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700569
Jens Axboe165125e2007-07-24 09:28:11 +0200570struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Christoph Lameter19460892005-06-23 00:08:19 -0700572 return blk_init_queue_node(rfn, lock, -1);
573}
574EXPORT_SYMBOL(blk_init_queue);
575
Jens Axboe165125e2007-07-24 09:28:11 +0200576struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700577blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
578{
Jens Axboe165125e2007-07-24 09:28:11 +0200579 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 if (!q)
582 return NULL;
583
Christoph Lameter19460892005-06-23 00:08:19 -0700584 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500585 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100586 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500587 return NULL;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
152587d2005-04-12 16:22:06 -0500590 /*
591 * if caller didn't supply a lock, they get per-queue locking with
592 * our embedded lock
593 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700594 if (!lock)
152587d2005-04-12 16:22:06 -0500595 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 q->prep_rq_fn = NULL;
599 q->unplug_fn = generic_unplug_device;
Kiyoshi Ueda4ee5eaf2008-09-18 10:46:13 -0400600 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER |
601 1 << QUEUE_FLAG_STACKABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 q->queue_lock = lock;
603
Milan Broz0e435ac2008-12-03 12:55:08 +0100604 blk_queue_segment_boundary(q, BLK_SEG_BOUNDARY_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 blk_queue_make_request(q, __make_request);
607 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
608
609 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
610 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
611
Alan Stern44ec9542007-02-20 11:01:57 -0500612 q->sg_reserved_size = INT_MAX;
613
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900614 blk_set_cmd_filter_defaults(&q->cmd_filter);
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /*
617 * all done
618 */
619 if (!elevator_init(q, NULL)) {
620 blk_queue_congestion_threshold(q);
621 return q;
622 }
623
Al Viro8669aaf2006-03-18 13:50:00 -0500624 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return NULL;
626}
Christoph Lameter19460892005-06-23 00:08:19 -0700627EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Jens Axboe165125e2007-07-24 09:28:11 +0200629int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700631 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500632 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return 0;
634 }
635
636 return 1;
637}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Jens Axboe165125e2007-07-24 09:28:11 +0200639static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200641 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200642 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 mempool_free(rq, q->rq.rq_pool);
644}
645
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200646static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200647blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
650
651 if (!rq)
652 return NULL;
653
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200654 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200655
Jens Axboe49171e52006-08-10 08:59:11 +0200656 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Tejun Heocb98fc82005-10-28 08:29:39 +0200658 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200659 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200660 mempool_free(rq, q->rq.rq_pool);
661 return NULL;
662 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200663 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Tejun Heocb98fc82005-10-28 08:29:39 +0200666 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/*
670 * ioc_batching returns true if the ioc is a valid batching request and
671 * should be given priority access to a request.
672 */
Jens Axboe165125e2007-07-24 09:28:11 +0200673static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 if (!ioc)
676 return 0;
677
678 /*
679 * Make sure the process is able to allocate at least 1 request
680 * even if the batch times out, otherwise we could theoretically
681 * lose wakeups.
682 */
683 return ioc->nr_batch_requests == q->nr_batching ||
684 (ioc->nr_batch_requests > 0
685 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
686}
687
688/*
689 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
690 * will cause the process to be a "batcher" on all queues in the system. This
691 * is the behaviour we want though - once it gets a wakeup it should be given
692 * a nice run.
693 */
Jens Axboe165125e2007-07-24 09:28:11 +0200694static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 if (!ioc || ioc_batching(q, ioc))
697 return;
698
699 ioc->nr_batch_requests = q->nr_batching;
700 ioc->last_waited = jiffies;
701}
702
Jens Axboe165125e2007-07-24 09:28:11 +0200703static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 struct request_list *rl = &q->rq;
706
707 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700708 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (waitqueue_active(&rl->wait[rw]))
712 wake_up(&rl->wait[rw]);
713
714 blk_clear_queue_full(q, rw);
715 }
716}
717
718/*
719 * A request has just been released. Account for it, update the full and
720 * congestion status, wake up any waiters. Called under q->queue_lock.
721 */
Jens Axboe165125e2007-07-24 09:28:11 +0200722static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct request_list *rl = &q->rq;
725
726 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200727 if (priv)
728 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 __freed_request(q, rw);
731
732 if (unlikely(rl->starved[rw ^ 1]))
733 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
737/*
Nick Piggind6344532005-06-28 20:45:14 -0700738 * Get a free request, queue_lock must be held.
739 * Returns NULL on failure, with queue_lock held.
740 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 */
Jens Axboe165125e2007-07-24 09:28:11 +0200742static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100743 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 struct request *rq = NULL;
746 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100747 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100748 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100749 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Jens Axboe7749a8d2006-12-13 13:02:26 +0100751 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100752 if (may_queue == ELV_MQUEUE_NO)
753 goto rq_starved;
754
755 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
756 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200757 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100758 /*
759 * The queue will fill after this allocation, so set
760 * it as full, and mark this process as "batching".
761 * This process will be allowed to complete a batch of
762 * requests, others will be blocked.
763 */
764 if (!blk_queue_full(q, rw)) {
765 ioc_set_batching(q, ioc);
766 blk_set_queue_full(q, rw);
767 } else {
768 if (may_queue != ELV_MQUEUE_MUST
769 && !ioc_batching(q, ioc)) {
770 /*
771 * The queue is full and the allocating
772 * process is not a "batcher", and not
773 * exempted by the IO scheduler
774 */
775 goto out;
776 }
777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700779 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Jens Axboe082cf692005-06-28 16:35:11 +0200782 /*
783 * Only allow batching queuers to allocate up to 50% over the defined
784 * limit of requests, otherwise we could have thousands of requests
785 * allocated with any setting of ->nr_requests
786 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100787 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200788 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 rl->count[rw]++;
791 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200792
Jens Axboe64521d12005-10-28 08:30:39 +0200793 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200794 if (priv)
795 rl->elvpriv++;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 spin_unlock_irq(q->queue_lock);
798
Jens Axboe7749a8d2006-12-13 13:02:26 +0100799 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100800 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /*
802 * Allocation failed presumably due to memory. Undo anything
803 * we might have messed up.
804 *
805 * Allocating task should really be put onto the front of the
806 * wait queue, but this is pretty rare.
807 */
808 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200809 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * in the very unlikely event that allocation failed and no
813 * requests for this direction was pending, mark us starved
814 * so that freeing of a request in the other direction will
815 * notice us. another possible fix would be to split the
816 * rq mempool into READ and WRITE
817 */
818rq_starved:
819 if (unlikely(rl->count[rw] == 0))
820 rl->starved[rw] = 1;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 goto out;
823 }
824
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100825 /*
826 * ioc may be NULL here, and ioc_batching will be false. That's
827 * OK, if the queue is under the request limit then requests need
828 * not count toward the nr_batch_requests limit. There will always
829 * be some limit enforced by BLK_BATCH_TIME.
830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (ioc_batching(q, ioc))
832 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100833
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100834 trace_block_getrq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return rq;
837}
838
839/*
840 * No available requests for this queue, unplug the device and wait for some
841 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700842 *
843 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Jens Axboe165125e2007-07-24 09:28:11 +0200845static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200846 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100848 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 struct request *rq;
850
Jens Axboe7749a8d2006-12-13 13:02:26 +0100851 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700852 while (!rq) {
853 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200854 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct request_list *rl = &q->rq;
856
857 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
858 TASK_UNINTERRUPTIBLE);
859
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100860 trace_block_sleeprq(q, bio, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200862 __generic_unplug_device(q);
863 spin_unlock_irq(q->queue_lock);
864 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200866 /*
867 * After sleeping, we become a "batching" process and
868 * will be able to allocate at least one request, and
869 * up to a big batch of them for a small period time.
870 * See ioc_batching, ioc_set_batching
871 */
872 ioc = current_io_context(GFP_NOIO, q->node);
873 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100874
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200875 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 finish_wait(&rl->wait[rw], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200877
878 rq = get_request(q, rw_flags, bio, GFP_NOIO);
879 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 return rq;
882}
883
Jens Axboe165125e2007-07-24 09:28:11 +0200884struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 struct request *rq;
887
888 BUG_ON(rw != READ && rw != WRITE);
889
Nick Piggind6344532005-06-28 20:45:14 -0700890 spin_lock_irq(q->queue_lock);
891 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200892 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700893 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200894 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700895 if (!rq)
896 spin_unlock_irq(q->queue_lock);
897 }
898 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 return rq;
901}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902EXPORT_SYMBOL(blk_get_request);
903
904/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200905 * blk_start_queueing - initiate dispatch of requests to device
906 * @q: request queue to kick into gear
907 *
908 * This is basically a helper to remove the need to know whether a queue
909 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200910 * for this queue. Should be used to start queueing on a device outside
911 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200912 *
913 * The queue lock must be held with interrupts disabled.
914 */
Jens Axboe165125e2007-07-24 09:28:11 +0200915void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200916{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200917 if (!blk_queue_plugged(q)) {
918 if (unlikely(blk_queue_stopped(q)))
919 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200920 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200921 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200922 __generic_unplug_device(q);
923}
924EXPORT_SYMBOL(blk_start_queueing);
925
926/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 * blk_requeue_request - put a request back on queue
928 * @q: request queue where request should be inserted
929 * @rq: request to be inserted
930 *
931 * Description:
932 * Drivers often keep queueing requests until the hardware cannot accept
933 * more, when that condition happens we need to put the request back
934 * on the queue. Must be called with queue lock held.
935 */
Jens Axboe165125e2007-07-24 09:28:11 +0200936void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700938 blk_delete_timer(rq);
939 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100940 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (blk_rq_tagged(rq))
943 blk_queue_end_tag(q, rq);
944
945 elv_requeue_request(q, rq);
946}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947EXPORT_SYMBOL(blk_requeue_request);
948
949/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200950 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * @q: request queue where request should be inserted
952 * @rq: request to be inserted
953 * @at_head: insert request at head or tail of queue
954 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 *
956 * Description:
957 * Many block devices need to execute commands asynchronously, so they don't
958 * block the whole kernel from preemption during request execution. This is
959 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200960 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
961 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 *
963 * We have the option of inserting the head or the tail of the queue.
964 * Typically we use the tail for new ioctls and so forth. We use the head
965 * of the queue for things like a QUEUE_FULL message from a device, or a
966 * host that is unable to accept a particular command.
967 */
Jens Axboe165125e2007-07-24 09:28:11 +0200968void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500969 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Tejun Heo 867d1192005-04-24 02:06:05 -0500971 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 unsigned long flags;
973
974 /*
975 * tell I/O scheduler that this isn't a regular read/write (ie it
976 * must not attempt merges on this) and that it acts as a soft
977 * barrier
978 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200979 rq->cmd_type = REQ_TYPE_SPECIAL;
980 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 rq->special = data;
983
984 spin_lock_irqsave(q->queue_lock, flags);
985
986 /*
987 * If command is tagged, release the tag
988 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500989 if (blk_rq_tagged(rq))
990 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200992 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500993 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200994 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 spin_unlock_irqrestore(q->queue_lock, flags);
996}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997EXPORT_SYMBOL(blk_insert_request);
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/*
1000 * add-request adds a request to the linked list.
1001 * queue lock is held and interrupts disabled, as we muck with the
1002 * request queue list.
1003 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001004static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001006 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * elevator indicated where it wants this request to be
1010 * inserted at elevator_merge time
1011 */
1012 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1013}
Jens Axboe6728cb02008-01-31 13:03:55 +01001014
Tejun Heo074a7ac2008-08-25 19:56:14 +09001015static void part_round_stats_single(int cpu, struct hd_struct *part,
1016 unsigned long now)
1017{
1018 if (now == part->stamp)
1019 return;
1020
1021 if (part->in_flight) {
1022 __part_stat_add(cpu, part, time_in_queue,
1023 part->in_flight * (now - part->stamp));
1024 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1025 }
1026 part->stamp = now;
1027}
1028
1029/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001030 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1031 * @cpu: cpu number for stats access
1032 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 *
1034 * The average IO queue length and utilisation statistics are maintained
1035 * by observing the current state of the queue length and the amount of
1036 * time it has been in this state for.
1037 *
1038 * Normally, that accounting is done on IO completion, but that can result
1039 * in more than a second's worth of IO being accounted for within any one
1040 * second, leading to >100% utilisation. To deal with that, we call this
1041 * function to do a round-off before returning the results when reading
1042 * /proc/diskstats. This accounts immediately for all queue usage up to
1043 * the current jiffies and restarts the counters again.
1044 */
Tejun Heoc9959052008-08-25 19:47:21 +09001045void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001046{
1047 unsigned long now = jiffies;
1048
Tejun Heo074a7ac2008-08-25 19:56:14 +09001049 if (part->partno)
1050 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1051 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001052}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001053EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/*
1056 * queue lock must be held
1057 */
Jens Axboe165125e2007-07-24 09:28:11 +02001058void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (unlikely(!q))
1061 return;
1062 if (unlikely(--req->ref_count))
1063 return;
1064
Tejun Heo8922e162005-10-20 16:23:44 +02001065 elv_completed_request(q, req);
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 /*
1068 * Request may not have originated from ll_rw_blk. if not,
1069 * it didn't come out of our reserved rq pools
1070 */
Jens Axboe49171e52006-08-10 08:59:11 +02001071 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001073 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001076 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001079 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001082EXPORT_SYMBOL_GPL(__blk_put_request);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084void blk_put_request(struct request *req)
1085{
Tejun Heo8922e162005-10-20 16:23:44 +02001086 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001087 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001089 spin_lock_irqsave(q->queue_lock, flags);
1090 __blk_put_request(q, req);
1091 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093EXPORT_SYMBOL(blk_put_request);
1094
Jens Axboe86db1e22008-01-29 14:53:40 +01001095void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001096{
Jens Axboec7c22e42008-09-13 20:26:01 +02001097 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001098 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001099
1100 /*
1101 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1102 */
Mike Christie6000a362008-08-19 18:45:30 -05001103 if (bio_rw_ahead(bio))
1104 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1105 REQ_FAILFAST_DRIVER);
1106 if (bio_failfast_dev(bio))
1107 req->cmd_flags |= REQ_FAILFAST_DEV;
1108 if (bio_failfast_transport(bio))
1109 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1110 if (bio_failfast_driver(bio))
1111 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001112
1113 /*
1114 * REQ_BARRIER implies no merging, but lets make it explicit
1115 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001116 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001117 req->cmd_flags |= REQ_DISCARD;
1118 if (bio_barrier(bio))
1119 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001120 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001121 } else if (unlikely(bio_barrier(bio)))
1122 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001123
Jens Axboeb31dc662006-06-13 08:26:10 +02001124 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001125 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001126 if (bio_rw_meta(bio))
1127 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001128
Tejun Heo52d9e672006-01-06 09:49:58 +01001129 req->errors = 0;
1130 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001131 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001132 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001133 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001134}
1135
Jens Axboe165125e2007-07-24 09:28:11 +02001136static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Nick Piggin450991b2005-06-28 20:45:13 -07001138 struct request *req;
David Woodhousefb2dce82008-08-05 18:01:53 +01001139 int el_ret, nr_sectors, barrier, discard, err;
Jens Axboe51da90f2006-07-18 04:14:45 +02001140 const unsigned short prio = bio_prio(bio);
1141 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001142 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /*
1147 * low level driver can indicate that it wants pages above a
1148 * certain limit bounced to low memory (ie for highmem, or even
1149 * ISA dma in theory)
1150 */
1151 blk_queue_bounce(q, &bio);
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 barrier = bio_barrier(bio);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001154 if (unlikely(barrier) && bio_has_data(bio) &&
1155 (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 err = -EOPNOTSUPP;
1157 goto end_io;
1158 }
1159
David Woodhousefb2dce82008-08-05 18:01:53 +01001160 discard = bio_discard(bio);
1161 if (unlikely(discard) && !q->prepare_discard_fn) {
1162 err = -EOPNOTSUPP;
1163 goto end_io;
1164 }
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 spin_lock_irq(q->queue_lock);
1167
Nick Piggin450991b2005-06-28 20:45:13 -07001168 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 goto get_rq;
1170
1171 el_ret = elv_merge(q, &req, bio);
1172 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001173 case ELEVATOR_BACK_MERGE:
1174 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Jens Axboe6728cb02008-01-31 13:03:55 +01001176 if (!ll_back_merge_fn(q, req, bio))
1177 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001179 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001180
Jens Axboe6728cb02008-01-31 13:03:55 +01001181 req->biotail->bi_next = bio;
1182 req->biotail = bio;
1183 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1184 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001185 if (!blk_rq_cpu_valid(req))
1186 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001187 drive_stat_acct(req, 0);
1188 if (!attempt_back_merge(q, req))
1189 elv_merged_request(q, req, el_ret);
1190 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Jens Axboe6728cb02008-01-31 13:03:55 +01001192 case ELEVATOR_FRONT_MERGE:
1193 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Jens Axboe6728cb02008-01-31 13:03:55 +01001195 if (!ll_front_merge_fn(q, req, bio))
1196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001198 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001199
Jens Axboe6728cb02008-01-31 13:03:55 +01001200 bio->bi_next = req->bio;
1201 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jens Axboe6728cb02008-01-31 13:03:55 +01001203 /*
1204 * may not be valid. if the low level driver said
1205 * it didn't need a bounce buffer then it better
1206 * not touch req->buffer either...
1207 */
1208 req->buffer = bio_data(bio);
1209 req->current_nr_sectors = bio_cur_sectors(bio);
1210 req->hard_cur_sectors = req->current_nr_sectors;
1211 req->sector = req->hard_sector = bio->bi_sector;
1212 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1213 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001214 if (!blk_rq_cpu_valid(req))
1215 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001216 drive_stat_acct(req, 0);
1217 if (!attempt_front_merge(q, req))
1218 elv_merged_request(q, req, el_ret);
1219 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Jens Axboe6728cb02008-01-31 13:03:55 +01001221 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1222 default:
1223 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001227 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001228 * This sync check and mask will be re-done in init_request_from_bio(),
1229 * but we need to set it earlier to expose the sync flag to the
1230 * rq allocator and io schedulers.
1231 */
1232 rw_flags = bio_data_dir(bio);
1233 if (sync)
1234 rw_flags |= REQ_RW_SYNC;
1235
1236 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001237 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001238 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001239 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001240 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001241
Nick Piggin450991b2005-06-28 20:45:13 -07001242 /*
1243 * After dropping the lock and possibly sleeping here, our request
1244 * may now be mergeable after it had proven unmergeable (above).
1245 * We don't worry about that case for efficiency. It won't happen
1246 * often, and the elevators are able to handle it.
1247 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001248 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Nick Piggin450991b2005-06-28 20:45:13 -07001250 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001251 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1252 bio_flagged(bio, BIO_CPU_AFFINE))
1253 req->cpu = blk_cpu_to_group(smp_processor_id());
Nick Piggin450991b2005-06-28 20:45:13 -07001254 if (elv_queue_empty(q))
1255 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 add_request(q, req);
1257out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001258 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 spin_unlock_irq(q->queue_lock);
1261 return 0;
1262
1263end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001264 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266}
1267
1268/*
1269 * If bio->bi_dev is a partition, remap the location
1270 */
1271static inline void blk_partition_remap(struct bio *bio)
1272{
1273 struct block_device *bdev = bio->bi_bdev;
1274
Jens Axboebf2de6f2007-09-27 13:01:25 +02001275 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 bio->bi_sector += p->start_sect;
1279 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001280
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001281 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001282 bdev->bd_dev, bio->bi_sector,
1283 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285}
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287static void handle_bad_sector(struct bio *bio)
1288{
1289 char b[BDEVNAME_SIZE];
1290
1291 printk(KERN_INFO "attempt to access beyond end of device\n");
1292 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1293 bdevname(bio->bi_bdev, b),
1294 bio->bi_rw,
1295 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1296 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1297
1298 set_bit(BIO_EOF, &bio->bi_flags);
1299}
1300
Akinobu Mitac17bb492006-12-08 02:39:46 -08001301#ifdef CONFIG_FAIL_MAKE_REQUEST
1302
1303static DECLARE_FAULT_ATTR(fail_make_request);
1304
1305static int __init setup_fail_make_request(char *str)
1306{
1307 return setup_fault_attr(&fail_make_request, str);
1308}
1309__setup("fail_make_request=", setup_fail_make_request);
1310
1311static int should_fail_request(struct bio *bio)
1312{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001313 struct hd_struct *part = bio->bi_bdev->bd_part;
1314
1315 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001316 return should_fail(&fail_make_request, bio->bi_size);
1317
1318 return 0;
1319}
1320
1321static int __init fail_make_request_debugfs(void)
1322{
1323 return init_fault_attr_dentries(&fail_make_request,
1324 "fail_make_request");
1325}
1326
1327late_initcall(fail_make_request_debugfs);
1328
1329#else /* CONFIG_FAIL_MAKE_REQUEST */
1330
1331static inline int should_fail_request(struct bio *bio)
1332{
1333 return 0;
1334}
1335
1336#endif /* CONFIG_FAIL_MAKE_REQUEST */
1337
Jens Axboec07e2b42007-07-18 13:27:58 +02001338/*
1339 * Check whether this bio extends beyond the end of the device.
1340 */
1341static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1342{
1343 sector_t maxsector;
1344
1345 if (!nr_sectors)
1346 return 0;
1347
1348 /* Test device or partition size, when known. */
1349 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1350 if (maxsector) {
1351 sector_t sector = bio->bi_sector;
1352
1353 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1354 /*
1355 * This may well happen - the kernel calls bread()
1356 * without checking the size of the device, e.g., when
1357 * mounting a device.
1358 */
1359 handle_bad_sector(bio);
1360 return 1;
1361 }
1362 }
1363
1364 return 0;
1365}
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001368 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 * @bio: The bio describing the location in memory and on the device.
1370 *
1371 * generic_make_request() is used to make I/O requests of block
1372 * devices. It is passed a &struct bio, which describes the I/O that needs
1373 * to be done.
1374 *
1375 * generic_make_request() does not return any status. The
1376 * success/failure status of the request, along with notification of
1377 * completion, is delivered asynchronously through the bio->bi_end_io
1378 * function described (one day) else where.
1379 *
1380 * The caller of generic_make_request must make sure that bi_io_vec
1381 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1382 * set to describe the device address, and the
1383 * bi_end_io and optionally bi_private are set to describe how
1384 * completion notification should be signaled.
1385 *
1386 * generic_make_request and the drivers it calls may use bi_next if this
1387 * bio happens to be merged with someone else, and may change bi_dev and
1388 * bi_sector for remaps as it sees fit. So the values of these fields
1389 * should NOT be depended on after the call to generic_make_request.
1390 */
Neil Brownd89d8792007-05-01 09:53:42 +02001391static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Jens Axboe165125e2007-07-24 09:28:11 +02001393 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001394 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001396 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001397 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Jens Axboec07e2b42007-07-18 13:27:58 +02001401 if (bio_check_eod(bio, nr_sectors))
1402 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 /*
1405 * Resolve the mapping until finished. (drivers are
1406 * still free to implement/resolve their own stacking
1407 * by explicitly returning 0)
1408 *
1409 * NOTE: we don't repeat the blk_size check for each new device.
1410 * Stacking drivers are expected to know what they are doing.
1411 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001412 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001413 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 do {
1415 char b[BDEVNAME_SIZE];
1416
1417 q = bdev_get_queue(bio->bi_bdev);
1418 if (!q) {
1419 printk(KERN_ERR
1420 "generic_make_request: Trying to access "
1421 "nonexistent block-device %s (%Lu)\n",
1422 bdevname(bio->bi_bdev, b),
1423 (long long) bio->bi_sector);
1424end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001425 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 break;
1427 }
1428
Jens Axboe4fa253f2007-07-18 13:13:10 +02001429 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001430 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 bdevname(bio->bi_bdev, b),
1432 bio_sectors(bio),
1433 q->max_hw_sectors);
1434 goto end_io;
1435 }
1436
Nick Pigginfde6ad22005-06-23 00:08:53 -07001437 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto end_io;
1439
Akinobu Mitac17bb492006-12-08 02:39:46 -08001440 if (should_fail_request(bio))
1441 goto end_io;
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 /*
1444 * If this device has partitions, remap block n
1445 * of partition p to block n+start(p) of the disk.
1446 */
1447 blk_partition_remap(bio);
1448
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001449 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1450 goto end_io;
1451
NeilBrown5ddfe962006-10-30 22:07:21 -08001452 if (old_sector != -1)
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001453 trace_block_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001454 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001455
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001456 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001457
NeilBrown5ddfe962006-10-30 22:07:21 -08001458 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001459 old_dev = bio->bi_bdev->bd_dev;
1460
Jens Axboec07e2b42007-07-18 13:27:58 +02001461 if (bio_check_eod(bio, nr_sectors))
1462 goto end_io;
David Woodhousefb2dce82008-08-05 18:01:53 +01001463 if ((bio_empty_barrier(bio) && !q->prepare_flush_fn) ||
1464 (bio_discard(bio) && !q->prepare_discard_fn)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001465 err = -EOPNOTSUPP;
1466 goto end_io;
1467 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 ret = q->make_request_fn(q, bio);
1470 } while (ret);
1471}
1472
Neil Brownd89d8792007-05-01 09:53:42 +02001473/*
1474 * We only want one ->make_request_fn to be active at a time,
1475 * else stack usage with stacked devices could be a problem.
1476 * So use current->bio_{list,tail} to keep a list of requests
1477 * submited by a make_request_fn function.
1478 * current->bio_tail is also used as a flag to say if
1479 * generic_make_request is currently active in this task or not.
1480 * If it is NULL, then no make_request is active. If it is non-NULL,
1481 * then a make_request is active, and new requests should be added
1482 * at the tail
1483 */
1484void generic_make_request(struct bio *bio)
1485{
1486 if (current->bio_tail) {
1487 /* make_request is active */
1488 *(current->bio_tail) = bio;
1489 bio->bi_next = NULL;
1490 current->bio_tail = &bio->bi_next;
1491 return;
1492 }
1493 /* following loop may be a bit non-obvious, and so deserves some
1494 * explanation.
1495 * Before entering the loop, bio->bi_next is NULL (as all callers
1496 * ensure that) so we have a list with a single bio.
1497 * We pretend that we have just taken it off a longer list, so
1498 * we assign bio_list to the next (which is NULL) and bio_tail
1499 * to &bio_list, thus initialising the bio_list of new bios to be
1500 * added. __generic_make_request may indeed add some more bios
1501 * through a recursive call to generic_make_request. If it
1502 * did, we find a non-NULL value in bio_list and re-enter the loop
1503 * from the top. In this case we really did just take the bio
1504 * of the top of the list (no pretending) and so fixup bio_list and
1505 * bio_tail or bi_next, and call into __generic_make_request again.
1506 *
1507 * The loop was structured like this to make only one call to
1508 * __generic_make_request (which is important as it is large and
1509 * inlined) and to keep the structure simple.
1510 */
1511 BUG_ON(bio->bi_next);
1512 do {
1513 current->bio_list = bio->bi_next;
1514 if (bio->bi_next == NULL)
1515 current->bio_tail = &current->bio_list;
1516 else
1517 bio->bi_next = NULL;
1518 __generic_make_request(bio);
1519 bio = current->bio_list;
1520 } while (bio);
1521 current->bio_tail = NULL; /* deactivate */
1522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523EXPORT_SYMBOL(generic_make_request);
1524
1525/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001526 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1528 * @bio: The &struct bio which describes the I/O
1529 *
1530 * submit_bio() is very similar in purpose to generic_make_request(), and
1531 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001532 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 *
1534 */
1535void submit_bio(int rw, struct bio *bio)
1536{
1537 int count = bio_sectors(bio);
1538
Jens Axboe22e2c502005-06-27 10:55:12 +02001539 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Jens Axboebf2de6f2007-09-27 13:01:25 +02001541 /*
1542 * If it's a regular read/write or a barrier with data attached,
1543 * go through the normal accounting stuff before submission.
1544 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001545 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001546 if (rw & WRITE) {
1547 count_vm_events(PGPGOUT, count);
1548 } else {
1549 task_io_account_read(bio->bi_size);
1550 count_vm_events(PGPGIN, count);
1551 }
1552
1553 if (unlikely(block_dump)) {
1554 char b[BDEVNAME_SIZE];
1555 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001556 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001557 (rw & WRITE) ? "WRITE" : "READ",
1558 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001559 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562
1563 generic_make_request(bio);
1564}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565EXPORT_SYMBOL(submit_bio);
1566
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001567/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001568 * blk_rq_check_limits - Helper function to check a request for the queue limit
1569 * @q: the queue
1570 * @rq: the request being checked
1571 *
1572 * Description:
1573 * @rq may have been made based on weaker limitations of upper-level queues
1574 * in request stacking drivers, and it may violate the limitation of @q.
1575 * Since the block layer and the underlying device driver trust @rq
1576 * after it is inserted to @q, it should be checked against @q before
1577 * the insertion using this generic function.
1578 *
1579 * This function should also be useful for request stacking drivers
1580 * in some cases below, so export this fuction.
1581 * Request stacking drivers like request-based dm may change the queue
1582 * limits while requests are in the queue (e.g. dm's table swapping).
1583 * Such request stacking drivers should check those requests agaist
1584 * the new queue limits again when they dispatch those requests,
1585 * although such checkings are also done against the old queue limits
1586 * when submitting requests.
1587 */
1588int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1589{
1590 if (rq->nr_sectors > q->max_sectors ||
1591 rq->data_len > q->max_hw_sectors << 9) {
1592 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1593 return -EIO;
1594 }
1595
1596 /*
1597 * queue's settings related to segment counting like q->bounce_pfn
1598 * may differ from that of other stacking queues.
1599 * Recalculate it to check the request correctly on this queue's
1600 * limitation.
1601 */
1602 blk_recalc_rq_segments(rq);
1603 if (rq->nr_phys_segments > q->max_phys_segments ||
1604 rq->nr_phys_segments > q->max_hw_segments) {
1605 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1606 return -EIO;
1607 }
1608
1609 return 0;
1610}
1611EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1612
1613/**
1614 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1615 * @q: the queue to submit the request
1616 * @rq: the request being queued
1617 */
1618int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1619{
1620 unsigned long flags;
1621
1622 if (blk_rq_check_limits(q, rq))
1623 return -EIO;
1624
1625#ifdef CONFIG_FAIL_MAKE_REQUEST
1626 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1627 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1628 return -EIO;
1629#endif
1630
1631 spin_lock_irqsave(q->queue_lock, flags);
1632
1633 /*
1634 * Submitting request must be dequeued before calling this function
1635 * because it will be linked to another request_queue
1636 */
1637 BUG_ON(blk_queued_rq(rq));
1638
1639 drive_stat_acct(rq, 1);
1640 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1641
1642 spin_unlock_irqrestore(q->queue_lock, flags);
1643
1644 return 0;
1645}
1646EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1647
1648/**
Tejun Heo53a08802008-12-03 12:41:26 +01001649 * blkdev_dequeue_request - dequeue request and start timeout timer
1650 * @req: request to dequeue
1651 *
1652 * Dequeue @req and start timeout timer on it. This hands off the
1653 * request to the driver.
1654 *
1655 * Block internal functions which don't want to start timer should
1656 * call elv_dequeue_request().
1657 */
1658void blkdev_dequeue_request(struct request *req)
1659{
1660 elv_dequeue_request(req->q, req);
1661
1662 /*
1663 * We are now handing the request to the hardware, add the
1664 * timeout handler.
1665 */
1666 blk_add_timer(req);
1667}
1668EXPORT_SYMBOL(blkdev_dequeue_request);
1669
1670/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001671 * __end_that_request_first - end I/O on a request
1672 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001673 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001674 * @nr_bytes: number of bytes to complete
1675 *
1676 * Description:
1677 * Ends I/O on a number of bytes attached to @req, and sets it up
1678 * for the next range of segments (if any) in the cluster.
1679 *
1680 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001681 * %0 - we are done with this request, call end_that_request_last()
1682 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001683 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001684static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int nr_bytes)
1686{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001687 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 struct bio *bio;
1689
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001690 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001693 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 * sense key with us all the way through
1695 */
1696 if (!blk_pc_request(req))
1697 req->errors = 0;
1698
Jens Axboe6728cb02008-01-31 13:03:55 +01001699 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1700 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 req->rq_disk ? req->rq_disk->disk_name : "?",
1702 (unsigned long long)req->sector);
1703 }
1704
Jens Axboed72d9042005-11-01 08:35:42 +01001705 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01001706 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001707 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001708 int cpu;
Jens Axboea3623572005-11-01 09:26:16 +01001709
Tejun Heo074a7ac2008-08-25 19:56:14 +09001710 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001711 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001712 part_stat_add(cpu, part, sectors[rw], nr_bytes >> 9);
1713 part_stat_unlock();
Jens Axboed72d9042005-11-01 08:35:42 +01001714 }
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 total_bytes = bio_nbytes = 0;
1717 while ((bio = req->bio) != NULL) {
1718 int nbytes;
1719
Jens Axboebf2de6f2007-09-27 13:01:25 +02001720 /*
1721 * For an empty barrier request, the low level driver must
1722 * store a potential error location in ->sector. We pass
1723 * that back up in ->bi_sector.
1724 */
1725 if (blk_empty_barrier(req))
1726 bio->bi_sector = req->sector;
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (nr_bytes >= bio->bi_size) {
1729 req->bio = bio->bi_next;
1730 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001731 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 next_idx = 0;
1733 bio_nbytes = 0;
1734 } else {
1735 int idx = bio->bi_idx + next_idx;
1736
1737 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1738 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001739 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001740 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 break;
1742 }
1743
1744 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1745 BIO_BUG_ON(nbytes > bio->bi_size);
1746
1747 /*
1748 * not a complete bvec done
1749 */
1750 if (unlikely(nbytes > nr_bytes)) {
1751 bio_nbytes += nr_bytes;
1752 total_bytes += nr_bytes;
1753 break;
1754 }
1755
1756 /*
1757 * advance to the next vector
1758 */
1759 next_idx++;
1760 bio_nbytes += nbytes;
1761 }
1762
1763 total_bytes += nbytes;
1764 nr_bytes -= nbytes;
1765
Jens Axboe6728cb02008-01-31 13:03:55 +01001766 bio = req->bio;
1767 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 /*
1769 * end more in this run, or just return 'not-done'
1770 */
1771 if (unlikely(nr_bytes <= 0))
1772 break;
1773 }
1774 }
1775
1776 /*
1777 * completely done
1778 */
1779 if (!req->bio)
1780 return 0;
1781
1782 /*
1783 * if the request wasn't completed, update state
1784 */
1785 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001786 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 bio->bi_idx += next_idx;
1788 bio_iovec(bio)->bv_offset += nr_bytes;
1789 bio_iovec(bio)->bv_len -= nr_bytes;
1790 }
1791
1792 blk_recalc_rq_sectors(req, total_bytes >> 9);
1793 blk_recalc_rq_segments(req);
1794 return 1;
1795}
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
1798 * queue lock must be held
1799 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001800static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001803
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001804 if (blk_rq_tagged(req))
1805 blk_queue_end_tag(req->q, req);
1806
1807 if (blk_queued_rq(req))
Tejun Heo53a08802008-12-03 12:41:26 +01001808 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 if (unlikely(laptop_mode) && blk_fs_request(req))
1811 laptop_io_completion();
1812
Mike Andersone78042e2008-10-30 02:16:20 -07001813 blk_delete_timer(req);
1814
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001815 /*
1816 * Account IO completion. bar_rq isn't accounted as a normal
1817 * IO on queueing nor completion. Accounting the containing
1818 * request is enough.
1819 */
1820 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001822 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001823 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001824 int cpu;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001825
Tejun Heo074a7ac2008-08-25 19:56:14 +09001826 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001827 part = disk_map_sector_rcu(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001828
Tejun Heo074a7ac2008-08-25 19:56:14 +09001829 part_stat_inc(cpu, part, ios[rw]);
1830 part_stat_add(cpu, part, ticks[rw], duration);
1831 part_round_stats(cpu, part);
1832 part_dec_in_flight(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001833
Tejun Heo074a7ac2008-08-25 19:56:14 +09001834 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001838 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001839 else {
1840 if (blk_bidi_rq(req))
1841 __blk_put_request(req->next_rq->q, req->next_rq);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
1846
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001847/**
1848 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001849 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001850 **/
1851unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001852{
1853 if (blk_fs_request(rq))
1854 return rq->hard_nr_sectors << 9;
1855
1856 return rq->data_len;
1857}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001858EXPORT_SYMBOL_GPL(blk_rq_bytes);
1859
1860/**
1861 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001862 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001863 **/
1864unsigned int blk_rq_cur_bytes(struct request *rq)
1865{
1866 if (blk_fs_request(rq))
1867 return rq->current_nr_sectors << 9;
1868
1869 if (rq->bio)
1870 return rq->bio->bi_size;
1871
1872 return rq->data_len;
1873}
1874EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001875
1876/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001877 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001878 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001879 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001880 *
1881 * Description:
1882 * Ends I/O on the current segment of a request. If that is the only
1883 * remaining segment, the request is also completed and freed.
1884 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001885 * This is a remnant of how older block drivers handled I/O completions.
1886 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001887 * they have a residual value to account for. For that case this function
1888 * isn't really useful, unless the residual just happens to be the
1889 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001890 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001891 **/
1892void end_request(struct request *req, int uptodate)
1893{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001894 int error = 0;
1895
1896 if (uptodate <= 0)
1897 error = uptodate ? uptodate : -EIO;
1898
1899 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001900}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901EXPORT_SYMBOL(end_request);
1902
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001903static int end_that_request_data(struct request *rq, int error,
1904 unsigned int nr_bytes, unsigned int bidi_bytes)
1905{
1906 if (rq->bio) {
1907 if (__end_that_request_first(rq, error, nr_bytes))
1908 return 1;
1909
1910 /* Bidi request must be completed as a whole */
1911 if (blk_bidi_rq(rq) &&
1912 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1913 return 1;
1914 }
1915
1916 return 0;
1917}
1918
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001919/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001920 * blk_end_io - Generic end_io function to complete a request.
1921 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001922 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001923 * @nr_bytes: number of bytes to complete @rq
1924 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001925 * @drv_callback: function called between completion of bios in the request
1926 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001927 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001928 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001929 *
1930 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001931 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001932 * If @rq has leftover, sets it up for the next range of segments.
1933 *
1934 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001935 * %0 - we are done with this request
1936 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001937 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001938static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1939 unsigned int bidi_bytes,
1940 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001941{
1942 struct request_queue *q = rq->q;
1943 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001944
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001945 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1946 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001947
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001948 /* Special feature for tricky drivers */
1949 if (drv_callback && drv_callback(rq))
1950 return 1;
1951
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001952 add_disk_randomness(rq->rq_disk);
1953
1954 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001955 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001956 spin_unlock_irqrestore(q->queue_lock, flags);
1957
1958 return 0;
1959}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001960
1961/**
1962 * blk_end_request - Helper function for drivers to complete the request.
1963 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001964 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001965 * @nr_bytes: number of bytes to complete
1966 *
1967 * Description:
1968 * Ends I/O on a number of bytes attached to @rq.
1969 * If @rq has leftover, sets it up for the next range of segments.
1970 *
1971 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001972 * %0 - we are done with this request
1973 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001974 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001975int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001976{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001977 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001978}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001979EXPORT_SYMBOL_GPL(blk_end_request);
1980
1981/**
1982 * __blk_end_request - Helper function for drivers to complete the request.
1983 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001984 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001985 * @nr_bytes: number of bytes to complete
1986 *
1987 * Description:
1988 * Must be called with queue lock held unlike blk_end_request().
1989 *
1990 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001991 * %0 - we are done with this request
1992 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001993 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001994int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001995{
Jens Axboe60540162008-08-26 13:34:34 +02001996 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02001997 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001998
1999 add_disk_randomness(rq->rq_disk);
2000
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002001 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002002
2003 return 0;
2004}
2005EXPORT_SYMBOL_GPL(__blk_end_request);
2006
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002007/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002008 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
2009 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002010 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002011 * @nr_bytes: number of bytes to complete @rq
2012 * @bidi_bytes: number of bytes to complete @rq->next_rq
2013 *
2014 * Description:
2015 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2016 *
2017 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002018 * %0 - we are done with this request
2019 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002020 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002021int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2022 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002023{
2024 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2025}
2026EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2027
2028/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002029 * blk_update_request - Special helper function for request stacking drivers
2030 * @rq: the request being processed
2031 * @error: %0 for success, < %0 for error
2032 * @nr_bytes: number of bytes to complete @rq
2033 *
2034 * Description:
2035 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2036 * the request structure even if @rq doesn't have leftover.
2037 * If @rq has leftover, sets it up for the next range of segments.
2038 *
2039 * This special helper function is only for request stacking drivers
2040 * (e.g. request-based dm) so that they can handle partial completion.
2041 * Actual device drivers should use blk_end_request instead.
2042 */
2043void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2044{
2045 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2046 /*
2047 * These members are not updated in end_that_request_data()
2048 * when all bios are completed.
2049 * Update them so that the request stacking driver can find
2050 * how many bytes remain in the request later.
2051 */
2052 rq->nr_sectors = rq->hard_nr_sectors = 0;
2053 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2054 }
2055}
2056EXPORT_SYMBOL_GPL(blk_update_request);
2057
2058/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002059 * blk_end_request_callback - Special helper function for tricky drivers
2060 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002061 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002062 * @nr_bytes: number of bytes to complete
2063 * @drv_callback: function called between completion of bios in the request
2064 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002065 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002066 * completion of the request.
2067 *
2068 * Description:
2069 * Ends I/O on a number of bytes attached to @rq.
2070 * If @rq has leftover, sets it up for the next range of segments.
2071 *
2072 * This special helper function is used only for existing tricky drivers.
2073 * (e.g. cdrom_newpc_intr() of ide-cd)
2074 * This interface will be removed when such drivers are rewritten.
2075 * Don't use this interface in other places anymore.
2076 *
2077 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002078 * %0 - we are done with this request
2079 * %1 - this request is not freed yet.
2080 * this request still has pending buffers or
2081 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002082 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002083int blk_end_request_callback(struct request *rq, int error,
2084 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002085 int (drv_callback)(struct request *))
2086{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002087 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002088}
2089EXPORT_SYMBOL_GPL(blk_end_request_callback);
2090
Jens Axboe86db1e22008-01-29 14:53:40 +01002091void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2092 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
David Woodhoused628eae2008-08-09 16:22:17 +01002094 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2095 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002096 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
David Woodhousefb2dce82008-08-05 18:01:53 +01002098 if (bio_has_data(bio)) {
2099 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002100 rq->buffer = bio_data(bio);
2101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 rq->current_nr_sectors = bio_cur_sectors(bio);
2103 rq->hard_cur_sectors = rq->current_nr_sectors;
2104 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002105 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
NeilBrown66846572007-08-16 13:31:28 +02002109 if (bio->bi_bdev)
2110 rq->rq_disk = bio->bi_bdev->bd_disk;
2111}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002113/**
2114 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2115 * @q : the queue of the device being checked
2116 *
2117 * Description:
2118 * Check if underlying low-level drivers of a device are busy.
2119 * If the drivers want to export their busy state, they must set own
2120 * exporting function using blk_queue_lld_busy() first.
2121 *
2122 * Basically, this function is used only by request stacking drivers
2123 * to stop dispatching requests to underlying devices when underlying
2124 * devices are busy. This behavior helps more I/O merging on the queue
2125 * of the request stacking driver and prevents I/O throughput regression
2126 * on burst I/O load.
2127 *
2128 * Return:
2129 * 0 - Not busy (The request stacking driver should dispatch request)
2130 * 1 - Busy (The request stacking driver should stop dispatching request)
2131 */
2132int blk_lld_busy(struct request_queue *q)
2133{
2134 if (q->lld_busy_fn)
2135 return q->lld_busy_fn(q);
2136
2137 return 0;
2138}
2139EXPORT_SYMBOL_GPL(blk_lld_busy);
2140
Jens Axboe18887ad2008-07-28 13:08:45 +02002141int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 return queue_work(kblockd_workqueue, work);
2144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145EXPORT_SYMBOL(kblockd_schedule_work);
2146
Andrew Morton19a75d82007-05-09 02:33:56 -07002147void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002149 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
Andrew Morton19a75d82007-05-09 02:33:56 -07002151EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153int __init blk_dev_init(void)
2154{
2155 kblockd_workqueue = create_workqueue("kblockd");
2156 if (!kblockd_workqueue)
2157 panic("Failed to create kblockd\n");
2158
2159 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002160 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Jens Axboe8324aa92008-01-29 14:51:59 +01002162 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002163 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return 0;
2166}
2167