blob: 9475bf99b891c20fb080c7508ed01046dbc21501 [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>
Li Zefan55782132009-06-09 13:43:05 +080031
32#define CREATE_TRACE_POINTS
33#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jens Axboe8324aa92008-01-29 14:51:59 +010035#include "blk.h"
36
Ingo Molnar0bfc2452008-11-26 11:59:56 +010037EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
Li Zefan55782132009-06-09 13:43:05 +080038EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010039
Jens Axboe165125e2007-07-24 09:28:11 +020040static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * For the allocated request tables
44 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010045static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * For queue allocation
49 */
Jens Axboe6728cb02008-01-31 13:03:55 +010050struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Controlling structure to kblockd
54 */
Jens Axboeff856ba2006-01-09 16:02:34 +010055static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jens Axboe26b82562008-01-29 13:54:41 +010057static void drive_stat_acct(struct request *rq, int new_io)
58{
Jens Axboe28f13702008-05-07 10:15:46 +020059 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010060 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090061 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010062
Jerome Marchand26308ea2009-03-27 10:31:51 +010063 if (!blk_fs_request(rq) || !blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010064 return;
65
Tejun Heo074a7ac2008-08-25 19:56:14 +090066 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +020067 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
Tejun Heoc9959052008-08-25 19:47:21 +090068
Jens Axboe28f13702008-05-07 10:15:46 +020069 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090070 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020071 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090072 part_round_stats(cpu, part);
73 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010074 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020075
Tejun Heo074a7ac2008-08-25 19:56:14 +090076 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010077}
78
Jens Axboe8324aa92008-01-29 14:51:59 +010079void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int nr;
82
83 nr = q->nr_requests - (q->nr_requests / 8) + 1;
84 if (nr > q->nr_requests)
85 nr = q->nr_requests;
86 q->nr_congestion_on = nr;
87
88 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
89 if (nr < 1)
90 nr = 1;
91 q->nr_congestion_off = nr;
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/**
95 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
96 * @bdev: device
97 *
98 * Locates the passed device's request queue and returns the address of its
99 * backing_dev_info
100 *
101 * Will return NULL if the request queue cannot be located.
102 */
103struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
104{
105 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200106 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (q)
109 ret = &q->backing_dev_info;
110 return ret;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112EXPORT_SYMBOL(blk_get_backing_dev_info);
113
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200114void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200116 memset(rq, 0, sizeof(*rq));
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700119 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200120 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100121 rq->q = q;
122 rq->sector = rq->hard_sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200123 INIT_HLIST_NODE(&rq->hash);
124 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200125 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800126 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100128 rq->ref_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200130EXPORT_SYMBOL(blk_rq_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
NeilBrown5bb23a62007-09-27 12:46:13 +0200132static void req_bio_endio(struct request *rq, struct bio *bio,
133 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100134{
Jens Axboe165125e2007-07-24 09:28:11 +0200135 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100136
NeilBrown5bb23a62007-09-27 12:46:13 +0200137 if (&q->bar_rq != rq) {
138 if (error)
139 clear_bit(BIO_UPTODATE, &bio->bi_flags);
140 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
141 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100142
NeilBrown5bb23a62007-09-27 12:46:13 +0200143 if (unlikely(nbytes > bio->bi_size)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100144 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
Harvey Harrison24c03d42008-05-01 04:35:17 -0700145 __func__, nbytes, bio->bi_size);
NeilBrown5bb23a62007-09-27 12:46:13 +0200146 nbytes = bio->bi_size;
147 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100148
Keith Mannthey08bafc02008-11-25 10:24:35 +0100149 if (unlikely(rq->cmd_flags & REQ_QUIET))
150 set_bit(BIO_QUIET, &bio->bi_flags);
151
NeilBrown5bb23a62007-09-27 12:46:13 +0200152 bio->bi_size -= nbytes;
153 bio->bi_sector += (nbytes >> 9);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200154
155 if (bio_integrity(bio))
156 bio_integrity_advance(bio, nbytes);
157
NeilBrown5bb23a62007-09-27 12:46:13 +0200158 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200159 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200160 } else {
161
162 /*
163 * Okay, this is the barrier request in progress, just
164 * record the error;
165 */
166 if (error && !q->orderr)
167 q->orderr = error;
168 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171void blk_dump_rq_flags(struct request *rq, char *msg)
172{
173 int bit;
174
Jens Axboe6728cb02008-01-31 13:03:55 +0100175 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
Jens Axboe4aff5e22006-08-10 08:44:47 +0200176 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
177 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jens Axboe6728cb02008-01-31 13:03:55 +0100179 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
180 (unsigned long long)rq->sector,
181 rq->nr_sectors,
182 rq->current_nr_sectors);
183 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
184 rq->bio, rq->biotail,
185 rq->buffer, rq->data,
186 rq->data_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Jens Axboe4aff5e22006-08-10 08:44:47 +0200188 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100189 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200190 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 printk("%02x ", rq->cmd[bit]);
192 printk("\n");
193 }
194}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195EXPORT_SYMBOL(blk_dump_rq_flags);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*
198 * "plug" the device if there are no outstanding requests: this will
199 * force the transfer to start only after we have put all the requests
200 * on the list.
201 *
202 * This is called with interrupts off and no requests on the queue and
203 * with the queue lock held.
204 */
Jens Axboe165125e2007-07-24 09:28:11 +0200205void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 WARN_ON(!irqs_disabled());
208
209 /*
210 * don't plug a stopped queue, it must be paired with blk_start_queue()
211 * which will restart the queueing
212 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200213 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return;
215
Jens Axboee48ec692008-07-03 13:18:54 +0200216 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100218 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221EXPORT_SYMBOL(blk_plug_device);
222
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200223/**
224 * blk_plug_device_unlocked - plug a device without queue lock held
225 * @q: The &struct request_queue to plug
226 *
227 * Description:
228 * Like @blk_plug_device(), but grabs the queue lock and disables
229 * interrupts.
230 **/
231void blk_plug_device_unlocked(struct request_queue *q)
232{
233 unsigned long flags;
234
235 spin_lock_irqsave(q->queue_lock, flags);
236 blk_plug_device(q);
237 spin_unlock_irqrestore(q->queue_lock, flags);
238}
239EXPORT_SYMBOL(blk_plug_device_unlocked);
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*
242 * remove the queue from the plugged list, if present. called with
243 * queue lock held and interrupts disabled.
244 */
Jens Axboe165125e2007-07-24 09:28:11 +0200245int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 WARN_ON(!irqs_disabled());
248
Jens Axboee48ec692008-07-03 13:18:54 +0200249 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return 0;
251
252 del_timer(&q->unplug_timer);
253 return 1;
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255EXPORT_SYMBOL(blk_remove_plug);
256
257/*
258 * remove the plug and let it rip..
259 */
Jens Axboe165125e2007-07-24 09:28:11 +0200260void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200262 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200264 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return;
266
Jens Axboe22e2c502005-06-27 10:55:12 +0200267 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/**
271 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200272 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
274 * Description:
275 * Linux uses plugging to build bigger requests queues before letting
276 * the device have at them. If a queue is plugged, the I/O scheduler
277 * is still adding and merging requests on the queue. Once the queue
278 * gets unplugged, the request_fn defined for the queue is invoked and
279 * transfers started.
280 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200281void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200283 if (blk_queue_plugged(q)) {
284 spin_lock_irq(q->queue_lock);
285 __generic_unplug_device(q);
286 spin_unlock_irq(q->queue_lock);
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289EXPORT_SYMBOL(generic_unplug_device);
290
291static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
292 struct page *page)
293{
Jens Axboe165125e2007-07-24 09:28:11 +0200294 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500296 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Jens Axboe86db1e22008-01-29 14:53:40 +0100299void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Jens Axboe165125e2007-07-24 09:28:11 +0200301 struct request_queue *q =
302 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100304 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 q->unplug_fn(q);
306}
307
Jens Axboe86db1e22008-01-29 14:53:40 +0100308void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Jens Axboe165125e2007-07-24 09:28:11 +0200310 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100312 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200313 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500316void blk_unplug(struct request_queue *q)
317{
318 /*
319 * devices don't necessarily have an ->unplug_fn defined
320 */
321 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100322 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500323 q->unplug_fn(q);
324 }
325}
326EXPORT_SYMBOL(blk_unplug);
327
Jens Axboec7c22e42008-09-13 20:26:01 +0200328static void blk_invoke_request_fn(struct request_queue *q)
329{
Jens Axboe80a4b582008-10-14 09:51:06 +0200330 if (unlikely(blk_queue_stopped(q)))
331 return;
332
Jens Axboec7c22e42008-09-13 20:26:01 +0200333 /*
334 * one level of recursion is ok and is much faster than kicking
335 * the unplug handling
336 */
337 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
338 q->request_fn(q);
339 queue_flag_clear(QUEUE_FLAG_REENTER, q);
340 } else {
341 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
342 kblockd_schedule_work(q, &q->unplug_work);
343 }
344}
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/**
347 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200348 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 *
350 * Description:
351 * blk_start_queue() will clear the stop flag on the queue, and call
352 * the request_fn for the queue if it was in a stopped state when
353 * entered. Also see blk_stop_queue(). Queue lock must be held.
354 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200355void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200357 WARN_ON(!irqs_disabled());
358
Nick Piggin75ad23b2008-04-29 14:48:33 +0200359 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Jens Axboec7c22e42008-09-13 20:26:01 +0200360 blk_invoke_request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362EXPORT_SYMBOL(blk_start_queue);
363
364/**
365 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200366 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * Description:
369 * The Linux block layer assumes that a block driver will consume all
370 * entries on the request queue when the request_fn strategy is called.
371 * Often this will not happen, because of hardware limitations (queue
372 * depth settings). If a device driver gets a 'queue full' response,
373 * or if it simply chooses not to queue more I/O at one point, it can
374 * call this function to prevent the request_fn from being called until
375 * the driver has signalled it's ready to go again. This happens by calling
376 * blk_start_queue() to restart queue operations. Queue lock must be held.
377 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200378void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200381 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383EXPORT_SYMBOL(blk_stop_queue);
384
385/**
386 * blk_sync_queue - cancel any pending callbacks on a queue
387 * @q: the queue
388 *
389 * Description:
390 * The block layer may perform asynchronous callback activity
391 * on a queue, such as calling the unplug function after a timeout.
392 * A block device may call blk_sync_queue to ensure that any
393 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200394 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * that its ->make_request_fn will not re-add plugging prior to calling
396 * this function.
397 *
398 */
399void blk_sync_queue(struct request_queue *q)
400{
401 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100402 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100403 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405EXPORT_SYMBOL(blk_sync_queue);
406
407/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200408 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200410 *
411 * Description:
412 * See @blk_run_queue. This variant must be called with the queue lock
413 * held and interrupts disabled.
414 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200416void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200419
420 /*
421 * Only recurse once to avoid overrunning the stack, let the unplug
422 * handling reinvoke the handler shortly if we already got there.
423 */
Jens Axboec7c22e42008-09-13 20:26:01 +0200424 if (!elv_queue_empty(q))
425 blk_invoke_request_fn(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200426}
427EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200428
Nick Piggin75ad23b2008-04-29 14:48:33 +0200429/**
430 * blk_run_queue - run a single device queue
431 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200432 *
433 * Description:
434 * Invoke request handling on this queue, if it has pending work to do.
435 * May be used to restart queueing when a request has completed. Also
436 * See @blk_start_queueing.
437 *
Nick Piggin75ad23b2008-04-29 14:48:33 +0200438 */
439void blk_run_queue(struct request_queue *q)
440{
441 unsigned long flags;
442
443 spin_lock_irqsave(q->queue_lock, flags);
444 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 spin_unlock_irqrestore(q->queue_lock, flags);
446}
447EXPORT_SYMBOL(blk_run_queue);
448
Jens Axboe165125e2007-07-24 09:28:11 +0200449void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500450{
451 kobject_put(&q->kobj);
452}
Al Viro483f4af2006-03-18 18:34:37 -0500453
Jens Axboe6728cb02008-01-31 13:03:55 +0100454void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500455{
Jens Axboee3335de92008-09-18 09:22:54 -0700456 /*
457 * We know we have process context here, so we can be a little
458 * cautious and ensure that pending block actions on this device
459 * are done before moving on. Going into this function, we should
460 * not have processes doing IO to this device.
461 */
462 blk_sync_queue(q);
463
Al Viro483f4af2006-03-18 18:34:37 -0500464 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200465 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500466 mutex_unlock(&q->sysfs_lock);
467
468 if (q->elevator)
469 elevator_exit(q->elevator);
470
471 blk_put_queue(q);
472}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473EXPORT_SYMBOL(blk_cleanup_queue);
474
Jens Axboe165125e2007-07-24 09:28:11 +0200475static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 struct request_list *rl = &q->rq;
478
Jens Axboe1faa16d2009-04-06 14:48:01 +0200479 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
480 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200481 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200482 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
483 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Christoph Lameter19460892005-06-23 00:08:19 -0700485 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
486 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (!rl->rq_pool)
489 return -ENOMEM;
490
491 return 0;
492}
493
Jens Axboe165125e2007-07-24 09:28:11 +0200494struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Christoph Lameter19460892005-06-23 00:08:19 -0700496 return blk_alloc_queue_node(gfp_mask, -1);
497}
498EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jens Axboe165125e2007-07-24 09:28:11 +0200500struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700501{
Jens Axboe165125e2007-07-24 09:28:11 +0200502 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700503 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700504
Jens Axboe8324aa92008-01-29 14:51:59 +0100505 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700506 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (!q)
508 return NULL;
509
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700510 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
511 q->backing_dev_info.unplug_io_data = q;
512 err = bdi_init(&q->backing_dev_info);
513 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100514 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700515 return NULL;
516 }
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700519 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
520 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200521 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500522
Jens Axboe8324aa92008-01-29 14:51:59 +0100523 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Al Viro483f4af2006-03-18 18:34:37 -0500525 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700526 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return q;
529}
Christoph Lameter19460892005-06-23 00:08:19 -0700530EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532/**
533 * blk_init_queue - prepare a request queue for use with a block device
534 * @rfn: The function to be called to process requests that have been
535 * placed on the queue.
536 * @lock: Request queue spin lock
537 *
538 * Description:
539 * If a block device wishes to use the standard request handling procedures,
540 * which sorts requests and coalesces adjacent requests, then it must
541 * call blk_init_queue(). The function @rfn will be called when there
542 * are requests on the queue that need to be processed. If the device
543 * supports plugging, then @rfn may not be called immediately when requests
544 * are available on the queue, but may be called at some time later instead.
545 * Plugged queues are generally unplugged when a buffer belonging to one
546 * of the requests on the queue is needed, or due to memory pressure.
547 *
548 * @rfn is not required, or even expected, to remove all requests off the
549 * queue, but only as many as it can handle at a time. If it does leave
550 * requests on the queue, it is responsible for arranging that the requests
551 * get dealt with eventually.
552 *
553 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200554 * request queue; this lock will be taken also from interrupt context, so irq
555 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200557 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * it didn't succeed.
559 *
560 * Note:
561 * blk_init_queue() must be paired with a blk_cleanup_queue() call
562 * when the block device is deactivated (such as at module unload).
563 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700564
Jens Axboe165125e2007-07-24 09:28:11 +0200565struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Christoph Lameter19460892005-06-23 00:08:19 -0700567 return blk_init_queue_node(rfn, lock, -1);
568}
569EXPORT_SYMBOL(blk_init_queue);
570
Jens Axboe165125e2007-07-24 09:28:11 +0200571struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700572blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
573{
Jens Axboe165125e2007-07-24 09:28:11 +0200574 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 if (!q)
577 return NULL;
578
Christoph Lameter19460892005-06-23 00:08:19 -0700579 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500580 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100581 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500582 return NULL;
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
152587d2005-04-12 16:22:06 -0500585 /*
586 * if caller didn't supply a lock, they get per-queue locking with
587 * our embedded lock
588 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700589 if (!lock)
152587d2005-04-12 16:22:06 -0500590 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 q->prep_rq_fn = NULL;
594 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100595 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 q->queue_lock = lock;
597
Jens Axboef3b144a2009-03-06 08:48:33 +0100598 /*
599 * This also sets hw/phys segments, boundary and size
600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Alan Stern44ec9542007-02-20 11:01:57 -0500603 q->sg_reserved_size = INT_MAX;
604
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900605 blk_set_cmd_filter_defaults(&q->cmd_filter);
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /*
608 * all done
609 */
610 if (!elevator_init(q, NULL)) {
611 blk_queue_congestion_threshold(q);
612 return q;
613 }
614
Al Viro8669aaf2006-03-18 13:50:00 -0500615 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return NULL;
617}
Christoph Lameter19460892005-06-23 00:08:19 -0700618EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Jens Axboe165125e2007-07-24 09:28:11 +0200620int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700622 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500623 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return 0;
625 }
626
627 return 1;
628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Jens Axboe165125e2007-07-24 09:28:11 +0200630static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200632 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200633 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 mempool_free(rq, q->rq.rq_pool);
635}
636
Jens Axboe1ea25ecb2006-07-18 22:24:11 +0200637static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200638blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
641
642 if (!rq)
643 return NULL;
644
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200645 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200646
Jerome Marchand42dad762009-04-22 14:01:49 +0200647 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Tejun Heocb98fc82005-10-28 08:29:39 +0200649 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200650 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200651 mempool_free(rq, q->rq.rq_pool);
652 return NULL;
653 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200654 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Tejun Heocb98fc82005-10-28 08:29:39 +0200657 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660/*
661 * ioc_batching returns true if the ioc is a valid batching request and
662 * should be given priority access to a request.
663 */
Jens Axboe165125e2007-07-24 09:28:11 +0200664static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 if (!ioc)
667 return 0;
668
669 /*
670 * Make sure the process is able to allocate at least 1 request
671 * even if the batch times out, otherwise we could theoretically
672 * lose wakeups.
673 */
674 return ioc->nr_batch_requests == q->nr_batching ||
675 (ioc->nr_batch_requests > 0
676 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
677}
678
679/*
680 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
681 * will cause the process to be a "batcher" on all queues in the system. This
682 * is the behaviour we want though - once it gets a wakeup it should be given
683 * a nice run.
684 */
Jens Axboe165125e2007-07-24 09:28:11 +0200685static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 if (!ioc || ioc_batching(q, ioc))
688 return;
689
690 ioc->nr_batch_requests = q->nr_batching;
691 ioc->last_waited = jiffies;
692}
693
Jens Axboe1faa16d2009-04-06 14:48:01 +0200694static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct request_list *rl = &q->rq;
697
Jens Axboe1faa16d2009-04-06 14:48:01 +0200698 if (rl->count[sync] < queue_congestion_off_threshold(q))
699 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Jens Axboe1faa16d2009-04-06 14:48:01 +0200701 if (rl->count[sync] + 1 <= q->nr_requests) {
702 if (waitqueue_active(&rl->wait[sync]))
703 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Jens Axboe1faa16d2009-04-06 14:48:01 +0200705 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707}
708
709/*
710 * A request has just been released. Account for it, update the full and
711 * congestion status, wake up any waiters. Called under q->queue_lock.
712 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200713static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct request_list *rl = &q->rq;
716
Jens Axboe1faa16d2009-04-06 14:48:01 +0200717 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200718 if (priv)
719 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jens Axboe1faa16d2009-04-06 14:48:01 +0200721 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Jens Axboe1faa16d2009-04-06 14:48:01 +0200723 if (unlikely(rl->starved[sync ^ 1]))
724 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/*
Nick Piggind6344532005-06-28 20:45:14 -0700728 * Get a free request, queue_lock must be held.
729 * Returns NULL on failure, with queue_lock held.
730 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
Jens Axboe165125e2007-07-24 09:28:11 +0200732static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100733 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct request *rq = NULL;
736 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100737 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100739 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Jens Axboe7749a8d2006-12-13 13:02:26 +0100741 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100742 if (may_queue == ELV_MQUEUE_NO)
743 goto rq_starved;
744
Jens Axboe1faa16d2009-04-06 14:48:01 +0200745 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
746 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200747 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100748 /*
749 * The queue will fill after this allocation, so set
750 * it as full, and mark this process as "batching".
751 * This process will be allowed to complete a batch of
752 * requests, others will be blocked.
753 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200754 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100755 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200756 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100757 } else {
758 if (may_queue != ELV_MQUEUE_MUST
759 && !ioc_batching(q, ioc)) {
760 /*
761 * The queue is full and the allocating
762 * process is not a "batcher", and not
763 * exempted by the IO scheduler
764 */
765 goto out;
766 }
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200769 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Jens Axboe082cf692005-06-28 16:35:11 +0200772 /*
773 * Only allow batching queuers to allocate up to 50% over the defined
774 * limit of requests, otherwise we could have thousands of requests
775 * allocated with any setting of ->nr_requests
776 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200777 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200778 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100779
Jens Axboe1faa16d2009-04-06 14:48:01 +0200780 rl->count[is_sync]++;
781 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200782
Jens Axboe64521d12005-10-28 08:30:39 +0200783 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200784 if (priv)
785 rl->elvpriv++;
786
Jerome Marchand42dad762009-04-22 14:01:49 +0200787 if (blk_queue_io_stat(q))
788 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 spin_unlock_irq(q->queue_lock);
790
Jens Axboe7749a8d2006-12-13 13:02:26 +0100791 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100792 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 /*
794 * Allocation failed presumably due to memory. Undo anything
795 * we might have messed up.
796 *
797 * Allocating task should really be put onto the front of the
798 * wait queue, but this is pretty rare.
799 */
800 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200801 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /*
804 * in the very unlikely event that allocation failed and no
805 * requests for this direction was pending, mark us starved
806 * so that freeing of a request in the other direction will
807 * notice us. another possible fix would be to split the
808 * rq mempool into READ and WRITE
809 */
810rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200811 if (unlikely(rl->count[is_sync] == 0))
812 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto out;
815 }
816
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100817 /*
818 * ioc may be NULL here, and ioc_batching will be false. That's
819 * OK, if the queue is under the request limit then requests need
820 * not count toward the nr_batch_requests limit. There will always
821 * be some limit enforced by BLK_BATCH_TIME.
822 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (ioc_batching(q, ioc))
824 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100825
Jens Axboe1faa16d2009-04-06 14:48:01 +0200826 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return rq;
829}
830
831/*
832 * No available requests for this queue, unplug the device and wait for some
833 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700834 *
835 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Jens Axboe165125e2007-07-24 09:28:11 +0200837static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200838 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200840 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct request *rq;
842
Jens Axboe7749a8d2006-12-13 13:02:26 +0100843 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700844 while (!rq) {
845 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200846 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct request_list *rl = &q->rq;
848
Jens Axboe1faa16d2009-04-06 14:48:01 +0200849 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 TASK_UNINTERRUPTIBLE);
851
Jens Axboe1faa16d2009-04-06 14:48:01 +0200852 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200854 __generic_unplug_device(q);
855 spin_unlock_irq(q->queue_lock);
856 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200858 /*
859 * After sleeping, we become a "batching" process and
860 * will be able to allocate at least one request, and
861 * up to a big batch of them for a small period time.
862 * See ioc_batching, ioc_set_batching
863 */
864 ioc = current_io_context(GFP_NOIO, q->node);
865 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100866
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200867 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200868 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200869
870 rq = get_request(q, rw_flags, bio, GFP_NOIO);
871 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 return rq;
874}
875
Jens Axboe165125e2007-07-24 09:28:11 +0200876struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 struct request *rq;
879
880 BUG_ON(rw != READ && rw != WRITE);
881
Nick Piggind6344532005-06-28 20:45:14 -0700882 spin_lock_irq(q->queue_lock);
883 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200884 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700885 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200886 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700887 if (!rq)
888 spin_unlock_irq(q->queue_lock);
889 }
890 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 return rq;
893}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894EXPORT_SYMBOL(blk_get_request);
895
896/**
Jens Axboedc72ef42006-07-20 14:54:05 +0200897 * blk_start_queueing - initiate dispatch of requests to device
898 * @q: request queue to kick into gear
899 *
900 * This is basically a helper to remove the need to know whether a queue
901 * is plugged or not if someone just wants to initiate dispatch of requests
Jens Axboe80a4b582008-10-14 09:51:06 +0200902 * for this queue. Should be used to start queueing on a device outside
903 * of ->request_fn() context. Also see @blk_run_queue.
Jens Axboedc72ef42006-07-20 14:54:05 +0200904 *
905 * The queue lock must be held with interrupts disabled.
906 */
Jens Axboe165125e2007-07-24 09:28:11 +0200907void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +0200908{
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200909 if (!blk_queue_plugged(q)) {
910 if (unlikely(blk_queue_stopped(q)))
911 return;
Jens Axboedc72ef42006-07-20 14:54:05 +0200912 q->request_fn(q);
Elias Oltmanns336c3d82008-10-01 16:02:33 +0200913 } else
Jens Axboedc72ef42006-07-20 14:54:05 +0200914 __generic_unplug_device(q);
915}
916EXPORT_SYMBOL(blk_start_queueing);
917
918/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * blk_requeue_request - put a request back on queue
920 * @q: request queue where request should be inserted
921 * @rq: request to be inserted
922 *
923 * Description:
924 * Drivers often keep queueing requests until the hardware cannot accept
925 * more, when that condition happens we need to put the request back
926 * on the queue. Must be called with queue lock held.
927 */
Jens Axboe165125e2007-07-24 09:28:11 +0200928void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700930 blk_delete_timer(rq);
931 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100932 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (blk_rq_tagged(rq))
935 blk_queue_end_tag(q, rq);
936
937 elv_requeue_request(q, rq);
938}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939EXPORT_SYMBOL(blk_requeue_request);
940
941/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200942 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 * @q: request queue where request should be inserted
944 * @rq: request to be inserted
945 * @at_head: insert request at head or tail of queue
946 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 *
948 * Description:
949 * Many block devices need to execute commands asynchronously, so they don't
950 * block the whole kernel from preemption during request execution. This is
951 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200952 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
953 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 *
955 * We have the option of inserting the head or the tail of the queue.
956 * Typically we use the tail for new ioctls and so forth. We use the head
957 * of the queue for things like a QUEUE_FULL message from a device, or a
958 * host that is unable to accept a particular command.
959 */
Jens Axboe165125e2007-07-24 09:28:11 +0200960void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500961 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Tejun Heo 867d1192005-04-24 02:06:05 -0500963 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 unsigned long flags;
965
966 /*
967 * tell I/O scheduler that this isn't a regular read/write (ie it
968 * must not attempt merges on this) and that it acts as a soft
969 * barrier
970 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200971 rq->cmd_type = REQ_TYPE_SPECIAL;
972 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 rq->special = data;
975
976 spin_lock_irqsave(q->queue_lock, flags);
977
978 /*
979 * If command is tagged, release the tag
980 */
Tejun Heo 867d1192005-04-24 02:06:05 -0500981 if (blk_rq_tagged(rq))
982 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200984 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -0500985 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +0200986 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 spin_unlock_irqrestore(q->queue_lock, flags);
988}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989EXPORT_SYMBOL(blk_insert_request);
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/*
992 * add-request adds a request to the linked list.
993 * queue lock is held and interrupts disabled, as we muck with the
994 * request queue list.
995 */
Jens Axboe6728cb02008-01-31 13:03:55 +0100996static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Jerome Marchandb238b3d2007-10-23 15:05:46 +0200998 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /*
1001 * elevator indicated where it wants this request to be
1002 * inserted at elevator_merge time
1003 */
1004 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1005}
Jens Axboe6728cb02008-01-31 13:03:55 +01001006
Tejun Heo074a7ac2008-08-25 19:56:14 +09001007static void part_round_stats_single(int cpu, struct hd_struct *part,
1008 unsigned long now)
1009{
1010 if (now == part->stamp)
1011 return;
1012
1013 if (part->in_flight) {
1014 __part_stat_add(cpu, part, time_in_queue,
1015 part->in_flight * (now - part->stamp));
1016 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1017 }
1018 part->stamp = now;
1019}
1020
1021/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001022 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1023 * @cpu: cpu number for stats access
1024 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 *
1026 * The average IO queue length and utilisation statistics are maintained
1027 * by observing the current state of the queue length and the amount of
1028 * time it has been in this state for.
1029 *
1030 * Normally, that accounting is done on IO completion, but that can result
1031 * in more than a second's worth of IO being accounted for within any one
1032 * second, leading to >100% utilisation. To deal with that, we call this
1033 * function to do a round-off before returning the results when reading
1034 * /proc/diskstats. This accounts immediately for all queue usage up to
1035 * the current jiffies and restarts the counters again.
1036 */
Tejun Heoc9959052008-08-25 19:47:21 +09001037void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001038{
1039 unsigned long now = jiffies;
1040
Tejun Heo074a7ac2008-08-25 19:56:14 +09001041 if (part->partno)
1042 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1043 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001044}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001045EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/*
1048 * queue lock must be held
1049 */
Jens Axboe165125e2007-07-24 09:28:11 +02001050void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (unlikely(!q))
1053 return;
1054 if (unlikely(--req->ref_count))
1055 return;
1056
Tejun Heo8922e162005-10-20 16:23:44 +02001057 elv_completed_request(q, req);
1058
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001059 /* this is a bio leak */
1060 WARN_ON(req->bio != NULL);
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /*
1063 * Request may not have originated from ll_rw_blk. if not,
1064 * it didn't come out of our reserved rq pools
1065 */
Jens Axboe49171e52006-08-10 08:59:11 +02001066 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001067 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001068 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001071 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001074 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076}
Mike Christie6e39b69e2005-11-11 05:30:24 -06001077EXPORT_SYMBOL_GPL(__blk_put_request);
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079void blk_put_request(struct request *req)
1080{
Tejun Heo8922e162005-10-20 16:23:44 +02001081 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001082 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001084 spin_lock_irqsave(q->queue_lock, flags);
1085 __blk_put_request(q, req);
1086 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088EXPORT_SYMBOL(blk_put_request);
1089
Jens Axboe86db1e22008-01-29 14:53:40 +01001090void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001091{
Jens Axboec7c22e42008-09-13 20:26:01 +02001092 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001093 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001094
1095 /*
1096 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1097 */
Mike Christie6000a362008-08-19 18:45:30 -05001098 if (bio_rw_ahead(bio))
1099 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1100 REQ_FAILFAST_DRIVER);
1101 if (bio_failfast_dev(bio))
1102 req->cmd_flags |= REQ_FAILFAST_DEV;
1103 if (bio_failfast_transport(bio))
1104 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1105 if (bio_failfast_driver(bio))
1106 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001107
1108 /*
1109 * REQ_BARRIER implies no merging, but lets make it explicit
1110 */
David Woodhousefb2dce82008-08-05 18:01:53 +01001111 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001112 req->cmd_flags |= REQ_DISCARD;
1113 if (bio_barrier(bio))
1114 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001115 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001116 } else if (unlikely(bio_barrier(bio)))
1117 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01001118
Jens Axboeb31dc662006-06-13 08:26:10 +02001119 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001120 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001121 if (bio_rw_meta(bio))
1122 req->cmd_flags |= REQ_RW_META;
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001123 if (bio_noidle(bio))
1124 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001125
Tejun Heo52d9e672006-01-06 09:49:58 +01001126 req->errors = 0;
1127 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001128 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001129 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02001130 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001131}
1132
Jens Axboe644b2d92009-04-06 14:48:06 +02001133/*
1134 * Only disabling plugging for non-rotational devices if it does tagging
1135 * as well, otherwise we do need the proper merging
1136 */
1137static inline bool queue_should_plug(struct request_queue *q)
1138{
1139 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
1140}
1141
Jens Axboe165125e2007-07-24 09:28:11 +02001142static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Nick Piggin450991b2005-06-28 20:45:13 -07001144 struct request *req;
Tejun Heoa7384672008-11-28 13:32:03 +09001145 int el_ret, nr_sectors;
Jens Axboe51da90f2006-07-18 04:14:45 +02001146 const unsigned short prio = bio_prio(bio);
1147 const int sync = bio_sync(bio);
Jens Axboe213d9412009-01-06 09:16:05 +01001148 const int unplug = bio_unplug(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001149 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 /*
1154 * low level driver can indicate that it wants pages above a
1155 * certain limit bounced to low memory (ie for highmem, or even
1156 * ISA dma in theory)
1157 */
1158 blk_queue_bounce(q, &bio);
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 spin_lock_irq(q->queue_lock);
1161
Tejun Heoa7384672008-11-28 13:32:03 +09001162 if (unlikely(bio_barrier(bio)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 goto get_rq;
1164
1165 el_ret = elv_merge(q, &req, bio);
1166 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001167 case ELEVATOR_BACK_MERGE:
1168 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Jens Axboe6728cb02008-01-31 13:03:55 +01001170 if (!ll_back_merge_fn(q, req, bio))
1171 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001173 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001174
Jens Axboe6728cb02008-01-31 13:03:55 +01001175 req->biotail->bi_next = bio;
1176 req->biotail = bio;
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_back_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 case ELEVATOR_FRONT_MERGE:
1187 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Jens Axboe6728cb02008-01-31 13:03:55 +01001189 if (!ll_front_merge_fn(q, req, bio))
1190 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001192 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001193
Jens Axboe6728cb02008-01-31 13:03:55 +01001194 bio->bi_next = req->bio;
1195 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Jens Axboe6728cb02008-01-31 13:03:55 +01001197 /*
1198 * may not be valid. if the low level driver said
1199 * it didn't need a bounce buffer then it better
1200 * not touch req->buffer either...
1201 */
1202 req->buffer = bio_data(bio);
1203 req->current_nr_sectors = bio_cur_sectors(bio);
1204 req->hard_cur_sectors = req->current_nr_sectors;
1205 req->sector = req->hard_sector = bio->bi_sector;
1206 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1207 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001208 if (!blk_rq_cpu_valid(req))
1209 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001210 drive_stat_acct(req, 0);
1211 if (!attempt_front_merge(q, req))
1212 elv_merged_request(q, req, el_ret);
1213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jens Axboe6728cb02008-01-31 13:03:55 +01001215 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1216 default:
1217 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001221 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001222 * This sync check and mask will be re-done in init_request_from_bio(),
1223 * but we need to set it earlier to expose the sync flag to the
1224 * rq allocator and io schedulers.
1225 */
1226 rw_flags = bio_data_dir(bio);
1227 if (sync)
1228 rw_flags |= REQ_RW_SYNC;
1229
1230 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001231 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001232 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001233 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001234 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001235
Nick Piggin450991b2005-06-28 20:45:13 -07001236 /*
1237 * After dropping the lock and possibly sleeping here, our request
1238 * may now be mergeable after it had proven unmergeable (above).
1239 * We don't worry about that case for efficiency. It won't happen
1240 * often, and the elevators are able to handle it.
1241 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001242 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Nick Piggin450991b2005-06-28 20:45:13 -07001244 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001245 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1246 bio_flagged(bio, BIO_CPU_AFFINE))
1247 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001248 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001249 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 add_request(q, req);
1251out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001252 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 spin_unlock_irq(q->queue_lock);
1255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258/*
1259 * If bio->bi_dev is a partition, remap the location
1260 */
1261static inline void blk_partition_remap(struct bio *bio)
1262{
1263 struct block_device *bdev = bio->bi_bdev;
1264
Jens Axboebf2de6f2007-09-27 13:01:25 +02001265 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 bio->bi_sector += p->start_sect;
1269 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001270
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001271 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001272 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001273 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275}
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static void handle_bad_sector(struct bio *bio)
1278{
1279 char b[BDEVNAME_SIZE];
1280
1281 printk(KERN_INFO "attempt to access beyond end of device\n");
1282 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1283 bdevname(bio->bi_bdev, b),
1284 bio->bi_rw,
1285 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1286 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1287
1288 set_bit(BIO_EOF, &bio->bi_flags);
1289}
1290
Akinobu Mitac17bb492006-12-08 02:39:46 -08001291#ifdef CONFIG_FAIL_MAKE_REQUEST
1292
1293static DECLARE_FAULT_ATTR(fail_make_request);
1294
1295static int __init setup_fail_make_request(char *str)
1296{
1297 return setup_fault_attr(&fail_make_request, str);
1298}
1299__setup("fail_make_request=", setup_fail_make_request);
1300
1301static int should_fail_request(struct bio *bio)
1302{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001303 struct hd_struct *part = bio->bi_bdev->bd_part;
1304
1305 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001306 return should_fail(&fail_make_request, bio->bi_size);
1307
1308 return 0;
1309}
1310
1311static int __init fail_make_request_debugfs(void)
1312{
1313 return init_fault_attr_dentries(&fail_make_request,
1314 "fail_make_request");
1315}
1316
1317late_initcall(fail_make_request_debugfs);
1318
1319#else /* CONFIG_FAIL_MAKE_REQUEST */
1320
1321static inline int should_fail_request(struct bio *bio)
1322{
1323 return 0;
1324}
1325
1326#endif /* CONFIG_FAIL_MAKE_REQUEST */
1327
Jens Axboec07e2b42007-07-18 13:27:58 +02001328/*
1329 * Check whether this bio extends beyond the end of the device.
1330 */
1331static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1332{
1333 sector_t maxsector;
1334
1335 if (!nr_sectors)
1336 return 0;
1337
1338 /* Test device or partition size, when known. */
1339 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1340 if (maxsector) {
1341 sector_t sector = bio->bi_sector;
1342
1343 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1344 /*
1345 * This may well happen - the kernel calls bread()
1346 * without checking the size of the device, e.g., when
1347 * mounting a device.
1348 */
1349 handle_bad_sector(bio);
1350 return 1;
1351 }
1352 }
1353
1354 return 0;
1355}
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001358 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 * @bio: The bio describing the location in memory and on the device.
1360 *
1361 * generic_make_request() is used to make I/O requests of block
1362 * devices. It is passed a &struct bio, which describes the I/O that needs
1363 * to be done.
1364 *
1365 * generic_make_request() does not return any status. The
1366 * success/failure status of the request, along with notification of
1367 * completion, is delivered asynchronously through the bio->bi_end_io
1368 * function described (one day) else where.
1369 *
1370 * The caller of generic_make_request must make sure that bi_io_vec
1371 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1372 * set to describe the device address, and the
1373 * bi_end_io and optionally bi_private are set to describe how
1374 * completion notification should be signaled.
1375 *
1376 * generic_make_request and the drivers it calls may use bi_next if this
1377 * bio happens to be merged with someone else, and may change bi_dev and
1378 * bi_sector for remaps as it sees fit. So the values of these fields
1379 * should NOT be depended on after the call to generic_make_request.
1380 */
Neil Brownd89d8792007-05-01 09:53:42 +02001381static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Jens Axboe165125e2007-07-24 09:28:11 +02001383 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001384 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001386 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001387 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jens Axboec07e2b42007-07-18 13:27:58 +02001391 if (bio_check_eod(bio, nr_sectors))
1392 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 /*
1395 * Resolve the mapping until finished. (drivers are
1396 * still free to implement/resolve their own stacking
1397 * by explicitly returning 0)
1398 *
1399 * NOTE: we don't repeat the blk_size check for each new device.
1400 * Stacking drivers are expected to know what they are doing.
1401 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001402 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001403 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 do {
1405 char b[BDEVNAME_SIZE];
1406
1407 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001408 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 printk(KERN_ERR
1410 "generic_make_request: Trying to access "
1411 "nonexistent block-device %s (%Lu)\n",
1412 bdevname(bio->bi_bdev, b),
1413 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001414 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
1416
Jens Axboe4fa253f2007-07-18 13:13:10 +02001417 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001418 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 bdevname(bio->bi_bdev, b),
1420 bio_sectors(bio),
1421 q->max_hw_sectors);
1422 goto end_io;
1423 }
1424
Nick Pigginfde6ad22005-06-23 00:08:53 -07001425 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto end_io;
1427
Akinobu Mitac17bb492006-12-08 02:39:46 -08001428 if (should_fail_request(bio))
1429 goto end_io;
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /*
1432 * If this device has partitions, remap block n
1433 * of partition p to block n+start(p) of the disk.
1434 */
1435 blk_partition_remap(bio);
1436
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001437 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1438 goto end_io;
1439
NeilBrown5ddfe962006-10-30 22:07:21 -08001440 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001441 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001442
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001443 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001444
NeilBrown5ddfe962006-10-30 22:07:21 -08001445 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001446 old_dev = bio->bi_bdev->bd_dev;
1447
Jens Axboec07e2b42007-07-18 13:27:58 +02001448 if (bio_check_eod(bio, nr_sectors))
1449 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001450
1451 if (bio_discard(bio) && !q->prepare_discard_fn) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001452 err = -EOPNOTSUPP;
1453 goto end_io;
1454 }
Jens Axboecec07072009-01-13 15:28:32 +01001455 if (bio_barrier(bio) && bio_has_data(bio) &&
1456 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1457 err = -EOPNOTSUPP;
1458 goto end_io;
1459 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 ret = q->make_request_fn(q, bio);
1462 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001463
1464 return;
1465
1466end_io:
1467 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Neil Brownd89d8792007-05-01 09:53:42 +02001470/*
1471 * We only want one ->make_request_fn to be active at a time,
1472 * else stack usage with stacked devices could be a problem.
1473 * So use current->bio_{list,tail} to keep a list of requests
1474 * submited by a make_request_fn function.
1475 * current->bio_tail is also used as a flag to say if
1476 * generic_make_request is currently active in this task or not.
1477 * If it is NULL, then no make_request is active. If it is non-NULL,
1478 * then a make_request is active, and new requests should be added
1479 * at the tail
1480 */
1481void generic_make_request(struct bio *bio)
1482{
1483 if (current->bio_tail) {
1484 /* make_request is active */
1485 *(current->bio_tail) = bio;
1486 bio->bi_next = NULL;
1487 current->bio_tail = &bio->bi_next;
1488 return;
1489 }
1490 /* following loop may be a bit non-obvious, and so deserves some
1491 * explanation.
1492 * Before entering the loop, bio->bi_next is NULL (as all callers
1493 * ensure that) so we have a list with a single bio.
1494 * We pretend that we have just taken it off a longer list, so
1495 * we assign bio_list to the next (which is NULL) and bio_tail
1496 * to &bio_list, thus initialising the bio_list of new bios to be
1497 * added. __generic_make_request may indeed add some more bios
1498 * through a recursive call to generic_make_request. If it
1499 * did, we find a non-NULL value in bio_list and re-enter the loop
1500 * from the top. In this case we really did just take the bio
1501 * of the top of the list (no pretending) and so fixup bio_list and
1502 * bio_tail or bi_next, and call into __generic_make_request again.
1503 *
1504 * The loop was structured like this to make only one call to
1505 * __generic_make_request (which is important as it is large and
1506 * inlined) and to keep the structure simple.
1507 */
1508 BUG_ON(bio->bi_next);
1509 do {
1510 current->bio_list = bio->bi_next;
1511 if (bio->bi_next == NULL)
1512 current->bio_tail = &current->bio_list;
1513 else
1514 bio->bi_next = NULL;
1515 __generic_make_request(bio);
1516 bio = current->bio_list;
1517 } while (bio);
1518 current->bio_tail = NULL; /* deactivate */
1519}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520EXPORT_SYMBOL(generic_make_request);
1521
1522/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001523 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1525 * @bio: The &struct bio which describes the I/O
1526 *
1527 * submit_bio() is very similar in purpose to generic_make_request(), and
1528 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001529 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 *
1531 */
1532void submit_bio(int rw, struct bio *bio)
1533{
1534 int count = bio_sectors(bio);
1535
Jens Axboe22e2c502005-06-27 10:55:12 +02001536 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jens Axboebf2de6f2007-09-27 13:01:25 +02001538 /*
1539 * If it's a regular read/write or a barrier with data attached,
1540 * go through the normal accounting stuff before submission.
1541 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001542 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001543 if (rw & WRITE) {
1544 count_vm_events(PGPGOUT, count);
1545 } else {
1546 task_io_account_read(bio->bi_size);
1547 count_vm_events(PGPGIN, count);
1548 }
1549
1550 if (unlikely(block_dump)) {
1551 char b[BDEVNAME_SIZE];
1552 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001553 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001554 (rw & WRITE) ? "WRITE" : "READ",
1555 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001556 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
1560 generic_make_request(bio);
1561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562EXPORT_SYMBOL(submit_bio);
1563
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001564/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001565 * blk_rq_check_limits - Helper function to check a request for the queue limit
1566 * @q: the queue
1567 * @rq: the request being checked
1568 *
1569 * Description:
1570 * @rq may have been made based on weaker limitations of upper-level queues
1571 * in request stacking drivers, and it may violate the limitation of @q.
1572 * Since the block layer and the underlying device driver trust @rq
1573 * after it is inserted to @q, it should be checked against @q before
1574 * the insertion using this generic function.
1575 *
1576 * This function should also be useful for request stacking drivers
1577 * in some cases below, so export this fuction.
1578 * Request stacking drivers like request-based dm may change the queue
1579 * limits while requests are in the queue (e.g. dm's table swapping).
1580 * Such request stacking drivers should check those requests agaist
1581 * the new queue limits again when they dispatch those requests,
1582 * although such checkings are also done against the old queue limits
1583 * when submitting requests.
1584 */
1585int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1586{
1587 if (rq->nr_sectors > q->max_sectors ||
1588 rq->data_len > q->max_hw_sectors << 9) {
1589 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1590 return -EIO;
1591 }
1592
1593 /*
1594 * queue's settings related to segment counting like q->bounce_pfn
1595 * may differ from that of other stacking queues.
1596 * Recalculate it to check the request correctly on this queue's
1597 * limitation.
1598 */
1599 blk_recalc_rq_segments(rq);
1600 if (rq->nr_phys_segments > q->max_phys_segments ||
1601 rq->nr_phys_segments > q->max_hw_segments) {
1602 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1603 return -EIO;
1604 }
1605
1606 return 0;
1607}
1608EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1609
1610/**
1611 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1612 * @q: the queue to submit the request
1613 * @rq: the request being queued
1614 */
1615int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1616{
1617 unsigned long flags;
1618
1619 if (blk_rq_check_limits(q, rq))
1620 return -EIO;
1621
1622#ifdef CONFIG_FAIL_MAKE_REQUEST
1623 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1624 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1625 return -EIO;
1626#endif
1627
1628 spin_lock_irqsave(q->queue_lock, flags);
1629
1630 /*
1631 * Submitting request must be dequeued before calling this function
1632 * because it will be linked to another request_queue
1633 */
1634 BUG_ON(blk_queued_rq(rq));
1635
1636 drive_stat_acct(rq, 1);
1637 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1638
1639 spin_unlock_irqrestore(q->queue_lock, flags);
1640
1641 return 0;
1642}
1643EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1644
1645/**
Tejun Heo53a08802008-12-03 12:41:26 +01001646 * blkdev_dequeue_request - dequeue request and start timeout timer
1647 * @req: request to dequeue
1648 *
1649 * Dequeue @req and start timeout timer on it. This hands off the
1650 * request to the driver.
1651 *
1652 * Block internal functions which don't want to start timer should
1653 * call elv_dequeue_request().
1654 */
1655void blkdev_dequeue_request(struct request *req)
1656{
1657 elv_dequeue_request(req->q, req);
1658
1659 /*
1660 * We are now handing the request to the hardware, add the
1661 * timeout handler.
1662 */
1663 blk_add_timer(req);
1664}
1665EXPORT_SYMBOL(blkdev_dequeue_request);
1666
Jens Axboebc58ba92009-01-23 10:54:44 +01001667static void blk_account_io_completion(struct request *req, unsigned int bytes)
1668{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001669 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001670 return;
1671
1672 if (blk_fs_request(req)) {
1673 const int rw = rq_data_dir(req);
1674 struct hd_struct *part;
1675 int cpu;
1676
1677 cpu = part_stat_lock();
1678 part = disk_map_sector_rcu(req->rq_disk, req->sector);
1679 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1680 part_stat_unlock();
1681 }
1682}
1683
1684static void blk_account_io_done(struct request *req)
1685{
Jerome Marchand26308ea2009-03-27 10:31:51 +01001686 if (!blk_do_io_stat(req))
Jens Axboebc58ba92009-01-23 10:54:44 +01001687 return;
1688
1689 /*
1690 * Account IO completion. bar_rq isn't accounted as a normal
1691 * IO on queueing nor completion. Accounting the containing
1692 * request is enough.
1693 */
1694 if (blk_fs_request(req) && req != &req->q->bar_rq) {
1695 unsigned long duration = jiffies - req->start_time;
1696 const int rw = rq_data_dir(req);
1697 struct hd_struct *part;
1698 int cpu;
1699
1700 cpu = part_stat_lock();
Jerome Marchand26308ea2009-03-27 10:31:51 +01001701 part = disk_map_sector_rcu(req->rq_disk, req->sector);
Jens Axboebc58ba92009-01-23 10:54:44 +01001702
1703 part_stat_inc(cpu, part, ios[rw]);
1704 part_stat_add(cpu, part, ticks[rw], duration);
1705 part_round_stats(cpu, part);
1706 part_dec_in_flight(part);
1707
1708 part_stat_unlock();
1709 }
1710}
1711
Tejun Heo53a08802008-12-03 12:41:26 +01001712/**
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001713 * __end_that_request_first - end I/O on a request
1714 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001715 * @error: %0 for success, < %0 for error
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001716 * @nr_bytes: number of bytes to complete
1717 *
1718 * Description:
1719 * Ends I/O on a number of bytes attached to @req, and sets it up
1720 * for the next range of segments (if any) in the cluster.
1721 *
1722 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001723 * %0 - we are done with this request, call end_that_request_last()
1724 * %1 - still buffers pending for this request
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001725 **/
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001726static int __end_that_request_first(struct request *req, int error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 int nr_bytes)
1728{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001729 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 struct bio *bio;
1731
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001732 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /*
Randy Dunlap710027a2008-08-19 20:13:11 +02001735 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 * sense key with us all the way through
1737 */
1738 if (!blk_pc_request(req))
1739 req->errors = 0;
1740
Jens Axboe6728cb02008-01-31 13:03:55 +01001741 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1742 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 req->rq_disk ? req->rq_disk->disk_name : "?",
1744 (unsigned long long)req->sector);
1745 }
1746
Jens Axboebc58ba92009-01-23 10:54:44 +01001747 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 total_bytes = bio_nbytes = 0;
1750 while ((bio = req->bio) != NULL) {
1751 int nbytes;
1752
1753 if (nr_bytes >= bio->bi_size) {
1754 req->bio = bio->bi_next;
1755 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001756 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 next_idx = 0;
1758 bio_nbytes = 0;
1759 } else {
1760 int idx = bio->bi_idx + next_idx;
1761
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001762 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001764 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001765 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 break;
1767 }
1768
1769 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1770 BIO_BUG_ON(nbytes > bio->bi_size);
1771
1772 /*
1773 * not a complete bvec done
1774 */
1775 if (unlikely(nbytes > nr_bytes)) {
1776 bio_nbytes += nr_bytes;
1777 total_bytes += nr_bytes;
1778 break;
1779 }
1780
1781 /*
1782 * advance to the next vector
1783 */
1784 next_idx++;
1785 bio_nbytes += nbytes;
1786 }
1787
1788 total_bytes += nbytes;
1789 nr_bytes -= nbytes;
1790
Jens Axboe6728cb02008-01-31 13:03:55 +01001791 bio = req->bio;
1792 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /*
1794 * end more in this run, or just return 'not-done'
1795 */
1796 if (unlikely(nr_bytes <= 0))
1797 break;
1798 }
1799 }
1800
1801 /*
1802 * completely done
1803 */
1804 if (!req->bio)
1805 return 0;
1806
1807 /*
1808 * if the request wasn't completed, update state
1809 */
1810 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001811 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 bio->bi_idx += next_idx;
1813 bio_iovec(bio)->bv_offset += nr_bytes;
1814 bio_iovec(bio)->bv_len -= nr_bytes;
1815 }
1816
1817 blk_recalc_rq_sectors(req, total_bytes >> 9);
1818 blk_recalc_rq_segments(req);
1819 return 1;
1820}
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822/*
1823 * queue lock must be held
1824 */
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001825static void end_that_request_last(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001827 if (blk_rq_tagged(req))
1828 blk_queue_end_tag(req->q, req);
1829
1830 if (blk_queued_rq(req))
Tejun Heo53a08802008-12-03 12:41:26 +01001831 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 if (unlikely(laptop_mode) && blk_fs_request(req))
1834 laptop_io_completion();
1835
Mike Andersone78042e2008-10-30 02:16:20 -07001836 blk_delete_timer(req);
1837
Jens Axboebc58ba92009-01-23 10:54:44 +01001838 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01001841 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001842 else {
1843 if (blk_bidi_rq(req))
1844 __blk_put_request(req->next_rq->q, req->next_rq);
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848}
1849
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001850/**
1851 * blk_rq_bytes - Returns bytes left to complete in the entire request
Randy Dunlap5d87a052008-02-20 09:01:22 +01001852 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001853 **/
1854unsigned int blk_rq_bytes(struct request *rq)
Jens Axboea0cd1282007-09-21 10:41:07 +02001855{
1856 if (blk_fs_request(rq))
1857 return rq->hard_nr_sectors << 9;
1858
1859 return rq->data_len;
1860}
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001861EXPORT_SYMBOL_GPL(blk_rq_bytes);
1862
1863/**
1864 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
Randy Dunlap5d87a052008-02-20 09:01:22 +01001865 * @rq: the request being processed
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05001866 **/
1867unsigned int blk_rq_cur_bytes(struct request *rq)
1868{
1869 if (blk_fs_request(rq))
1870 return rq->current_nr_sectors << 9;
1871
1872 if (rq->bio)
1873 return rq->bio->bi_size;
1874
1875 return rq->data_len;
1876}
1877EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
Jens Axboea0cd1282007-09-21 10:41:07 +02001878
1879/**
Jens Axboea0cd1282007-09-21 10:41:07 +02001880 * end_request - end I/O on the current segment of the request
Randy Dunlap8f731f72007-10-18 23:39:28 -07001881 * @req: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001882 * @uptodate: error value or %0/%1 uptodate flag
Jens Axboea0cd1282007-09-21 10:41:07 +02001883 *
1884 * Description:
1885 * Ends I/O on the current segment of a request. If that is the only
1886 * remaining segment, the request is also completed and freed.
1887 *
Randy Dunlap710027a2008-08-19 20:13:11 +02001888 * This is a remnant of how older block drivers handled I/O completions.
1889 * Modern drivers typically end I/O on the full request in one go, unless
Jens Axboea0cd1282007-09-21 10:41:07 +02001890 * they have a residual value to account for. For that case this function
1891 * isn't really useful, unless the residual just happens to be the
1892 * full current segment. In other words, don't use this function in new
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001893 * code. Use blk_end_request() or __blk_end_request() to end a request.
Jens Axboea0cd1282007-09-21 10:41:07 +02001894 **/
1895void end_request(struct request *req, int uptodate)
1896{
Kiyoshi Uedad00e29f2008-10-01 10:14:46 -04001897 int error = 0;
1898
1899 if (uptodate <= 0)
1900 error = uptodate ? uptodate : -EIO;
1901
1902 __blk_end_request(req, error, req->hard_cur_sectors << 9);
Jens Axboea0cd1282007-09-21 10:41:07 +02001903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904EXPORT_SYMBOL(end_request);
1905
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001906static int end_that_request_data(struct request *rq, int error,
1907 unsigned int nr_bytes, unsigned int bidi_bytes)
1908{
1909 if (rq->bio) {
1910 if (__end_that_request_first(rq, error, nr_bytes))
1911 return 1;
1912
1913 /* Bidi request must be completed as a whole */
1914 if (blk_bidi_rq(rq) &&
1915 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1916 return 1;
1917 }
1918
1919 return 0;
1920}
1921
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001922/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001923 * blk_end_io - Generic end_io function to complete a request.
1924 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001925 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001926 * @nr_bytes: number of bytes to complete @rq
1927 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001928 * @drv_callback: function called between completion of bios in the request
1929 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02001930 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001931 * completion of the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001932 *
1933 * Description:
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001934 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001935 * If @rq has leftover, sets it up for the next range of segments.
1936 *
1937 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001938 * %0 - we are done with this request
1939 * %1 - this request is not freed yet, it still has pending buffers.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001940 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001941static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1942 unsigned int bidi_bytes,
1943 int (drv_callback)(struct request *))
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001944{
1945 struct request_queue *q = rq->q;
1946 unsigned long flags = 0UL;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001947
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04001948 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1949 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001950
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001951 /* Special feature for tricky drivers */
1952 if (drv_callback && drv_callback(rq))
1953 return 1;
1954
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001955 add_disk_randomness(rq->rq_disk);
1956
1957 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05001958 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001959 spin_unlock_irqrestore(q->queue_lock, flags);
1960
1961 return 0;
1962}
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001963
1964/**
1965 * blk_end_request - Helper function for drivers to complete the request.
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 *
1970 * Description:
1971 * Ends I/O on a number of bytes attached to @rq.
1972 * If @rq has leftover, sets it up for the next range of segments.
1973 *
1974 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001975 * %0 - we are done with this request
1976 * %1 - still buffers pending for this request
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001977 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001978int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001979{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05001980 return blk_end_io(rq, error, nr_bytes, 0, NULL);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05001981}
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001982EXPORT_SYMBOL_GPL(blk_end_request);
1983
1984/**
1985 * __blk_end_request - Helper function for drivers to complete the request.
1986 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02001987 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001988 * @nr_bytes: number of bytes to complete
1989 *
1990 * Description:
1991 * Must be called with queue lock held unlike blk_end_request().
1992 *
1993 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02001994 * %0 - we are done with this request
1995 * %1 - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001996 **/
Jens Axboe22b13212008-01-31 12:36:19 +01001997int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05001998{
Jens Axboe60540162008-08-26 13:34:34 +02001999 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
Jens Axboe051cc392008-08-08 11:06:45 +02002000 return 1;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002001
2002 add_disk_randomness(rq->rq_disk);
2003
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002004 end_that_request_last(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002005
2006 return 0;
2007}
2008EXPORT_SYMBOL_GPL(__blk_end_request);
2009
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002010/**
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002011 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
2012 * @rq: the bidi request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002013 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002014 * @nr_bytes: number of bytes to complete @rq
2015 * @bidi_bytes: number of bytes to complete @rq->next_rq
2016 *
2017 * Description:
2018 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2019 *
2020 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002021 * %0 - we are done with this request
2022 * %1 - still buffers pending for this request
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002023 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002024int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2025 unsigned int bidi_bytes)
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002026{
2027 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2028}
2029EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2030
2031/**
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002032 * blk_update_request - Special helper function for request stacking drivers
2033 * @rq: the request being processed
2034 * @error: %0 for success, < %0 for error
2035 * @nr_bytes: number of bytes to complete @rq
2036 *
2037 * Description:
2038 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2039 * the request structure even if @rq doesn't have leftover.
2040 * If @rq has leftover, sets it up for the next range of segments.
2041 *
2042 * This special helper function is only for request stacking drivers
2043 * (e.g. request-based dm) so that they can handle partial completion.
2044 * Actual device drivers should use blk_end_request instead.
2045 */
2046void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2047{
2048 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2049 /*
2050 * These members are not updated in end_that_request_data()
2051 * when all bios are completed.
2052 * Update them so that the request stacking driver can find
2053 * how many bytes remain in the request later.
2054 */
2055 rq->nr_sectors = rq->hard_nr_sectors = 0;
2056 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2057 }
2058}
2059EXPORT_SYMBOL_GPL(blk_update_request);
2060
2061/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002062 * blk_end_request_callback - Special helper function for tricky drivers
2063 * @rq: the request being processed
Randy Dunlap710027a2008-08-19 20:13:11 +02002064 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002065 * @nr_bytes: number of bytes to complete
2066 * @drv_callback: function called between completion of bios in the request
2067 * and completion of the request.
Randy Dunlap710027a2008-08-19 20:13:11 +02002068 * If the callback returns non %0, this helper returns without
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002069 * completion of the request.
2070 *
2071 * Description:
2072 * Ends I/O on a number of bytes attached to @rq.
2073 * If @rq has leftover, sets it up for the next range of segments.
2074 *
2075 * This special helper function is used only for existing tricky drivers.
2076 * (e.g. cdrom_newpc_intr() of ide-cd)
2077 * This interface will be removed when such drivers are rewritten.
2078 * Don't use this interface in other places anymore.
2079 *
2080 * Return:
Randy Dunlap710027a2008-08-19 20:13:11 +02002081 * %0 - we are done with this request
2082 * %1 - this request is not freed yet.
2083 * this request still has pending buffers or
2084 * the driver doesn't want to finish this request yet.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002085 **/
Jens Axboe22b13212008-01-31 12:36:19 +01002086int blk_end_request_callback(struct request *rq, int error,
2087 unsigned int nr_bytes,
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002088 int (drv_callback)(struct request *))
2089{
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002090 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002091}
2092EXPORT_SYMBOL_GPL(blk_end_request_callback);
2093
Jens Axboe86db1e22008-01-29 14:53:40 +01002094void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2095 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
David Woodhoused628eae2008-08-09 16:22:17 +01002097 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2098 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002099 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
David Woodhousefb2dce82008-08-05 18:01:53 +01002101 if (bio_has_data(bio)) {
2102 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002103 rq->buffer = bio_data(bio);
2104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 rq->current_nr_sectors = bio_cur_sectors(bio);
2106 rq->hard_cur_sectors = rq->current_nr_sectors;
2107 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002108 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
NeilBrown66846572007-08-16 13:31:28 +02002112 if (bio->bi_bdev)
2113 rq->rq_disk = bio->bi_bdev->bd_disk;
2114}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002116/**
2117 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2118 * @q : the queue of the device being checked
2119 *
2120 * Description:
2121 * Check if underlying low-level drivers of a device are busy.
2122 * If the drivers want to export their busy state, they must set own
2123 * exporting function using blk_queue_lld_busy() first.
2124 *
2125 * Basically, this function is used only by request stacking drivers
2126 * to stop dispatching requests to underlying devices when underlying
2127 * devices are busy. This behavior helps more I/O merging on the queue
2128 * of the request stacking driver and prevents I/O throughput regression
2129 * on burst I/O load.
2130 *
2131 * Return:
2132 * 0 - Not busy (The request stacking driver should dispatch request)
2133 * 1 - Busy (The request stacking driver should stop dispatching request)
2134 */
2135int blk_lld_busy(struct request_queue *q)
2136{
2137 if (q->lld_busy_fn)
2138 return q->lld_busy_fn(q);
2139
2140 return 0;
2141}
2142EXPORT_SYMBOL_GPL(blk_lld_busy);
2143
Jens Axboe18887ad2008-07-28 13:08:45 +02002144int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
2146 return queue_work(kblockd_workqueue, work);
2147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148EXPORT_SYMBOL(kblockd_schedule_work);
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150int __init blk_dev_init(void)
2151{
2152 kblockd_workqueue = create_workqueue("kblockd");
2153 if (!kblockd_workqueue)
2154 panic("Failed to create kblockd\n");
2155
2156 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002157 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Jens Axboe8324aa92008-01-29 14:51:59 +01002159 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002160 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return 0;
2163}
2164