blob: 527d43e982bb0d1b4a4310a5550714364e7d501c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
Jens Axboe6728cb02008-01-31 13:03:55 +01006 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7 * - July2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9 */
10
11/*
12 * This handles all read/write requests to block devices
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/backing-dev.h>
17#include <linux/bio.h>
18#include <linux/blkdev.h>
19#include <linux/highmem.h>
20#include <linux/mm.h>
21#include <linux/kernel_stat.h>
22#include <linux/string.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Jens Axboe2056a782006-03-23 20:00:26 +010029#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080030#include <linux/fault-inject.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jens Axboe8324aa92008-01-29 14:51:59 +010032#include "blk.h"
33
Jens Axboe165125e2007-07-24 09:28:11 +020034static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * For the allocated request tables
38 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010039static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * For queue allocation
43 */
Jens Axboe6728cb02008-01-31 13:03:55 +010044struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * Controlling structure to kblockd
48 */
Jens Axboeff856ba2006-01-09 16:02:34 +010049static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Jens Axboe26b82562008-01-29 13:54:41 +010051static void drive_stat_acct(struct request *rq, int new_io)
52{
Jens Axboe28f13702008-05-07 10:15:46 +020053 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010054 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090055 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010056
57 if (!blk_fs_request(rq) || !rq->rq_disk)
58 return;
59
Tejun Heo074a7ac2008-08-25 19:56:14 +090060 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020061 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090062
Jens Axboe28f13702008-05-07 10:15:46 +020063 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090064 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020065 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 part_round_stats(cpu, part);
67 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010068 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020069
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010071}
72
Jens Axboe8324aa92008-01-29 14:51:59 +010073void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 int nr;
76
77 nr = q->nr_requests - (q->nr_requests / 8) + 1;
78 if (nr > q->nr_requests)
79 nr = q->nr_requests;
80 q->nr_congestion_on = nr;
81
82 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
83 if (nr < 1)
84 nr = 1;
85 q->nr_congestion_off = nr;
86}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/**
89 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
90 * @bdev: device
91 *
92 * Locates the passed device's request queue and returns the address of its
93 * backing_dev_info
94 *
95 * Will return NULL if the request queue cannot be located.
96 */
97struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
98{
99 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200100 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 if (q)
103 ret = &q->backing_dev_info;
104 return ret;
105}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106EXPORT_SYMBOL(blk_get_backing_dev_info);
107
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200108void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200110 memset(rq, 0, sizeof(*rq));
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700113 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200114 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100115 rq->q = q;
116 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200117 INIT_HLIST_NODE(&rq->hash);
118 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200119 rq->cmd = rq->__cmd;
Jens Axboe63a71382008-02-08 12:41:03 +0100120 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200123EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
NeilBrown5bb23a62007-09-27 12:46:13 +0200125static void req_bio_endio(struct request *rq, struct bio *bio,
126 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100127{
Jens Axboe165125e2007-07-24 09:28:11 +0200128 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100129
NeilBrown5bb23a62007-09-27 12:46:13 +0200130 if (&q->bar_rq != rq) {
131 if (error)
132 clear_bit(BIO_UPTODATE, &bio->bi_flags);
133 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
134 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100135
NeilBrown5bb23a62007-09-27 12:46:13 +0200136 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100137 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700138 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200139 nbytes = bio->bi_size;
140 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100141
NeilBrown5bb23a62007-09-27 12:46:13 +0200142 bio->bi_size -= nbytes;
143 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200144
145 if (bio_integrity(bio))
146 bio_integrity_advance(bio, nbytes);
147
NeilBrown5bb23a62007-09-27 12:46:13 +0200148 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200149 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200150 } else {
151
152 /*
153 * Okay, this is the barrier request in progress, just
154 * record the error;
155 */
156 if (error && !q->orderr)
157 q->orderr = error;
158 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161void blk_dump_rq_flags(struct request *rq, char *msg)
162{
163 int bit;
164
Jens Axboe6728cb02008-01-31 13:03:55 +0100165 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200166 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
167 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Jens Axboe6728cb02008-01-31 13:03:55 +0100169 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
170 (unsigned long long)rq->sector,
171 rq->nr_sectors,
172 rq->current_nr_sectors);
173 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
174 rq->bio, rq->biotail,
175 rq->buffer, rq->data,
176 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Jens Axboe4aff5e22006-08-10 08:44:47 +0200178 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100179 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200180 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 printk("%02x ", rq->cmd[bit]);
182 printk("\n");
183 }
184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185EXPORT_SYMBOL(blk_dump_rq_flags);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
188 * "plug" the device if there are no outstanding requests: this will
189 * force the transfer to start only after we have put all the requests
190 * on the list.
191 *
192 * This is called with interrupts off and no requests on the queue and
193 * with the queue lock held.
194 */
Jens Axboe165125e2007-07-24 09:28:11 +0200195void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 WARN_ON(!irqs_disabled());
198
199 /*
200 * don't plug a stopped queue, it must be paired with blk_start_queue()
201 * which will restart the queueing
202 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200203 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return;
205
Jens Axboee48ec692008-07-03 13:18:54 +0200206 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +0100208 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211EXPORT_SYMBOL(blk_plug_device);
212
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200213/**
214 * blk_plug_device_unlocked - plug a device without queue lock held
215 * @q: The &struct request_queue to plug
216 *
217 * Description:
218 * Like @blk_plug_device(), but grabs the queue lock and disables
219 * interrupts.
220 **/
221void blk_plug_device_unlocked(struct request_queue *q)
222{
223 unsigned long flags;
224
225 spin_lock_irqsave(q->queue_lock, flags);
226 blk_plug_device(q);
227 spin_unlock_irqrestore(q->queue_lock, flags);
228}
229EXPORT_SYMBOL(blk_plug_device_unlocked);
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * remove the queue from the plugged list, if present. called with
233 * queue lock held and interrupts disabled.
234 */
Jens Axboe165125e2007-07-24 09:28:11 +0200235int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 WARN_ON(!irqs_disabled());
238
Jens Axboee48ec692008-07-03 13:18:54 +0200239 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241
242 del_timer(&q->unplug_timer);
243 return 1;
244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245EXPORT_SYMBOL(blk_remove_plug);
246
247/*
248 * remove the plug and let it rip..
249 */
Jens Axboe165125e2007-07-24 09:28:11 +0200250void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200252 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return;
254
255 if (!blk_remove_plug(q))
256 return;
257
Jens Axboe22e2c502005-06-27 10:55:12 +0200258 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260EXPORT_SYMBOL(__generic_unplug_device);
261
262/**
263 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200264 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
266 * Description:
267 * Linux uses plugging to build bigger requests queues before letting
268 * the device have at them. If a queue is plugged, the I/O scheduler
269 * is still adding and merging requests on the queue. Once the queue
270 * gets unplugged, the request_fn defined for the queue is invoked and
271 * transfers started.
272 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200273void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200275 if (blk_queue_plugged(q)) {
276 spin_lock_irq(q->queue_lock);
277 __generic_unplug_device(q);
278 spin_unlock_irq(q->queue_lock);
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281EXPORT_SYMBOL(generic_unplug_device);
282
283static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
284 struct page *page)
285{
Jens Axboe165125e2007-07-24 09:28:11 +0200286 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500288 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Jens Axboe86db1e22008-01-29 14:53:40 +0100291void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Jens Axboe165125e2007-07-24 09:28:11 +0200293 struct request_queue *q =
294 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Jens Axboe2056a782006-03-23 20:00:26 +0100296 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
297 q->rq.count[READ] + q->rq.count[WRITE]);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 q->unplug_fn(q);
300}
301
Jens Axboe86db1e22008-01-29 14:53:40 +0100302void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Jens Axboe165125e2007-07-24 09:28:11 +0200304 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Jens Axboe2056a782006-03-23 20:00:26 +0100306 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
307 q->rq.count[READ] + q->rq.count[WRITE]);
308
Jens Axboe18887ad2008-07-28 13:08:45 +0200309 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500312void blk_unplug(struct request_queue *q)
313{
314 /*
315 * devices don't necessarily have an ->unplug_fn defined
316 */
317 if (q->unplug_fn) {
318 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
319 q->rq.count[READ] + q->rq.count[WRITE]);
320
321 q->unplug_fn(q);
322 }
323}
324EXPORT_SYMBOL(blk_unplug);
325
Jens Axboec7c22e42008-09-13 20:26:01 +0200326static void blk_invoke_request_fn(struct request_queue *q)
327{
328 /*
329 * one level of recursion is ok and is much faster than kicking
330 * the unplug handling
331 */
332 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
333 q->request_fn(q);
334 queue_flag_clear(QUEUE_FLAG_REENTER, q);
335 } else {
336 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
337 kblockd_schedule_work(q, &q->unplug_work);
338 }
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/**
342 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200343 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *
345 * Description:
346 * blk_start_queue() will clear the stop flag on the queue, and call
347 * the request_fn for the queue if it was in a stopped state when
348 * entered. Also see blk_stop_queue(). Queue lock must be held.
349 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200350void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200352 WARN_ON(!irqs_disabled());
353
Nick Piggin75ad23b2008-04-29 14:48:33 +0200354 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200355 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357EXPORT_SYMBOL(blk_start_queue);
358
359/**
360 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200361 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *
363 * Description:
364 * The Linux block layer assumes that a block driver will consume all
365 * entries on the request queue when the request_fn strategy is called.
366 * Often this will not happen, because of hardware limitations (queue
367 * depth settings). If a device driver gets a 'queue full' response,
368 * or if it simply chooses not to queue more I/O at one point, it can
369 * call this function to prevent the request_fn from being called until
370 * the driver has signalled it's ready to go again. This happens by calling
371 * blk_start_queue() to restart queue operations. Queue lock must be held.
372 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200373void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200376 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378EXPORT_SYMBOL(blk_stop_queue);
379
380/**
381 * blk_sync_queue - cancel any pending callbacks on a queue
382 * @q: the queue
383 *
384 * Description:
385 * The block layer may perform asynchronous callback activity
386 * on a queue, such as calling the unplug function after a timeout.
387 * A block device may call blk_sync_queue to ensure that any
388 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200389 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * that its ->make_request_fn will not re-add plugging prior to calling
391 * this function.
392 *
393 */
394void blk_sync_queue(struct request_queue *q)
395{
396 del_timer_sync(&q->unplug_timer);
Oleg Nesterovabbeb882007-10-23 15:08:19 +0200397 kblockd_flush_work(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399EXPORT_SYMBOL(blk_sync_queue);
400
401/**
402 * blk_run_queue - run a single device queue
403 * @q: The queue to run
404 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200405void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200408
409 /*
410 * Only recurse once to avoid overrunning the stack, let the unplug
411 * handling reinvoke the handler shortly if we already got there.
412 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200413 if (!elv_queue_empty(q))
414 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200415}
416EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200417
Nick Piggin75ad23b2008-04-29 14:48:33 +0200418/**
419 * blk_run_queue - run a single device queue
420 * @q: The queue to run
421 */
422void blk_run_queue(struct request_queue *q)
423{
424 unsigned long flags;
425
426 spin_lock_irqsave(q->queue_lock, flags);
427 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 spin_unlock_irqrestore(q->queue_lock, flags);
429}
430EXPORT_SYMBOL(blk_run_queue);
431
Jens Axboe165125e2007-07-24 09:28:11 +0200432void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500433{
434 kobject_put(&q->kobj);
435}
Al Viro483f4af2006-03-18 18:34:37 -0500436
Jens Axboe6728cb02008-01-31 13:03:55 +0100437void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500438{
Jens Axboee3335de92008-09-18 09:22:54 -0700439 /*
440 * We know we have process context here, so we can be a little
441 * cautious and ensure that pending block actions on this device
442 * are done before moving on. Going into this function, we should
443 * not have processes doing IO to this device.
444 */
445 blk_sync_queue(q);
446
Al Viro483f4af2006-03-18 18:34:37 -0500447 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200448 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500449 mutex_unlock(&q->sysfs_lock);
450
451 if (q->elevator)
452 elevator_exit(q->elevator);
453
454 blk_put_queue(q);
455}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456EXPORT_SYMBOL(blk_cleanup_queue);
457
Jens Axboe165125e2007-07-24 09:28:11 +0200458static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 struct request_list *rl = &q->rq;
461
462 rl->count[READ] = rl->count[WRITE] = 0;
463 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200464 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 init_waitqueue_head(&rl->wait[READ]);
466 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Christoph Lameter19460892005-06-23 00:08:19 -0700468 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
469 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 if (!rl->rq_pool)
472 return -ENOMEM;
473
474 return 0;
475}
476
Jens Axboe165125e2007-07-24 09:28:11 +0200477struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Christoph Lameter19460892005-06-23 00:08:19 -0700479 return blk_alloc_queue_node(gfp_mask, -1);
480}
481EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jens Axboe165125e2007-07-24 09:28:11 +0200483struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700484{
Jens Axboe165125e2007-07-24 09:28:11 +0200485 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700486 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700487
Jens Axboe8324aa92008-01-29 14:51:59 +0100488 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700489 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!q)
491 return NULL;
492
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700493 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
494 q->backing_dev_info.unplug_io_data = q;
495 err = bdi_init(&q->backing_dev_info);
496 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100497 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700498 return NULL;
499 }
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700502 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
503 INIT_LIST_HEAD(&q->timeout_list);
Al Viro483f4af2006-03-18 18:34:37 -0500504
Jens Axboe8324aa92008-01-29 14:51:59 +0100505 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Al Viro483f4af2006-03-18 18:34:37 -0500507 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700508 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return q;
511}
Christoph Lameter19460892005-06-23 00:08:19 -0700512EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514/**
515 * blk_init_queue - prepare a request queue for use with a block device
516 * @rfn: The function to be called to process requests that have been
517 * placed on the queue.
518 * @lock: Request queue spin lock
519 *
520 * Description:
521 * If a block device wishes to use the standard request handling procedures,
522 * which sorts requests and coalesces adjacent requests, then it must
523 * call blk_init_queue(). The function @rfn will be called when there
524 * are requests on the queue that need to be processed. If the device
525 * supports plugging, then @rfn may not be called immediately when requests
526 * are available on the queue, but may be called at some time later instead.
527 * Plugged queues are generally unplugged when a buffer belonging to one
528 * of the requests on the queue is needed, or due to memory pressure.
529 *
530 * @rfn is not required, or even expected, to remove all requests off the
531 * queue, but only as many as it can handle at a time. If it does leave
532 * requests on the queue, it is responsible for arranging that the requests
533 * get dealt with eventually.
534 *
535 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200536 * request queue; this lock will be taken also from interrupt context, so irq
537 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200539 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * it didn't succeed.
541 *
542 * Note:
543 * blk_init_queue() must be paired with a blk_cleanup_queue() call
544 * when the block device is deactivated (such as at module unload).
545 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700546
Jens Axboe165125e2007-07-24 09:28:11 +0200547struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Christoph Lameter19460892005-06-23 00:08:19 -0700549 return blk_init_queue_node(rfn, lock, -1);
550}
551EXPORT_SYMBOL(blk_init_queue);
552
Jens Axboe165125e2007-07-24 09:28:11 +0200553struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700554blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
555{
Jens Axboe165125e2007-07-24 09:28:11 +0200556 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (!q)
559 return NULL;
560
Christoph Lameter19460892005-06-23 00:08:19 -0700561 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500562 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100563 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500564 return NULL;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
152587d2005-04-12 16:22:06 -0500567 /*
568 * if caller didn't supply a lock, they get per-queue locking with
569 * our embedded lock
570 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700571 if (!lock)
152587d2005-04-12 16:22:06 -0500572 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 q->prep_rq_fn = NULL;
576 q->unplug_fn = generic_unplug_device;
577 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
578 q->queue_lock = lock;
579
580 blk_queue_segment_boundary(q, 0xffffffff);
581
582 blk_queue_make_request(q, __make_request);
583 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
584
585 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
586 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
587
Alan Stern44ec9542007-02-20 11:01:57 -0500588 q->sg_reserved_size = INT_MAX;
589
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900590 blk_set_cmd_filter_defaults(&q->cmd_filter);
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
593 * all done
594 */
595 if (!elevator_init(q, NULL)) {
596 blk_queue_congestion_threshold(q);
597 return q;
598 }
599
Al Viro8669aaf2006-03-18 13:50:00 -0500600 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return NULL;
602}
Christoph Lameter19460892005-06-23 00:08:19 -0700603EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Jens Axboe165125e2007-07-24 09:28:11 +0200605int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700607 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500608 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return 0;
610 }
611
612 return 1;
613}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Jens Axboe165125e2007-07-24 09:28:11 +0200615static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200617 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200618 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 mempool_free(rq, q->rq.rq_pool);
620}
621
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200622static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +0200623blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
626
627 if (!rq)
628 return NULL;
629
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200630 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200631
Jens Axboe49171e52006-08-10 08:59:11 +0200632 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Tejun Heocb98fc82005-10-28 08:29:39 +0200634 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200635 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200636 mempool_free(rq, q->rq.rq_pool);
637 return NULL;
638 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200639 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Tejun Heocb98fc82005-10-28 08:29:39 +0200642 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645/*
646 * ioc_batching returns true if the ioc is a valid batching request and
647 * should be given priority access to a request.
648 */
Jens Axboe165125e2007-07-24 09:28:11 +0200649static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 if (!ioc)
652 return 0;
653
654 /*
655 * Make sure the process is able to allocate at least 1 request
656 * even if the batch times out, otherwise we could theoretically
657 * lose wakeups.
658 */
659 return ioc->nr_batch_requests == q->nr_batching ||
660 (ioc->nr_batch_requests > 0
661 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
662}
663
664/*
665 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
666 * will cause the process to be a "batcher" on all queues in the system. This
667 * is the behaviour we want though - once it gets a wakeup it should be given
668 * a nice run.
669 */
Jens Axboe165125e2007-07-24 09:28:11 +0200670static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 if (!ioc || ioc_batching(q, ioc))
673 return;
674
675 ioc->nr_batch_requests = q->nr_batching;
676 ioc->last_waited = jiffies;
677}
678
Jens Axboe165125e2007-07-24 09:28:11 +0200679static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 struct request_list *rl = &q->rq;
682
683 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -0700684 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (waitqueue_active(&rl->wait[rw]))
688 wake_up(&rl->wait[rw]);
689
690 blk_clear_queue_full(q, rw);
691 }
692}
693
694/*
695 * A request has just been released. Account for it, update the full and
696 * congestion status, wake up any waiters. Called under q->queue_lock.
697 */
Jens Axboe165125e2007-07-24 09:28:11 +0200698static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 struct request_list *rl = &q->rq;
701
702 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200703 if (priv)
704 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 __freed_request(q, rw);
707
708 if (unlikely(rl->starved[rw ^ 1]))
709 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
713/*
Nick Piggind6344532005-06-28 20:45:14 -0700714 * Get a free request, queue_lock must be held.
715 * Returns NULL on failure, with queue_lock held.
716 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
Jens Axboe165125e2007-07-24 09:28:11 +0200718static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100719 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 struct request *rq = NULL;
722 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100723 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +0100724 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100725 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Jens Axboe7749a8d2006-12-13 13:02:26 +0100727 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100728 if (may_queue == ELV_MQUEUE_NO)
729 goto rq_starved;
730
731 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
732 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200733 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100734 /*
735 * The queue will fill after this allocation, so set
736 * it as full, and mark this process as "batching".
737 * This process will be allowed to complete a batch of
738 * requests, others will be blocked.
739 */
740 if (!blk_queue_full(q, rw)) {
741 ioc_set_batching(q, ioc);
742 blk_set_queue_full(q, rw);
743 } else {
744 if (may_queue != ELV_MQUEUE_MUST
745 && !ioc_batching(q, ioc)) {
746 /*
747 * The queue is full and the allocating
748 * process is not a "batcher", and not
749 * exempted by the IO scheduler
750 */
751 goto out;
752 }
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Thomas Maier79e2de42006-10-19 23:28:15 -0700755 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Jens Axboe082cf692005-06-28 16:35:11 +0200758 /*
759 * Only allow batching queuers to allocate up to 50% over the defined
760 * limit of requests, otherwise we could have thousands of requests
761 * allocated with any setting of ->nr_requests
762 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100763 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200764 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 rl->count[rw]++;
767 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200768
Jens Axboe64521d12005-10-28 08:30:39 +0200769 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200770 if (priv)
771 rl->elvpriv++;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 spin_unlock_irq(q->queue_lock);
774
Jens Axboe7749a8d2006-12-13 13:02:26 +0100775 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100776 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * Allocation failed presumably due to memory. Undo anything
779 * we might have messed up.
780 *
781 * Allocating task should really be put onto the front of the
782 * wait queue, but this is pretty rare.
783 */
784 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +0200785 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /*
788 * in the very unlikely event that allocation failed and no
789 * requests for this direction was pending, mark us starved
790 * so that freeing of a request in the other direction will
791 * notice us. another possible fix would be to split the
792 * rq mempool into READ and WRITE
793 */
794rq_starved:
795 if (unlikely(rl->count[rw] == 0))
796 rl->starved[rw] = 1;
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto out;
799 }
800
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100801 /*
802 * ioc may be NULL here, and ioc_batching will be false. That's
803 * OK, if the queue is under the request limit then requests need
804 * not count toward the nr_batch_requests limit. There will always
805 * be some limit enforced by BLK_BATCH_TIME.
806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (ioc_batching(q, ioc))
808 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100809
Jens Axboe2056a782006-03-23 20:00:26 +0100810 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return rq;
813}
814
815/*
816 * No available requests for this queue, unplug the device and wait for some
817 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700818 *
819 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
Jens Axboe165125e2007-07-24 09:28:11 +0200821static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200822 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Jens Axboe7749a8d2006-12-13 13:02:26 +0100824 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 struct request *rq;
826
Jens Axboe7749a8d2006-12-13 13:02:26 +0100827 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700828 while (!rq) {
829 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200830 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct request_list *rl = &q->rq;
832
833 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
834 TASK_UNINTERRUPTIBLE);
835
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200836 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200838 __generic_unplug_device(q);
839 spin_unlock_irq(q->queue_lock);
840 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200842 /*
843 * After sleeping, we become a "batching" process and
844 * will be able to allocate at least one request, and
845 * up to a big batch of them for a small period time.
846 * See ioc_batching, ioc_set_batching
847 */
848 ioc = current_io_context(GFP_NOIO, q->node);
849 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100850
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200851 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 finish_wait(&rl->wait[rw], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200853
854 rq = get_request(q, rw_flags, bio, GFP_NOIO);
855 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 return rq;
858}
859
Jens Axboe165125e2007-07-24 09:28:11 +0200860struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct request *rq;
863
864 BUG_ON(rw != READ && rw != WRITE);
865
Nick Piggind6344532005-06-28 20:45:14 -0700866 spin_lock_irq(q->queue_lock);
867 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200868 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700869 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200870 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700871 if (!rq)
872 spin_unlock_irq(q->queue_lock);
873 }
874 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 return rq;
877}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878EXPORT_SYMBOL(blk_get_request);
879
880/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200881 * blk_start_queueing - initiate dispatch of requests to device
882 * @q: request queue to kick into gear
883 *
884 * This is basically a helper to remove the need to know whether a queue
885 * is plugged or not if someone just wants to initiate dispatch of requests
886 * for this queue.
887 *
888 * The queue lock must be held with interrupts disabled.
889 */
Jens Axboe165125e2007-07-24 09:28:11 +0200890void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200891{
892 if (!blk_queue_plugged(q))
893 q->request_fn(q);
894 else
895 __generic_unplug_device(q);
896}
897EXPORT_SYMBOL(blk_start_queueing);
898
899/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * blk_requeue_request - put a request back on queue
901 * @q: request queue where request should be inserted
902 * @rq: request to be inserted
903 *
904 * Description:
905 * Drivers often keep queueing requests until the hardware cannot accept
906 * more, when that condition happens we need to put the request back
907 * on the queue. Must be called with queue lock held.
908 */
Jens Axboe165125e2007-07-24 09:28:11 +0200909void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700911 blk_delete_timer(rq);
912 blk_clear_rq_complete(rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100913 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (blk_rq_tagged(rq))
916 blk_queue_end_tag(q, rq);
917
918 elv_requeue_request(q, rq);
919}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920EXPORT_SYMBOL(blk_requeue_request);
921
922/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200923 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * @q: request queue where request should be inserted
925 * @rq: request to be inserted
926 * @at_head: insert request at head or tail of queue
927 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 *
929 * Description:
930 * Many block devices need to execute commands asynchronously, so they don't
931 * block the whole kernel from preemption during request execution. This is
932 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200933 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
934 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
936 * We have the option of inserting the head or the tail of the queue.
937 * Typically we use the tail for new ioctls and so forth. We use the head
938 * of the queue for things like a QUEUE_FULL message from a device, or a
939 * host that is unable to accept a particular command.
940 */
Jens Axboe165125e2007-07-24 09:28:11 +0200941void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500942 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Tejun Heo 867d1192005-04-24 02:06:05 -0500944 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 unsigned long flags;
946
947 /*
948 * tell I/O scheduler that this isn't a regular read/write (ie it
949 * must not attempt merges on this) and that it acts as a soft
950 * barrier
951 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200952 rq->cmd_type = REQ_TYPE_SPECIAL;
953 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 rq->special = data;
956
957 spin_lock_irqsave(q->queue_lock, flags);
958
959 /*
960 * If command is tagged, release the tag
961 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500962 if (blk_rq_tagged(rq))
963 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200965 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500966 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200967 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 spin_unlock_irqrestore(q->queue_lock, flags);
969}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970EXPORT_SYMBOL(blk_insert_request);
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
973 * add-request adds a request to the linked list.
974 * queue lock is held and interrupts disabled, as we muck with the
975 * request queue list.
976 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100977static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200979 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /*
982 * elevator indicated where it wants this request to be
983 * inserted at elevator_merge time
984 */
985 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
986}
Jens Axboe6728cb02008-01-31 13:03:55 +0100987
Tejun Heo074a7ac2008-08-25 19:56:14 +0900988static void part_round_stats_single(int cpu, struct hd_struct *part,
989 unsigned long now)
990{
991 if (now == part->stamp)
992 return;
993
994 if (part->in_flight) {
995 __part_stat_add(cpu, part, time_in_queue,
996 part->in_flight * (now - part->stamp));
997 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
998 }
999 part->stamp = now;
1000}
1001
1002/**
1003 * part_round_stats() - Round off the performance stats on a struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * disk_stats.
1005 *
1006 * The average IO queue length and utilisation statistics are maintained
1007 * by observing the current state of the queue length and the amount of
1008 * time it has been in this state for.
1009 *
1010 * Normally, that accounting is done on IO completion, but that can result
1011 * in more than a second's worth of IO being accounted for within any one
1012 * second, leading to >100% utilisation. To deal with that, we call this
1013 * function to do a round-off before returning the results when reading
1014 * /proc/diskstats. This accounts immediately for all queue usage up to
1015 * the current jiffies and restarts the counters again.
1016 */
Tejun Heoc9959052008-08-25 19:47:21 +09001017void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001018{
1019 unsigned long now = jiffies;
1020
Tejun Heo074a7ac2008-08-25 19:56:14 +09001021 if (part->partno)
1022 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1023 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001024}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001025EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/*
1028 * queue lock must be held
1029 */
Jens Axboe165125e2007-07-24 09:28:11 +02001030void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (unlikely(!q))
1033 return;
1034 if (unlikely(--req->ref_count))
1035 return;
1036
Tejun Heo8922e162005-10-20 16:23:44 +02001037 elv_completed_request(q, req);
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /*
1040 * Request may not have originated from ll_rw_blk. if not,
1041 * it didn't come out of our reserved rq pools
1042 */
Jens Axboe49171e52006-08-10 08:59:11 +02001043 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001045 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001048 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02001051 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001054EXPORT_SYMBOL_GPL(__blk_put_request);
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056void blk_put_request(struct request *req)
1057{
Tejun Heo8922e162005-10-20 16:23:44 +02001058 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001059 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001061 spin_lock_irqsave(q->queue_lock, flags);
1062 __blk_put_request(q, req);
1063 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065EXPORT_SYMBOL(blk_put_request);
1066
Jens Axboe86db1e22008-01-29 14:53:40 +01001067void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001068{
Jens Axboec7c22e42008-09-13 20:26:01 +02001069 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001070 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001071
1072 /*
1073 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1074 */
1075 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001076 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01001077
1078 /*
1079 * REQ_BARRIER implies no merging, but lets make it explicit
1080 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001081 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001082 req->cmd_flags |= REQ_DISCARD;
1083 if (bio_barrier(bio))
1084 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001085 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001086 } else if (unlikely(bio_barrier(bio)))
1087 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001088
Jens Axboeb31dc662006-06-13 08:26:10 +02001089 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001090 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001091 if (bio_rw_meta(bio))
1092 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02001093
Tejun Heo52d9e672006-01-06 09:49:58 +01001094 req->errors = 0;
1095 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001096 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001097 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001098 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001099}
1100
Jens Axboe165125e2007-07-24 09:28:11 +02001101static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Nick Piggin450991b2005-06-28 20:45:13 -07001103 struct request *req;
David Woodhousefb2dce82008-08-05 18:01:53 +01001104 int el_ret, nr_sectors, barrier, discard, err;
Jens Axboe51da90f2006-07-18 04:14:45 +02001105 const unsigned short prio = bio_prio(bio);
1106 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001107 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 /*
1112 * low level driver can indicate that it wants pages above a
1113 * certain limit bounced to low memory (ie for highmem, or even
1114 * ISA dma in theory)
1115 */
1116 blk_queue_bounce(q, &bio);
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 barrier = bio_barrier(bio);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001119 if (unlikely(barrier) && bio_has_data(bio) &&
1120 (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 err = -EOPNOTSUPP;
1122 goto end_io;
1123 }
1124
David Woodhousefb2dce82008-08-05 18:01:53 +01001125 discard = bio_discard(bio);
1126 if (unlikely(discard) && !q->prepare_discard_fn) {
1127 err = -EOPNOTSUPP;
1128 goto end_io;
1129 }
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 spin_lock_irq(q->queue_lock);
1132
Nick Piggin450991b2005-06-28 20:45:13 -07001133 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 goto get_rq;
1135
1136 el_ret = elv_merge(q, &req, bio);
1137 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001138 case ELEVATOR_BACK_MERGE:
1139 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Jens Axboe6728cb02008-01-31 13:03:55 +01001141 if (!ll_back_merge_fn(q, req, bio))
1142 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Jens Axboe6728cb02008-01-31 13:03:55 +01001144 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001145
Jens Axboe6728cb02008-01-31 13:03:55 +01001146 req->biotail->bi_next = bio;
1147 req->biotail = bio;
1148 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1149 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001150 if (!blk_rq_cpu_valid(req))
1151 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001152 drive_stat_acct(req, 0);
1153 if (!attempt_back_merge(q, req))
1154 elv_merged_request(q, req, el_ret);
1155 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Jens Axboe6728cb02008-01-31 13:03:55 +01001157 case ELEVATOR_FRONT_MERGE:
1158 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Jens Axboe6728cb02008-01-31 13:03:55 +01001160 if (!ll_front_merge_fn(q, req, bio))
1161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Jens Axboe6728cb02008-01-31 13:03:55 +01001163 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
Jens Axboe2056a782006-03-23 20:00:26 +01001164
Jens Axboe6728cb02008-01-31 13:03:55 +01001165 bio->bi_next = req->bio;
1166 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Jens Axboe6728cb02008-01-31 13:03:55 +01001168 /*
1169 * may not be valid. if the low level driver said
1170 * it didn't need a bounce buffer then it better
1171 * not touch req->buffer either...
1172 */
1173 req->buffer = bio_data(bio);
1174 req->current_nr_sectors = bio_cur_sectors(bio);
1175 req->hard_cur_sectors = req->current_nr_sectors;
1176 req->sector = req->hard_sector = bio->bi_sector;
1177 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1178 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001179 if (!blk_rq_cpu_valid(req))
1180 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001181 drive_stat_acct(req, 0);
1182 if (!attempt_front_merge(q, req))
1183 elv_merged_request(q, req, el_ret);
1184 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Jens Axboe6728cb02008-01-31 13:03:55 +01001186 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1187 default:
1188 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001192 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001193 * This sync check and mask will be re-done in init_request_from_bio(),
1194 * but we need to set it earlier to expose the sync flag to the
1195 * rq allocator and io schedulers.
1196 */
1197 rw_flags = bio_data_dir(bio);
1198 if (sync)
1199 rw_flags |= REQ_RW_SYNC;
1200
1201 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001202 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001203 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001204 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001205 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001206
Nick Piggin450991b2005-06-28 20:45:13 -07001207 /*
1208 * After dropping the lock and possibly sleeping here, our request
1209 * may now be mergeable after it had proven unmergeable (above).
1210 * We don't worry about that case for efficiency. It won't happen
1211 * often, and the elevators are able to handle it.
1212 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001213 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Nick Piggin450991b2005-06-28 20:45:13 -07001215 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001216 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1217 bio_flagged(bio, BIO_CPU_AFFINE))
1218 req->cpu = blk_cpu_to_group(smp_processor_id());
Nick Piggin450991b2005-06-28 20:45:13 -07001219 if (elv_queue_empty(q))
1220 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 add_request(q, req);
1222out:
Jens Axboe4a534f92005-04-16 15:25:40 -07001223 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 spin_unlock_irq(q->queue_lock);
1226 return 0;
1227
1228end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02001229 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return 0;
1231}
1232
1233/*
1234 * If bio->bi_dev is a partition, remap the location
1235 */
1236static inline void blk_partition_remap(struct bio *bio)
1237{
1238 struct block_device *bdev = bio->bi_bdev;
1239
Jens Axboebf2de6f2007-09-27 13:01:25 +02001240 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 bio->bi_sector += p->start_sect;
1244 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001245
1246 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
1247 bdev->bd_dev, bio->bi_sector,
1248 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250}
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252static void handle_bad_sector(struct bio *bio)
1253{
1254 char b[BDEVNAME_SIZE];
1255
1256 printk(KERN_INFO "attempt to access beyond end of device\n");
1257 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1258 bdevname(bio->bi_bdev, b),
1259 bio->bi_rw,
1260 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1261 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1262
1263 set_bit(BIO_EOF, &bio->bi_flags);
1264}
1265
Akinobu Mitac17bb492006-12-08 02:39:46 -08001266#ifdef CONFIG_FAIL_MAKE_REQUEST
1267
1268static DECLARE_FAULT_ATTR(fail_make_request);
1269
1270static int __init setup_fail_make_request(char *str)
1271{
1272 return setup_fault_attr(&fail_make_request, str);
1273}
1274__setup("fail_make_request=", setup_fail_make_request);
1275
1276static int should_fail_request(struct bio *bio)
1277{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001278 struct hd_struct *part = bio->bi_bdev->bd_part;
1279
1280 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001281 return should_fail(&fail_make_request, bio->bi_size);
1282
1283 return 0;
1284}
1285
1286static int __init fail_make_request_debugfs(void)
1287{
1288 return init_fault_attr_dentries(&fail_make_request,
1289 "fail_make_request");
1290}
1291
1292late_initcall(fail_make_request_debugfs);
1293
1294#else /* CONFIG_FAIL_MAKE_REQUEST */
1295
1296static inline int should_fail_request(struct bio *bio)
1297{
1298 return 0;
1299}
1300
1301#endif /* CONFIG_FAIL_MAKE_REQUEST */
1302
Jens Axboec07e2b42007-07-18 13:27:58 +02001303/*
1304 * Check whether this bio extends beyond the end of the device.
1305 */
1306static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1307{
1308 sector_t maxsector;
1309
1310 if (!nr_sectors)
1311 return 0;
1312
1313 /* Test device or partition size, when known. */
1314 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1315 if (maxsector) {
1316 sector_t sector = bio->bi_sector;
1317
1318 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1319 /*
1320 * This may well happen - the kernel calls bread()
1321 * without checking the size of the device, e.g., when
1322 * mounting a device.
1323 */
1324 handle_bad_sector(bio);
1325 return 1;
1326 }
1327 }
1328
1329 return 0;
1330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001333 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 * @bio: The bio describing the location in memory and on the device.
1335 *
1336 * generic_make_request() is used to make I/O requests of block
1337 * devices. It is passed a &struct bio, which describes the I/O that needs
1338 * to be done.
1339 *
1340 * generic_make_request() does not return any status. The
1341 * success/failure status of the request, along with notification of
1342 * completion, is delivered asynchronously through the bio->bi_end_io
1343 * function described (one day) else where.
1344 *
1345 * The caller of generic_make_request must make sure that bi_io_vec
1346 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1347 * set to describe the device address, and the
1348 * bi_end_io and optionally bi_private are set to describe how
1349 * completion notification should be signaled.
1350 *
1351 * generic_make_request and the drivers it calls may use bi_next if this
1352 * bio happens to be merged with someone else, and may change bi_dev and
1353 * bi_sector for remaps as it sees fit. So the values of these fields
1354 * should NOT be depended on after the call to generic_make_request.
1355 */
Neil Brownd89d8792007-05-01 09:53:42 +02001356static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Jens Axboe165125e2007-07-24 09:28:11 +02001358 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001359 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001361 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001362 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Jens Axboec07e2b42007-07-18 13:27:58 +02001366 if (bio_check_eod(bio, nr_sectors))
1367 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 /*
1370 * Resolve the mapping until finished. (drivers are
1371 * still free to implement/resolve their own stacking
1372 * by explicitly returning 0)
1373 *
1374 * NOTE: we don't repeat the blk_size check for each new device.
1375 * Stacking drivers are expected to know what they are doing.
1376 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001377 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001378 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 do {
1380 char b[BDEVNAME_SIZE];
1381
1382 q = bdev_get_queue(bio->bi_bdev);
1383 if (!q) {
1384 printk(KERN_ERR
1385 "generic_make_request: Trying to access "
1386 "nonexistent block-device %s (%Lu)\n",
1387 bdevname(bio->bi_bdev, b),
1388 (long long) bio->bi_sector);
1389end_io:
Jens Axboe51fd77b2007-11-02 08:49:08 +01001390 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 break;
1392 }
1393
Jens Axboe4fa253f2007-07-18 13:13:10 +02001394 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001395 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 bdevname(bio->bi_bdev, b),
1397 bio_sectors(bio),
1398 q->max_hw_sectors);
1399 goto end_io;
1400 }
1401
Nick Pigginfde6ad22005-06-23 00:08:53 -07001402 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 goto end_io;
1404
Akinobu Mitac17bb492006-12-08 02:39:46 -08001405 if (should_fail_request(bio))
1406 goto end_io;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /*
1409 * If this device has partitions, remap block n
1410 * of partition p to block n+start(p) of the disk.
1411 */
1412 blk_partition_remap(bio);
1413
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001414 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1415 goto end_io;
1416
NeilBrown5ddfe962006-10-30 22:07:21 -08001417 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02001418 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08001419 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001420
1421 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
1422
NeilBrown5ddfe962006-10-30 22:07:21 -08001423 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001424 old_dev = bio->bi_bdev->bd_dev;
1425
Jens Axboec07e2b42007-07-18 13:27:58 +02001426 if (bio_check_eod(bio, nr_sectors))
1427 goto end_io;
David Woodhousefb2dce82008-08-05 18:01:53 +01001428 if ((bio_empty_barrier(bio) && !q->prepare_flush_fn) ||
1429 (bio_discard(bio) && !q->prepare_discard_fn)) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001430 err = -EOPNOTSUPP;
1431 goto end_io;
1432 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 ret = q->make_request_fn(q, bio);
1435 } while (ret);
1436}
1437
Neil Brownd89d8792007-05-01 09:53:42 +02001438/*
1439 * We only want one ->make_request_fn to be active at a time,
1440 * else stack usage with stacked devices could be a problem.
1441 * So use current->bio_{list,tail} to keep a list of requests
1442 * submited by a make_request_fn function.
1443 * current->bio_tail is also used as a flag to say if
1444 * generic_make_request is currently active in this task or not.
1445 * If it is NULL, then no make_request is active. If it is non-NULL,
1446 * then a make_request is active, and new requests should be added
1447 * at the tail
1448 */
1449void generic_make_request(struct bio *bio)
1450{
1451 if (current->bio_tail) {
1452 /* make_request is active */
1453 *(current->bio_tail) = bio;
1454 bio->bi_next = NULL;
1455 current->bio_tail = &bio->bi_next;
1456 return;
1457 }
1458 /* following loop may be a bit non-obvious, and so deserves some
1459 * explanation.
1460 * Before entering the loop, bio->bi_next is NULL (as all callers
1461 * ensure that) so we have a list with a single bio.
1462 * We pretend that we have just taken it off a longer list, so
1463 * we assign bio_list to the next (which is NULL) and bio_tail
1464 * to &bio_list, thus initialising the bio_list of new bios to be
1465 * added. __generic_make_request may indeed add some more bios
1466 * through a recursive call to generic_make_request. If it
1467 * did, we find a non-NULL value in bio_list and re-enter the loop
1468 * from the top. In this case we really did just take the bio
1469 * of the top of the list (no pretending) and so fixup bio_list and
1470 * bio_tail or bi_next, and call into __generic_make_request again.
1471 *
1472 * The loop was structured like this to make only one call to
1473 * __generic_make_request (which is important as it is large and
1474 * inlined) and to keep the structure simple.
1475 */
1476 BUG_ON(bio->bi_next);
1477 do {
1478 current->bio_list = bio->bi_next;
1479 if (bio->bi_next == NULL)
1480 current->bio_tail = &current->bio_list;
1481 else
1482 bio->bi_next = NULL;
1483 __generic_make_request(bio);
1484 bio = current->bio_list;
1485 } while (bio);
1486 current->bio_tail = NULL; /* deactivate */
1487}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488EXPORT_SYMBOL(generic_make_request);
1489
1490/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001491 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1493 * @bio: The &struct bio which describes the I/O
1494 *
1495 * submit_bio() is very similar in purpose to generic_make_request(), and
1496 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001497 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 *
1499 */
1500void submit_bio(int rw, struct bio *bio)
1501{
1502 int count = bio_sectors(bio);
1503
Jens Axboe22e2c502005-06-27 10:55:12 +02001504 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Jens Axboebf2de6f2007-09-27 13:01:25 +02001506 /*
1507 * If it's a regular read/write or a barrier with data attached,
1508 * go through the normal accounting stuff before submission.
1509 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001510 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001511 if (rw & WRITE) {
1512 count_vm_events(PGPGOUT, count);
1513 } else {
1514 task_io_account_read(bio->bi_size);
1515 count_vm_events(PGPGIN, count);
1516 }
1517
1518 if (unlikely(block_dump)) {
1519 char b[BDEVNAME_SIZE];
1520 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001521 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001522 (rw & WRITE) ? "WRITE" : "READ",
1523 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001524 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527
1528 generic_make_request(bio);
1529}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530EXPORT_SYMBOL(submit_bio);
1531
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001532/**
1533 * __end_that_request_first - end I/O on a request
1534 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001535 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001536 * @nr_bytes: number of bytes to complete
1537 *
1538 * Description:
1539 * Ends I/O on a number of bytes attached to @req, and sets it up
1540 * for the next range of segments (if any) in the cluster.
1541 *
1542 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001543 * %0 - we are done with this request, call end_that_request_last()
1544 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001545 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001546static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int nr_bytes)
1548{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001549 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct bio *bio;
1551
Jens Axboe2056a782006-03-23 20:00:26 +01001552 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001555 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * sense key with us all the way through
1557 */
1558 if (!blk_pc_request(req))
1559 req->errors = 0;
1560
Jens Axboe6728cb02008-01-31 13:03:55 +01001561 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1562 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 req->rq_disk ? req->rq_disk->disk_name : "?",
1564 (unsigned long long)req->sector);
1565 }
1566
Jens Axboed72d9042005-11-01 08:35:42 +01001567 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01001568 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001569 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001570 int cpu;
Jens Axboea3623572005-11-01 09:26:16 +01001571
Tejun Heo074a7ac2008-08-25 19:56:14 +09001572 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001573 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Tejun Heo074a7ac2008-08-25 19:56:14 +09001574 part_stat_add(cpu, part, sectors[rw], nr_bytes >> 9);
1575 part_stat_unlock();
Jens Axboed72d9042005-11-01 08:35:42 +01001576 }
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 total_bytes = bio_nbytes = 0;
1579 while ((bio = req->bio) != NULL) {
1580 int nbytes;
1581
Jens Axboebf2de6f2007-09-27 13:01:25 +02001582 /*
1583 * For an empty barrier request, the low level driver must
1584 * store a potential error location in ->sector. We pass
1585 * that back up in ->bi_sector.
1586 */
1587 if (blk_empty_barrier(req))
1588 bio->bi_sector = req->sector;
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (nr_bytes >= bio->bi_size) {
1591 req->bio = bio->bi_next;
1592 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001593 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 next_idx = 0;
1595 bio_nbytes = 0;
1596 } else {
1597 int idx = bio->bi_idx + next_idx;
1598
1599 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1600 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001601 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -07001602 __func__, bio->bi_idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 }
1605
1606 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1607 BIO_BUG_ON(nbytes > bio->bi_size);
1608
1609 /*
1610 * not a complete bvec done
1611 */
1612 if (unlikely(nbytes > nr_bytes)) {
1613 bio_nbytes += nr_bytes;
1614 total_bytes += nr_bytes;
1615 break;
1616 }
1617
1618 /*
1619 * advance to the next vector
1620 */
1621 next_idx++;
1622 bio_nbytes += nbytes;
1623 }
1624
1625 total_bytes += nbytes;
1626 nr_bytes -= nbytes;
1627
Jens Axboe6728cb02008-01-31 13:03:55 +01001628 bio = req->bio;
1629 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /*
1631 * end more in this run, or just return 'not-done'
1632 */
1633 if (unlikely(nr_bytes <= 0))
1634 break;
1635 }
1636 }
1637
1638 /*
1639 * completely done
1640 */
1641 if (!req->bio)
1642 return 0;
1643
1644 /*
1645 * if the request wasn't completed, update state
1646 */
1647 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001648 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 bio->bi_idx += next_idx;
1650 bio_iovec(bio)->bv_offset += nr_bytes;
1651 bio_iovec(bio)->bv_len -= nr_bytes;
1652 }
1653
1654 blk_recalc_rq_sectors(req, total_bytes >> 9);
1655 blk_recalc_rq_segments(req);
1656 return 1;
1657}
1658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659/*
1660 * queue lock must be held
1661 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001662static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01001665
Jens Axboe242f9dc2008-09-14 05:55:09 -07001666 blk_delete_timer(req);
1667
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001668 if (blk_rq_tagged(req))
1669 blk_queue_end_tag(req->q, req);
1670
1671 if (blk_queued_rq(req))
1672 blkdev_dequeue_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 if (unlikely(laptop_mode) && blk_fs_request(req))
1675 laptop_io_completion();
1676
Jens Axboefd0ff8a2006-05-23 11:23:49 +02001677 /*
1678 * Account IO completion. bar_rq isn't accounted as a normal
1679 * IO on queueing nor completion. Accounting the containing
1680 * request is enough.
1681 */
1682 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01001684 const int rw = rq_data_dir(req);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001685 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +09001686 int cpu;
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001687
Tejun Heo074a7ac2008-08-25 19:56:14 +09001688 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001689 part = disk_map_sector_rcu(disk, req->sector);
Jens Axboea3623572005-11-01 09:26:16 +01001690
Tejun Heo074a7ac2008-08-25 19:56:14 +09001691 part_stat_inc(cpu, part, ios[rw]);
1692 part_stat_add(cpu, part, ticks[rw], duration);
1693 part_round_stats(cpu, part);
1694 part_dec_in_flight(part);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001695
Tejun Heo074a7ac2008-08-25 19:56:14 +09001696 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001700 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001701 else {
1702 if (blk_bidi_rq(req))
1703 __blk_put_request(req->next_rq->q, req->next_rq);
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707}
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709static inline void __end_request(struct request *rq, int uptodate,
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001710 unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001712 int error = 0;
1713
1714 if (uptodate <= 0)
1715 error = uptodate ? uptodate : -EIO;
1716
1717 __blk_end_request(rq, error, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001720/**
1721 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001722 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001723 **/
1724unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001725{
1726 if (blk_fs_request(rq))
1727 return rq->hard_nr_sectors << 9;
1728
1729 return rq->data_len;
1730}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001731EXPORT_SYMBOL_GPL(blk_rq_bytes);
1732
1733/**
1734 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001735 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001736 **/
1737unsigned int blk_rq_cur_bytes(struct request *rq)
1738{
1739 if (blk_fs_request(rq))
1740 return rq->current_nr_sectors << 9;
1741
1742 if (rq->bio)
1743 return rq->bio->bi_size;
1744
1745 return rq->data_len;
1746}
1747EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001748
1749/**
1750 * end_queued_request - end all I/O on a queued request
1751 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001752 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001753 *
1754 * Description:
1755 * Ends all I/O on a request, and removes it from the block layer queues.
Randy Dunlap710027a2008-08-19 20:13:11 +02001756 * Not suitable for normal I/O completion, unless the driver still has
Jens Axboea0cd1282007-09-21 10:41:07 +02001757 * the request attached to the block layer.
1758 *
1759 **/
1760void end_queued_request(struct request *rq, int uptodate)
1761{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001762 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001763}
1764EXPORT_SYMBOL(end_queued_request);
1765
1766/**
1767 * end_dequeued_request - end all I/O on a dequeued request
1768 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001769 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001770 *
1771 * Description:
1772 * Ends all I/O on a request. The request must already have been
1773 * dequeued using blkdev_dequeue_request(), as is normally the case
1774 * for most drivers.
1775 *
1776 **/
1777void end_dequeued_request(struct request *rq, int uptodate)
1778{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001779 __end_request(rq, uptodate, blk_rq_bytes(rq));
Jens Axboea0cd1282007-09-21 10:41:07 +02001780}
1781EXPORT_SYMBOL(end_dequeued_request);
1782
1783
1784/**
1785 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001786 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001787 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001788 *
1789 * Description:
1790 * Ends I/O on the current segment of a request. If that is the only
1791 * remaining segment, the request is also completed and freed.
1792 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001793 * This is a remnant of how older block drivers handled I/O completions.
1794 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001795 * they have a residual value to account for. For that case this function
1796 * isn't really useful, unless the residual just happens to be the
1797 * full current segment. In other words, don't use this function in new
Jens Axboe839e96a2008-09-02 09:25:21 +02001798 * code. Use blk_end_request() or __blk_end_request() to end partial parts
1799 * of a request, or end_dequeued_request() and end_queued_request() to
1800 * completely end IO on a dequeued/queued request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001801 *
1802 **/
1803void end_request(struct request *req, int uptodate)
1804{
Kiyoshi Ueda9e6e39f2007-12-11 17:41:54 -05001805 __end_request(req, uptodate, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001806}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807EXPORT_SYMBOL(end_request);
1808
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001809static int end_that_request_data(struct request *rq, int error,
1810 unsigned int nr_bytes, unsigned int bidi_bytes)
1811{
1812 if (rq->bio) {
1813 if (__end_that_request_first(rq, error, nr_bytes))
1814 return 1;
1815
1816 /* Bidi request must be completed as a whole */
1817 if (blk_bidi_rq(rq) &&
1818 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1819 return 1;
1820 }
1821
1822 return 0;
1823}
1824
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001825/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001826 * blk_end_io - Generic end_io function to complete a request.
1827 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001828 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001829 * @nr_bytes: number of bytes to complete @rq
1830 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001831 * @drv_callback: function called between completion of bios in the request
1832 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001833 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001834 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001835 *
1836 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001837 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001838 * If @rq has leftover, sets it up for the next range of segments.
1839 *
1840 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001841 * %0 - we are done with this request
1842 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001843 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001844static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1845 unsigned int bidi_bytes,
1846 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001847{
1848 struct request_queue *q = rq->q;
1849 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001850
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001851 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1852 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001853
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001854 /* Special feature for tricky drivers */
1855 if (drv_callback && drv_callback(rq))
1856 return 1;
1857
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001858 add_disk_randomness(rq->rq_disk);
1859
1860 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001861 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001862 spin_unlock_irqrestore(q->queue_lock, flags);
1863
1864 return 0;
1865}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001866
1867/**
1868 * blk_end_request - Helper function for drivers to complete the request.
1869 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001870 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001871 * @nr_bytes: number of bytes to complete
1872 *
1873 * Description:
1874 * Ends I/O on a number of bytes attached to @rq.
1875 * If @rq has leftover, sets it up for the next range of segments.
1876 *
1877 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001878 * %0 - we are done with this request
1879 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001880 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001881int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001882{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001883 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001884}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001885EXPORT_SYMBOL_GPL(blk_end_request);
1886
1887/**
1888 * __blk_end_request - Helper function for drivers to complete the request.
1889 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001890 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001891 * @nr_bytes: number of bytes to complete
1892 *
1893 * Description:
1894 * Must be called with queue lock held unlike blk_end_request().
1895 *
1896 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001897 * %0 - we are done with this request
1898 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001899 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001900int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001901{
Jens Axboe60540162008-08-26 13:34:34 +02001902 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02001903 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001904
1905 add_disk_randomness(rq->rq_disk);
1906
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001907 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001908
1909 return 0;
1910}
1911EXPORT_SYMBOL_GPL(__blk_end_request);
1912
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001913/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001914 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1915 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001916 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001917 * @nr_bytes: number of bytes to complete @rq
1918 * @bidi_bytes: number of bytes to complete @rq->next_rq
1919 *
1920 * Description:
1921 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
1922 *
1923 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001924 * %0 - we are done with this request
1925 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001926 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001927int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
1928 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001929{
1930 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
1931}
1932EXPORT_SYMBOL_GPL(blk_end_bidi_request);
1933
1934/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001935 * blk_update_request - Special helper function for request stacking drivers
1936 * @rq: the request being processed
1937 * @error: %0 for success, < %0 for error
1938 * @nr_bytes: number of bytes to complete @rq
1939 *
1940 * Description:
1941 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
1942 * the request structure even if @rq doesn't have leftover.
1943 * If @rq has leftover, sets it up for the next range of segments.
1944 *
1945 * This special helper function is only for request stacking drivers
1946 * (e.g. request-based dm) so that they can handle partial completion.
1947 * Actual device drivers should use blk_end_request instead.
1948 */
1949void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
1950{
1951 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
1952 /*
1953 * These members are not updated in end_that_request_data()
1954 * when all bios are completed.
1955 * Update them so that the request stacking driver can find
1956 * how many bytes remain in the request later.
1957 */
1958 rq->nr_sectors = rq->hard_nr_sectors = 0;
1959 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
1960 }
1961}
1962EXPORT_SYMBOL_GPL(blk_update_request);
1963
1964/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001965 * blk_end_request_callback - Special helper function for tricky drivers
1966 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001967 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001968 * @nr_bytes: number of bytes to complete
1969 * @drv_callback: function called between completion of bios in the request
1970 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001971 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001972 * completion of the request.
1973 *
1974 * Description:
1975 * Ends I/O on a number of bytes attached to @rq.
1976 * If @rq has leftover, sets it up for the next range of segments.
1977 *
1978 * This special helper function is used only for existing tricky drivers.
1979 * (e.g. cdrom_newpc_intr() of ide-cd)
1980 * This interface will be removed when such drivers are rewritten.
1981 * Don't use this interface in other places anymore.
1982 *
1983 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001984 * %0 - we are done with this request
1985 * %1 - this request is not freed yet.
1986 * this request still has pending buffers or
1987 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001988 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001989int blk_end_request_callback(struct request *rq, int error,
1990 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001991 int (drv_callback)(struct request *))
1992{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001993 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001994}
1995EXPORT_SYMBOL_GPL(blk_end_request_callback);
1996
Jens Axboe86db1e22008-01-29 14:53:40 +01001997void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
1998 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
David Woodhoused628eae2008-08-09 16:22:17 +01002000 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2001 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002002 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
David Woodhousefb2dce82008-08-05 18:01:53 +01002004 if (bio_has_data(bio)) {
2005 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002006 rq->buffer = bio_data(bio);
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 rq->current_nr_sectors = bio_cur_sectors(bio);
2009 rq->hard_cur_sectors = rq->current_nr_sectors;
2010 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002011 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
NeilBrown66846572007-08-16 13:31:28 +02002015 if (bio->bi_bdev)
2016 rq->rq_disk = bio->bi_bdev->bd_disk;
2017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jens Axboe18887ad2008-07-28 13:08:45 +02002019int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
2021 return queue_work(kblockd_workqueue, work);
2022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023EXPORT_SYMBOL(kblockd_schedule_work);
2024
Andrew Morton19a75d82007-05-09 02:33:56 -07002025void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07002027 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Andrew Morton19a75d82007-05-09 02:33:56 -07002029EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031int __init blk_dev_init(void)
2032{
2033 kblockd_workqueue = create_workqueue("kblockd");
2034 if (!kblockd_workqueue)
2035 panic("Failed to create kblockd\n");
2036
2037 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002038 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Jens Axboe8324aa92008-01-29 14:51:59 +01002040 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002041 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return 0;
2044}
2045