blob: 2358fc5de5a4d01de85456e5b6a1ff3cdc261da1 [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 */
Jens Axboe8324aa92008-01-29 14:51:59 +010041struct 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
Jens Axboe63a71382008-02-08 12:41:03 +0100110/*
111 * We can't just memset() the structure, since the allocation path
112 * already stored some information in the request.
113 */
Jens Axboe86db1e22008-01-29 14:53:40 +0100114void rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100117 INIT_LIST_HEAD(&rq->donelist);
Jens Axboe63a71382008-02-08 12:41:03 +0100118 rq->q = q;
119 rq->sector = rq->hard_sector = (sector_t) -1;
120 rq->nr_sectors = rq->hard_nr_sectors = 0;
121 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 rq->bio = rq->biotail = NULL;
Jens Axboe2e662b62006-07-13 11:55:04 +0200123 INIT_HLIST_NODE(&rq->hash);
124 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe63a71382008-02-08 12:41:03 +0100125 rq->rq_disk = NULL;
Mike Christie df46b9a2005-06-20 14:04:44 +0200126 rq->nr_phys_segments = 0;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->nr_hw_segments = 0;
128 rq->ioprio = 0;
129 rq->special = NULL;
130 rq->buffer = NULL;
131 rq->tag = -1;
132 rq->errors = 0;
133 rq->ref_count = 1;
134 rq->cmd_len = 0;
135 memset(rq->cmd, 0, sizeof(rq->cmd));
136 rq->data_len = 0;
137 rq->sense_len = 0;
138 rq->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 rq->sense = NULL;
140 rq->end_io = NULL;
141 rq->end_io_data = NULL;
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200142 rq->next_rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
NeilBrown5bb23a62007-09-27 12:46:13 +0200145static void req_bio_endio(struct request *rq, struct bio *bio,
146 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100147{
Jens Axboe165125e2007-07-24 09:28:11 +0200148 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100149
NeilBrown5bb23a62007-09-27 12:46:13 +0200150 if (&q->bar_rq != rq) {
151 if (error)
152 clear_bit(BIO_UPTODATE, &bio->bi_flags);
153 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
154 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100155
NeilBrown5bb23a62007-09-27 12:46:13 +0200156 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100157 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
NeilBrown5bb23a62007-09-27 12:46:13 +0200158 __FUNCTION__, nbytes, bio->bi_size);
159 nbytes = bio->bi_size;
160 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100161
NeilBrown5bb23a62007-09-27 12:46:13 +0200162 bio->bi_size -= nbytes;
163 bio->bi_sector += (nbytes >> 9);
164 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200165 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200166 } else {
167
168 /*
169 * Okay, this is the barrier request in progress, just
170 * record the error;
171 */
172 if (error && !q->orderr)
173 q->orderr = error;
174 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177void blk_dump_rq_flags(struct request *rq, char *msg)
178{
179 int bit;
180
Jens Axboe6728cb02008-01-31 13:03:55 +0100181 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200182 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
183 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Jens Axboe6728cb02008-01-31 13:03:55 +0100185 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
186 (unsigned long long)rq->sector,
187 rq->nr_sectors,
188 rq->current_nr_sectors);
189 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
190 rq->bio, rq->biotail,
191 rq->buffer, rq->data,
192 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jens Axboe4aff5e22006-08-10 08:44:47 +0200194 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100195 printk(KERN_INFO " cdb: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 for (bit = 0; bit < sizeof(rq->cmd); bit++)
197 printk("%02x ", rq->cmd[bit]);
198 printk("\n");
199 }
200}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201EXPORT_SYMBOL(blk_dump_rq_flags);
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
204 * "plug" the device if there are no outstanding requests: this will
205 * force the transfer to start only after we have put all the requests
206 * on the list.
207 *
208 * This is called with interrupts off and no requests on the queue and
209 * with the queue lock held.
210 */
Jens Axboe165125e2007-07-24 09:28:11 +0200211void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 WARN_ON(!irqs_disabled());
214
215 /*
216 * don't plug a stopped queue, it must be paired with blk_start_queue()
217 * which will restart the queueing
218 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200219 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return;
221
Jens Axboe2056a782006-03-23 20:00:26 +0100222 if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +0100224 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227EXPORT_SYMBOL(blk_plug_device);
228
229/*
230 * remove the queue from the plugged list, if present. called with
231 * queue lock held and interrupts disabled.
232 */
Jens Axboe165125e2007-07-24 09:28:11 +0200233int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 WARN_ON(!irqs_disabled());
236
237 if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
238 return 0;
239
240 del_timer(&q->unplug_timer);
241 return 1;
242}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243EXPORT_SYMBOL(blk_remove_plug);
244
245/*
246 * remove the plug and let it rip..
247 */
Jens Axboe165125e2007-07-24 09:28:11 +0200248void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200250 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return;
252
253 if (!blk_remove_plug(q))
254 return;
255
Jens Axboe22e2c502005-06-27 10:55:12 +0200256 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258EXPORT_SYMBOL(__generic_unplug_device);
259
260/**
261 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200262 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 * Description:
265 * Linux uses plugging to build bigger requests queues before letting
266 * the device have at them. If a queue is plugged, the I/O scheduler
267 * is still adding and merging requests on the queue. Once the queue
268 * gets unplugged, the request_fn defined for the queue is invoked and
269 * transfers started.
270 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200271void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 spin_lock_irq(q->queue_lock);
274 __generic_unplug_device(q);
275 spin_unlock_irq(q->queue_lock);
276}
277EXPORT_SYMBOL(generic_unplug_device);
278
279static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
280 struct page *page)
281{
Jens Axboe165125e2007-07-24 09:28:11 +0200282 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500284 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Jens Axboe86db1e22008-01-29 14:53:40 +0100287void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Jens Axboe165125e2007-07-24 09:28:11 +0200289 struct request_queue *q =
290 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Jens Axboe2056a782006-03-23 20:00:26 +0100292 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
293 q->rq.count[READ] + q->rq.count[WRITE]);
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 q->unplug_fn(q);
296}
297
Jens Axboe86db1e22008-01-29 14:53:40 +0100298void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Jens Axboe165125e2007-07-24 09:28:11 +0200300 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Jens Axboe2056a782006-03-23 20:00:26 +0100302 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
303 q->rq.count[READ] + q->rq.count[WRITE]);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 kblockd_schedule_work(&q->unplug_work);
306}
307
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500308void blk_unplug(struct request_queue *q)
309{
310 /*
311 * devices don't necessarily have an ->unplug_fn defined
312 */
313 if (q->unplug_fn) {
314 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
315 q->rq.count[READ] + q->rq.count[WRITE]);
316
317 q->unplug_fn(q);
318 }
319}
320EXPORT_SYMBOL(blk_unplug);
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/**
323 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200324 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *
326 * Description:
327 * blk_start_queue() will clear the stop flag on the queue, and call
328 * the request_fn for the queue if it was in a stopped state when
329 * entered. Also see blk_stop_queue(). Queue lock must be held.
330 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200331void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200333 WARN_ON(!irqs_disabled());
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
336
337 /*
338 * one level of recursion is ok and is much faster than kicking
339 * the unplug handling
340 */
341 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
342 q->request_fn(q);
343 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
344 } else {
345 blk_plug_device(q);
346 kblockd_schedule_work(&q->unplug_work);
347 }
348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349EXPORT_SYMBOL(blk_start_queue);
350
351/**
352 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200353 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 *
355 * Description:
356 * The Linux block layer assumes that a block driver will consume all
357 * entries on the request queue when the request_fn strategy is called.
358 * Often this will not happen, because of hardware limitations (queue
359 * depth settings). If a device driver gets a 'queue full' response,
360 * or if it simply chooses not to queue more I/O at one point, it can
361 * call this function to prevent the request_fn from being called until
362 * the driver has signalled it's ready to go again. This happens by calling
363 * blk_start_queue() to restart queue operations. Queue lock must be held.
364 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200365void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 blk_remove_plug(q);
368 set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
369}
370EXPORT_SYMBOL(blk_stop_queue);
371
372/**
373 * blk_sync_queue - cancel any pending callbacks on a queue
374 * @q: the queue
375 *
376 * Description:
377 * The block layer may perform asynchronous callback activity
378 * on a queue, such as calling the unplug function after a timeout.
379 * A block device may call blk_sync_queue to ensure that any
380 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200381 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * that its ->make_request_fn will not re-add plugging prior to calling
383 * this function.
384 *
385 */
386void blk_sync_queue(struct request_queue *q)
387{
388 del_timer_sync(&q->unplug_timer);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200389 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391EXPORT_SYMBOL(blk_sync_queue);
392
393/**
394 * blk_run_queue - run a single device queue
395 * @q: The queue to run
396 */
397void blk_run_queue(struct request_queue *q)
398{
399 unsigned long flags;
400
401 spin_lock_irqsave(q->queue_lock, flags);
402 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200403
404 /*
405 * Only recurse once to avoid overrunning the stack, let the unplug
406 * handling reinvoke the handler shortly if we already got there.
407 */
408 if (!elv_queue_empty(q)) {
409 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
410 q->request_fn(q);
411 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
412 } else {
413 blk_plug_device(q);
414 kblockd_schedule_work(&q->unplug_work);
415 }
416 }
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 spin_unlock_irqrestore(q->queue_lock, flags);
419}
420EXPORT_SYMBOL(blk_run_queue);
421
Jens Axboe165125e2007-07-24 09:28:11 +0200422void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500423{
424 kobject_put(&q->kobj);
425}
426EXPORT_SYMBOL(blk_put_queue);
427
Jens Axboe6728cb02008-01-31 13:03:55 +0100428void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500429{
430 mutex_lock(&q->sysfs_lock);
431 set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
432 mutex_unlock(&q->sysfs_lock);
433
434 if (q->elevator)
435 elevator_exit(q->elevator);
436
437 blk_put_queue(q);
438}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439EXPORT_SYMBOL(blk_cleanup_queue);
440
Jens Axboe165125e2007-07-24 09:28:11 +0200441static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct request_list *rl = &q->rq;
444
445 rl->count[READ] = rl->count[WRITE] = 0;
446 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200447 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 init_waitqueue_head(&rl->wait[READ]);
449 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Christoph Lameter19460892005-06-23 00:08:19 -0700451 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
452 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!rl->rq_pool)
455 return -ENOMEM;
456
457 return 0;
458}
459
Jens Axboe165125e2007-07-24 09:28:11 +0200460struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Christoph Lameter19460892005-06-23 00:08:19 -0700462 return blk_alloc_queue_node(gfp_mask, -1);
463}
464EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Jens Axboe165125e2007-07-24 09:28:11 +0200466struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700467{
Jens Axboe165125e2007-07-24 09:28:11 +0200468 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700469 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700470
Jens Axboe8324aa92008-01-29 14:51:59 +0100471 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700472 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (!q)
474 return NULL;
475
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700476 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
477 q->backing_dev_info.unplug_io_data = q;
478 err = bdi_init(&q->backing_dev_info);
479 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100480 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700481 return NULL;
482 }
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -0500485
Jens Axboe8324aa92008-01-29 14:51:59 +0100486 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Al Viro483f4af2006-03-18 18:34:37 -0500488 mutex_init(&q->sysfs_lock);
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return q;
491}
Christoph Lameter19460892005-06-23 00:08:19 -0700492EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/**
495 * blk_init_queue - prepare a request queue for use with a block device
496 * @rfn: The function to be called to process requests that have been
497 * placed on the queue.
498 * @lock: Request queue spin lock
499 *
500 * Description:
501 * If a block device wishes to use the standard request handling procedures,
502 * which sorts requests and coalesces adjacent requests, then it must
503 * call blk_init_queue(). The function @rfn will be called when there
504 * are requests on the queue that need to be processed. If the device
505 * supports plugging, then @rfn may not be called immediately when requests
506 * are available on the queue, but may be called at some time later instead.
507 * Plugged queues are generally unplugged when a buffer belonging to one
508 * of the requests on the queue is needed, or due to memory pressure.
509 *
510 * @rfn is not required, or even expected, to remove all requests off the
511 * queue, but only as many as it can handle at a time. If it does leave
512 * requests on the queue, it is responsible for arranging that the requests
513 * get dealt with eventually.
514 *
515 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200516 * request queue; this lock will be taken also from interrupt context, so irq
517 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 *
519 * Function returns a pointer to the initialized request queue, or NULL if
520 * it didn't succeed.
521 *
522 * Note:
523 * blk_init_queue() must be paired with a blk_cleanup_queue() call
524 * when the block device is deactivated (such as at module unload).
525 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700526
Jens Axboe165125e2007-07-24 09:28:11 +0200527struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Christoph Lameter19460892005-06-23 00:08:19 -0700529 return blk_init_queue_node(rfn, lock, -1);
530}
531EXPORT_SYMBOL(blk_init_queue);
532
Jens Axboe165125e2007-07-24 09:28:11 +0200533struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700534blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
535{
Jens Axboe165125e2007-07-24 09:28:11 +0200536 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (!q)
539 return NULL;
540
Christoph Lameter19460892005-06-23 00:08:19 -0700541 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500542 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100543 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500544 return NULL;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
152587d2005-04-12 16:22:06 -0500547 /*
548 * if caller didn't supply a lock, they get per-queue locking with
549 * our embedded lock
550 */
551 if (!lock) {
552 spin_lock_init(&q->__queue_lock);
553 lock = &q->__queue_lock;
554 }
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 q->prep_rq_fn = NULL;
558 q->unplug_fn = generic_unplug_device;
559 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
560 q->queue_lock = lock;
561
562 blk_queue_segment_boundary(q, 0xffffffff);
563
564 blk_queue_make_request(q, __make_request);
565 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
566
567 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
568 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
569
Alan Stern44ec9542007-02-20 11:01:57 -0500570 q->sg_reserved_size = INT_MAX;
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * all done
574 */
575 if (!elevator_init(q, NULL)) {
576 blk_queue_congestion_threshold(q);
577 return q;
578 }
579
Al Viro8669aaf2006-03-18 13:50:00 -0500580 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return NULL;
582}
Christoph Lameter19460892005-06-23 00:08:19 -0700583EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Jens Axboe165125e2007-07-24 09:28:11 +0200585int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700587 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500588 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590 }
591
592 return 1;
593}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594EXPORT_SYMBOL(blk_get_queue);
595
Jens Axboe165125e2007-07-24 09:28:11 +0200596static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200598 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200599 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 mempool_free(rq, q->rq.rq_pool);
601}
602
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200603static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200604blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
607
608 if (!rq)
609 return NULL;
610
611 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200612 * first three bits are identical in rq->cmd_flags and bio->bi_rw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * see bio.h and blkdev.h
614 */
Jens Axboe49171e52006-08-10 08:59:11 +0200615 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Tejun Heocb98fc82005-10-28 08:29:39 +0200617 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200618 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200619 mempool_free(rq, q->rq.rq_pool);
620 return NULL;
621 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200622 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Tejun Heocb98fc82005-10-28 08:29:39 +0200625 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/*
629 * ioc_batching returns true if the ioc is a valid batching request and
630 * should be given priority access to a request.
631 */
Jens Axboe165125e2007-07-24 09:28:11 +0200632static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 if (!ioc)
635 return 0;
636
637 /*
638 * Make sure the process is able to allocate at least 1 request
639 * even if the batch times out, otherwise we could theoretically
640 * lose wakeups.
641 */
642 return ioc->nr_batch_requests == q->nr_batching ||
643 (ioc->nr_batch_requests > 0
644 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
645}
646
647/*
648 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
649 * will cause the process to be a "batcher" on all queues in the system. This
650 * is the behaviour we want though - once it gets a wakeup it should be given
651 * a nice run.
652 */
Jens Axboe165125e2007-07-24 09:28:11 +0200653static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 if (!ioc || ioc_batching(q, ioc))
656 return;
657
658 ioc->nr_batch_requests = q->nr_batching;
659 ioc->last_waited = jiffies;
660}
661
Jens Axboe165125e2007-07-24 09:28:11 +0200662static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct request_list *rl = &q->rq;
665
666 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700667 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (waitqueue_active(&rl->wait[rw]))
671 wake_up(&rl->wait[rw]);
672
673 blk_clear_queue_full(q, rw);
674 }
675}
676
677/*
678 * A request has just been released. Account for it, update the full and
679 * congestion status, wake up any waiters. Called under q->queue_lock.
680 */
Jens Axboe165125e2007-07-24 09:28:11 +0200681static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct request_list *rl = &q->rq;
684
685 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200686 if (priv)
687 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 __freed_request(q, rw);
690
691 if (unlikely(rl->starved[rw ^ 1]))
692 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
696/*
Nick Piggind6344532005-06-28 20:45:14 -0700697 * Get a free request, queue_lock must be held.
698 * Returns NULL on failure, with queue_lock held.
699 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
Jens Axboe165125e2007-07-24 09:28:11 +0200701static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100702 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct request *rq = NULL;
705 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100706 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100707 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100708 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Jens Axboe7749a8d2006-12-13 13:02:26 +0100710 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100711 if (may_queue == ELV_MQUEUE_NO)
712 goto rq_starved;
713
714 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
715 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200716 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100717 /*
718 * The queue will fill after this allocation, so set
719 * it as full, and mark this process as "batching".
720 * This process will be allowed to complete a batch of
721 * requests, others will be blocked.
722 */
723 if (!blk_queue_full(q, rw)) {
724 ioc_set_batching(q, ioc);
725 blk_set_queue_full(q, rw);
726 } else {
727 if (may_queue != ELV_MQUEUE_MUST
728 && !ioc_batching(q, ioc)) {
729 /*
730 * The queue is full and the allocating
731 * process is not a "batcher", and not
732 * exempted by the IO scheduler
733 */
734 goto out;
735 }
736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700738 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740
Jens Axboe082cf692005-06-28 16:35:11 +0200741 /*
742 * Only allow batching queuers to allocate up to 50% over the defined
743 * limit of requests, otherwise we could have thousands of requests
744 * allocated with any setting of ->nr_requests
745 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100746 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200747 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 rl->count[rw]++;
750 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200751
Jens Axboe64521d12005-10-28 08:30:39 +0200752 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200753 if (priv)
754 rl->elvpriv++;
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 spin_unlock_irq(q->queue_lock);
757
Jens Axboe7749a8d2006-12-13 13:02:26 +0100758 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100759 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * Allocation failed presumably due to memory. Undo anything
762 * we might have messed up.
763 *
764 * Allocating task should really be put onto the front of the
765 * wait queue, but this is pretty rare.
766 */
767 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200768 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /*
771 * in the very unlikely event that allocation failed and no
772 * requests for this direction was pending, mark us starved
773 * so that freeing of a request in the other direction will
774 * notice us. another possible fix would be to split the
775 * rq mempool into READ and WRITE
776 */
777rq_starved:
778 if (unlikely(rl->count[rw] == 0))
779 rl->starved[rw] = 1;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto out;
782 }
783
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100784 /*
785 * ioc may be NULL here, and ioc_batching will be false. That's
786 * OK, if the queue is under the request limit then requests need
787 * not count toward the nr_batch_requests limit. There will always
788 * be some limit enforced by BLK_BATCH_TIME.
789 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (ioc_batching(q, ioc))
791 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 rq_init(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100794
795 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return rq;
798}
799
800/*
801 * No available requests for this queue, unplug the device and wait for some
802 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700803 *
804 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Jens Axboe165125e2007-07-24 09:28:11 +0200806static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200807 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100809 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 struct request *rq;
811
Jens Axboe7749a8d2006-12-13 13:02:26 +0100812 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700813 while (!rq) {
814 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct request_list *rl = &q->rq;
816
817 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
818 TASK_UNINTERRUPTIBLE);
819
Jens Axboe7749a8d2006-12-13 13:02:26 +0100820 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (!rq) {
823 struct io_context *ioc;
824
Jens Axboe2056a782006-03-23 20:00:26 +0100825 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
826
Nick Piggind6344532005-06-28 20:45:14 -0700827 __generic_unplug_device(q);
828 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 io_schedule();
830
831 /*
832 * After sleeping, we become a "batching" process and
833 * will be able to allocate at least one request, and
834 * up to a big batch of them for a small period time.
835 * See ioc_batching, ioc_set_batching
836 */
Jens Axboeb5deef92006-07-19 23:39:40 +0200837 ioc = current_io_context(GFP_NOIO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 ioc_set_batching(q, ioc);
Nick Piggind6344532005-06-28 20:45:14 -0700839
840 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842 finish_wait(&rl->wait[rw], &wait);
Nick Piggin450991b2005-06-28 20:45:13 -0700843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 return rq;
846}
847
Jens Axboe165125e2007-07-24 09:28:11 +0200848struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 struct request *rq;
851
852 BUG_ON(rw != READ && rw != WRITE);
853
Nick Piggind6344532005-06-28 20:45:14 -0700854 spin_lock_irq(q->queue_lock);
855 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200856 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700857 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200858 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700859 if (!rq)
860 spin_unlock_irq(q->queue_lock);
861 }
862 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 return rq;
865}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866EXPORT_SYMBOL(blk_get_request);
867
868/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200869 * blk_start_queueing - initiate dispatch of requests to device
870 * @q: request queue to kick into gear
871 *
872 * This is basically a helper to remove the need to know whether a queue
873 * is plugged or not if someone just wants to initiate dispatch of requests
874 * for this queue.
875 *
876 * The queue lock must be held with interrupts disabled.
877 */
Jens Axboe165125e2007-07-24 09:28:11 +0200878void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200879{
880 if (!blk_queue_plugged(q))
881 q->request_fn(q);
882 else
883 __generic_unplug_device(q);
884}
885EXPORT_SYMBOL(blk_start_queueing);
886
887/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 * blk_requeue_request - put a request back on queue
889 * @q: request queue where request should be inserted
890 * @rq: request to be inserted
891 *
892 * Description:
893 * Drivers often keep queueing requests until the hardware cannot accept
894 * more, when that condition happens we need to put the request back
895 * on the queue. Must be called with queue lock held.
896 */
Jens Axboe165125e2007-07-24 09:28:11 +0200897void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Jens Axboe2056a782006-03-23 20:00:26 +0100899 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (blk_rq_tagged(rq))
902 blk_queue_end_tag(q, rq);
903
904 elv_requeue_request(q, rq);
905}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906EXPORT_SYMBOL(blk_requeue_request);
907
908/**
909 * blk_insert_request - insert a special request in to a request queue
910 * @q: request queue where request should be inserted
911 * @rq: request to be inserted
912 * @at_head: insert request at head or tail of queue
913 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 *
915 * Description:
916 * Many block devices need to execute commands asynchronously, so they don't
917 * block the whole kernel from preemption during request execution. This is
918 * accomplished normally by inserting aritficial requests tagged as
919 * REQ_SPECIAL in to the corresponding request queue, and letting them be
920 * scheduled for actual execution by the request queue.
921 *
922 * We have the option of inserting the head or the tail of the queue.
923 * Typically we use the tail for new ioctls and so forth. We use the head
924 * of the queue for things like a QUEUE_FULL message from a device, or a
925 * host that is unable to accept a particular command.
926 */
Jens Axboe165125e2007-07-24 09:28:11 +0200927void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500928 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Tejun Heo 867d1192005-04-24 02:06:05 -0500930 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 unsigned long flags;
932
933 /*
934 * tell I/O scheduler that this isn't a regular read/write (ie it
935 * must not attempt merges on this) and that it acts as a soft
936 * barrier
937 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200938 rq->cmd_type = REQ_TYPE_SPECIAL;
939 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 rq->special = data;
942
943 spin_lock_irqsave(q->queue_lock, flags);
944
945 /*
946 * If command is tagged, release the tag
947 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500948 if (blk_rq_tagged(rq))
949 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200951 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500952 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200953 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 spin_unlock_irqrestore(q->queue_lock, flags);
955}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956EXPORT_SYMBOL(blk_insert_request);
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/*
959 * add-request adds a request to the linked list.
960 * queue lock is held and interrupts disabled, as we muck with the
961 * request queue list.
962 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100963static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200965 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 /*
968 * elevator indicated where it wants this request to be
969 * inserted at elevator_merge time
970 */
971 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
972}
Jens Axboe6728cb02008-01-31 13:03:55 +0100973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/*
975 * disk_round_stats() - Round off the performance stats on a struct
976 * disk_stats.
977 *
978 * The average IO queue length and utilisation statistics are maintained
979 * by observing the current state of the queue length and the amount of
980 * time it has been in this state for.
981 *
982 * Normally, that accounting is done on IO completion, but that can result
983 * in more than a second's worth of IO being accounted for within any one
984 * second, leading to >100% utilisation. To deal with that, we call this
985 * function to do a round-off before returning the results when reading
986 * /proc/diskstats. This accounts immediately for all queue usage up to
987 * the current jiffies and restarts the counters again.
988 */
989void disk_round_stats(struct gendisk *disk)
990{
991 unsigned long now = jiffies;
992
Chen, Kenneth Wb2982642005-10-13 21:49:29 +0200993 if (now == disk->stamp)
994 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Chen, Kenneth W20e5c812005-10-13 21:48:42 +0200996 if (disk->in_flight) {
997 __disk_stat_add(disk, time_in_queue,
998 disk->in_flight * (now - disk->stamp));
999 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001003EXPORT_SYMBOL_GPL(disk_round_stats);
1004
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001005void part_round_stats(struct hd_struct *part)
1006{
1007 unsigned long now = jiffies;
1008
1009 if (now == part->stamp)
1010 return;
1011
1012 if (part->in_flight) {
1013 __part_stat_add(part, time_in_queue,
1014 part->in_flight * (now - part->stamp));
1015 __part_stat_add(part, io_ticks, (now - part->stamp));
1016 }
1017 part->stamp = now;
1018}
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020/*
1021 * queue lock must be held
1022 */
Jens Axboe165125e2007-07-24 09:28:11 +02001023void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (unlikely(!q))
1026 return;
1027 if (unlikely(--req->ref_count))
1028 return;
1029
Tejun Heo8922e162005-10-20 16:23:44 +02001030 elv_completed_request(q, req);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /*
1033 * Request may not have originated from ll_rw_blk. if not,
1034 * it didn't come out of our reserved rq pools
1035 */
Jens Axboe49171e52006-08-10 08:59:11 +02001036 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001038 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001041 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001044 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001047EXPORT_SYMBOL_GPL(__blk_put_request);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049void blk_put_request(struct request *req)
1050{
Tejun Heo8922e162005-10-20 16:23:44 +02001051 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001052 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Tejun Heo8922e162005-10-20 16:23:44 +02001054 /*
1055 * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
1056 * following if (q) test.
1057 */
1058 if (q) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 spin_lock_irqsave(q->queue_lock, flags);
1060 __blk_put_request(q, req);
1061 spin_unlock_irqrestore(q->queue_lock, flags);
1062 }
1063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064EXPORT_SYMBOL(blk_put_request);
1065
Jens Axboe86db1e22008-01-29 14:53:40 +01001066void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001067{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001068 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001069
1070 /*
1071 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1072 */
1073 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001074 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01001075
1076 /*
1077 * REQ_BARRIER implies no merging, but lets make it explicit
1078 */
1079 if (unlikely(bio_barrier(bio)))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001080 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001081
Jens Axboeb31dc662006-06-13 08:26:10 +02001082 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001083 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001084 if (bio_rw_meta(bio))
1085 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001086
Tejun Heo52d9e672006-01-06 09:49:58 +01001087 req->errors = 0;
1088 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001089 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001090 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001091 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001092}
1093
Jens Axboe165125e2007-07-24 09:28:11 +02001094static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Nick Piggin450991b2005-06-28 20:45:13 -07001096 struct request *req;
Jens Axboe51da90f2006-07-18 04:14:45 +02001097 int el_ret, nr_sectors, barrier, err;
1098 const unsigned short prio = bio_prio(bio);
1099 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001100 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /*
1105 * low level driver can indicate that it wants pages above a
1106 * certain limit bounced to low memory (ie for highmem, or even
1107 * ISA dma in theory)
1108 */
1109 blk_queue_bounce(q, &bio);
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01001112 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 err = -EOPNOTSUPP;
1114 goto end_io;
1115 }
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 spin_lock_irq(q->queue_lock);
1118
Nick Piggin450991b2005-06-28 20:45:13 -07001119 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 goto get_rq;
1121
1122 el_ret = elv_merge(q, &req, bio);
1123 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001124 case ELEVATOR_BACK_MERGE:
1125 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Jens Axboe6728cb02008-01-31 13:03:55 +01001127 if (!ll_back_merge_fn(q, req, bio))
1128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Jens Axboe6728cb02008-01-31 13:03:55 +01001130 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001131
Jens Axboe6728cb02008-01-31 13:03:55 +01001132 req->biotail->bi_next = bio;
1133 req->biotail = bio;
1134 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1135 req->ioprio = ioprio_best(req->ioprio, prio);
1136 drive_stat_acct(req, 0);
1137 if (!attempt_back_merge(q, req))
1138 elv_merged_request(q, req, el_ret);
1139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Jens Axboe6728cb02008-01-31 13:03:55 +01001141 case ELEVATOR_FRONT_MERGE:
1142 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Jens Axboe6728cb02008-01-31 13:03:55 +01001144 if (!ll_front_merge_fn(q, req, bio))
1145 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Jens Axboe6728cb02008-01-31 13:03:55 +01001147 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001148
Jens Axboe6728cb02008-01-31 13:03:55 +01001149 bio->bi_next = req->bio;
1150 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Jens Axboe6728cb02008-01-31 13:03:55 +01001152 /*
1153 * may not be valid. if the low level driver said
1154 * it didn't need a bounce buffer then it better
1155 * not touch req->buffer either...
1156 */
1157 req->buffer = bio_data(bio);
1158 req->current_nr_sectors = bio_cur_sectors(bio);
1159 req->hard_cur_sectors = req->current_nr_sectors;
1160 req->sector = req->hard_sector = bio->bi_sector;
1161 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1162 req->ioprio = ioprio_best(req->ioprio, prio);
1163 drive_stat_acct(req, 0);
1164 if (!attempt_front_merge(q, req))
1165 elv_merged_request(q, req, el_ret);
1166 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Jens Axboe6728cb02008-01-31 13:03:55 +01001168 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1169 default:
1170 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001174 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001175 * This sync check and mask will be re-done in init_request_from_bio(),
1176 * but we need to set it earlier to expose the sync flag to the
1177 * rq allocator and io schedulers.
1178 */
1179 rw_flags = bio_data_dir(bio);
1180 if (sync)
1181 rw_flags |= REQ_RW_SYNC;
1182
1183 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001184 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001185 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001186 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001187 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001188
Nick Piggin450991b2005-06-28 20:45:13 -07001189 /*
1190 * After dropping the lock and possibly sleeping here, our request
1191 * may now be mergeable after it had proven unmergeable (above).
1192 * We don't worry about that case for efficiency. It won't happen
1193 * often, and the elevators are able to handle it.
1194 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001195 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Nick Piggin450991b2005-06-28 20:45:13 -07001197 spin_lock_irq(q->queue_lock);
1198 if (elv_queue_empty(q))
1199 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 add_request(q, req);
1201out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001202 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 __generic_unplug_device(q);
1204
1205 spin_unlock_irq(q->queue_lock);
1206 return 0;
1207
1208end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001209 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return 0;
1211}
1212
1213/*
1214 * If bio->bi_dev is a partition, remap the location
1215 */
1216static inline void blk_partition_remap(struct bio *bio)
1217{
1218 struct block_device *bdev = bio->bi_bdev;
1219
Jens Axboebf2de6f2007-09-27 13:01:25 +02001220 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001222 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jens Axboea3623572005-11-01 09:26:16 +01001224 p->sectors[rw] += bio_sectors(bio);
1225 p->ios[rw]++;
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 bio->bi_sector += p->start_sect;
1228 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001229
1230 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
1231 bdev->bd_dev, bio->bi_sector,
1232 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236static void handle_bad_sector(struct bio *bio)
1237{
1238 char b[BDEVNAME_SIZE];
1239
1240 printk(KERN_INFO "attempt to access beyond end of device\n");
1241 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1242 bdevname(bio->bi_bdev, b),
1243 bio->bi_rw,
1244 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1245 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1246
1247 set_bit(BIO_EOF, &bio->bi_flags);
1248}
1249
Akinobu Mitac17bb492006-12-08 02:39:46 -08001250#ifdef CONFIG_FAIL_MAKE_REQUEST
1251
1252static DECLARE_FAULT_ATTR(fail_make_request);
1253
1254static int __init setup_fail_make_request(char *str)
1255{
1256 return setup_fault_attr(&fail_make_request, str);
1257}
1258__setup("fail_make_request=", setup_fail_make_request);
1259
1260static int should_fail_request(struct bio *bio)
1261{
1262 if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
1263 (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
1264 return should_fail(&fail_make_request, bio->bi_size);
1265
1266 return 0;
1267}
1268
1269static int __init fail_make_request_debugfs(void)
1270{
1271 return init_fault_attr_dentries(&fail_make_request,
1272 "fail_make_request");
1273}
1274
1275late_initcall(fail_make_request_debugfs);
1276
1277#else /* CONFIG_FAIL_MAKE_REQUEST */
1278
1279static inline int should_fail_request(struct bio *bio)
1280{
1281 return 0;
1282}
1283
1284#endif /* CONFIG_FAIL_MAKE_REQUEST */
1285
Jens Axboec07e2b42007-07-18 13:27:58 +02001286/*
1287 * Check whether this bio extends beyond the end of the device.
1288 */
1289static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1290{
1291 sector_t maxsector;
1292
1293 if (!nr_sectors)
1294 return 0;
1295
1296 /* Test device or partition size, when known. */
1297 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1298 if (maxsector) {
1299 sector_t sector = bio->bi_sector;
1300
1301 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1302 /*
1303 * This may well happen - the kernel calls bread()
1304 * without checking the size of the device, e.g., when
1305 * mounting a device.
1306 */
1307 handle_bad_sector(bio);
1308 return 1;
1309 }
1310 }
1311
1312 return 0;
1313}
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315/**
1316 * generic_make_request: hand a buffer to its device driver for I/O
1317 * @bio: The bio describing the location in memory and on the device.
1318 *
1319 * generic_make_request() is used to make I/O requests of block
1320 * devices. It is passed a &struct bio, which describes the I/O that needs
1321 * to be done.
1322 *
1323 * generic_make_request() does not return any status. The
1324 * success/failure status of the request, along with notification of
1325 * completion, is delivered asynchronously through the bio->bi_end_io
1326 * function described (one day) else where.
1327 *
1328 * The caller of generic_make_request must make sure that bi_io_vec
1329 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1330 * set to describe the device address, and the
1331 * bi_end_io and optionally bi_private are set to describe how
1332 * completion notification should be signaled.
1333 *
1334 * generic_make_request and the drivers it calls may use bi_next if this
1335 * bio happens to be merged with someone else, and may change bi_dev and
1336 * bi_sector for remaps as it sees fit. So the values of these fields
1337 * should NOT be depended on after the call to generic_make_request.
1338 */
Neil Brownd89d8792007-05-01 09:53:42 +02001339static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Jens Axboe165125e2007-07-24 09:28:11 +02001341 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001342 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001344 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001345 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Jens Axboec07e2b42007-07-18 13:27:58 +02001349 if (bio_check_eod(bio, nr_sectors))
1350 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 /*
1353 * Resolve the mapping until finished. (drivers are
1354 * still free to implement/resolve their own stacking
1355 * by explicitly returning 0)
1356 *
1357 * NOTE: we don't repeat the blk_size check for each new device.
1358 * Stacking drivers are expected to know what they are doing.
1359 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001360 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001361 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 do {
1363 char b[BDEVNAME_SIZE];
1364
1365 q = bdev_get_queue(bio->bi_bdev);
1366 if (!q) {
1367 printk(KERN_ERR
1368 "generic_make_request: Trying to access "
1369 "nonexistent block-device %s (%Lu)\n",
1370 bdevname(bio->bi_bdev, b),
1371 (long long) bio->bi_sector);
1372end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001373 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 break;
1375 }
1376
Jens Axboe4fa253f2007-07-18 13:13:10 +02001377 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001378 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 bdevname(bio->bi_bdev, b),
1380 bio_sectors(bio),
1381 q->max_hw_sectors);
1382 goto end_io;
1383 }
1384
Nick Pigginfde6ad22005-06-23 00:08:53 -07001385 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 goto end_io;
1387
Akinobu Mitac17bb492006-12-08 02:39:46 -08001388 if (should_fail_request(bio))
1389 goto end_io;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /*
1392 * If this device has partitions, remap block n
1393 * of partition p to block n+start(p) of the disk.
1394 */
1395 blk_partition_remap(bio);
1396
NeilBrown5ddfe962006-10-30 22:07:21 -08001397 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02001398 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001399 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001400
1401 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
1402
NeilBrown5ddfe962006-10-30 22:07:21 -08001403 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001404 old_dev = bio->bi_bdev->bd_dev;
1405
Jens Axboec07e2b42007-07-18 13:27:58 +02001406 if (bio_check_eod(bio, nr_sectors))
1407 goto end_io;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001408 if (bio_empty_barrier(bio) && !q->prepare_flush_fn) {
1409 err = -EOPNOTSUPP;
1410 goto end_io;
1411 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 ret = q->make_request_fn(q, bio);
1414 } while (ret);
1415}
1416
Neil Brownd89d8792007-05-01 09:53:42 +02001417/*
1418 * We only want one ->make_request_fn to be active at a time,
1419 * else stack usage with stacked devices could be a problem.
1420 * So use current->bio_{list,tail} to keep a list of requests
1421 * submited by a make_request_fn function.
1422 * current->bio_tail is also used as a flag to say if
1423 * generic_make_request is currently active in this task or not.
1424 * If it is NULL, then no make_request is active. If it is non-NULL,
1425 * then a make_request is active, and new requests should be added
1426 * at the tail
1427 */
1428void generic_make_request(struct bio *bio)
1429{
1430 if (current->bio_tail) {
1431 /* make_request is active */
1432 *(current->bio_tail) = bio;
1433 bio->bi_next = NULL;
1434 current->bio_tail = &bio->bi_next;
1435 return;
1436 }
1437 /* following loop may be a bit non-obvious, and so deserves some
1438 * explanation.
1439 * Before entering the loop, bio->bi_next is NULL (as all callers
1440 * ensure that) so we have a list with a single bio.
1441 * We pretend that we have just taken it off a longer list, so
1442 * we assign bio_list to the next (which is NULL) and bio_tail
1443 * to &bio_list, thus initialising the bio_list of new bios to be
1444 * added. __generic_make_request may indeed add some more bios
1445 * through a recursive call to generic_make_request. If it
1446 * did, we find a non-NULL value in bio_list and re-enter the loop
1447 * from the top. In this case we really did just take the bio
1448 * of the top of the list (no pretending) and so fixup bio_list and
1449 * bio_tail or bi_next, and call into __generic_make_request again.
1450 *
1451 * The loop was structured like this to make only one call to
1452 * __generic_make_request (which is important as it is large and
1453 * inlined) and to keep the structure simple.
1454 */
1455 BUG_ON(bio->bi_next);
1456 do {
1457 current->bio_list = bio->bi_next;
1458 if (bio->bi_next == NULL)
1459 current->bio_tail = &current->bio_list;
1460 else
1461 bio->bi_next = NULL;
1462 __generic_make_request(bio);
1463 bio = current->bio_list;
1464 } while (bio);
1465 current->bio_tail = NULL; /* deactivate */
1466}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467EXPORT_SYMBOL(generic_make_request);
1468
1469/**
1470 * submit_bio: submit a bio to the block device layer for I/O
1471 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1472 * @bio: The &struct bio which describes the I/O
1473 *
1474 * submit_bio() is very similar in purpose to generic_make_request(), and
1475 * uses that function to do most of the work. Both are fairly rough
1476 * interfaces, @bio must be presetup and ready for I/O.
1477 *
1478 */
1479void submit_bio(int rw, struct bio *bio)
1480{
1481 int count = bio_sectors(bio);
1482
Jens Axboe22e2c502005-06-27 10:55:12 +02001483 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Jens Axboebf2de6f2007-09-27 13:01:25 +02001485 /*
1486 * If it's a regular read/write or a barrier with data attached,
1487 * go through the normal accounting stuff before submission.
1488 */
1489 if (!bio_empty_barrier(bio)) {
1490
1491 BIO_BUG_ON(!bio->bi_size);
1492 BIO_BUG_ON(!bio->bi_io_vec);
1493
1494 if (rw & WRITE) {
1495 count_vm_events(PGPGOUT, count);
1496 } else {
1497 task_io_account_read(bio->bi_size);
1498 count_vm_events(PGPGIN, count);
1499 }
1500
1501 if (unlikely(block_dump)) {
1502 char b[BDEVNAME_SIZE];
1503 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001504 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001505 (rw & WRITE) ? "WRITE" : "READ",
1506 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001507 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510
1511 generic_make_request(bio);
1512}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513EXPORT_SYMBOL(submit_bio);
1514
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001515/**
1516 * __end_that_request_first - end I/O on a request
1517 * @req: the request being processed
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001518 * @error: 0 for success, < 0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001519 * @nr_bytes: number of bytes to complete
1520 *
1521 * Description:
1522 * Ends I/O on a number of bytes attached to @req, and sets it up
1523 * for the next range of segments (if any) in the cluster.
1524 *
1525 * Return:
1526 * 0 - we are done with this request, call end_that_request_last()
1527 * 1 - still buffers pending for this request
1528 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001529static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 int nr_bytes)
1531{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001532 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 struct bio *bio;
1534
Jens Axboe2056a782006-03-23 20:00:26 +01001535 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 * for a REQ_BLOCK_PC request, we want to carry any eventual
1539 * sense key with us all the way through
1540 */
1541 if (!blk_pc_request(req))
1542 req->errors = 0;
1543
Jens Axboe6728cb02008-01-31 13:03:55 +01001544 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1545 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 req->rq_disk ? req->rq_disk->disk_name : "?",
1547 (unsigned long long)req->sector);
1548 }
1549
Jens Axboed72d9042005-11-01 08:35:42 +01001550 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01001551 const int rw = rq_data_dir(req);
1552
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001553 all_stat_add(req->rq_disk, sectors[rw],
1554 nr_bytes >> 9, req->sector);
Jens Axboed72d9042005-11-01 08:35:42 +01001555 }
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 total_bytes = bio_nbytes = 0;
1558 while ((bio = req->bio) != NULL) {
1559 int nbytes;
1560
Jens Axboebf2de6f2007-09-27 13:01:25 +02001561 /*
1562 * For an empty barrier request, the low level driver must
1563 * store a potential error location in ->sector. We pass
1564 * that back up in ->bi_sector.
1565 */
1566 if (blk_empty_barrier(req))
1567 bio->bi_sector = req->sector;
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (nr_bytes >= bio->bi_size) {
1570 req->bio = bio->bi_next;
1571 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001572 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 next_idx = 0;
1574 bio_nbytes = 0;
1575 } else {
1576 int idx = bio->bi_idx + next_idx;
1577
1578 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1579 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001580 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
1581 __FUNCTION__, bio->bi_idx,
1582 bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 break;
1584 }
1585
1586 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1587 BIO_BUG_ON(nbytes > bio->bi_size);
1588
1589 /*
1590 * not a complete bvec done
1591 */
1592 if (unlikely(nbytes > nr_bytes)) {
1593 bio_nbytes += nr_bytes;
1594 total_bytes += nr_bytes;
1595 break;
1596 }
1597
1598 /*
1599 * advance to the next vector
1600 */
1601 next_idx++;
1602 bio_nbytes += nbytes;
1603 }
1604
1605 total_bytes += nbytes;
1606 nr_bytes -= nbytes;
1607
Jens Axboe6728cb02008-01-31 13:03:55 +01001608 bio = req->bio;
1609 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 /*
1611 * end more in this run, or just return 'not-done'
1612 */
1613 if (unlikely(nr_bytes <= 0))
1614 break;
1615 }
1616 }
1617
1618 /*
1619 * completely done
1620 */
1621 if (!req->bio)
1622 return 0;
1623
1624 /*
1625 * if the request wasn't completed, update state
1626 */
1627 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001628 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 bio->bi_idx += next_idx;
1630 bio_iovec(bio)->bv_offset += nr_bytes;
1631 bio_iovec(bio)->bv_len -= nr_bytes;
1632 }
1633
1634 blk_recalc_rq_sectors(req, total_bytes >> 9);
1635 blk_recalc_rq_segments(req);
1636 return 1;
1637}
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639/*
Jens Axboeff856ba2006-01-09 16:02:34 +01001640 * splice the completion data to a local structure and hand off to
1641 * process_completion_queue() to complete the requests
1642 */
1643static void blk_done_softirq(struct softirq_action *h)
1644{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001645 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01001646
1647 local_irq_disable();
1648 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07001649 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01001650 local_irq_enable();
1651
1652 while (!list_empty(&local_list)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001653 struct request *rq;
Jens Axboeff856ba2006-01-09 16:02:34 +01001654
Jens Axboe6728cb02008-01-31 13:03:55 +01001655 rq = list_entry(local_list.next, struct request, donelist);
Jens Axboeff856ba2006-01-09 16:02:34 +01001656 list_del_init(&rq->donelist);
1657 rq->q->softirq_done_fn(rq);
1658 }
1659}
1660
Jens Axboe6728cb02008-01-31 13:03:55 +01001661static int __cpuinit blk_cpu_notify(struct notifier_block *self,
1662 unsigned long action, void *hcpu)
Jens Axboeff856ba2006-01-09 16:02:34 +01001663{
1664 /*
1665 * If a CPU goes away, splice its entries to the current CPU
1666 * and trigger a run of the softirq
1667 */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001668 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Jens Axboeff856ba2006-01-09 16:02:34 +01001669 int cpu = (unsigned long) hcpu;
1670
1671 local_irq_disable();
1672 list_splice_init(&per_cpu(blk_cpu_done, cpu),
1673 &__get_cpu_var(blk_cpu_done));
1674 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1675 local_irq_enable();
1676 }
1677
1678 return NOTIFY_OK;
1679}
1680
1681
Satyam Sharmadb47d472007-08-23 09:29:40 +02001682static struct notifier_block blk_cpu_notifier __cpuinitdata = {
Jens Axboeff856ba2006-01-09 16:02:34 +01001683 .notifier_call = blk_cpu_notify,
1684};
1685
Jens Axboeff856ba2006-01-09 16:02:34 +01001686/**
1687 * blk_complete_request - end I/O on a request
1688 * @req: the request being processed
1689 *
1690 * Description:
1691 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001692 * unless the driver actually implements this in its completion callback
Jens Axboe4fa253f2007-07-18 13:13:10 +02001693 * through requeueing. The actual completion happens out-of-order,
Jens Axboeff856ba2006-01-09 16:02:34 +01001694 * through a softirq handler. The user must have registered a completion
1695 * callback through blk_queue_softirq_done().
1696 **/
1697
1698void blk_complete_request(struct request *req)
1699{
1700 struct list_head *cpu_list;
1701 unsigned long flags;
1702
1703 BUG_ON(!req->q->softirq_done_fn);
Jens Axboe6728cb02008-01-31 13:03:55 +01001704
Jens Axboeff856ba2006-01-09 16:02:34 +01001705 local_irq_save(flags);
1706
1707 cpu_list = &__get_cpu_var(blk_cpu_done);
1708 list_add_tail(&req->donelist, cpu_list);
1709 raise_softirq_irqoff(BLOCK_SOFTIRQ);
1710
1711 local_irq_restore(flags);
1712}
Jens Axboeff856ba2006-01-09 16:02:34 +01001713EXPORT_SYMBOL(blk_complete_request);
Jens Axboe6728cb02008-01-31 13:03:55 +01001714
Jens Axboeff856ba2006-01-09 16:02:34 +01001715/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 * queue lock must be held
1717 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001718static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001721
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001722 if (blk_rq_tagged(req))
1723 blk_queue_end_tag(req->q, req);
1724
1725 if (blk_queued_rq(req))
1726 blkdev_dequeue_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 if (unlikely(laptop_mode) && blk_fs_request(req))
1729 laptop_io_completion();
1730
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001731 /*
1732 * Account IO completion. bar_rq isn't accounted as a normal
1733 * IO on queueing nor completion. Accounting the containing
1734 * request is enough.
1735 */
1736 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001738 const int rw = rq_data_dir(req);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001739 struct hd_struct *part = get_part(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001740
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001741 __all_stat_inc(disk, ios[rw], req->sector);
1742 __all_stat_add(disk, ticks[rw], duration, req->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 disk_round_stats(disk);
1744 disk->in_flight--;
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001745 if (part) {
1746 part_round_stats(part);
1747 part->in_flight--;
1748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001752 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001753 else {
1754 if (blk_bidi_rq(req))
1755 __blk_put_request(req->next_rq->q, req->next_rq);
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759}
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761static inline void __end_request(struct request *rq, int uptodate,
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001762 unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001764 int error = 0;
1765
1766 if (uptodate <= 0)
1767 error = uptodate ? uptodate : -EIO;
1768
1769 __blk_end_request(rq, error, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001772/**
1773 * blk_rq_bytes - Returns bytes left to complete in the entire request
1774 **/
1775unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001776{
1777 if (blk_fs_request(rq))
1778 return rq->hard_nr_sectors << 9;
1779
1780 return rq->data_len;
1781}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001782EXPORT_SYMBOL_GPL(blk_rq_bytes);
1783
1784/**
1785 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
1786 **/
1787unsigned int blk_rq_cur_bytes(struct request *rq)
1788{
1789 if (blk_fs_request(rq))
1790 return rq->current_nr_sectors << 9;
1791
1792 if (rq->bio)
1793 return rq->bio->bi_size;
1794
1795 return rq->data_len;
1796}
1797EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001798
1799/**
1800 * end_queued_request - end all I/O on a queued request
1801 * @rq: the request being processed
1802 * @uptodate: error value or 0/1 uptodate flag
1803 *
1804 * Description:
1805 * Ends all I/O on a request, and removes it from the block layer queues.
1806 * Not suitable for normal IO completion, unless the driver still has
1807 * the request attached to the block layer.
1808 *
1809 **/
1810void end_queued_request(struct request *rq, int uptodate)
1811{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001812 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001813}
1814EXPORT_SYMBOL(end_queued_request);
1815
1816/**
1817 * end_dequeued_request - end all I/O on a dequeued request
1818 * @rq: the request being processed
1819 * @uptodate: error value or 0/1 uptodate flag
1820 *
1821 * Description:
1822 * Ends all I/O on a request. The request must already have been
1823 * dequeued using blkdev_dequeue_request(), as is normally the case
1824 * for most drivers.
1825 *
1826 **/
1827void end_dequeued_request(struct request *rq, int uptodate)
1828{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001829 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001830}
1831EXPORT_SYMBOL(end_dequeued_request);
1832
1833
1834/**
1835 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001836 * @req: the request being processed
Jens Axboea0cd1282007-09-21 10:41:07 +02001837 * @uptodate: error value or 0/1 uptodate flag
1838 *
1839 * Description:
1840 * Ends I/O on the current segment of a request. If that is the only
1841 * remaining segment, the request is also completed and freed.
1842 *
1843 * This is a remnant of how older block drivers handled IO completions.
1844 * Modern drivers typically end IO on the full request in one go, unless
1845 * they have a residual value to account for. For that case this function
1846 * isn't really useful, unless the residual just happens to be the
1847 * full current segment. In other words, don't use this function in new
1848 * code. Either use end_request_completely(), or the
1849 * end_that_request_chunk() (along with end_that_request_last()) for
1850 * partial completions.
1851 *
1852 **/
1853void end_request(struct request *req, int uptodate)
1854{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001855 __end_request(req, uptodate, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001856}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857EXPORT_SYMBOL(end_request);
1858
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001859/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001860 * blk_end_io - Generic end_io function to complete a request.
1861 * @rq: the request being processed
1862 * @error: 0 for success, < 0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001863 * @nr_bytes: number of bytes to complete @rq
1864 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001865 * @drv_callback: function called between completion of bios in the request
1866 * and completion of the request.
1867 * If the callback returns non 0, this helper returns without
1868 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001869 *
1870 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001871 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001872 * If @rq has leftover, sets it up for the next range of segments.
1873 *
1874 * Return:
1875 * 0 - we are done with this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001876 * 1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001877 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001878static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1879 unsigned int bidi_bytes,
1880 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001881{
1882 struct request_queue *q = rq->q;
1883 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001884
1885 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001886 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001887 return 1;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001888
1889 /* Bidi request must be completed as a whole */
1890 if (blk_bidi_rq(rq) &&
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001891 __end_that_request_first(rq->next_rq, error, bidi_bytes))
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001892 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001893 }
1894
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001895 /* Special feature for tricky drivers */
1896 if (drv_callback && drv_callback(rq))
1897 return 1;
1898
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001899 add_disk_randomness(rq->rq_disk);
1900
1901 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001902 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001903 spin_unlock_irqrestore(q->queue_lock, flags);
1904
1905 return 0;
1906}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001907
1908/**
1909 * blk_end_request - Helper function for drivers to complete the request.
1910 * @rq: the request being processed
1911 * @error: 0 for success, < 0 for error
1912 * @nr_bytes: number of bytes to complete
1913 *
1914 * Description:
1915 * Ends I/O on a number of bytes attached to @rq.
1916 * If @rq has leftover, sets it up for the next range of segments.
1917 *
1918 * Return:
1919 * 0 - we are done with this request
1920 * 1 - still buffers pending for this request
1921 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001922int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001923{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001924 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001925}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001926EXPORT_SYMBOL_GPL(blk_end_request);
1927
1928/**
1929 * __blk_end_request - Helper function for drivers to complete the request.
1930 * @rq: the request being processed
1931 * @error: 0 for success, < 0 for error
1932 * @nr_bytes: number of bytes to complete
1933 *
1934 * Description:
1935 * Must be called with queue lock held unlike blk_end_request().
1936 *
1937 * Return:
1938 * 0 - we are done with this request
1939 * 1 - still buffers pending for this request
1940 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001941int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001942{
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001943 if (blk_fs_request(rq) || blk_pc_request(rq)) {
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001944 if (__end_that_request_first(rq, error, nr_bytes))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001945 return 1;
1946 }
1947
1948 add_disk_randomness(rq->rq_disk);
1949
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001950 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001951
1952 return 0;
1953}
1954EXPORT_SYMBOL_GPL(__blk_end_request);
1955
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001956/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001957 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1958 * @rq: the bidi request being processed
1959 * @error: 0 for success, < 0 for error
1960 * @nr_bytes: number of bytes to complete @rq
1961 * @bidi_bytes: number of bytes to complete @rq->next_rq
1962 *
1963 * Description:
1964 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
1965 *
1966 * Return:
1967 * 0 - we are done with this request
1968 * 1 - still buffers pending for this request
1969 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001970int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
1971 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001972{
1973 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
1974}
1975EXPORT_SYMBOL_GPL(blk_end_bidi_request);
1976
1977/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001978 * blk_end_request_callback - Special helper function for tricky drivers
1979 * @rq: the request being processed
1980 * @error: 0 for success, < 0 for error
1981 * @nr_bytes: number of bytes to complete
1982 * @drv_callback: function called between completion of bios in the request
1983 * and completion of the request.
1984 * If the callback returns non 0, this helper returns without
1985 * completion of the request.
1986 *
1987 * Description:
1988 * Ends I/O on a number of bytes attached to @rq.
1989 * If @rq has leftover, sets it up for the next range of segments.
1990 *
1991 * This special helper function is used only for existing tricky drivers.
1992 * (e.g. cdrom_newpc_intr() of ide-cd)
1993 * This interface will be removed when such drivers are rewritten.
1994 * Don't use this interface in other places anymore.
1995 *
1996 * Return:
1997 * 0 - we are done with this request
1998 * 1 - this request is not freed yet.
1999 * this request still has pending buffers or
2000 * the driver doesn't want to finish this request yet.
2001 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002002int blk_end_request_callback(struct request *rq, int error,
2003 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002004 int (drv_callback)(struct request *))
2005{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002006 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002007}
2008EXPORT_SYMBOL_GPL(blk_end_request_callback);
2009
Jens Axboe86db1e22008-01-29 14:53:40 +01002010void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2011 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002013 /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
2014 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 rq->nr_phys_segments = bio_phys_segments(q, bio);
2017 rq->nr_hw_segments = bio_hw_segments(q, bio);
2018 rq->current_nr_sectors = bio_cur_sectors(bio);
2019 rq->hard_cur_sectors = rq->current_nr_sectors;
2020 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
2021 rq->buffer = bio_data(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002022 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
NeilBrown66846572007-08-16 13:31:28 +02002026 if (bio->bi_bdev)
2027 rq->rq_disk = bio->bi_bdev->bd_disk;
2028}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030int kblockd_schedule_work(struct work_struct *work)
2031{
2032 return queue_work(kblockd_workqueue, work);
2033}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034EXPORT_SYMBOL(kblockd_schedule_work);
2035
Andrew Morton19a75d82007-05-09 02:33:56 -07002036void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002038 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039}
Andrew Morton19a75d82007-05-09 02:33:56 -07002040EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042int __init blk_dev_init(void)
2043{
Jens Axboeff856ba2006-01-09 16:02:34 +01002044 int i;
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 kblockd_workqueue = create_workqueue("kblockd");
2047 if (!kblockd_workqueue)
2048 panic("Failed to create kblockd\n");
2049
2050 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002051 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Jens Axboe8324aa92008-01-29 14:51:59 +01002053 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002054 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002056 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01002057 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
2058
2059 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002060 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return 0;
2063}
2064