blob: 2cba5ef97b2b3a6d49559c8923a87e1ec128c2fa [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{
Jens Axboe28f13702008-05-07 10:15:46 +020057 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010058 int rw = rq_data_dir(rq);
59
60 if (!blk_fs_request(rq) || !rq->rq_disk)
61 return;
62
Jens Axboe28f13702008-05-07 10:15:46 +020063 part = get_part(rq->rq_disk, rq->sector);
64 if (!new_io)
65 __all_stat_inc(rq->rq_disk, part, merges[rw], rq->sector);
66 else {
Jens Axboe26b82562008-01-29 13:54:41 +010067 disk_round_stats(rq->rq_disk);
68 rq->rq_disk->in_flight++;
Jerome Marchand6f2576a2008-02-08 11:04:35 +010069 if (part) {
70 part_round_stats(part);
71 part->in_flight++;
72 }
Jens Axboe26b82562008-01-29 13:54:41 +010073 }
74}
75
Jens Axboe8324aa92008-01-29 14:51:59 +010076void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 int nr;
79
80 nr = q->nr_requests - (q->nr_requests / 8) + 1;
81 if (nr > q->nr_requests)
82 nr = q->nr_requests;
83 q->nr_congestion_on = nr;
84
85 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
86 if (nr < 1)
87 nr = 1;
88 q->nr_congestion_off = nr;
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/**
92 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
93 * @bdev: device
94 *
95 * Locates the passed device's request queue and returns the address of its
96 * backing_dev_info
97 *
98 * Will return NULL if the request queue cannot be located.
99 */
100struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
101{
102 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200103 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 if (q)
106 ret = &q->backing_dev_info;
107 return ret;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109EXPORT_SYMBOL(blk_get_backing_dev_info);
110
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200111void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200113 memset(rq, 0, sizeof(*rq));
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100116 INIT_LIST_HEAD(&rq->donelist);
Jens Axboe63a71382008-02-08 12:41:03 +0100117 rq->q = q;
118 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200119 INIT_HLIST_NODE(&rq->hash);
120 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200121 rq->cmd = rq->__cmd;
Jens Axboe63a71382008-02-08 12:41:03 +0100122 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100123 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200125EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
NeilBrown5bb23a62007-09-27 12:46:13 +0200127static void req_bio_endio(struct request *rq, struct bio *bio,
128 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100129{
Jens Axboe165125e2007-07-24 09:28:11 +0200130 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100131
NeilBrown5bb23a62007-09-27 12:46:13 +0200132 if (&q->bar_rq != rq) {
133 if (error)
134 clear_bit(BIO_UPTODATE, &bio->bi_flags);
135 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
136 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100137
NeilBrown5bb23a62007-09-27 12:46:13 +0200138 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100139 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700140 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200141 nbytes = bio->bi_size;
142 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100143
NeilBrown5bb23a62007-09-27 12:46:13 +0200144 bio->bi_size -= nbytes;
145 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200146
147 if (bio_integrity(bio))
148 bio_integrity_advance(bio, nbytes);
149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200151 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200152 } else {
153
154 /*
155 * Okay, this is the barrier request in progress, just
156 * record the error;
157 */
158 if (error && !q->orderr)
159 q->orderr = error;
160 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100161}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163void blk_dump_rq_flags(struct request *rq, char *msg)
164{
165 int bit;
166
Jens Axboe6728cb02008-01-31 13:03:55 +0100167 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200168 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
169 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Jens Axboe6728cb02008-01-31 13:03:55 +0100171 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
172 (unsigned long long)rq->sector,
173 rq->nr_sectors,
174 rq->current_nr_sectors);
175 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
176 rq->bio, rq->biotail,
177 rq->buffer, rq->data,
178 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Jens Axboe4aff5e22006-08-10 08:44:47 +0200180 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100181 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200182 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 printk("%02x ", rq->cmd[bit]);
184 printk("\n");
185 }
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187EXPORT_SYMBOL(blk_dump_rq_flags);
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
190 * "plug" the device if there are no outstanding requests: this will
191 * force the transfer to start only after we have put all the requests
192 * on the list.
193 *
194 * This is called with interrupts off and no requests on the queue and
195 * with the queue lock held.
196 */
Jens Axboe165125e2007-07-24 09:28:11 +0200197void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 WARN_ON(!irqs_disabled());
200
201 /*
202 * don't plug a stopped queue, it must be paired with blk_start_queue()
203 * which will restart the queueing
204 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200205 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return;
207
Jens Axboee48ec692008-07-03 13:18:54 +0200208 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +0100210 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213EXPORT_SYMBOL(blk_plug_device);
214
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200215/**
216 * blk_plug_device_unlocked - plug a device without queue lock held
217 * @q: The &struct request_queue to plug
218 *
219 * Description:
220 * Like @blk_plug_device(), but grabs the queue lock and disables
221 * interrupts.
222 **/
223void blk_plug_device_unlocked(struct request_queue *q)
224{
225 unsigned long flags;
226
227 spin_lock_irqsave(q->queue_lock, flags);
228 blk_plug_device(q);
229 spin_unlock_irqrestore(q->queue_lock, flags);
230}
231EXPORT_SYMBOL(blk_plug_device_unlocked);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/*
234 * remove the queue from the plugged list, if present. called with
235 * queue lock held and interrupts disabled.
236 */
Jens Axboe165125e2007-07-24 09:28:11 +0200237int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 WARN_ON(!irqs_disabled());
240
Jens Axboee48ec692008-07-03 13:18:54 +0200241 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243
244 del_timer(&q->unplug_timer);
245 return 1;
246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247EXPORT_SYMBOL(blk_remove_plug);
248
249/*
250 * remove the plug and let it rip..
251 */
Jens Axboe165125e2007-07-24 09:28:11 +0200252void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200254 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return;
256
257 if (!blk_remove_plug(q))
258 return;
259
Jens Axboe22e2c502005-06-27 10:55:12 +0200260 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262EXPORT_SYMBOL(__generic_unplug_device);
263
264/**
265 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200266 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
268 * Description:
269 * Linux uses plugging to build bigger requests queues before letting
270 * the device have at them. If a queue is plugged, the I/O scheduler
271 * is still adding and merging requests on the queue. Once the queue
272 * gets unplugged, the request_fn defined for the queue is invoked and
273 * transfers started.
274 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200275void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200277 if (blk_queue_plugged(q)) {
278 spin_lock_irq(q->queue_lock);
279 __generic_unplug_device(q);
280 spin_unlock_irq(q->queue_lock);
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283EXPORT_SYMBOL(generic_unplug_device);
284
285static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
286 struct page *page)
287{
Jens Axboe165125e2007-07-24 09:28:11 +0200288 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500290 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Jens Axboe86db1e22008-01-29 14:53:40 +0100293void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Jens Axboe165125e2007-07-24 09:28:11 +0200295 struct request_queue *q =
296 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jens Axboe2056a782006-03-23 20:00:26 +0100298 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
299 q->rq.count[READ] + q->rq.count[WRITE]);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 q->unplug_fn(q);
302}
303
Jens Axboe86db1e22008-01-29 14:53:40 +0100304void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Jens Axboe165125e2007-07-24 09:28:11 +0200306 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Jens Axboe2056a782006-03-23 20:00:26 +0100308 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
309 q->rq.count[READ] + q->rq.count[WRITE]);
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 kblockd_schedule_work(&q->unplug_work);
312}
313
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500314void blk_unplug(struct request_queue *q)
315{
316 /*
317 * devices don't necessarily have an ->unplug_fn defined
318 */
319 if (q->unplug_fn) {
320 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
321 q->rq.count[READ] + q->rq.count[WRITE]);
322
323 q->unplug_fn(q);
324 }
325}
326EXPORT_SYMBOL(blk_unplug);
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/**
329 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200330 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
332 * Description:
333 * blk_start_queue() will clear the stop flag on the queue, and call
334 * the request_fn for the queue if it was in a stopped state when
335 * entered. Also see blk_stop_queue(). Queue lock must be held.
336 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200337void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200339 WARN_ON(!irqs_disabled());
340
Nick Piggin75ad23b2008-04-29 14:48:33 +0200341 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /*
344 * one level of recursion is ok and is much faster than kicking
345 * the unplug handling
346 */
Jens Axboee48ec692008-07-03 13:18:54 +0200347 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200349 queue_flag_clear(QUEUE_FLAG_REENTER, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 } else {
351 blk_plug_device(q);
352 kblockd_schedule_work(&q->unplug_work);
353 }
354}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355EXPORT_SYMBOL(blk_start_queue);
356
357/**
358 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200359 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 *
361 * Description:
362 * The Linux block layer assumes that a block driver will consume all
363 * entries on the request queue when the request_fn strategy is called.
364 * Often this will not happen, because of hardware limitations (queue
365 * depth settings). If a device driver gets a 'queue full' response,
366 * or if it simply chooses not to queue more I/O at one point, it can
367 * call this function to prevent the request_fn from being called until
368 * the driver has signalled it's ready to go again. This happens by calling
369 * blk_start_queue() to restart queue operations. Queue lock must be held.
370 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200371void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200374 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376EXPORT_SYMBOL(blk_stop_queue);
377
378/**
379 * blk_sync_queue - cancel any pending callbacks on a queue
380 * @q: the queue
381 *
382 * Description:
383 * The block layer may perform asynchronous callback activity
384 * on a queue, such as calling the unplug function after a timeout.
385 * A block device may call blk_sync_queue to ensure that any
386 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200387 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * that its ->make_request_fn will not re-add plugging prior to calling
389 * this function.
390 *
391 */
392void blk_sync_queue(struct request_queue *q)
393{
394 del_timer_sync(&q->unplug_timer);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200395 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397EXPORT_SYMBOL(blk_sync_queue);
398
399/**
400 * blk_run_queue - run a single device queue
401 * @q: The queue to run
402 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200403void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200406
407 /*
408 * Only recurse once to avoid overrunning the stack, let the unplug
409 * handling reinvoke the handler shortly if we already got there.
410 */
411 if (!elv_queue_empty(q)) {
Jens Axboee48ec692008-07-03 13:18:54 +0200412 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
Jens Axboedac07ec2006-05-11 08:20:16 +0200413 q->request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200414 queue_flag_clear(QUEUE_FLAG_REENTER, q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200415 } else {
416 blk_plug_device(q);
417 kblockd_schedule_work(&q->unplug_work);
418 }
419 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200420}
421EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200422
Nick Piggin75ad23b2008-04-29 14:48:33 +0200423/**
424 * blk_run_queue - run a single device queue
425 * @q: The queue to run
426 */
427void blk_run_queue(struct request_queue *q)
428{
429 unsigned long flags;
430
431 spin_lock_irqsave(q->queue_lock, flags);
432 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 spin_unlock_irqrestore(q->queue_lock, flags);
434}
435EXPORT_SYMBOL(blk_run_queue);
436
Jens Axboe165125e2007-07-24 09:28:11 +0200437void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500438{
439 kobject_put(&q->kobj);
440}
Al Viro483f4af2006-03-18 18:34:37 -0500441
Jens Axboe6728cb02008-01-31 13:03:55 +0100442void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500443{
444 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200445 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500446 mutex_unlock(&q->sysfs_lock);
447
448 if (q->elevator)
449 elevator_exit(q->elevator);
450
451 blk_put_queue(q);
452}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453EXPORT_SYMBOL(blk_cleanup_queue);
454
Jens Axboe165125e2007-07-24 09:28:11 +0200455static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct request_list *rl = &q->rq;
458
459 rl->count[READ] = rl->count[WRITE] = 0;
460 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200461 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 init_waitqueue_head(&rl->wait[READ]);
463 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Christoph Lameter19460892005-06-23 00:08:19 -0700465 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
466 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!rl->rq_pool)
469 return -ENOMEM;
470
471 return 0;
472}
473
Jens Axboe165125e2007-07-24 09:28:11 +0200474struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Christoph Lameter19460892005-06-23 00:08:19 -0700476 return blk_alloc_queue_node(gfp_mask, -1);
477}
478EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Jens Axboe165125e2007-07-24 09:28:11 +0200480struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700481{
Jens Axboe165125e2007-07-24 09:28:11 +0200482 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700483 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700484
Jens Axboe8324aa92008-01-29 14:51:59 +0100485 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700486 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (!q)
488 return NULL;
489
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700490 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
491 q->backing_dev_info.unplug_io_data = q;
492 err = bdi_init(&q->backing_dev_info);
493 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100494 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700495 return NULL;
496 }
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500499
Jens Axboe8324aa92008-01-29 14:51:59 +0100500 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Al Viro483f4af2006-03-18 18:34:37 -0500502 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700503 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return q;
506}
Christoph Lameter19460892005-06-23 00:08:19 -0700507EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509/**
510 * blk_init_queue - prepare a request queue for use with a block device
511 * @rfn: The function to be called to process requests that have been
512 * placed on the queue.
513 * @lock: Request queue spin lock
514 *
515 * Description:
516 * If a block device wishes to use the standard request handling procedures,
517 * which sorts requests and coalesces adjacent requests, then it must
518 * call blk_init_queue(). The function @rfn will be called when there
519 * are requests on the queue that need to be processed. If the device
520 * supports plugging, then @rfn may not be called immediately when requests
521 * are available on the queue, but may be called at some time later instead.
522 * Plugged queues are generally unplugged when a buffer belonging to one
523 * of the requests on the queue is needed, or due to memory pressure.
524 *
525 * @rfn is not required, or even expected, to remove all requests off the
526 * queue, but only as many as it can handle at a time. If it does leave
527 * requests on the queue, it is responsible for arranging that the requests
528 * get dealt with eventually.
529 *
530 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200531 * request queue; this lock will be taken also from interrupt context, so irq
532 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 *
534 * Function returns a pointer to the initialized request queue, or NULL if
535 * it didn't succeed.
536 *
537 * Note:
538 * blk_init_queue() must be paired with a blk_cleanup_queue() call
539 * when the block device is deactivated (such as at module unload).
540 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700541
Jens Axboe165125e2007-07-24 09:28:11 +0200542struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Christoph Lameter19460892005-06-23 00:08:19 -0700544 return blk_init_queue_node(rfn, lock, -1);
545}
546EXPORT_SYMBOL(blk_init_queue);
547
Jens Axboe165125e2007-07-24 09:28:11 +0200548struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700549blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
550{
Jens Axboe165125e2007-07-24 09:28:11 +0200551 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if (!q)
554 return NULL;
555
Christoph Lameter19460892005-06-23 00:08:19 -0700556 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500557 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100558 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500559 return NULL;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
152587d2005-04-12 16:22:06 -0500562 /*
563 * if caller didn't supply a lock, they get per-queue locking with
564 * our embedded lock
565 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700566 if (!lock)
152587d2005-04-12 16:22:06 -0500567 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 q->prep_rq_fn = NULL;
571 q->unplug_fn = generic_unplug_device;
572 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
573 q->queue_lock = lock;
574
575 blk_queue_segment_boundary(q, 0xffffffff);
576
577 blk_queue_make_request(q, __make_request);
578 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
579
580 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
581 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
582
Alan Stern44ec9542007-02-20 11:01:57 -0500583 q->sg_reserved_size = INT_MAX;
584
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900585 blk_set_cmd_filter_defaults(&q->cmd_filter);
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /*
588 * all done
589 */
590 if (!elevator_init(q, NULL)) {
591 blk_queue_congestion_threshold(q);
592 return q;
593 }
594
Al Viro8669aaf2006-03-18 13:50:00 -0500595 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return NULL;
597}
Christoph Lameter19460892005-06-23 00:08:19 -0700598EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jens Axboe165125e2007-07-24 09:28:11 +0200600int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700602 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500603 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 0;
605 }
606
607 return 1;
608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Jens Axboe165125e2007-07-24 09:28:11 +0200610static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200612 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200613 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 mempool_free(rq, q->rq.rq_pool);
615}
616
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200617static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200618blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
621
622 if (!rq)
623 return NULL;
624
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200625 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200628 * first three bits are identical in rq->cmd_flags and bio->bi_rw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * see bio.h and blkdev.h
630 */
Jens Axboe49171e52006-08-10 08:59:11 +0200631 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Tejun Heocb98fc82005-10-28 08:29:39 +0200633 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200634 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200635 mempool_free(rq, q->rq.rq_pool);
636 return NULL;
637 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200638 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Tejun Heocb98fc82005-10-28 08:29:39 +0200641 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644/*
645 * ioc_batching returns true if the ioc is a valid batching request and
646 * should be given priority access to a request.
647 */
Jens Axboe165125e2007-07-24 09:28:11 +0200648static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
650 if (!ioc)
651 return 0;
652
653 /*
654 * Make sure the process is able to allocate at least 1 request
655 * even if the batch times out, otherwise we could theoretically
656 * lose wakeups.
657 */
658 return ioc->nr_batch_requests == q->nr_batching ||
659 (ioc->nr_batch_requests > 0
660 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
661}
662
663/*
664 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
665 * will cause the process to be a "batcher" on all queues in the system. This
666 * is the behaviour we want though - once it gets a wakeup it should be given
667 * a nice run.
668 */
Jens Axboe165125e2007-07-24 09:28:11 +0200669static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 if (!ioc || ioc_batching(q, ioc))
672 return;
673
674 ioc->nr_batch_requests = q->nr_batching;
675 ioc->last_waited = jiffies;
676}
677
Jens Axboe165125e2007-07-24 09:28:11 +0200678static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 struct request_list *rl = &q->rq;
681
682 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700683 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (waitqueue_active(&rl->wait[rw]))
687 wake_up(&rl->wait[rw]);
688
689 blk_clear_queue_full(q, rw);
690 }
691}
692
693/*
694 * A request has just been released. Account for it, update the full and
695 * congestion status, wake up any waiters. Called under q->queue_lock.
696 */
Jens Axboe165125e2007-07-24 09:28:11 +0200697static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct request_list *rl = &q->rq;
700
701 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200702 if (priv)
703 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 __freed_request(q, rw);
706
707 if (unlikely(rl->starved[rw ^ 1]))
708 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
712/*
Nick Piggind6344532005-06-28 20:45:14 -0700713 * Get a free request, queue_lock must be held.
714 * Returns NULL on failure, with queue_lock held.
715 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 */
Jens Axboe165125e2007-07-24 09:28:11 +0200717static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100718 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct request *rq = NULL;
721 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100722 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100723 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100724 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Jens Axboe7749a8d2006-12-13 13:02:26 +0100726 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100727 if (may_queue == ELV_MQUEUE_NO)
728 goto rq_starved;
729
730 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
731 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200732 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100733 /*
734 * The queue will fill after this allocation, so set
735 * it as full, and mark this process as "batching".
736 * This process will be allowed to complete a batch of
737 * requests, others will be blocked.
738 */
739 if (!blk_queue_full(q, rw)) {
740 ioc_set_batching(q, ioc);
741 blk_set_queue_full(q, rw);
742 } else {
743 if (may_queue != ELV_MQUEUE_MUST
744 && !ioc_batching(q, ioc)) {
745 /*
746 * The queue is full and the allocating
747 * process is not a "batcher", and not
748 * exempted by the IO scheduler
749 */
750 goto out;
751 }
752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700754 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Jens Axboe082cf692005-06-28 16:35:11 +0200757 /*
758 * Only allow batching queuers to allocate up to 50% over the defined
759 * limit of requests, otherwise we could have thousands of requests
760 * allocated with any setting of ->nr_requests
761 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100762 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200763 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 rl->count[rw]++;
766 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200767
Jens Axboe64521d12005-10-28 08:30:39 +0200768 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200769 if (priv)
770 rl->elvpriv++;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 spin_unlock_irq(q->queue_lock);
773
Jens Axboe7749a8d2006-12-13 13:02:26 +0100774 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100775 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /*
777 * Allocation failed presumably due to memory. Undo anything
778 * we might have messed up.
779 *
780 * Allocating task should really be put onto the front of the
781 * wait queue, but this is pretty rare.
782 */
783 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200784 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /*
787 * in the very unlikely event that allocation failed and no
788 * requests for this direction was pending, mark us starved
789 * so that freeing of a request in the other direction will
790 * notice us. another possible fix would be to split the
791 * rq mempool into READ and WRITE
792 */
793rq_starved:
794 if (unlikely(rl->count[rw] == 0))
795 rl->starved[rw] = 1;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto out;
798 }
799
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100800 /*
801 * ioc may be NULL here, and ioc_batching will be false. That's
802 * OK, if the queue is under the request limit then requests need
803 * not count toward the nr_batch_requests limit. There will always
804 * be some limit enforced by BLK_BATCH_TIME.
805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (ioc_batching(q, ioc))
807 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100808
Jens Axboe2056a782006-03-23 20:00:26 +0100809 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return rq;
812}
813
814/*
815 * No available requests for this queue, unplug the device and wait for some
816 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700817 *
818 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
Jens Axboe165125e2007-07-24 09:28:11 +0200820static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200821 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100823 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct request *rq;
825
Jens Axboe7749a8d2006-12-13 13:02:26 +0100826 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700827 while (!rq) {
828 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200829 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct request_list *rl = &q->rq;
831
832 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
833 TASK_UNINTERRUPTIBLE);
834
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200835 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200837 __generic_unplug_device(q);
838 spin_unlock_irq(q->queue_lock);
839 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200841 /*
842 * After sleeping, we become a "batching" process and
843 * will be able to allocate at least one request, and
844 * up to a big batch of them for a small period time.
845 * See ioc_batching, ioc_set_batching
846 */
847 ioc = current_io_context(GFP_NOIO, q->node);
848 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100849
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200850 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 finish_wait(&rl->wait[rw], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200852
853 rq = get_request(q, rw_flags, bio, GFP_NOIO);
854 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 return rq;
857}
858
Jens Axboe165125e2007-07-24 09:28:11 +0200859struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct request *rq;
862
863 BUG_ON(rw != READ && rw != WRITE);
864
Nick Piggind6344532005-06-28 20:45:14 -0700865 spin_lock_irq(q->queue_lock);
866 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200867 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700868 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200869 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700870 if (!rq)
871 spin_unlock_irq(q->queue_lock);
872 }
873 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 return rq;
876}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877EXPORT_SYMBOL(blk_get_request);
878
879/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200880 * blk_start_queueing - initiate dispatch of requests to device
881 * @q: request queue to kick into gear
882 *
883 * This is basically a helper to remove the need to know whether a queue
884 * is plugged or not if someone just wants to initiate dispatch of requests
885 * for this queue.
886 *
887 * The queue lock must be held with interrupts disabled.
888 */
Jens Axboe165125e2007-07-24 09:28:11 +0200889void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200890{
891 if (!blk_queue_plugged(q))
892 q->request_fn(q);
893 else
894 __generic_unplug_device(q);
895}
896EXPORT_SYMBOL(blk_start_queueing);
897
898/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * blk_requeue_request - put a request back on queue
900 * @q: request queue where request should be inserted
901 * @rq: request to be inserted
902 *
903 * Description:
904 * Drivers often keep queueing requests until the hardware cannot accept
905 * more, when that condition happens we need to put the request back
906 * on the queue. Must be called with queue lock held.
907 */
Jens Axboe165125e2007-07-24 09:28:11 +0200908void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Jens Axboe2056a782006-03-23 20:00:26 +0100910 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (blk_rq_tagged(rq))
913 blk_queue_end_tag(q, rq);
914
915 elv_requeue_request(q, rq);
916}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917EXPORT_SYMBOL(blk_requeue_request);
918
919/**
920 * blk_insert_request - insert a special request in to a request queue
921 * @q: request queue where request should be inserted
922 * @rq: request to be inserted
923 * @at_head: insert request at head or tail of queue
924 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 *
926 * Description:
927 * Many block devices need to execute commands asynchronously, so they don't
928 * block the whole kernel from preemption during request execution. This is
929 * accomplished normally by inserting aritficial requests tagged as
930 * REQ_SPECIAL in to the corresponding request queue, and letting them be
931 * scheduled for actual execution by the request queue.
932 *
933 * We have the option of inserting the head or the tail of the queue.
934 * Typically we use the tail for new ioctls and so forth. We use the head
935 * of the queue for things like a QUEUE_FULL message from a device, or a
936 * host that is unable to accept a particular command.
937 */
Jens Axboe165125e2007-07-24 09:28:11 +0200938void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500939 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Tejun Heo 867d1192005-04-24 02:06:05 -0500941 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 unsigned long flags;
943
944 /*
945 * tell I/O scheduler that this isn't a regular read/write (ie it
946 * must not attempt merges on this) and that it acts as a soft
947 * barrier
948 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200949 rq->cmd_type = REQ_TYPE_SPECIAL;
950 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 rq->special = data;
953
954 spin_lock_irqsave(q->queue_lock, flags);
955
956 /*
957 * If command is tagged, release the tag
958 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500959 if (blk_rq_tagged(rq))
960 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200962 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500963 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200964 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 spin_unlock_irqrestore(q->queue_lock, flags);
966}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967EXPORT_SYMBOL(blk_insert_request);
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969/*
970 * add-request adds a request to the linked list.
971 * queue lock is held and interrupts disabled, as we muck with the
972 * request queue list.
973 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100974static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200976 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /*
979 * elevator indicated where it wants this request to be
980 * inserted at elevator_merge time
981 */
982 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
983}
Jens Axboe6728cb02008-01-31 13:03:55 +0100984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/*
986 * disk_round_stats() - Round off the performance stats on a struct
987 * disk_stats.
988 *
989 * The average IO queue length and utilisation statistics are maintained
990 * by observing the current state of the queue length and the amount of
991 * time it has been in this state for.
992 *
993 * Normally, that accounting is done on IO completion, but that can result
994 * in more than a second's worth of IO being accounted for within any one
995 * second, leading to >100% utilisation. To deal with that, we call this
996 * function to do a round-off before returning the results when reading
997 * /proc/diskstats. This accounts immediately for all queue usage up to
998 * the current jiffies and restarts the counters again.
999 */
1000void disk_round_stats(struct gendisk *disk)
1001{
1002 unsigned long now = jiffies;
1003
Chen, Kenneth Wb2982642005-10-13 21:49:29 +02001004 if (now == disk->stamp)
1005 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Chen, Kenneth W20e5c812005-10-13 21:48:42 +02001007 if (disk->in_flight) {
1008 __disk_stat_add(disk, time_in_queue,
1009 disk->in_flight * (now - disk->stamp));
1010 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001014EXPORT_SYMBOL_GPL(disk_round_stats);
1015
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001016void part_round_stats(struct hd_struct *part)
1017{
1018 unsigned long now = jiffies;
1019
1020 if (now == part->stamp)
1021 return;
1022
1023 if (part->in_flight) {
1024 __part_stat_add(part, time_in_queue,
1025 part->in_flight * (now - part->stamp));
1026 __part_stat_add(part, io_ticks, (now - part->stamp));
1027 }
1028 part->stamp = now;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*
1032 * queue lock must be held
1033 */
Jens Axboe165125e2007-07-24 09:28:11 +02001034void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (unlikely(!q))
1037 return;
1038 if (unlikely(--req->ref_count))
1039 return;
1040
Tejun Heo8922e162005-10-20 16:23:44 +02001041 elv_completed_request(q, req);
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * Request may not have originated from ll_rw_blk. if not,
1045 * it didn't come out of our reserved rq pools
1046 */
Jens Axboe49171e52006-08-10 08:59:11 +02001047 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001049 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001052 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001055 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001058EXPORT_SYMBOL_GPL(__blk_put_request);
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060void blk_put_request(struct request *req)
1061{
Tejun Heo8922e162005-10-20 16:23:44 +02001062 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001063 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001065 spin_lock_irqsave(q->queue_lock, flags);
1066 __blk_put_request(q, req);
1067 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069EXPORT_SYMBOL(blk_put_request);
1070
Jens Axboe86db1e22008-01-29 14:53:40 +01001071void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001072{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001073 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001074
1075 /*
1076 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1077 */
1078 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001079 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01001080
1081 /*
1082 * REQ_BARRIER implies no merging, but lets make it explicit
1083 */
1084 if (unlikely(bio_barrier(bio)))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001085 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001086
Jens Axboeb31dc662006-06-13 08:26:10 +02001087 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001088 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001089 if (bio_rw_meta(bio))
1090 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001091
Tejun Heo52d9e672006-01-06 09:49:58 +01001092 req->errors = 0;
1093 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001094 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001095 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001096 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001097}
1098
Jens Axboe165125e2007-07-24 09:28:11 +02001099static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Nick Piggin450991b2005-06-28 20:45:13 -07001101 struct request *req;
Jens Axboe51da90f2006-07-18 04:14:45 +02001102 int el_ret, nr_sectors, barrier, err;
1103 const unsigned short prio = bio_prio(bio);
1104 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001105 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * low level driver can indicate that it wants pages above a
1111 * certain limit bounced to low memory (ie for highmem, or even
1112 * ISA dma in theory)
1113 */
1114 blk_queue_bounce(q, &bio);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01001117 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 err = -EOPNOTSUPP;
1119 goto end_io;
1120 }
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 spin_lock_irq(q->queue_lock);
1123
Nick Piggin450991b2005-06-28 20:45:13 -07001124 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 goto get_rq;
1126
1127 el_ret = elv_merge(q, &req, bio);
1128 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001129 case ELEVATOR_BACK_MERGE:
1130 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Jens Axboe6728cb02008-01-31 13:03:55 +01001132 if (!ll_back_merge_fn(q, req, bio))
1133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Jens Axboe6728cb02008-01-31 13:03:55 +01001135 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001136
Jens Axboe6728cb02008-01-31 13:03:55 +01001137 req->biotail->bi_next = bio;
1138 req->biotail = bio;
1139 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1140 req->ioprio = ioprio_best(req->ioprio, prio);
1141 drive_stat_acct(req, 0);
1142 if (!attempt_back_merge(q, req))
1143 elv_merged_request(q, req, el_ret);
1144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Jens Axboe6728cb02008-01-31 13:03:55 +01001146 case ELEVATOR_FRONT_MERGE:
1147 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Jens Axboe6728cb02008-01-31 13:03:55 +01001149 if (!ll_front_merge_fn(q, req, bio))
1150 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Jens Axboe6728cb02008-01-31 13:03:55 +01001152 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001153
Jens Axboe6728cb02008-01-31 13:03:55 +01001154 bio->bi_next = req->bio;
1155 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Jens Axboe6728cb02008-01-31 13:03:55 +01001157 /*
1158 * may not be valid. if the low level driver said
1159 * it didn't need a bounce buffer then it better
1160 * not touch req->buffer either...
1161 */
1162 req->buffer = bio_data(bio);
1163 req->current_nr_sectors = bio_cur_sectors(bio);
1164 req->hard_cur_sectors = req->current_nr_sectors;
1165 req->sector = req->hard_sector = bio->bi_sector;
1166 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1167 req->ioprio = ioprio_best(req->ioprio, prio);
1168 drive_stat_acct(req, 0);
1169 if (!attempt_front_merge(q, req))
1170 elv_merged_request(q, req, el_ret);
1171 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Jens Axboe6728cb02008-01-31 13:03:55 +01001173 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1174 default:
1175 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001179 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001180 * This sync check and mask will be re-done in init_request_from_bio(),
1181 * but we need to set it earlier to expose the sync flag to the
1182 * rq allocator and io schedulers.
1183 */
1184 rw_flags = bio_data_dir(bio);
1185 if (sync)
1186 rw_flags |= REQ_RW_SYNC;
1187
1188 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001189 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001190 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001191 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001192 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001193
Nick Piggin450991b2005-06-28 20:45:13 -07001194 /*
1195 * After dropping the lock and possibly sleeping here, our request
1196 * may now be mergeable after it had proven unmergeable (above).
1197 * We don't worry about that case for efficiency. It won't happen
1198 * often, and the elevators are able to handle it.
1199 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001200 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Nick Piggin450991b2005-06-28 20:45:13 -07001202 spin_lock_irq(q->queue_lock);
1203 if (elv_queue_empty(q))
1204 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 add_request(q, req);
1206out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001207 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 __generic_unplug_device(q);
1209
1210 spin_unlock_irq(q->queue_lock);
1211 return 0;
1212
1213end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001214 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return 0;
1216}
1217
1218/*
1219 * If bio->bi_dev is a partition, remap the location
1220 */
1221static inline void blk_partition_remap(struct bio *bio)
1222{
1223 struct block_device *bdev = bio->bi_bdev;
1224
Jens Axboebf2de6f2007-09-27 13:01:25 +02001225 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 bio->bi_sector += p->start_sect;
1229 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001230
1231 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
1232 bdev->bd_dev, bio->bi_sector,
1233 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235}
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static void handle_bad_sector(struct bio *bio)
1238{
1239 char b[BDEVNAME_SIZE];
1240
1241 printk(KERN_INFO "attempt to access beyond end of device\n");
1242 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1243 bdevname(bio->bi_bdev, b),
1244 bio->bi_rw,
1245 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1246 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1247
1248 set_bit(BIO_EOF, &bio->bi_flags);
1249}
1250
Akinobu Mitac17bb492006-12-08 02:39:46 -08001251#ifdef CONFIG_FAIL_MAKE_REQUEST
1252
1253static DECLARE_FAULT_ATTR(fail_make_request);
1254
1255static int __init setup_fail_make_request(char *str)
1256{
1257 return setup_fault_attr(&fail_make_request, str);
1258}
1259__setup("fail_make_request=", setup_fail_make_request);
1260
1261static int should_fail_request(struct bio *bio)
1262{
1263 if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
1264 (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
1265 return should_fail(&fail_make_request, bio->bi_size);
1266
1267 return 0;
1268}
1269
1270static int __init fail_make_request_debugfs(void)
1271{
1272 return init_fault_attr_dentries(&fail_make_request,
1273 "fail_make_request");
1274}
1275
1276late_initcall(fail_make_request_debugfs);
1277
1278#else /* CONFIG_FAIL_MAKE_REQUEST */
1279
1280static inline int should_fail_request(struct bio *bio)
1281{
1282 return 0;
1283}
1284
1285#endif /* CONFIG_FAIL_MAKE_REQUEST */
1286
Jens Axboec07e2b42007-07-18 13:27:58 +02001287/*
1288 * Check whether this bio extends beyond the end of the device.
1289 */
1290static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1291{
1292 sector_t maxsector;
1293
1294 if (!nr_sectors)
1295 return 0;
1296
1297 /* Test device or partition size, when known. */
1298 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1299 if (maxsector) {
1300 sector_t sector = bio->bi_sector;
1301
1302 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1303 /*
1304 * This may well happen - the kernel calls bread()
1305 * without checking the size of the device, e.g., when
1306 * mounting a device.
1307 */
1308 handle_bad_sector(bio);
1309 return 1;
1310 }
1311 }
1312
1313 return 0;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/**
1317 * generic_make_request: hand a buffer to its device driver for I/O
1318 * @bio: The bio describing the location in memory and on the device.
1319 *
1320 * generic_make_request() is used to make I/O requests of block
1321 * devices. It is passed a &struct bio, which describes the I/O that needs
1322 * to be done.
1323 *
1324 * generic_make_request() does not return any status. The
1325 * success/failure status of the request, along with notification of
1326 * completion, is delivered asynchronously through the bio->bi_end_io
1327 * function described (one day) else where.
1328 *
1329 * The caller of generic_make_request must make sure that bi_io_vec
1330 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1331 * set to describe the device address, and the
1332 * bi_end_io and optionally bi_private are set to describe how
1333 * completion notification should be signaled.
1334 *
1335 * generic_make_request and the drivers it calls may use bi_next if this
1336 * bio happens to be merged with someone else, and may change bi_dev and
1337 * bi_sector for remaps as it sees fit. So the values of these fields
1338 * should NOT be depended on after the call to generic_make_request.
1339 */
Neil Brownd89d8792007-05-01 09:53:42 +02001340static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Jens Axboe165125e2007-07-24 09:28:11 +02001342 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001343 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001345 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001346 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Jens Axboec07e2b42007-07-18 13:27:58 +02001350 if (bio_check_eod(bio, nr_sectors))
1351 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /*
1354 * Resolve the mapping until finished. (drivers are
1355 * still free to implement/resolve their own stacking
1356 * by explicitly returning 0)
1357 *
1358 * NOTE: we don't repeat the blk_size check for each new device.
1359 * Stacking drivers are expected to know what they are doing.
1360 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001361 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001362 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 do {
1364 char b[BDEVNAME_SIZE];
1365
1366 q = bdev_get_queue(bio->bi_bdev);
1367 if (!q) {
1368 printk(KERN_ERR
1369 "generic_make_request: Trying to access "
1370 "nonexistent block-device %s (%Lu)\n",
1371 bdevname(bio->bi_bdev, b),
1372 (long long) bio->bi_sector);
1373end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001374 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
1376 }
1377
Jens Axboe4fa253f2007-07-18 13:13:10 +02001378 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001379 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 bdevname(bio->bi_bdev, b),
1381 bio_sectors(bio),
1382 q->max_hw_sectors);
1383 goto end_io;
1384 }
1385
Nick Pigginfde6ad22005-06-23 00:08:53 -07001386 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto end_io;
1388
Akinobu Mitac17bb492006-12-08 02:39:46 -08001389 if (should_fail_request(bio))
1390 goto end_io;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * If this device has partitions, remap block n
1394 * of partition p to block n+start(p) of the disk.
1395 */
1396 blk_partition_remap(bio);
1397
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001398 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1399 goto end_io;
1400
NeilBrown5ddfe962006-10-30 22:07:21 -08001401 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02001402 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001403 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001404
1405 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
1406
NeilBrown5ddfe962006-10-30 22:07:21 -08001407 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001408 old_dev = bio->bi_bdev->bd_dev;
1409
Jens Axboec07e2b42007-07-18 13:27:58 +02001410 if (bio_check_eod(bio, nr_sectors))
1411 goto end_io;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001412 if (bio_empty_barrier(bio) && !q->prepare_flush_fn) {
1413 err = -EOPNOTSUPP;
1414 goto end_io;
1415 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 ret = q->make_request_fn(q, bio);
1418 } while (ret);
1419}
1420
Neil Brownd89d8792007-05-01 09:53:42 +02001421/*
1422 * We only want one ->make_request_fn to be active at a time,
1423 * else stack usage with stacked devices could be a problem.
1424 * So use current->bio_{list,tail} to keep a list of requests
1425 * submited by a make_request_fn function.
1426 * current->bio_tail is also used as a flag to say if
1427 * generic_make_request is currently active in this task or not.
1428 * If it is NULL, then no make_request is active. If it is non-NULL,
1429 * then a make_request is active, and new requests should be added
1430 * at the tail
1431 */
1432void generic_make_request(struct bio *bio)
1433{
1434 if (current->bio_tail) {
1435 /* make_request is active */
1436 *(current->bio_tail) = bio;
1437 bio->bi_next = NULL;
1438 current->bio_tail = &bio->bi_next;
1439 return;
1440 }
1441 /* following loop may be a bit non-obvious, and so deserves some
1442 * explanation.
1443 * Before entering the loop, bio->bi_next is NULL (as all callers
1444 * ensure that) so we have a list with a single bio.
1445 * We pretend that we have just taken it off a longer list, so
1446 * we assign bio_list to the next (which is NULL) and bio_tail
1447 * to &bio_list, thus initialising the bio_list of new bios to be
1448 * added. __generic_make_request may indeed add some more bios
1449 * through a recursive call to generic_make_request. If it
1450 * did, we find a non-NULL value in bio_list and re-enter the loop
1451 * from the top. In this case we really did just take the bio
1452 * of the top of the list (no pretending) and so fixup bio_list and
1453 * bio_tail or bi_next, and call into __generic_make_request again.
1454 *
1455 * The loop was structured like this to make only one call to
1456 * __generic_make_request (which is important as it is large and
1457 * inlined) and to keep the structure simple.
1458 */
1459 BUG_ON(bio->bi_next);
1460 do {
1461 current->bio_list = bio->bi_next;
1462 if (bio->bi_next == NULL)
1463 current->bio_tail = &current->bio_list;
1464 else
1465 bio->bi_next = NULL;
1466 __generic_make_request(bio);
1467 bio = current->bio_list;
1468 } while (bio);
1469 current->bio_tail = NULL; /* deactivate */
1470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471EXPORT_SYMBOL(generic_make_request);
1472
1473/**
1474 * submit_bio: submit a bio to the block device layer for I/O
1475 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1476 * @bio: The &struct bio which describes the I/O
1477 *
1478 * submit_bio() is very similar in purpose to generic_make_request(), and
1479 * uses that function to do most of the work. Both are fairly rough
1480 * interfaces, @bio must be presetup and ready for I/O.
1481 *
1482 */
1483void submit_bio(int rw, struct bio *bio)
1484{
1485 int count = bio_sectors(bio);
1486
Jens Axboe22e2c502005-06-27 10:55:12 +02001487 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Jens Axboebf2de6f2007-09-27 13:01:25 +02001489 /*
1490 * If it's a regular read/write or a barrier with data attached,
1491 * go through the normal accounting stuff before submission.
1492 */
1493 if (!bio_empty_barrier(bio)) {
1494
1495 BIO_BUG_ON(!bio->bi_size);
1496 BIO_BUG_ON(!bio->bi_io_vec);
1497
1498 if (rw & WRITE) {
1499 count_vm_events(PGPGOUT, count);
1500 } else {
1501 task_io_account_read(bio->bi_size);
1502 count_vm_events(PGPGIN, count);
1503 }
1504
1505 if (unlikely(block_dump)) {
1506 char b[BDEVNAME_SIZE];
1507 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001508 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001509 (rw & WRITE) ? "WRITE" : "READ",
1510 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001511 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514
1515 generic_make_request(bio);
1516}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517EXPORT_SYMBOL(submit_bio);
1518
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001519/**
1520 * __end_that_request_first - end I/O on a request
1521 * @req: the request being processed
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001522 * @error: 0 for success, < 0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001523 * @nr_bytes: number of bytes to complete
1524 *
1525 * Description:
1526 * Ends I/O on a number of bytes attached to @req, and sets it up
1527 * for the next range of segments (if any) in the cluster.
1528 *
1529 * Return:
1530 * 0 - we are done with this request, call end_that_request_last()
1531 * 1 - still buffers pending for this request
1532 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001533static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int nr_bytes)
1535{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001536 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct bio *bio;
1538
Jens Axboe2056a782006-03-23 20:00:26 +01001539 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 * for a REQ_BLOCK_PC request, we want to carry any eventual
1543 * sense key with us all the way through
1544 */
1545 if (!blk_pc_request(req))
1546 req->errors = 0;
1547
Jens Axboe6728cb02008-01-31 13:03:55 +01001548 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1549 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 req->rq_disk ? req->rq_disk->disk_name : "?",
1551 (unsigned long long)req->sector);
1552 }
1553
Jens Axboed72d9042005-11-01 08:35:42 +01001554 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboe28f13702008-05-07 10:15:46 +02001555 struct hd_struct *part = get_part(req->rq_disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001556 const int rw = rq_data_dir(req);
1557
Jens Axboe28f13702008-05-07 10:15:46 +02001558 all_stat_add(req->rq_disk, part, sectors[rw],
1559 nr_bytes >> 9, req->sector);
Jens Axboed72d9042005-11-01 08:35:42 +01001560 }
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 total_bytes = bio_nbytes = 0;
1563 while ((bio = req->bio) != NULL) {
1564 int nbytes;
1565
Jens Axboebf2de6f2007-09-27 13:01:25 +02001566 /*
1567 * For an empty barrier request, the low level driver must
1568 * store a potential error location in ->sector. We pass
1569 * that back up in ->bi_sector.
1570 */
1571 if (blk_empty_barrier(req))
1572 bio->bi_sector = req->sector;
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (nr_bytes >= bio->bi_size) {
1575 req->bio = bio->bi_next;
1576 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001577 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 next_idx = 0;
1579 bio_nbytes = 0;
1580 } else {
1581 int idx = bio->bi_idx + next_idx;
1582
1583 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1584 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001585 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001586 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 break;
1588 }
1589
1590 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1591 BIO_BUG_ON(nbytes > bio->bi_size);
1592
1593 /*
1594 * not a complete bvec done
1595 */
1596 if (unlikely(nbytes > nr_bytes)) {
1597 bio_nbytes += nr_bytes;
1598 total_bytes += nr_bytes;
1599 break;
1600 }
1601
1602 /*
1603 * advance to the next vector
1604 */
1605 next_idx++;
1606 bio_nbytes += nbytes;
1607 }
1608
1609 total_bytes += nbytes;
1610 nr_bytes -= nbytes;
1611
Jens Axboe6728cb02008-01-31 13:03:55 +01001612 bio = req->bio;
1613 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /*
1615 * end more in this run, or just return 'not-done'
1616 */
1617 if (unlikely(nr_bytes <= 0))
1618 break;
1619 }
1620 }
1621
1622 /*
1623 * completely done
1624 */
1625 if (!req->bio)
1626 return 0;
1627
1628 /*
1629 * if the request wasn't completed, update state
1630 */
1631 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001632 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 bio->bi_idx += next_idx;
1634 bio_iovec(bio)->bv_offset += nr_bytes;
1635 bio_iovec(bio)->bv_len -= nr_bytes;
1636 }
1637
1638 blk_recalc_rq_sectors(req, total_bytes >> 9);
1639 blk_recalc_rq_segments(req);
1640 return 1;
1641}
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643/*
Jens Axboeff856ba2006-01-09 16:02:34 +01001644 * splice the completion data to a local structure and hand off to
1645 * process_completion_queue() to complete the requests
1646 */
1647static void blk_done_softirq(struct softirq_action *h)
1648{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001649 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01001650
1651 local_irq_disable();
1652 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001653 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01001654 local_irq_enable();
1655
1656 while (!list_empty(&local_list)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001657 struct request *rq;
Jens Axboeff856ba2006-01-09 16:02:34 +01001658
Jens Axboe6728cb02008-01-31 13:03:55 +01001659 rq = list_entry(local_list.next, struct request, donelist);
Jens Axboeff856ba2006-01-09 16:02:34 +01001660 list_del_init(&rq->donelist);
1661 rq->q->softirq_done_fn(rq);
1662 }
1663}
1664
Jens Axboe6728cb02008-01-31 13:03:55 +01001665static int __cpuinit blk_cpu_notify(struct notifier_block *self,
1666 unsigned long action, void *hcpu)
Jens Axboeff856ba2006-01-09 16:02:34 +01001667{
1668 /*
1669 * If a CPU goes away, splice its entries to the current CPU
1670 * and trigger a run of the softirq
1671 */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001672 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Jens Axboeff856ba2006-01-09 16:02:34 +01001673 int cpu = (unsigned long) hcpu;
1674
1675 local_irq_disable();
1676 list_splice_init(&per_cpu(blk_cpu_done, cpu),
1677 &__get_cpu_var(blk_cpu_done));
1678 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1679 local_irq_enable();
1680 }
1681
1682 return NOTIFY_OK;
1683}
1684
1685
Satyam Sharmadb47d472007-08-23 09:29:40 +02001686static struct notifier_block blk_cpu_notifier __cpuinitdata = {
Jens Axboeff856ba2006-01-09 16:02:34 +01001687 .notifier_call = blk_cpu_notify,
1688};
1689
Jens Axboeff856ba2006-01-09 16:02:34 +01001690/**
1691 * blk_complete_request - end I/O on a request
1692 * @req: the request being processed
1693 *
1694 * Description:
1695 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001696 * unless the driver actually implements this in its completion callback
Jens Axboe4fa253f2007-07-18 13:13:10 +02001697 * through requeueing. The actual completion happens out-of-order,
Jens Axboeff856ba2006-01-09 16:02:34 +01001698 * through a softirq handler. The user must have registered a completion
1699 * callback through blk_queue_softirq_done().
1700 **/
1701
1702void blk_complete_request(struct request *req)
1703{
1704 struct list_head *cpu_list;
1705 unsigned long flags;
1706
1707 BUG_ON(!req->q->softirq_done_fn);
Jens Axboe6728cb02008-01-31 13:03:55 +01001708
Jens Axboeff856ba2006-01-09 16:02:34 +01001709 local_irq_save(flags);
1710
1711 cpu_list = &__get_cpu_var(blk_cpu_done);
1712 list_add_tail(&req->donelist, cpu_list);
1713 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1714
1715 local_irq_restore(flags);
1716}
Jens Axboeff856ba2006-01-09 16:02:34 +01001717EXPORT_SYMBOL(blk_complete_request);
Jens Axboe6728cb02008-01-31 13:03:55 +01001718
Jens Axboeff856ba2006-01-09 16:02:34 +01001719/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 * queue lock must be held
1721 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001722static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001725
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001726 if (blk_rq_tagged(req))
1727 blk_queue_end_tag(req->q, req);
1728
1729 if (blk_queued_rq(req))
1730 blkdev_dequeue_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (unlikely(laptop_mode) && blk_fs_request(req))
1733 laptop_io_completion();
1734
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001735 /*
1736 * Account IO completion. bar_rq isn't accounted as a normal
1737 * IO on queueing nor completion. Accounting the containing
1738 * request is enough.
1739 */
1740 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001742 const int rw = rq_data_dir(req);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001743 struct hd_struct *part = get_part(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001744
Jens Axboe28f13702008-05-07 10:15:46 +02001745 __all_stat_inc(disk, part, ios[rw], req->sector);
1746 __all_stat_add(disk, part, ticks[rw], duration, req->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 disk_round_stats(disk);
1748 disk->in_flight--;
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001749 if (part) {
1750 part_round_stats(part);
1751 part->in_flight--;
1752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001756 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001757 else {
1758 if (blk_bidi_rq(req))
1759 __blk_put_request(req->next_rq->q, req->next_rq);
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763}
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765static inline void __end_request(struct request *rq, int uptodate,
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001766 unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001768 int error = 0;
1769
1770 if (uptodate <= 0)
1771 error = uptodate ? uptodate : -EIO;
1772
1773 __blk_end_request(rq, error, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001776/**
1777 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001778 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001779 **/
1780unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001781{
1782 if (blk_fs_request(rq))
1783 return rq->hard_nr_sectors << 9;
1784
1785 return rq->data_len;
1786}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001787EXPORT_SYMBOL_GPL(blk_rq_bytes);
1788
1789/**
1790 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001791 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001792 **/
1793unsigned int blk_rq_cur_bytes(struct request *rq)
1794{
1795 if (blk_fs_request(rq))
1796 return rq->current_nr_sectors << 9;
1797
1798 if (rq->bio)
1799 return rq->bio->bi_size;
1800
1801 return rq->data_len;
1802}
1803EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001804
1805/**
1806 * end_queued_request - end all I/O on a queued 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, and removes it from the block layer queues.
1812 * Not suitable for normal IO completion, unless the driver still has
1813 * the request attached to the block layer.
1814 *
1815 **/
1816void end_queued_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_queued_request);
1821
1822/**
1823 * end_dequeued_request - end all I/O on a dequeued request
1824 * @rq: the request being processed
1825 * @uptodate: error value or 0/1 uptodate flag
1826 *
1827 * Description:
1828 * Ends all I/O on a request. The request must already have been
1829 * dequeued using blkdev_dequeue_request(), as is normally the case
1830 * for most drivers.
1831 *
1832 **/
1833void end_dequeued_request(struct request *rq, int uptodate)
1834{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001835 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001836}
1837EXPORT_SYMBOL(end_dequeued_request);
1838
1839
1840/**
1841 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001842 * @req: the request being processed
Jens Axboea0cd1282007-09-21 10:41:07 +02001843 * @uptodate: error value or 0/1 uptodate flag
1844 *
1845 * Description:
1846 * Ends I/O on the current segment of a request. If that is the only
1847 * remaining segment, the request is also completed and freed.
1848 *
1849 * This is a remnant of how older block drivers handled IO completions.
1850 * Modern drivers typically end IO on the full request in one go, unless
1851 * they have a residual value to account for. For that case this function
1852 * isn't really useful, unless the residual just happens to be the
1853 * full current segment. In other words, don't use this function in new
1854 * code. Either use end_request_completely(), or the
1855 * end_that_request_chunk() (along with end_that_request_last()) for
1856 * partial completions.
1857 *
1858 **/
1859void end_request(struct request *req, int uptodate)
1860{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001861 __end_request(req, uptodate, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001862}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863EXPORT_SYMBOL(end_request);
1864
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001865/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001866 * blk_end_io - Generic end_io function to complete a request.
1867 * @rq: the request being processed
1868 * @error: 0 for success, < 0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001869 * @nr_bytes: number of bytes to complete @rq
1870 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001871 * @drv_callback: function called between completion of bios in the request
1872 * and completion of the request.
1873 * If the callback returns non 0, this helper returns without
1874 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001875 *
1876 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001877 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001878 * If @rq has leftover, sets it up for the next range of segments.
1879 *
1880 * Return:
1881 * 0 - we are done with this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001882 * 1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001883 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001884static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1885 unsigned int bidi_bytes,
1886 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001887{
1888 struct request_queue *q = rq->q;
1889 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001890
1891 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001892 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001893 return 1;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001894
1895 /* Bidi request must be completed as a whole */
1896 if (blk_bidi_rq(rq) &&
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001897 __end_that_request_first(rq->next_rq, error, bidi_bytes))
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001898 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001899 }
1900
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001901 /* Special feature for tricky drivers */
1902 if (drv_callback && drv_callback(rq))
1903 return 1;
1904
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001905 add_disk_randomness(rq->rq_disk);
1906
1907 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001908 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001909 spin_unlock_irqrestore(q->queue_lock, flags);
1910
1911 return 0;
1912}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001913
1914/**
1915 * blk_end_request - Helper function for drivers to complete the request.
1916 * @rq: the request being processed
1917 * @error: 0 for success, < 0 for error
1918 * @nr_bytes: number of bytes to complete
1919 *
1920 * Description:
1921 * Ends I/O on a number of bytes attached to @rq.
1922 * If @rq has leftover, sets it up for the next range of segments.
1923 *
1924 * Return:
1925 * 0 - we are done with this request
1926 * 1 - still buffers pending for this request
1927 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001928int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001929{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001930 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001931}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001932EXPORT_SYMBOL_GPL(blk_end_request);
1933
1934/**
1935 * __blk_end_request - Helper function for drivers to complete the request.
1936 * @rq: the request being processed
1937 * @error: 0 for success, < 0 for error
1938 * @nr_bytes: number of bytes to complete
1939 *
1940 * Description:
1941 * Must be called with queue lock held unlike blk_end_request().
1942 *
1943 * Return:
1944 * 0 - we are done with this request
1945 * 1 - still buffers pending for this request
1946 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001947int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001948{
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001949 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001950 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001951 return 1;
1952 }
1953
1954 add_disk_randomness(rq->rq_disk);
1955
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001956 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001957
1958 return 0;
1959}
1960EXPORT_SYMBOL_GPL(__blk_end_request);
1961
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001962/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001963 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1964 * @rq: the bidi request being processed
1965 * @error: 0 for success, < 0 for error
1966 * @nr_bytes: number of bytes to complete @rq
1967 * @bidi_bytes: number of bytes to complete @rq->next_rq
1968 *
1969 * Description:
1970 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
1971 *
1972 * Return:
1973 * 0 - we are done with this request
1974 * 1 - still buffers pending for this request
1975 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001976int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
1977 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001978{
1979 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
1980}
1981EXPORT_SYMBOL_GPL(blk_end_bidi_request);
1982
1983/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001984 * blk_end_request_callback - Special helper function for tricky drivers
1985 * @rq: the request being processed
1986 * @error: 0 for success, < 0 for error
1987 * @nr_bytes: number of bytes to complete
1988 * @drv_callback: function called between completion of bios in the request
1989 * and completion of the request.
1990 * If the callback returns non 0, this helper returns without
1991 * completion of the request.
1992 *
1993 * Description:
1994 * Ends I/O on a number of bytes attached to @rq.
1995 * If @rq has leftover, sets it up for the next range of segments.
1996 *
1997 * This special helper function is used only for existing tricky drivers.
1998 * (e.g. cdrom_newpc_intr() of ide-cd)
1999 * This interface will be removed when such drivers are rewritten.
2000 * Don't use this interface in other places anymore.
2001 *
2002 * Return:
2003 * 0 - we are done with this request
2004 * 1 - this request is not freed yet.
2005 * this request still has pending buffers or
2006 * the driver doesn't want to finish this request yet.
2007 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002008int blk_end_request_callback(struct request *rq, int error,
2009 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002010 int (drv_callback)(struct request *))
2011{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002012 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002013}
2014EXPORT_SYMBOL_GPL(blk_end_request_callback);
2015
Jens Axboe86db1e22008-01-29 14:53:40 +01002016void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2017 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002019 /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
2020 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 rq->nr_phys_segments = bio_phys_segments(q, bio);
2023 rq->nr_hw_segments = bio_hw_segments(q, bio);
2024 rq->current_nr_sectors = bio_cur_sectors(bio);
2025 rq->hard_cur_sectors = rq->current_nr_sectors;
2026 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
2027 rq->buffer = bio_data(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002028 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
NeilBrown66846572007-08-16 13:31:28 +02002032 if (bio->bi_bdev)
2033 rq->rq_disk = bio->bi_bdev->bd_disk;
2034}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036int kblockd_schedule_work(struct work_struct *work)
2037{
2038 return queue_work(kblockd_workqueue, work);
2039}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040EXPORT_SYMBOL(kblockd_schedule_work);
2041
Andrew Morton19a75d82007-05-09 02:33:56 -07002042void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002044 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
Andrew Morton19a75d82007-05-09 02:33:56 -07002046EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048int __init blk_dev_init(void)
2049{
Jens Axboeff856ba2006-01-09 16:02:34 +01002050 int i;
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 kblockd_workqueue = create_workqueue("kblockd");
2053 if (!kblockd_workqueue)
2054 panic("Failed to create kblockd\n");
2055
2056 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002057 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Jens Axboe8324aa92008-01-29 14:51:59 +01002059 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002060 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002062 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01002063 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
2064
Carlos R. Mafra962cf362008-05-15 11:15:37 -03002065 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002066 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return 0;
2069}
2070