blob: e6fdb288be65eaf3bc8cdbcd56b5c022836e12f5 [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 Axboeff856ba2006-01-09 16:02:34 +010029#include <linux/interrupt.h>
30#include <linux/cpu.h>
Jens Axboe2056a782006-03-23 20:00:26 +010031#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080032#include <linux/fault-inject.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Jens Axboe165125e2007-07-24 09:28:11 +020036static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * For the allocated request tables
40 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010041static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * For queue allocation
45 */
Jens Axboe6728cb02008-01-31 13:03:55 +010046struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * Controlling structure to kblockd
50 */
Jens Axboeff856ba2006-01-09 16:02:34 +010051static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Jens Axboeff856ba2006-01-09 16:02:34 +010053static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
54
Jens Axboe26b82562008-01-29 13:54:41 +010055static void drive_stat_acct(struct request *rq, int new_io)
56{
57 int rw = rq_data_dir(rq);
58
59 if (!blk_fs_request(rq) || !rq->rq_disk)
60 return;
61
62 if (!new_io) {
Jerome Marchand6f2576a2008-02-08 11:04:35 +010063 __all_stat_inc(rq->rq_disk, merges[rw], rq->sector);
Jens Axboe26b82562008-01-29 13:54:41 +010064 } else {
Jerome Marchand6f2576a2008-02-08 11:04:35 +010065 struct hd_struct *part = get_part(rq->rq_disk, rq->sector);
Jens Axboe26b82562008-01-29 13:54:41 +010066 disk_round_stats(rq->rq_disk);
67 rq->rq_disk->in_flight++;
Jerome Marchand6f2576a2008-02-08 11:04:35 +010068 if (part) {
69 part_round_stats(part);
70 part->in_flight++;
71 }
Jens Axboe26b82562008-01-29 13:54:41 +010072 }
73}
74
Jens Axboe8324aa92008-01-29 14:51:59 +010075void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 int nr;
78
79 nr = q->nr_requests - (q->nr_requests / 8) + 1;
80 if (nr > q->nr_requests)
81 nr = q->nr_requests;
82 q->nr_congestion_on = nr;
83
84 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
85 if (nr < 1)
86 nr = 1;
87 q->nr_congestion_off = nr;
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/**
91 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
92 * @bdev: device
93 *
94 * Locates the passed device's request queue and returns the address of its
95 * backing_dev_info
96 *
97 * Will return NULL if the request queue cannot be located.
98 */
99struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
100{
101 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200102 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 if (q)
105 ret = &q->backing_dev_info;
106 return ret;
107}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108EXPORT_SYMBOL(blk_get_backing_dev_info);
109
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200110void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200112 memset(rq, 0, sizeof(*rq));
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100115 INIT_LIST_HEAD(&rq->donelist);
Jens Axboe63a71382008-02-08 12:41:03 +0100116 rq->q = q;
117 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200118 INIT_HLIST_NODE(&rq->hash);
119 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe63a71382008-02-08 12:41:03 +0100120 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200123EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
NeilBrown5bb23a62007-09-27 12:46:13 +0200125static void req_bio_endio(struct request *rq, struct bio *bio,
126 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100127{
Jens Axboe165125e2007-07-24 09:28:11 +0200128 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100129
NeilBrown5bb23a62007-09-27 12:46:13 +0200130 if (&q->bar_rq != rq) {
131 if (error)
132 clear_bit(BIO_UPTODATE, &bio->bi_flags);
133 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
134 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100135
NeilBrown5bb23a62007-09-27 12:46:13 +0200136 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100137 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
NeilBrown5bb23a62007-09-27 12:46:13 +0200138 __FUNCTION__, nbytes, bio->bi_size);
139 nbytes = bio->bi_size;
140 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100141
NeilBrown5bb23a62007-09-27 12:46:13 +0200142 bio->bi_size -= nbytes;
143 bio->bi_sector += (nbytes >> 9);
144 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200145 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200146 } else {
147
148 /*
149 * Okay, this is the barrier request in progress, just
150 * record the error;
151 */
152 if (error && !q->orderr)
153 q->orderr = error;
154 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157void blk_dump_rq_flags(struct request *rq, char *msg)
158{
159 int bit;
160
Jens Axboe6728cb02008-01-31 13:03:55 +0100161 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200162 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
163 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jens Axboe6728cb02008-01-31 13:03:55 +0100165 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
166 (unsigned long long)rq->sector,
167 rq->nr_sectors,
168 rq->current_nr_sectors);
169 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
170 rq->bio, rq->biotail,
171 rq->buffer, rq->data,
172 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Jens Axboe4aff5e22006-08-10 08:44:47 +0200174 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100175 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200176 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 printk("%02x ", rq->cmd[bit]);
178 printk("\n");
179 }
180}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181EXPORT_SYMBOL(blk_dump_rq_flags);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * "plug" the device if there are no outstanding requests: this will
185 * force the transfer to start only after we have put all the requests
186 * on the list.
187 *
188 * This is called with interrupts off and no requests on the queue and
189 * with the queue lock held.
190 */
Jens Axboe165125e2007-07-24 09:28:11 +0200191void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 WARN_ON(!irqs_disabled());
194
195 /*
196 * don't plug a stopped queue, it must be paired with blk_start_queue()
197 * which will restart the queueing
198 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200199 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return;
201
Nick Piggin75ad23b2008-04-29 14:48:33 +0200202 if (!test_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
203 __set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +0100205 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208EXPORT_SYMBOL(blk_plug_device);
209
210/*
211 * remove the queue from the plugged list, if present. called with
212 * queue lock held and interrupts disabled.
213 */
Jens Axboe165125e2007-07-24 09:28:11 +0200214int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 WARN_ON(!irqs_disabled());
217
Nick Piggin75ad23b2008-04-29 14:48:33 +0200218 if (!test_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
220
Nick Piggin75ad23b2008-04-29 14:48:33 +0200221 queue_flag_clear(QUEUE_FLAG_PLUGGED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 del_timer(&q->unplug_timer);
223 return 1;
224}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225EXPORT_SYMBOL(blk_remove_plug);
226
227/*
228 * remove the plug and let it rip..
229 */
Jens Axboe165125e2007-07-24 09:28:11 +0200230void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200232 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return;
234
235 if (!blk_remove_plug(q))
236 return;
237
Jens Axboe22e2c502005-06-27 10:55:12 +0200238 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240EXPORT_SYMBOL(__generic_unplug_device);
241
242/**
243 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200244 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
246 * Description:
247 * Linux uses plugging to build bigger requests queues before letting
248 * the device have at them. If a queue is plugged, the I/O scheduler
249 * is still adding and merging requests on the queue. Once the queue
250 * gets unplugged, the request_fn defined for the queue is invoked and
251 * transfers started.
252 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200253void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 spin_lock_irq(q->queue_lock);
256 __generic_unplug_device(q);
257 spin_unlock_irq(q->queue_lock);
258}
259EXPORT_SYMBOL(generic_unplug_device);
260
261static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
262 struct page *page)
263{
Jens Axboe165125e2007-07-24 09:28:11 +0200264 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500266 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Jens Axboe86db1e22008-01-29 14:53:40 +0100269void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Jens Axboe165125e2007-07-24 09:28:11 +0200271 struct request_queue *q =
272 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Jens Axboe2056a782006-03-23 20:00:26 +0100274 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
275 q->rq.count[READ] + q->rq.count[WRITE]);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 q->unplug_fn(q);
278}
279
Jens Axboe86db1e22008-01-29 14:53:40 +0100280void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Jens Axboe165125e2007-07-24 09:28:11 +0200282 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jens Axboe2056a782006-03-23 20:00:26 +0100284 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
285 q->rq.count[READ] + q->rq.count[WRITE]);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 kblockd_schedule_work(&q->unplug_work);
288}
289
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500290void blk_unplug(struct request_queue *q)
291{
292 /*
293 * devices don't necessarily have an ->unplug_fn defined
294 */
295 if (q->unplug_fn) {
296 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
297 q->rq.count[READ] + q->rq.count[WRITE]);
298
299 q->unplug_fn(q);
300 }
301}
302EXPORT_SYMBOL(blk_unplug);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/**
305 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200306 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
308 * Description:
309 * blk_start_queue() will clear the stop flag on the queue, and call
310 * the request_fn for the queue if it was in a stopped state when
311 * entered. Also see blk_stop_queue(). Queue lock must be held.
312 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200313void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200315 WARN_ON(!irqs_disabled());
316
Nick Piggin75ad23b2008-04-29 14:48:33 +0200317 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 /*
320 * one level of recursion is ok and is much faster than kicking
321 * the unplug handling
322 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200323 if (!test_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
324 queue_flag_set(QUEUE_FLAG_REENTER, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200326 queue_flag_clear(QUEUE_FLAG_REENTER, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 } else {
328 blk_plug_device(q);
329 kblockd_schedule_work(&q->unplug_work);
330 }
331}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332EXPORT_SYMBOL(blk_start_queue);
333
334/**
335 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200336 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *
338 * Description:
339 * The Linux block layer assumes that a block driver will consume all
340 * entries on the request queue when the request_fn strategy is called.
341 * Often this will not happen, because of hardware limitations (queue
342 * depth settings). If a device driver gets a 'queue full' response,
343 * or if it simply chooses not to queue more I/O at one point, it can
344 * call this function to prevent the request_fn from being called until
345 * the driver has signalled it's ready to go again. This happens by calling
346 * blk_start_queue() to restart queue operations. Queue lock must be held.
347 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200348void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200351 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353EXPORT_SYMBOL(blk_stop_queue);
354
355/**
356 * blk_sync_queue - cancel any pending callbacks on a queue
357 * @q: the queue
358 *
359 * Description:
360 * The block layer may perform asynchronous callback activity
361 * on a queue, such as calling the unplug function after a timeout.
362 * A block device may call blk_sync_queue to ensure that any
363 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200364 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * that its ->make_request_fn will not re-add plugging prior to calling
366 * this function.
367 *
368 */
369void blk_sync_queue(struct request_queue *q)
370{
371 del_timer_sync(&q->unplug_timer);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200372 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374EXPORT_SYMBOL(blk_sync_queue);
375
376/**
377 * blk_run_queue - run a single device queue
378 * @q: The queue to run
379 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200380void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200383
384 /*
385 * Only recurse once to avoid overrunning the stack, let the unplug
386 * handling reinvoke the handler shortly if we already got there.
387 */
388 if (!elv_queue_empty(q)) {
Nick Piggin75ad23b2008-04-29 14:48:33 +0200389 if (!test_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
390 queue_flag_set(QUEUE_FLAG_REENTER, q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200391 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200392 queue_flag_clear(QUEUE_FLAG_REENTER, q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200393 } else {
394 blk_plug_device(q);
395 kblockd_schedule_work(&q->unplug_work);
396 }
397 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200398}
399EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200400
Nick Piggin75ad23b2008-04-29 14:48:33 +0200401/**
402 * blk_run_queue - run a single device queue
403 * @q: The queue to run
404 */
405void blk_run_queue(struct request_queue *q)
406{
407 unsigned long flags;
408
409 spin_lock_irqsave(q->queue_lock, flags);
410 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 spin_unlock_irqrestore(q->queue_lock, flags);
412}
413EXPORT_SYMBOL(blk_run_queue);
414
Jens Axboe165125e2007-07-24 09:28:11 +0200415void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500416{
417 kobject_put(&q->kobj);
418}
Al Viro483f4af2006-03-18 18:34:37 -0500419
Jens Axboe6728cb02008-01-31 13:03:55 +0100420void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500421{
422 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200423 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500424 mutex_unlock(&q->sysfs_lock);
425
426 if (q->elevator)
427 elevator_exit(q->elevator);
428
429 blk_put_queue(q);
430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431EXPORT_SYMBOL(blk_cleanup_queue);
432
Jens Axboe165125e2007-07-24 09:28:11 +0200433static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct request_list *rl = &q->rq;
436
437 rl->count[READ] = rl->count[WRITE] = 0;
438 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200439 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 init_waitqueue_head(&rl->wait[READ]);
441 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Christoph Lameter19460892005-06-23 00:08:19 -0700443 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
444 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (!rl->rq_pool)
447 return -ENOMEM;
448
449 return 0;
450}
451
Jens Axboe165125e2007-07-24 09:28:11 +0200452struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Christoph Lameter19460892005-06-23 00:08:19 -0700454 return blk_alloc_queue_node(gfp_mask, -1);
455}
456EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Jens Axboe165125e2007-07-24 09:28:11 +0200458struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700459{
Jens Axboe165125e2007-07-24 09:28:11 +0200460 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700461 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700462
Jens Axboe8324aa92008-01-29 14:51:59 +0100463 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700464 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!q)
466 return NULL;
467
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700468 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
469 q->backing_dev_info.unplug_io_data = q;
470 err = bdi_init(&q->backing_dev_info);
471 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100472 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700473 return NULL;
474 }
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500477
Jens Axboe8324aa92008-01-29 14:51:59 +0100478 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Al Viro483f4af2006-03-18 18:34:37 -0500480 mutex_init(&q->sysfs_lock);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return q;
483}
Christoph Lameter19460892005-06-23 00:08:19 -0700484EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486/**
487 * blk_init_queue - prepare a request queue for use with a block device
488 * @rfn: The function to be called to process requests that have been
489 * placed on the queue.
490 * @lock: Request queue spin lock
491 *
492 * Description:
493 * If a block device wishes to use the standard request handling procedures,
494 * which sorts requests and coalesces adjacent requests, then it must
495 * call blk_init_queue(). The function @rfn will be called when there
496 * are requests on the queue that need to be processed. If the device
497 * supports plugging, then @rfn may not be called immediately when requests
498 * are available on the queue, but may be called at some time later instead.
499 * Plugged queues are generally unplugged when a buffer belonging to one
500 * of the requests on the queue is needed, or due to memory pressure.
501 *
502 * @rfn is not required, or even expected, to remove all requests off the
503 * queue, but only as many as it can handle at a time. If it does leave
504 * requests on the queue, it is responsible for arranging that the requests
505 * get dealt with eventually.
506 *
507 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200508 * request queue; this lock will be taken also from interrupt context, so irq
509 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 *
511 * Function returns a pointer to the initialized request queue, or NULL if
512 * it didn't succeed.
513 *
514 * Note:
515 * blk_init_queue() must be paired with a blk_cleanup_queue() call
516 * when the block device is deactivated (such as at module unload).
517 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700518
Jens Axboe165125e2007-07-24 09:28:11 +0200519struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Christoph Lameter19460892005-06-23 00:08:19 -0700521 return blk_init_queue_node(rfn, lock, -1);
522}
523EXPORT_SYMBOL(blk_init_queue);
524
Jens Axboe165125e2007-07-24 09:28:11 +0200525struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700526blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
527{
Jens Axboe165125e2007-07-24 09:28:11 +0200528 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 if (!q)
531 return NULL;
532
Christoph Lameter19460892005-06-23 00:08:19 -0700533 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500534 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100535 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500536 return NULL;
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
152587d2005-04-12 16:22:06 -0500539 /*
540 * if caller didn't supply a lock, they get per-queue locking with
541 * our embedded lock
542 */
543 if (!lock) {
544 spin_lock_init(&q->__queue_lock);
545 lock = &q->__queue_lock;
546 }
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 q->prep_rq_fn = NULL;
550 q->unplug_fn = generic_unplug_device;
551 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
552 q->queue_lock = lock;
553
554 blk_queue_segment_boundary(q, 0xffffffff);
555
556 blk_queue_make_request(q, __make_request);
557 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
558
559 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
560 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
561
Alan Stern44ec9542007-02-20 11:01:57 -0500562 q->sg_reserved_size = INT_MAX;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /*
565 * all done
566 */
567 if (!elevator_init(q, NULL)) {
568 blk_queue_congestion_threshold(q);
569 return q;
570 }
571
Al Viro8669aaf2006-03-18 13:50:00 -0500572 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return NULL;
574}
Christoph Lameter19460892005-06-23 00:08:19 -0700575EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Jens Axboe165125e2007-07-24 09:28:11 +0200577int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700579 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500580 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0;
582 }
583
584 return 1;
585}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Jens Axboe165125e2007-07-24 09:28:11 +0200587static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200589 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200590 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 mempool_free(rq, q->rq.rq_pool);
592}
593
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200594static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200595blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
598
599 if (!rq)
600 return NULL;
601
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200602 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200605 * first three bits are identical in rq->cmd_flags and bio->bi_rw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 * see bio.h and blkdev.h
607 */
Jens Axboe49171e52006-08-10 08:59:11 +0200608 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Tejun Heocb98fc82005-10-28 08:29:39 +0200610 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200611 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200612 mempool_free(rq, q->rq.rq_pool);
613 return NULL;
614 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200615 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Tejun Heocb98fc82005-10-28 08:29:39 +0200618 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621/*
622 * ioc_batching returns true if the ioc is a valid batching request and
623 * should be given priority access to a request.
624 */
Jens Axboe165125e2007-07-24 09:28:11 +0200625static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 if (!ioc)
628 return 0;
629
630 /*
631 * Make sure the process is able to allocate at least 1 request
632 * even if the batch times out, otherwise we could theoretically
633 * lose wakeups.
634 */
635 return ioc->nr_batch_requests == q->nr_batching ||
636 (ioc->nr_batch_requests > 0
637 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
638}
639
640/*
641 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
642 * will cause the process to be a "batcher" on all queues in the system. This
643 * is the behaviour we want though - once it gets a wakeup it should be given
644 * a nice run.
645 */
Jens Axboe165125e2007-07-24 09:28:11 +0200646static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 if (!ioc || ioc_batching(q, ioc))
649 return;
650
651 ioc->nr_batch_requests = q->nr_batching;
652 ioc->last_waited = jiffies;
653}
654
Jens Axboe165125e2007-07-24 09:28:11 +0200655static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct request_list *rl = &q->rq;
658
659 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700660 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (waitqueue_active(&rl->wait[rw]))
664 wake_up(&rl->wait[rw]);
665
666 blk_clear_queue_full(q, rw);
667 }
668}
669
670/*
671 * A request has just been released. Account for it, update the full and
672 * congestion status, wake up any waiters. Called under q->queue_lock.
673 */
Jens Axboe165125e2007-07-24 09:28:11 +0200674static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct request_list *rl = &q->rq;
677
678 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200679 if (priv)
680 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 __freed_request(q, rw);
683
684 if (unlikely(rl->starved[rw ^ 1]))
685 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
689/*
Nick Piggind6344532005-06-28 20:45:14 -0700690 * Get a free request, queue_lock must be held.
691 * Returns NULL on failure, with queue_lock held.
692 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
Jens Axboe165125e2007-07-24 09:28:11 +0200694static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100695 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct request *rq = NULL;
698 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100699 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100700 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100701 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Jens Axboe7749a8d2006-12-13 13:02:26 +0100703 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100704 if (may_queue == ELV_MQUEUE_NO)
705 goto rq_starved;
706
707 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
708 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200709 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100710 /*
711 * The queue will fill after this allocation, so set
712 * it as full, and mark this process as "batching".
713 * This process will be allowed to complete a batch of
714 * requests, others will be blocked.
715 */
716 if (!blk_queue_full(q, rw)) {
717 ioc_set_batching(q, ioc);
718 blk_set_queue_full(q, rw);
719 } else {
720 if (may_queue != ELV_MQUEUE_MUST
721 && !ioc_batching(q, ioc)) {
722 /*
723 * The queue is full and the allocating
724 * process is not a "batcher", and not
725 * exempted by the IO scheduler
726 */
727 goto out;
728 }
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700731 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733
Jens Axboe082cf692005-06-28 16:35:11 +0200734 /*
735 * Only allow batching queuers to allocate up to 50% over the defined
736 * limit of requests, otherwise we could have thousands of requests
737 * allocated with any setting of ->nr_requests
738 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100739 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200740 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 rl->count[rw]++;
743 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200744
Jens Axboe64521d12005-10-28 08:30:39 +0200745 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200746 if (priv)
747 rl->elvpriv++;
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 spin_unlock_irq(q->queue_lock);
750
Jens Axboe7749a8d2006-12-13 13:02:26 +0100751 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100752 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * Allocation failed presumably due to memory. Undo anything
755 * we might have messed up.
756 *
757 * Allocating task should really be put onto the front of the
758 * wait queue, but this is pretty rare.
759 */
760 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200761 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /*
764 * in the very unlikely event that allocation failed and no
765 * requests for this direction was pending, mark us starved
766 * so that freeing of a request in the other direction will
767 * notice us. another possible fix would be to split the
768 * rq mempool into READ and WRITE
769 */
770rq_starved:
771 if (unlikely(rl->count[rw] == 0))
772 rl->starved[rw] = 1;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto out;
775 }
776
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100777 /*
778 * ioc may be NULL here, and ioc_batching will be false. That's
779 * OK, if the queue is under the request limit then requests need
780 * not count toward the nr_batch_requests limit. There will always
781 * be some limit enforced by BLK_BATCH_TIME.
782 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (ioc_batching(q, ioc))
784 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100785
Jens Axboe2056a782006-03-23 20:00:26 +0100786 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return rq;
789}
790
791/*
792 * No available requests for this queue, unplug the device and wait for some
793 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700794 *
795 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 */
Jens Axboe165125e2007-07-24 09:28:11 +0200797static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200798 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100800 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct request *rq;
802
Jens Axboe7749a8d2006-12-13 13:02:26 +0100803 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700804 while (!rq) {
805 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct request_list *rl = &q->rq;
807
808 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
809 TASK_UNINTERRUPTIBLE);
810
Jens Axboe7749a8d2006-12-13 13:02:26 +0100811 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (!rq) {
814 struct io_context *ioc;
815
Jens Axboe2056a782006-03-23 20:00:26 +0100816 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
817
Nick Piggind6344532005-06-28 20:45:14 -0700818 __generic_unplug_device(q);
819 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 io_schedule();
821
822 /*
823 * After sleeping, we become a "batching" process and
824 * will be able to allocate at least one request, and
825 * up to a big batch of them for a small period time.
826 * See ioc_batching, ioc_set_batching
827 */
Jens Axboeb5deef92006-07-19 23:39:40 +0200828 ioc = current_io_context(GFP_NOIO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 ioc_set_batching(q, ioc);
Nick Piggind6344532005-06-28 20:45:14 -0700830
831 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 finish_wait(&rl->wait[rw], &wait);
Nick Piggin450991b2005-06-28 20:45:13 -0700834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 return rq;
837}
838
Jens Axboe165125e2007-07-24 09:28:11 +0200839struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 struct request *rq;
842
843 BUG_ON(rw != READ && rw != WRITE);
844
Nick Piggind6344532005-06-28 20:45:14 -0700845 spin_lock_irq(q->queue_lock);
846 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200847 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700848 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200849 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700850 if (!rq)
851 spin_unlock_irq(q->queue_lock);
852 }
853 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 return rq;
856}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857EXPORT_SYMBOL(blk_get_request);
858
859/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200860 * blk_start_queueing - initiate dispatch of requests to device
861 * @q: request queue to kick into gear
862 *
863 * This is basically a helper to remove the need to know whether a queue
864 * is plugged or not if someone just wants to initiate dispatch of requests
865 * for this queue.
866 *
867 * The queue lock must be held with interrupts disabled.
868 */
Jens Axboe165125e2007-07-24 09:28:11 +0200869void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200870{
871 if (!blk_queue_plugged(q))
872 q->request_fn(q);
873 else
874 __generic_unplug_device(q);
875}
876EXPORT_SYMBOL(blk_start_queueing);
877
878/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 * blk_requeue_request - put a request back on queue
880 * @q: request queue where request should be inserted
881 * @rq: request to be inserted
882 *
883 * Description:
884 * Drivers often keep queueing requests until the hardware cannot accept
885 * more, when that condition happens we need to put the request back
886 * on the queue. Must be called with queue lock held.
887 */
Jens Axboe165125e2007-07-24 09:28:11 +0200888void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Jens Axboe2056a782006-03-23 20:00:26 +0100890 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (blk_rq_tagged(rq))
893 blk_queue_end_tag(q, rq);
894
895 elv_requeue_request(q, rq);
896}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897EXPORT_SYMBOL(blk_requeue_request);
898
899/**
900 * blk_insert_request - insert a special request in to a request queue
901 * @q: request queue where request should be inserted
902 * @rq: request to be inserted
903 * @at_head: insert request at head or tail of queue
904 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 *
906 * Description:
907 * Many block devices need to execute commands asynchronously, so they don't
908 * block the whole kernel from preemption during request execution. This is
909 * accomplished normally by inserting aritficial requests tagged as
910 * REQ_SPECIAL in to the corresponding request queue, and letting them be
911 * scheduled for actual execution by the request queue.
912 *
913 * We have the option of inserting the head or the tail of the queue.
914 * Typically we use the tail for new ioctls and so forth. We use the head
915 * of the queue for things like a QUEUE_FULL message from a device, or a
916 * host that is unable to accept a particular command.
917 */
Jens Axboe165125e2007-07-24 09:28:11 +0200918void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500919 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Tejun Heo 867d1192005-04-24 02:06:05 -0500921 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 unsigned long flags;
923
924 /*
925 * tell I/O scheduler that this isn't a regular read/write (ie it
926 * must not attempt merges on this) and that it acts as a soft
927 * barrier
928 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200929 rq->cmd_type = REQ_TYPE_SPECIAL;
930 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 rq->special = data;
933
934 spin_lock_irqsave(q->queue_lock, flags);
935
936 /*
937 * If command is tagged, release the tag
938 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500939 if (blk_rq_tagged(rq))
940 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200942 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500943 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200944 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 spin_unlock_irqrestore(q->queue_lock, flags);
946}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947EXPORT_SYMBOL(blk_insert_request);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
950 * add-request adds a request to the linked list.
951 * queue lock is held and interrupts disabled, as we muck with the
952 * request queue list.
953 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100954static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200956 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /*
959 * elevator indicated where it wants this request to be
960 * inserted at elevator_merge time
961 */
962 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
963}
Jens Axboe6728cb02008-01-31 13:03:55 +0100964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/*
966 * disk_round_stats() - Round off the performance stats on a struct
967 * disk_stats.
968 *
969 * The average IO queue length and utilisation statistics are maintained
970 * by observing the current state of the queue length and the amount of
971 * time it has been in this state for.
972 *
973 * Normally, that accounting is done on IO completion, but that can result
974 * in more than a second's worth of IO being accounted for within any one
975 * second, leading to >100% utilisation. To deal with that, we call this
976 * function to do a round-off before returning the results when reading
977 * /proc/diskstats. This accounts immediately for all queue usage up to
978 * the current jiffies and restarts the counters again.
979 */
980void disk_round_stats(struct gendisk *disk)
981{
982 unsigned long now = jiffies;
983
Chen, Kenneth Wb2982642005-10-13 21:49:29 +0200984 if (now == disk->stamp)
985 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Chen, Kenneth W20e5c812005-10-13 21:48:42 +0200987 if (disk->in_flight) {
988 __disk_stat_add(disk, time_in_queue,
989 disk->in_flight * (now - disk->stamp));
990 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800994EXPORT_SYMBOL_GPL(disk_round_stats);
995
Jerome Marchand6f2576a2008-02-08 11:04:35 +0100996void part_round_stats(struct hd_struct *part)
997{
998 unsigned long now = jiffies;
999
1000 if (now == part->stamp)
1001 return;
1002
1003 if (part->in_flight) {
1004 __part_stat_add(part, time_in_queue,
1005 part->in_flight * (now - part->stamp));
1006 __part_stat_add(part, io_ticks, (now - part->stamp));
1007 }
1008 part->stamp = now;
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
1012 * queue lock must be held
1013 */
Jens Axboe165125e2007-07-24 09:28:11 +02001014void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (unlikely(!q))
1017 return;
1018 if (unlikely(--req->ref_count))
1019 return;
1020
Tejun Heo8922e162005-10-20 16:23:44 +02001021 elv_completed_request(q, req);
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /*
1024 * Request may not have originated from ll_rw_blk. if not,
1025 * it didn't come out of our reserved rq pools
1026 */
Jens Axboe49171e52006-08-10 08:59:11 +02001027 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001029 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001032 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001035 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001038EXPORT_SYMBOL_GPL(__blk_put_request);
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040void blk_put_request(struct request *req)
1041{
Tejun Heo8922e162005-10-20 16:23:44 +02001042 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001043 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Tejun Heo8922e162005-10-20 16:23:44 +02001045 /*
1046 * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
1047 * following if (q) test.
1048 */
1049 if (q) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 spin_lock_irqsave(q->queue_lock, flags);
1051 __blk_put_request(q, req);
1052 spin_unlock_irqrestore(q->queue_lock, flags);
1053 }
1054}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055EXPORT_SYMBOL(blk_put_request);
1056
Jens Axboe86db1e22008-01-29 14:53:40 +01001057void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001058{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001059 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001060
1061 /*
1062 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1063 */
1064 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001065 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01001066
1067 /*
1068 * REQ_BARRIER implies no merging, but lets make it explicit
1069 */
1070 if (unlikely(bio_barrier(bio)))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001071 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001072
Jens Axboeb31dc662006-06-13 08:26:10 +02001073 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001074 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001075 if (bio_rw_meta(bio))
1076 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001077
Tejun Heo52d9e672006-01-06 09:49:58 +01001078 req->errors = 0;
1079 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001080 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001081 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001082 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001083}
1084
Jens Axboe165125e2007-07-24 09:28:11 +02001085static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Nick Piggin450991b2005-06-28 20:45:13 -07001087 struct request *req;
Jens Axboe51da90f2006-07-18 04:14:45 +02001088 int el_ret, nr_sectors, barrier, err;
1089 const unsigned short prio = bio_prio(bio);
1090 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001091 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 /*
1096 * low level driver can indicate that it wants pages above a
1097 * certain limit bounced to low memory (ie for highmem, or even
1098 * ISA dma in theory)
1099 */
1100 blk_queue_bounce(q, &bio);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01001103 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 err = -EOPNOTSUPP;
1105 goto end_io;
1106 }
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 spin_lock_irq(q->queue_lock);
1109
Nick Piggin450991b2005-06-28 20:45:13 -07001110 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 goto get_rq;
1112
1113 el_ret = elv_merge(q, &req, bio);
1114 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001115 case ELEVATOR_BACK_MERGE:
1116 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Jens Axboe6728cb02008-01-31 13:03:55 +01001118 if (!ll_back_merge_fn(q, req, bio))
1119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Jens Axboe6728cb02008-01-31 13:03:55 +01001121 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001122
Jens Axboe6728cb02008-01-31 13:03:55 +01001123 req->biotail->bi_next = bio;
1124 req->biotail = bio;
1125 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1126 req->ioprio = ioprio_best(req->ioprio, prio);
1127 drive_stat_acct(req, 0);
1128 if (!attempt_back_merge(q, req))
1129 elv_merged_request(q, req, el_ret);
1130 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Jens Axboe6728cb02008-01-31 13:03:55 +01001132 case ELEVATOR_FRONT_MERGE:
1133 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Jens Axboe6728cb02008-01-31 13:03:55 +01001135 if (!ll_front_merge_fn(q, req, bio))
1136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Jens Axboe6728cb02008-01-31 13:03:55 +01001138 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001139
Jens Axboe6728cb02008-01-31 13:03:55 +01001140 bio->bi_next = req->bio;
1141 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Jens Axboe6728cb02008-01-31 13:03:55 +01001143 /*
1144 * may not be valid. if the low level driver said
1145 * it didn't need a bounce buffer then it better
1146 * not touch req->buffer either...
1147 */
1148 req->buffer = bio_data(bio);
1149 req->current_nr_sectors = bio_cur_sectors(bio);
1150 req->hard_cur_sectors = req->current_nr_sectors;
1151 req->sector = req->hard_sector = bio->bi_sector;
1152 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1153 req->ioprio = ioprio_best(req->ioprio, prio);
1154 drive_stat_acct(req, 0);
1155 if (!attempt_front_merge(q, req))
1156 elv_merged_request(q, req, el_ret);
1157 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Jens Axboe6728cb02008-01-31 13:03:55 +01001159 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1160 default:
1161 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001165 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001166 * This sync check and mask will be re-done in init_request_from_bio(),
1167 * but we need to set it earlier to expose the sync flag to the
1168 * rq allocator and io schedulers.
1169 */
1170 rw_flags = bio_data_dir(bio);
1171 if (sync)
1172 rw_flags |= REQ_RW_SYNC;
1173
1174 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001175 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001176 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001177 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001178 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001179
Nick Piggin450991b2005-06-28 20:45:13 -07001180 /*
1181 * After dropping the lock and possibly sleeping here, our request
1182 * may now be mergeable after it had proven unmergeable (above).
1183 * We don't worry about that case for efficiency. It won't happen
1184 * often, and the elevators are able to handle it.
1185 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001186 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Nick Piggin450991b2005-06-28 20:45:13 -07001188 spin_lock_irq(q->queue_lock);
1189 if (elv_queue_empty(q))
1190 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 add_request(q, req);
1192out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001193 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 __generic_unplug_device(q);
1195
1196 spin_unlock_irq(q->queue_lock);
1197 return 0;
1198
1199end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001200 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return 0;
1202}
1203
1204/*
1205 * If bio->bi_dev is a partition, remap the location
1206 */
1207static inline void blk_partition_remap(struct bio *bio)
1208{
1209 struct block_device *bdev = bio->bi_bdev;
1210
Jens Axboebf2de6f2007-09-27 13:01:25 +02001211 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 bio->bi_sector += p->start_sect;
1215 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001216
1217 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
1218 bdev->bd_dev, bio->bi_sector,
1219 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221}
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223static void handle_bad_sector(struct bio *bio)
1224{
1225 char b[BDEVNAME_SIZE];
1226
1227 printk(KERN_INFO "attempt to access beyond end of device\n");
1228 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1229 bdevname(bio->bi_bdev, b),
1230 bio->bi_rw,
1231 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1232 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1233
1234 set_bit(BIO_EOF, &bio->bi_flags);
1235}
1236
Akinobu Mitac17bb492006-12-08 02:39:46 -08001237#ifdef CONFIG_FAIL_MAKE_REQUEST
1238
1239static DECLARE_FAULT_ATTR(fail_make_request);
1240
1241static int __init setup_fail_make_request(char *str)
1242{
1243 return setup_fault_attr(&fail_make_request, str);
1244}
1245__setup("fail_make_request=", setup_fail_make_request);
1246
1247static int should_fail_request(struct bio *bio)
1248{
1249 if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
1250 (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
1251 return should_fail(&fail_make_request, bio->bi_size);
1252
1253 return 0;
1254}
1255
1256static int __init fail_make_request_debugfs(void)
1257{
1258 return init_fault_attr_dentries(&fail_make_request,
1259 "fail_make_request");
1260}
1261
1262late_initcall(fail_make_request_debugfs);
1263
1264#else /* CONFIG_FAIL_MAKE_REQUEST */
1265
1266static inline int should_fail_request(struct bio *bio)
1267{
1268 return 0;
1269}
1270
1271#endif /* CONFIG_FAIL_MAKE_REQUEST */
1272
Jens Axboec07e2b42007-07-18 13:27:58 +02001273/*
1274 * Check whether this bio extends beyond the end of the device.
1275 */
1276static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1277{
1278 sector_t maxsector;
1279
1280 if (!nr_sectors)
1281 return 0;
1282
1283 /* Test device or partition size, when known. */
1284 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1285 if (maxsector) {
1286 sector_t sector = bio->bi_sector;
1287
1288 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1289 /*
1290 * This may well happen - the kernel calls bread()
1291 * without checking the size of the device, e.g., when
1292 * mounting a device.
1293 */
1294 handle_bad_sector(bio);
1295 return 1;
1296 }
1297 }
1298
1299 return 0;
1300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/**
1303 * generic_make_request: hand a buffer to its device driver for I/O
1304 * @bio: The bio describing the location in memory and on the device.
1305 *
1306 * generic_make_request() is used to make I/O requests of block
1307 * devices. It is passed a &struct bio, which describes the I/O that needs
1308 * to be done.
1309 *
1310 * generic_make_request() does not return any status. The
1311 * success/failure status of the request, along with notification of
1312 * completion, is delivered asynchronously through the bio->bi_end_io
1313 * function described (one day) else where.
1314 *
1315 * The caller of generic_make_request must make sure that bi_io_vec
1316 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1317 * set to describe the device address, and the
1318 * bi_end_io and optionally bi_private are set to describe how
1319 * completion notification should be signaled.
1320 *
1321 * generic_make_request and the drivers it calls may use bi_next if this
1322 * bio happens to be merged with someone else, and may change bi_dev and
1323 * bi_sector for remaps as it sees fit. So the values of these fields
1324 * should NOT be depended on after the call to generic_make_request.
1325 */
Neil Brownd89d8792007-05-01 09:53:42 +02001326static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Jens Axboe165125e2007-07-24 09:28:11 +02001328 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001329 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001331 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001332 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Jens Axboec07e2b42007-07-18 13:27:58 +02001336 if (bio_check_eod(bio, nr_sectors))
1337 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 /*
1340 * Resolve the mapping until finished. (drivers are
1341 * still free to implement/resolve their own stacking
1342 * by explicitly returning 0)
1343 *
1344 * NOTE: we don't repeat the blk_size check for each new device.
1345 * Stacking drivers are expected to know what they are doing.
1346 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001347 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001348 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 do {
1350 char b[BDEVNAME_SIZE];
1351
1352 q = bdev_get_queue(bio->bi_bdev);
1353 if (!q) {
1354 printk(KERN_ERR
1355 "generic_make_request: Trying to access "
1356 "nonexistent block-device %s (%Lu)\n",
1357 bdevname(bio->bi_bdev, b),
1358 (long long) bio->bi_sector);
1359end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001360 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
1362 }
1363
Jens Axboe4fa253f2007-07-18 13:13:10 +02001364 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001365 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 bdevname(bio->bi_bdev, b),
1367 bio_sectors(bio),
1368 q->max_hw_sectors);
1369 goto end_io;
1370 }
1371
Nick Pigginfde6ad22005-06-23 00:08:53 -07001372 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto end_io;
1374
Akinobu Mitac17bb492006-12-08 02:39:46 -08001375 if (should_fail_request(bio))
1376 goto end_io;
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * If this device has partitions, remap block n
1380 * of partition p to block n+start(p) of the disk.
1381 */
1382 blk_partition_remap(bio);
1383
NeilBrown5ddfe962006-10-30 22:07:21 -08001384 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02001385 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001386 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001387
1388 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
1389
NeilBrown5ddfe962006-10-30 22:07:21 -08001390 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001391 old_dev = bio->bi_bdev->bd_dev;
1392
Jens Axboec07e2b42007-07-18 13:27:58 +02001393 if (bio_check_eod(bio, nr_sectors))
1394 goto end_io;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001395 if (bio_empty_barrier(bio) && !q->prepare_flush_fn) {
1396 err = -EOPNOTSUPP;
1397 goto end_io;
1398 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 ret = q->make_request_fn(q, bio);
1401 } while (ret);
1402}
1403
Neil Brownd89d8792007-05-01 09:53:42 +02001404/*
1405 * We only want one ->make_request_fn to be active at a time,
1406 * else stack usage with stacked devices could be a problem.
1407 * So use current->bio_{list,tail} to keep a list of requests
1408 * submited by a make_request_fn function.
1409 * current->bio_tail is also used as a flag to say if
1410 * generic_make_request is currently active in this task or not.
1411 * If it is NULL, then no make_request is active. If it is non-NULL,
1412 * then a make_request is active, and new requests should be added
1413 * at the tail
1414 */
1415void generic_make_request(struct bio *bio)
1416{
1417 if (current->bio_tail) {
1418 /* make_request is active */
1419 *(current->bio_tail) = bio;
1420 bio->bi_next = NULL;
1421 current->bio_tail = &bio->bi_next;
1422 return;
1423 }
1424 /* following loop may be a bit non-obvious, and so deserves some
1425 * explanation.
1426 * Before entering the loop, bio->bi_next is NULL (as all callers
1427 * ensure that) so we have a list with a single bio.
1428 * We pretend that we have just taken it off a longer list, so
1429 * we assign bio_list to the next (which is NULL) and bio_tail
1430 * to &bio_list, thus initialising the bio_list of new bios to be
1431 * added. __generic_make_request may indeed add some more bios
1432 * through a recursive call to generic_make_request. If it
1433 * did, we find a non-NULL value in bio_list and re-enter the loop
1434 * from the top. In this case we really did just take the bio
1435 * of the top of the list (no pretending) and so fixup bio_list and
1436 * bio_tail or bi_next, and call into __generic_make_request again.
1437 *
1438 * The loop was structured like this to make only one call to
1439 * __generic_make_request (which is important as it is large and
1440 * inlined) and to keep the structure simple.
1441 */
1442 BUG_ON(bio->bi_next);
1443 do {
1444 current->bio_list = bio->bi_next;
1445 if (bio->bi_next == NULL)
1446 current->bio_tail = &current->bio_list;
1447 else
1448 bio->bi_next = NULL;
1449 __generic_make_request(bio);
1450 bio = current->bio_list;
1451 } while (bio);
1452 current->bio_tail = NULL; /* deactivate */
1453}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454EXPORT_SYMBOL(generic_make_request);
1455
1456/**
1457 * submit_bio: submit a bio to the block device layer for I/O
1458 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1459 * @bio: The &struct bio which describes the I/O
1460 *
1461 * submit_bio() is very similar in purpose to generic_make_request(), and
1462 * uses that function to do most of the work. Both are fairly rough
1463 * interfaces, @bio must be presetup and ready for I/O.
1464 *
1465 */
1466void submit_bio(int rw, struct bio *bio)
1467{
1468 int count = bio_sectors(bio);
1469
Jens Axboe22e2c502005-06-27 10:55:12 +02001470 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jens Axboebf2de6f2007-09-27 13:01:25 +02001472 /*
1473 * If it's a regular read/write or a barrier with data attached,
1474 * go through the normal accounting stuff before submission.
1475 */
1476 if (!bio_empty_barrier(bio)) {
1477
1478 BIO_BUG_ON(!bio->bi_size);
1479 BIO_BUG_ON(!bio->bi_io_vec);
1480
1481 if (rw & WRITE) {
1482 count_vm_events(PGPGOUT, count);
1483 } else {
1484 task_io_account_read(bio->bi_size);
1485 count_vm_events(PGPGIN, count);
1486 }
1487
1488 if (unlikely(block_dump)) {
1489 char b[BDEVNAME_SIZE];
1490 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001491 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001492 (rw & WRITE) ? "WRITE" : "READ",
1493 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001494 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
1498 generic_make_request(bio);
1499}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500EXPORT_SYMBOL(submit_bio);
1501
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001502/**
1503 * __end_that_request_first - end I/O on a request
1504 * @req: the request being processed
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001505 * @error: 0 for success, < 0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001506 * @nr_bytes: number of bytes to complete
1507 *
1508 * Description:
1509 * Ends I/O on a number of bytes attached to @req, and sets it up
1510 * for the next range of segments (if any) in the cluster.
1511 *
1512 * Return:
1513 * 0 - we are done with this request, call end_that_request_last()
1514 * 1 - still buffers pending for this request
1515 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001516static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 int nr_bytes)
1518{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001519 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct bio *bio;
1521
Jens Axboe2056a782006-03-23 20:00:26 +01001522 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 * for a REQ_BLOCK_PC request, we want to carry any eventual
1526 * sense key with us all the way through
1527 */
1528 if (!blk_pc_request(req))
1529 req->errors = 0;
1530
Jens Axboe6728cb02008-01-31 13:03:55 +01001531 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1532 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 req->rq_disk ? req->rq_disk->disk_name : "?",
1534 (unsigned long long)req->sector);
1535 }
1536
Jens Axboed72d9042005-11-01 08:35:42 +01001537 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01001538 const int rw = rq_data_dir(req);
1539
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001540 all_stat_add(req->rq_disk, sectors[rw],
1541 nr_bytes >> 9, req->sector);
Jens Axboed72d9042005-11-01 08:35:42 +01001542 }
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 total_bytes = bio_nbytes = 0;
1545 while ((bio = req->bio) != NULL) {
1546 int nbytes;
1547
Jens Axboebf2de6f2007-09-27 13:01:25 +02001548 /*
1549 * For an empty barrier request, the low level driver must
1550 * store a potential error location in ->sector. We pass
1551 * that back up in ->bi_sector.
1552 */
1553 if (blk_empty_barrier(req))
1554 bio->bi_sector = req->sector;
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (nr_bytes >= bio->bi_size) {
1557 req->bio = bio->bi_next;
1558 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001559 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 next_idx = 0;
1561 bio_nbytes = 0;
1562 } else {
1563 int idx = bio->bi_idx + next_idx;
1564
1565 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1566 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001567 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
1568 __FUNCTION__, bio->bi_idx,
1569 bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 break;
1571 }
1572
1573 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1574 BIO_BUG_ON(nbytes > bio->bi_size);
1575
1576 /*
1577 * not a complete bvec done
1578 */
1579 if (unlikely(nbytes > nr_bytes)) {
1580 bio_nbytes += nr_bytes;
1581 total_bytes += nr_bytes;
1582 break;
1583 }
1584
1585 /*
1586 * advance to the next vector
1587 */
1588 next_idx++;
1589 bio_nbytes += nbytes;
1590 }
1591
1592 total_bytes += nbytes;
1593 nr_bytes -= nbytes;
1594
Jens Axboe6728cb02008-01-31 13:03:55 +01001595 bio = req->bio;
1596 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 /*
1598 * end more in this run, or just return 'not-done'
1599 */
1600 if (unlikely(nr_bytes <= 0))
1601 break;
1602 }
1603 }
1604
1605 /*
1606 * completely done
1607 */
1608 if (!req->bio)
1609 return 0;
1610
1611 /*
1612 * if the request wasn't completed, update state
1613 */
1614 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001615 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 bio->bi_idx += next_idx;
1617 bio_iovec(bio)->bv_offset += nr_bytes;
1618 bio_iovec(bio)->bv_len -= nr_bytes;
1619 }
1620
1621 blk_recalc_rq_sectors(req, total_bytes >> 9);
1622 blk_recalc_rq_segments(req);
1623 return 1;
1624}
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626/*
Jens Axboeff856ba2006-01-09 16:02:34 +01001627 * splice the completion data to a local structure and hand off to
1628 * process_completion_queue() to complete the requests
1629 */
1630static void blk_done_softirq(struct softirq_action *h)
1631{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001632 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01001633
1634 local_irq_disable();
1635 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001636 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01001637 local_irq_enable();
1638
1639 while (!list_empty(&local_list)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001640 struct request *rq;
Jens Axboeff856ba2006-01-09 16:02:34 +01001641
Jens Axboe6728cb02008-01-31 13:03:55 +01001642 rq = list_entry(local_list.next, struct request, donelist);
Jens Axboeff856ba2006-01-09 16:02:34 +01001643 list_del_init(&rq->donelist);
1644 rq->q->softirq_done_fn(rq);
1645 }
1646}
1647
Jens Axboe6728cb02008-01-31 13:03:55 +01001648static int __cpuinit blk_cpu_notify(struct notifier_block *self,
1649 unsigned long action, void *hcpu)
Jens Axboeff856ba2006-01-09 16:02:34 +01001650{
1651 /*
1652 * If a CPU goes away, splice its entries to the current CPU
1653 * and trigger a run of the softirq
1654 */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001655 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Jens Axboeff856ba2006-01-09 16:02:34 +01001656 int cpu = (unsigned long) hcpu;
1657
1658 local_irq_disable();
1659 list_splice_init(&per_cpu(blk_cpu_done, cpu),
1660 &__get_cpu_var(blk_cpu_done));
1661 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1662 local_irq_enable();
1663 }
1664
1665 return NOTIFY_OK;
1666}
1667
1668
Satyam Sharmadb47d472007-08-23 09:29:40 +02001669static struct notifier_block blk_cpu_notifier __cpuinitdata = {
Jens Axboeff856ba2006-01-09 16:02:34 +01001670 .notifier_call = blk_cpu_notify,
1671};
1672
Jens Axboeff856ba2006-01-09 16:02:34 +01001673/**
1674 * blk_complete_request - end I/O on a request
1675 * @req: the request being processed
1676 *
1677 * Description:
1678 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001679 * unless the driver actually implements this in its completion callback
Jens Axboe4fa253f2007-07-18 13:13:10 +02001680 * through requeueing. The actual completion happens out-of-order,
Jens Axboeff856ba2006-01-09 16:02:34 +01001681 * through a softirq handler. The user must have registered a completion
1682 * callback through blk_queue_softirq_done().
1683 **/
1684
1685void blk_complete_request(struct request *req)
1686{
1687 struct list_head *cpu_list;
1688 unsigned long flags;
1689
1690 BUG_ON(!req->q->softirq_done_fn);
Jens Axboe6728cb02008-01-31 13:03:55 +01001691
Jens Axboeff856ba2006-01-09 16:02:34 +01001692 local_irq_save(flags);
1693
1694 cpu_list = &__get_cpu_var(blk_cpu_done);
1695 list_add_tail(&req->donelist, cpu_list);
1696 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1697
1698 local_irq_restore(flags);
1699}
Jens Axboeff856ba2006-01-09 16:02:34 +01001700EXPORT_SYMBOL(blk_complete_request);
Jens Axboe6728cb02008-01-31 13:03:55 +01001701
Jens Axboeff856ba2006-01-09 16:02:34 +01001702/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 * queue lock must be held
1704 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001705static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001708
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001709 if (blk_rq_tagged(req))
1710 blk_queue_end_tag(req->q, req);
1711
1712 if (blk_queued_rq(req))
1713 blkdev_dequeue_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 if (unlikely(laptop_mode) && blk_fs_request(req))
1716 laptop_io_completion();
1717
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001718 /*
1719 * Account IO completion. bar_rq isn't accounted as a normal
1720 * IO on queueing nor completion. Accounting the containing
1721 * request is enough.
1722 */
1723 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001725 const int rw = rq_data_dir(req);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001726 struct hd_struct *part = get_part(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001727
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001728 __all_stat_inc(disk, ios[rw], req->sector);
1729 __all_stat_add(disk, ticks[rw], duration, req->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 disk_round_stats(disk);
1731 disk->in_flight--;
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001732 if (part) {
1733 part_round_stats(part);
1734 part->in_flight--;
1735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001739 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001740 else {
1741 if (blk_bidi_rq(req))
1742 __blk_put_request(req->next_rq->q, req->next_rq);
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748static inline void __end_request(struct request *rq, int uptodate,
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001749 unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001751 int error = 0;
1752
1753 if (uptodate <= 0)
1754 error = uptodate ? uptodate : -EIO;
1755
1756 __blk_end_request(rq, error, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001759/**
1760 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001761 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001762 **/
1763unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001764{
1765 if (blk_fs_request(rq))
1766 return rq->hard_nr_sectors << 9;
1767
1768 return rq->data_len;
1769}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001770EXPORT_SYMBOL_GPL(blk_rq_bytes);
1771
1772/**
1773 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001774 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001775 **/
1776unsigned int blk_rq_cur_bytes(struct request *rq)
1777{
1778 if (blk_fs_request(rq))
1779 return rq->current_nr_sectors << 9;
1780
1781 if (rq->bio)
1782 return rq->bio->bi_size;
1783
1784 return rq->data_len;
1785}
1786EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001787
1788/**
1789 * end_queued_request - end all I/O on a queued request
1790 * @rq: the request being processed
1791 * @uptodate: error value or 0/1 uptodate flag
1792 *
1793 * Description:
1794 * Ends all I/O on a request, and removes it from the block layer queues.
1795 * Not suitable for normal IO completion, unless the driver still has
1796 * the request attached to the block layer.
1797 *
1798 **/
1799void end_queued_request(struct request *rq, int uptodate)
1800{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001801 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001802}
1803EXPORT_SYMBOL(end_queued_request);
1804
1805/**
1806 * end_dequeued_request - end all I/O on a dequeued request
1807 * @rq: the request being processed
1808 * @uptodate: error value or 0/1 uptodate flag
1809 *
1810 * Description:
1811 * Ends all I/O on a request. The request must already have been
1812 * dequeued using blkdev_dequeue_request(), as is normally the case
1813 * for most drivers.
1814 *
1815 **/
1816void end_dequeued_request(struct request *rq, int uptodate)
1817{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001818 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001819}
1820EXPORT_SYMBOL(end_dequeued_request);
1821
1822
1823/**
1824 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001825 * @req: the request being processed
Jens Axboea0cd1282007-09-21 10:41:07 +02001826 * @uptodate: error value or 0/1 uptodate flag
1827 *
1828 * Description:
1829 * Ends I/O on the current segment of a request. If that is the only
1830 * remaining segment, the request is also completed and freed.
1831 *
1832 * This is a remnant of how older block drivers handled IO completions.
1833 * Modern drivers typically end IO on the full request in one go, unless
1834 * they have a residual value to account for. For that case this function
1835 * isn't really useful, unless the residual just happens to be the
1836 * full current segment. In other words, don't use this function in new
1837 * code. Either use end_request_completely(), or the
1838 * end_that_request_chunk() (along with end_that_request_last()) for
1839 * partial completions.
1840 *
1841 **/
1842void end_request(struct request *req, int uptodate)
1843{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001844 __end_request(req, uptodate, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001845}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846EXPORT_SYMBOL(end_request);
1847
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001848/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001849 * blk_end_io - Generic end_io function to complete a request.
1850 * @rq: the request being processed
1851 * @error: 0 for success, < 0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001852 * @nr_bytes: number of bytes to complete @rq
1853 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001854 * @drv_callback: function called between completion of bios in the request
1855 * and completion of the request.
1856 * If the callback returns non 0, this helper returns without
1857 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001858 *
1859 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001860 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001861 * If @rq has leftover, sets it up for the next range of segments.
1862 *
1863 * Return:
1864 * 0 - we are done with this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001865 * 1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001866 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001867static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1868 unsigned int bidi_bytes,
1869 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001870{
1871 struct request_queue *q = rq->q;
1872 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001873
1874 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001875 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001876 return 1;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001877
1878 /* Bidi request must be completed as a whole */
1879 if (blk_bidi_rq(rq) &&
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001880 __end_that_request_first(rq->next_rq, error, bidi_bytes))
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001881 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001882 }
1883
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001884 /* Special feature for tricky drivers */
1885 if (drv_callback && drv_callback(rq))
1886 return 1;
1887
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001888 add_disk_randomness(rq->rq_disk);
1889
1890 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001891 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001892 spin_unlock_irqrestore(q->queue_lock, flags);
1893
1894 return 0;
1895}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001896
1897/**
1898 * blk_end_request - Helper function for drivers to complete the request.
1899 * @rq: the request being processed
1900 * @error: 0 for success, < 0 for error
1901 * @nr_bytes: number of bytes to complete
1902 *
1903 * Description:
1904 * Ends I/O on a number of bytes attached to @rq.
1905 * If @rq has leftover, sets it up for the next range of segments.
1906 *
1907 * Return:
1908 * 0 - we are done with this request
1909 * 1 - still buffers pending for this request
1910 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001911int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001912{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001913 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001914}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001915EXPORT_SYMBOL_GPL(blk_end_request);
1916
1917/**
1918 * __blk_end_request - Helper function for drivers to complete the request.
1919 * @rq: the request being processed
1920 * @error: 0 for success, < 0 for error
1921 * @nr_bytes: number of bytes to complete
1922 *
1923 * Description:
1924 * Must be called with queue lock held unlike blk_end_request().
1925 *
1926 * Return:
1927 * 0 - we are done with this request
1928 * 1 - still buffers pending for this request
1929 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001930int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001931{
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001932 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001933 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001934 return 1;
1935 }
1936
1937 add_disk_randomness(rq->rq_disk);
1938
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001939 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001940
1941 return 0;
1942}
1943EXPORT_SYMBOL_GPL(__blk_end_request);
1944
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001945/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001946 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1947 * @rq: the bidi request being processed
1948 * @error: 0 for success, < 0 for error
1949 * @nr_bytes: number of bytes to complete @rq
1950 * @bidi_bytes: number of bytes to complete @rq->next_rq
1951 *
1952 * Description:
1953 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
1954 *
1955 * Return:
1956 * 0 - we are done with this request
1957 * 1 - still buffers pending for this request
1958 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001959int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
1960 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001961{
1962 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
1963}
1964EXPORT_SYMBOL_GPL(blk_end_bidi_request);
1965
1966/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001967 * blk_end_request_callback - Special helper function for tricky drivers
1968 * @rq: the request being processed
1969 * @error: 0 for success, < 0 for error
1970 * @nr_bytes: number of bytes to complete
1971 * @drv_callback: function called between completion of bios in the request
1972 * and completion of the request.
1973 * If the callback returns non 0, this helper returns without
1974 * completion of the request.
1975 *
1976 * Description:
1977 * Ends I/O on a number of bytes attached to @rq.
1978 * If @rq has leftover, sets it up for the next range of segments.
1979 *
1980 * This special helper function is used only for existing tricky drivers.
1981 * (e.g. cdrom_newpc_intr() of ide-cd)
1982 * This interface will be removed when such drivers are rewritten.
1983 * Don't use this interface in other places anymore.
1984 *
1985 * Return:
1986 * 0 - we are done with this request
1987 * 1 - this request is not freed yet.
1988 * this request still has pending buffers or
1989 * the driver doesn't want to finish this request yet.
1990 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001991int blk_end_request_callback(struct request *rq, int error,
1992 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001993 int (drv_callback)(struct request *))
1994{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001995 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001996}
1997EXPORT_SYMBOL_GPL(blk_end_request_callback);
1998
Jens Axboe86db1e22008-01-29 14:53:40 +01001999void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2000 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002002 /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
2003 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 rq->nr_phys_segments = bio_phys_segments(q, bio);
2006 rq->nr_hw_segments = bio_hw_segments(q, bio);
2007 rq->current_nr_sectors = bio_cur_sectors(bio);
2008 rq->hard_cur_sectors = rq->current_nr_sectors;
2009 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
2010 rq->buffer = bio_data(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002011 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
NeilBrown66846572007-08-16 13:31:28 +02002015 if (bio->bi_bdev)
2016 rq->rq_disk = bio->bi_bdev->bd_disk;
2017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019int kblockd_schedule_work(struct work_struct *work)
2020{
2021 return queue_work(kblockd_workqueue, work);
2022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023EXPORT_SYMBOL(kblockd_schedule_work);
2024
Andrew Morton19a75d82007-05-09 02:33:56 -07002025void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002027 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Andrew Morton19a75d82007-05-09 02:33:56 -07002029EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031int __init blk_dev_init(void)
2032{
Jens Axboeff856ba2006-01-09 16:02:34 +01002033 int i;
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 kblockd_workqueue = create_workqueue("kblockd");
2036 if (!kblockd_workqueue)
2037 panic("Failed to create kblockd\n");
2038
2039 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002040 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Jens Axboe8324aa92008-01-29 14:51:59 +01002042 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002043 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002045 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01002046 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
2047
2048 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002049 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return 0;
2052}
2053