blob: 345d99da8d415f2f16a7add470082178d9bebeb3 [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 Mortonfaccbd42006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080029#include <linux/fault-inject.h>
Li Zefan55782132009-06-09 13:43:05 +080030
31#define CREATE_TRACE_POINTS
32#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jens Axboe8324aa92008-01-29 14:51:59 +010034#include "blk.h"
35
Ingo Molnar0bfc2452008-11-26 11:59:56 +010036EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap);
Li Zefan55782132009-06-09 13:43:05 +080037EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
Ingo Molnar0bfc2452008-11-26 11:59:56 +010038
Jens Axboe165125e2007-07-24 09:28:11 +020039static int __make_request(struct request_queue *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * For the allocated request tables
43 */
Adrian Bunk5ece6c52008-02-18 13:45:51 +010044static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * For queue allocation
48 */
Jens Axboe6728cb02008-01-31 13:03:55 +010049struct kmem_cache *blk_requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Controlling structure to kblockd
53 */
Jens Axboeff856ba2006-01-09 16:02:34 +010054static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jens Axboe26b82562008-01-29 13:54:41 +010056static void drive_stat_acct(struct request *rq, int new_io)
57{
Jens Axboe28f13702008-05-07 10:15:46 +020058 struct hd_struct *part;
Jens Axboe26b82562008-01-29 13:54:41 +010059 int rw = rq_data_dir(rq);
Tejun Heoc9959052008-08-25 19:47:21 +090060 int cpu;
Jens Axboe26b82562008-01-29 13:54:41 +010061
Jens Axboec2553b52009-04-24 08:10:11 +020062 if (!blk_do_io_stat(rq))
Jens Axboe26b82562008-01-29 13:54:41 +010063 return;
64
Tejun Heo074a7ac2008-08-25 19:56:14 +090065 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +090066 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
Tejun Heoc9959052008-08-25 19:47:21 +090067
Jens Axboe28f13702008-05-07 10:15:46 +020068 if (!new_io)
Tejun Heo074a7ac2008-08-25 19:56:14 +090069 part_stat_inc(cpu, part, merges[rw]);
Jens Axboe28f13702008-05-07 10:15:46 +020070 else {
Tejun Heo074a7ac2008-08-25 19:56:14 +090071 part_round_stats(cpu, part);
72 part_inc_in_flight(part);
Jens Axboe26b82562008-01-29 13:54:41 +010073 }
Tejun Heoe71bf0d2008-09-03 09:03:02 +020074
Tejun Heo074a7ac2008-08-25 19:56:14 +090075 part_stat_unlock();
Jens Axboe26b82562008-01-29 13:54:41 +010076}
77
Jens Axboe8324aa92008-01-29 14:51:59 +010078void blk_queue_congestion_threshold(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 int nr;
81
82 nr = q->nr_requests - (q->nr_requests / 8) + 1;
83 if (nr > q->nr_requests)
84 nr = q->nr_requests;
85 q->nr_congestion_on = nr;
86
87 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
88 if (nr < 1)
89 nr = 1;
90 q->nr_congestion_off = nr;
91}
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/**
94 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
95 * @bdev: device
96 *
97 * Locates the passed device's request queue and returns the address of its
98 * backing_dev_info
99 *
100 * Will return NULL if the request queue cannot be located.
101 */
102struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
103{
104 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200105 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (q)
108 ret = &q->backing_dev_info;
109 return ret;
110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111EXPORT_SYMBOL(blk_get_backing_dev_info);
112
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200113void blk_rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200115 memset(rq, 0, sizeof(*rq));
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700118 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200119 rq->cpu = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100120 rq->q = q;
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900121 rq->__sector = (sector_t) -1;
Jens Axboe2e662b62006-07-13 11:55:04 +0200122 INIT_HLIST_NODE(&rq->hash);
123 RB_CLEAR_NODE(&rq->rb_node);
FUJITA Tomonorid7e3c322008-04-29 09:54:39 +0200124 rq->cmd = rq->__cmd;
Li Zefane2494e12009-04-02 13:43:26 +0800125 rq->cmd_len = BLK_MAX_CDB;
Jens Axboe63a71382008-02-08 12:41:03 +0100126 rq->tag = -1;
Jens Axboe63a71382008-02-08 12:41:03 +0100127 rq->ref_count = 1;
Tejun Heob243ddc2009-04-23 11:05:18 +0900128 rq->start_time = jiffies;
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
Tejun Heo83096eb2009-05-07 22:24:39 +0900179 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
180 (unsigned long long)blk_rq_pos(rq),
181 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
Tejun Heo731ec492009-04-23 11:05:20 +0900182 printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n",
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900183 rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Jens Axboe4aff5e22006-08-10 08:44:47 +0200185 if (blk_pc_request(rq)) {
Jens Axboe6728cb02008-01-31 13:03:55 +0100186 printk(KERN_INFO " cdb: ");
FUJITA Tomonorid34c87e2008-04-29 14:37:52 +0200187 for (bit = 0; bit < BLK_MAX_CDB; bit++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 printk("%02x ", rq->cmd[bit]);
189 printk("\n");
190 }
191}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192EXPORT_SYMBOL(blk_dump_rq_flags);
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
195 * "plug" the device if there are no outstanding requests: this will
196 * force the transfer to start only after we have put all the requests
197 * on the list.
198 *
199 * This is called with interrupts off and no requests on the queue and
200 * with the queue lock held.
201 */
Jens Axboe165125e2007-07-24 09:28:11 +0200202void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 WARN_ON(!irqs_disabled());
205
206 /*
207 * don't plug a stopped queue, it must be paired with blk_start_queue()
208 * which will restart the queueing
209 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200210 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return;
212
Jens Axboee48ec692008-07-03 13:18:54 +0200213 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100215 trace_block_plug(q);
Jens Axboe2056a782006-03-23 20:00:26 +0100216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218EXPORT_SYMBOL(blk_plug_device);
219
Jens Axboe6c5e0c42008-08-01 20:31:32 +0200220/**
221 * blk_plug_device_unlocked - plug a device without queue lock held
222 * @q: The &struct request_queue to plug
223 *
224 * Description:
225 * Like @blk_plug_device(), but grabs the queue lock and disables
226 * interrupts.
227 **/
228void blk_plug_device_unlocked(struct request_queue *q)
229{
230 unsigned long flags;
231
232 spin_lock_irqsave(q->queue_lock, flags);
233 blk_plug_device(q);
234 spin_unlock_irqrestore(q->queue_lock, flags);
235}
236EXPORT_SYMBOL(blk_plug_device_unlocked);
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*
239 * remove the queue from the plugged list, if present. called with
240 * queue lock held and interrupts disabled.
241 */
Jens Axboe165125e2007-07-24 09:28:11 +0200242int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 WARN_ON(!irqs_disabled());
245
Jens Axboee48ec692008-07-03 13:18:54 +0200246 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return 0;
248
249 del_timer(&q->unplug_timer);
250 return 1;
251}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252EXPORT_SYMBOL(blk_remove_plug);
253
254/*
255 * remove the plug and let it rip..
256 */
Jens Axboe165125e2007-07-24 09:28:11 +0200257void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +0200259 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return;
Jens Axboea31a9732008-10-17 13:58:29 +0200261 if (!blk_remove_plug(q) && !blk_queue_nonrot(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return;
263
Jens Axboe22e2c502005-06-27 10:55:12 +0200264 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/**
268 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +0200269 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
271 * Description:
272 * Linux uses plugging to build bigger requests queues before letting
273 * the device have at them. If a queue is plugged, the I/O scheduler
274 * is still adding and merging requests on the queue. Once the queue
275 * gets unplugged, the request_fn defined for the queue is invoked and
276 * transfers started.
277 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200278void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Jens Axboedbaf2c02008-05-07 09:48:17 +0200280 if (blk_queue_plugged(q)) {
281 spin_lock_irq(q->queue_lock);
282 __generic_unplug_device(q);
283 spin_unlock_irq(q->queue_lock);
284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286EXPORT_SYMBOL(generic_unplug_device);
287
288static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
289 struct page *page)
290{
Jens Axboe165125e2007-07-24 09:28:11 +0200291 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500293 blk_unplug(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Jens Axboe86db1e22008-01-29 14:53:40 +0100296void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Jens Axboe165125e2007-07-24 09:28:11 +0200298 struct request_queue *q =
299 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100301 trace_block_unplug_io(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 q->unplug_fn(q);
303}
304
Jens Axboe86db1e22008-01-29 14:53:40 +0100305void blk_unplug_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Jens Axboe165125e2007-07-24 09:28:11 +0200307 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100309 trace_block_unplug_timer(q);
Jens Axboe18887ad2008-07-28 13:08:45 +0200310 kblockd_schedule_work(q, &q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500313void blk_unplug(struct request_queue *q)
314{
315 /*
316 * devices don't necessarily have an ->unplug_fn defined
317 */
318 if (q->unplug_fn) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100319 trace_block_unplug_io(q);
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500320 q->unplug_fn(q);
321 }
322}
323EXPORT_SYMBOL(blk_unplug);
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/**
326 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +0200327 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *
329 * Description:
330 * blk_start_queue() will clear the stop flag on the queue, and call
331 * the request_fn for the queue if it was in a stopped state when
332 * entered. Also see blk_stop_queue(). Queue lock must be held.
333 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200334void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200336 WARN_ON(!irqs_disabled());
337
Nick Piggin75ad23b2008-04-29 14:48:33 +0200338 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
Tejun Heoa538cd02009-04-23 11:05:17 +0900339 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341EXPORT_SYMBOL(blk_start_queue);
342
343/**
344 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +0200345 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * Description:
348 * The Linux block layer assumes that a block driver will consume all
349 * entries on the request queue when the request_fn strategy is called.
350 * Often this will not happen, because of hardware limitations (queue
351 * depth settings). If a device driver gets a 'queue full' response,
352 * or if it simply chooses not to queue more I/O at one point, it can
353 * call this function to prevent the request_fn from being called until
354 * the driver has signalled it's ready to go again. This happens by calling
355 * blk_start_queue() to restart queue operations. Queue lock must be held.
356 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200357void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 blk_remove_plug(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200360 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362EXPORT_SYMBOL(blk_stop_queue);
363
364/**
365 * blk_sync_queue - cancel any pending callbacks on a queue
366 * @q: the queue
367 *
368 * Description:
369 * The block layer may perform asynchronous callback activity
370 * on a queue, such as calling the unplug function after a timeout.
371 * A block device may call blk_sync_queue to ensure that any
372 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +0200373 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * that its ->make_request_fn will not re-add plugging prior to calling
375 * this function.
376 *
377 */
378void blk_sync_queue(struct request_queue *q)
379{
380 del_timer_sync(&q->unplug_timer);
Jens Axboe70ed28b2008-11-19 14:38:39 +0100381 del_timer_sync(&q->timeout);
Cheng Renquan64d01dc2008-12-03 12:41:39 +0100382 cancel_work_sync(&q->unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384EXPORT_SYMBOL(blk_sync_queue);
385
386/**
Jens Axboe80a4b582008-10-14 09:51:06 +0200387 * __blk_run_queue - run a single device queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200389 *
390 * Description:
391 * See @blk_run_queue. This variant must be called with the queue lock
392 * held and interrupts disabled.
393 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Nick Piggin75ad23b2008-04-29 14:48:33 +0200395void __blk_run_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +0200398
Tejun Heoa538cd02009-04-23 11:05:17 +0900399 if (unlikely(blk_queue_stopped(q)))
400 return;
401
402 if (elv_queue_empty(q))
403 return;
404
Jens Axboedac07ec2006-05-11 08:20:16 +0200405 /*
406 * Only recurse once to avoid overrunning the stack, let the unplug
407 * handling reinvoke the handler shortly if we already got there.
408 */
Tejun Heoa538cd02009-04-23 11:05:17 +0900409 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
410 q->request_fn(q);
411 queue_flag_clear(QUEUE_FLAG_REENTER, q);
412 } else {
413 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
414 kblockd_schedule_work(q, &q->unplug_work);
415 }
Nick Piggin75ad23b2008-04-29 14:48:33 +0200416}
417EXPORT_SYMBOL(__blk_run_queue);
Jens Axboedac07ec2006-05-11 08:20:16 +0200418
Nick Piggin75ad23b2008-04-29 14:48:33 +0200419/**
420 * blk_run_queue - run a single device queue
421 * @q: The queue to run
Jens Axboe80a4b582008-10-14 09:51:06 +0200422 *
423 * Description:
424 * Invoke request handling on this queue, if it has pending work to do.
Tejun Heoa7f55792009-04-23 11:05:17 +0900425 * May be used to restart queueing when a request has completed.
Nick Piggin75ad23b2008-04-29 14:48:33 +0200426 */
427void blk_run_queue(struct request_queue *q)
428{
429 unsigned long flags;
430
431 spin_lock_irqsave(q->queue_lock, flags);
432 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 spin_unlock_irqrestore(q->queue_lock, flags);
434}
435EXPORT_SYMBOL(blk_run_queue);
436
Jens Axboe165125e2007-07-24 09:28:11 +0200437void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500438{
439 kobject_put(&q->kobj);
440}
Al Viro483f4af2006-03-18 18:34:37 -0500441
Jens Axboe6728cb02008-01-31 13:03:55 +0100442void blk_cleanup_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -0500443{
Jens Axboee3335de2008-09-18 09:22:54 -0700444 /*
445 * We know we have process context here, so we can be a little
446 * cautious and ensure that pending block actions on this device
447 * are done before moving on. Going into this function, we should
448 * not have processes doing IO to this device.
449 */
450 blk_sync_queue(q);
451
Al Viro483f4af2006-03-18 18:34:37 -0500452 mutex_lock(&q->sysfs_lock);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200453 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
Al Viro483f4af2006-03-18 18:34:37 -0500454 mutex_unlock(&q->sysfs_lock);
455
456 if (q->elevator)
457 elevator_exit(q->elevator);
458
459 blk_put_queue(q);
460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461EXPORT_SYMBOL(blk_cleanup_queue);
462
Jens Axboe165125e2007-07-24 09:28:11 +0200463static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 struct request_list *rl = &q->rq;
466
Jens Axboe1faa16d2009-04-06 14:48:01 +0200467 rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
468 rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200469 rl->elvpriv = 0;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200470 init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
471 init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Christoph Lameter19460892005-06-23 00:08:19 -0700473 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
474 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (!rl->rq_pool)
477 return -ENOMEM;
478
479 return 0;
480}
481
Jens Axboe165125e2007-07-24 09:28:11 +0200482struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christoph Lameter19460892005-06-23 00:08:19 -0700484 return blk_alloc_queue_node(gfp_mask, -1);
485}
486EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jens Axboe165125e2007-07-24 09:28:11 +0200488struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -0700489{
Jens Axboe165125e2007-07-24 09:28:11 +0200490 struct request_queue *q;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700491 int err;
Christoph Lameter19460892005-06-23 00:08:19 -0700492
Jens Axboe8324aa92008-01-29 14:51:59 +0100493 q = kmem_cache_alloc_node(blk_requestq_cachep,
Christoph Lameter94f60302007-07-17 04:03:29 -0700494 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (!q)
496 return NULL;
497
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700498 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
499 q->backing_dev_info.unplug_io_data = q;
Jens Axboe0989a022009-06-12 14:42:56 +0200500 q->backing_dev_info.ra_pages =
501 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
502 q->backing_dev_info.state = 0;
503 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
504
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700505 err = bdi_init(&q->backing_dev_info);
506 if (err) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100507 kmem_cache_free(blk_requestq_cachep, q);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700508 return NULL;
509 }
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 init_timer(&q->unplug_timer);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700512 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
513 INIT_LIST_HEAD(&q->timeout_list);
Peter Zijlstra713ada92008-10-16 13:44:57 +0200514 INIT_WORK(&q->unplug_work, blk_unplug_work);
Al Viro483f4af2006-03-18 18:34:37 -0500515
Jens Axboe8324aa92008-01-29 14:51:59 +0100516 kobject_init(&q->kobj, &blk_queue_ktype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Al Viro483f4af2006-03-18 18:34:37 -0500518 mutex_init(&q->sysfs_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -0700519 spin_lock_init(&q->__queue_lock);
Al Viro483f4af2006-03-18 18:34:37 -0500520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return q;
522}
Christoph Lameter19460892005-06-23 00:08:19 -0700523EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525/**
526 * blk_init_queue - prepare a request queue for use with a block device
527 * @rfn: The function to be called to process requests that have been
528 * placed on the queue.
529 * @lock: Request queue spin lock
530 *
531 * Description:
532 * If a block device wishes to use the standard request handling procedures,
533 * which sorts requests and coalesces adjacent requests, then it must
534 * call blk_init_queue(). The function @rfn will be called when there
535 * are requests on the queue that need to be processed. If the device
536 * supports plugging, then @rfn may not be called immediately when requests
537 * are available on the queue, but may be called at some time later instead.
538 * Plugged queues are generally unplugged when a buffer belonging to one
539 * of the requests on the queue is needed, or due to memory pressure.
540 *
541 * @rfn is not required, or even expected, to remove all requests off the
542 * queue, but only as many as it can handle at a time. If it does leave
543 * requests on the queue, it is responsible for arranging that the requests
544 * get dealt with eventually.
545 *
546 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +0200547 * request queue; this lock will be taken also from interrupt context, so irq
548 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200550 * Function returns a pointer to the initialized request queue, or %NULL if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * it didn't succeed.
552 *
553 * Note:
554 * blk_init_queue() must be paired with a blk_cleanup_queue() call
555 * when the block device is deactivated (such as at module unload).
556 **/
Christoph Lameter19460892005-06-23 00:08:19 -0700557
Jens Axboe165125e2007-07-24 09:28:11 +0200558struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Christoph Lameter19460892005-06-23 00:08:19 -0700560 return blk_init_queue_node(rfn, lock, -1);
561}
562EXPORT_SYMBOL(blk_init_queue);
563
Jens Axboe165125e2007-07-24 09:28:11 +0200564struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -0700565blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
566{
Jens Axboe165125e2007-07-24 09:28:11 +0200567 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 if (!q)
570 return NULL;
571
Christoph Lameter19460892005-06-23 00:08:19 -0700572 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -0500573 if (blk_init_free_list(q)) {
Jens Axboe8324aa92008-01-29 14:51:59 +0100574 kmem_cache_free(blk_requestq_cachep, q);
Al Viro8669aaf2006-03-18 13:50:00 -0500575 return NULL;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
152587d2005-04-12 16:22:06 -0500578 /*
579 * if caller didn't supply a lock, they get per-queue locking with
580 * our embedded lock
581 */
Neil Browne7e72bf2008-05-14 16:05:54 -0700582 if (!lock)
152587d2005-04-12 16:22:06 -0500583 lock = &q->__queue_lock;
152587d2005-04-12 16:22:06 -0500584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 q->prep_rq_fn = NULL;
587 q->unplug_fn = generic_unplug_device;
Jens Axboebc58ba92009-01-23 10:54:44 +0100588 q->queue_flags = QUEUE_FLAG_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 q->queue_lock = lock;
590
Jens Axboef3b144a2009-03-06 08:48:33 +0100591 /*
592 * This also sets hw/phys segments, boundary and size
593 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 blk_queue_make_request(q, __make_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Alan Stern44ec9542007-02-20 11:01:57 -0500596 q->sg_reserved_size = INT_MAX;
597
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900598 blk_set_cmd_filter_defaults(&q->cmd_filter);
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
601 * all done
602 */
603 if (!elevator_init(q, NULL)) {
604 blk_queue_congestion_threshold(q);
605 return q;
606 }
607
Al Viro8669aaf2006-03-18 13:50:00 -0500608 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return NULL;
610}
Christoph Lameter19460892005-06-23 00:08:19 -0700611EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jens Axboe165125e2007-07-24 09:28:11 +0200613int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Nick Pigginfde6ad22005-06-23 00:08:53 -0700615 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -0500616 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 0;
618 }
619
620 return 1;
621}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Jens Axboe165125e2007-07-24 09:28:11 +0200623static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200625 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +0200626 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 mempool_free(rq, q->rq.rq_pool);
628}
629
Jens Axboe1ea25ec2006-07-18 22:24:11 +0200630static struct request *
Jerome Marchand42dad762009-04-22 14:01:49 +0200631blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
634
635 if (!rq)
636 return NULL;
637
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200638 blk_rq_init(q, rq);
FUJITA Tomonori1afb20f2008-04-25 12:26:28 +0200639
Jerome Marchand42dad762009-04-22 14:01:49 +0200640 rq->cmd_flags = flags | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Tejun Heocb98fc82005-10-28 08:29:39 +0200642 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +0200643 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +0200644 mempool_free(rq, q->rq.rq_pool);
645 return NULL;
646 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200647 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +0200648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Tejun Heocb98fc82005-10-28 08:29:39 +0200650 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
654 * ioc_batching returns true if the ioc is a valid batching request and
655 * should be given priority access to a request.
656 */
Jens Axboe165125e2007-07-24 09:28:11 +0200657static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 if (!ioc)
660 return 0;
661
662 /*
663 * Make sure the process is able to allocate at least 1 request
664 * even if the batch times out, otherwise we could theoretically
665 * lose wakeups.
666 */
667 return ioc->nr_batch_requests == q->nr_batching ||
668 (ioc->nr_batch_requests > 0
669 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
670}
671
672/*
673 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
674 * will cause the process to be a "batcher" on all queues in the system. This
675 * is the behaviour we want though - once it gets a wakeup it should be given
676 * a nice run.
677 */
Jens Axboe165125e2007-07-24 09:28:11 +0200678static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 if (!ioc || ioc_batching(q, ioc))
681 return;
682
683 ioc->nr_batch_requests = q->nr_batching;
684 ioc->last_waited = jiffies;
685}
686
Jens Axboe1faa16d2009-04-06 14:48:01 +0200687static void __freed_request(struct request_queue *q, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct request_list *rl = &q->rq;
690
Jens Axboe1faa16d2009-04-06 14:48:01 +0200691 if (rl->count[sync] < queue_congestion_off_threshold(q))
692 blk_clear_queue_congested(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Jens Axboe1faa16d2009-04-06 14:48:01 +0200694 if (rl->count[sync] + 1 <= q->nr_requests) {
695 if (waitqueue_active(&rl->wait[sync]))
696 wake_up(&rl->wait[sync]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Jens Axboe1faa16d2009-04-06 14:48:01 +0200698 blk_clear_queue_full(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700}
701
702/*
703 * A request has just been released. Account for it, update the full and
704 * congestion status, wake up any waiters. Called under q->queue_lock.
705 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200706static void freed_request(struct request_queue *q, int sync, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct request_list *rl = &q->rq;
709
Jens Axboe1faa16d2009-04-06 14:48:01 +0200710 rl->count[sync]--;
Tejun Heocb98fc82005-10-28 08:29:39 +0200711 if (priv)
712 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jens Axboe1faa16d2009-04-06 14:48:01 +0200714 __freed_request(q, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Jens Axboe1faa16d2009-04-06 14:48:01 +0200716 if (unlikely(rl->starved[sync ^ 1]))
717 __freed_request(q, sync ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720/*
Nick Piggind6344532005-06-28 20:45:14 -0700721 * Get a free request, queue_lock must be held.
722 * Returns NULL on failure, with queue_lock held.
723 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 */
Jens Axboe165125e2007-07-24 09:28:11 +0200725static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +0100726 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct request *rq = NULL;
729 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100730 struct io_context *ioc = NULL;
Jens Axboe1faa16d2009-04-06 14:48:01 +0200731 const bool is_sync = rw_is_sync(rw_flags) != 0;
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100732 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jens Axboe7749a8d2006-12-13 13:02:26 +0100734 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100735 if (may_queue == ELV_MQUEUE_NO)
736 goto rq_starved;
737
Jens Axboe1faa16d2009-04-06 14:48:01 +0200738 if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
739 if (rl->count[is_sync]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +0200740 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100741 /*
742 * The queue will fill after this allocation, so set
743 * it as full, and mark this process as "batching".
744 * This process will be allowed to complete a batch of
745 * requests, others will be blocked.
746 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200747 if (!blk_queue_full(q, is_sync)) {
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100748 ioc_set_batching(q, ioc);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200749 blk_set_queue_full(q, is_sync);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100750 } else {
751 if (may_queue != ELV_MQUEUE_MUST
752 && !ioc_batching(q, ioc)) {
753 /*
754 * The queue is full and the allocating
755 * process is not a "batcher", and not
756 * exempted by the IO scheduler
757 */
758 goto out;
759 }
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Jens Axboe1faa16d2009-04-06 14:48:01 +0200762 blk_set_queue_congested(q, is_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Jens Axboe082cf692005-06-28 16:35:11 +0200765 /*
766 * Only allow batching queuers to allocate up to 50% over the defined
767 * limit of requests, otherwise we could have thousands of requests
768 * allocated with any setting of ->nr_requests
769 */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200770 if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +0200771 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +0100772
Jens Axboe1faa16d2009-04-06 14:48:01 +0200773 rl->count[is_sync]++;
774 rl->starved[is_sync] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +0200775
Jens Axboe64521d12005-10-28 08:30:39 +0200776 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +0200777 if (priv)
778 rl->elvpriv++;
779
Jerome Marchand42dad762009-04-22 14:01:49 +0200780 if (blk_queue_io_stat(q))
781 rw_flags |= REQ_IO_STAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 spin_unlock_irq(q->queue_lock);
783
Jens Axboe7749a8d2006-12-13 13:02:26 +0100784 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100785 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /*
787 * Allocation failed presumably due to memory. Undo anything
788 * we might have messed up.
789 *
790 * Allocating task should really be put onto the front of the
791 * wait queue, but this is pretty rare.
792 */
793 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200794 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 /*
797 * in the very unlikely event that allocation failed and no
798 * requests for this direction was pending, mark us starved
799 * so that freeing of a request in the other direction will
800 * notice us. another possible fix would be to split the
801 * rq mempool into READ and WRITE
802 */
803rq_starved:
Jens Axboe1faa16d2009-04-06 14:48:01 +0200804 if (unlikely(rl->count[is_sync] == 0))
805 rl->starved[is_sync] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 goto out;
808 }
809
Jens Axboe88ee5ef2005-11-12 11:09:12 +0100810 /*
811 * ioc may be NULL here, and ioc_batching will be false. That's
812 * OK, if the queue is under the request limit then requests need
813 * not count toward the nr_batch_requests limit. There will always
814 * be some limit enforced by BLK_BATCH_TIME.
815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (ioc_batching(q, ioc))
817 ioc->nr_batch_requests--;
Jens Axboe6728cb02008-01-31 13:03:55 +0100818
Jens Axboe1faa16d2009-04-06 14:48:01 +0200819 trace_block_getrq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return rq;
822}
823
824/*
825 * No available requests for this queue, unplug the device and wait for some
826 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -0700827 *
828 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Jens Axboe165125e2007-07-24 09:28:11 +0200830static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +0200831 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Jens Axboe1faa16d2009-04-06 14:48:01 +0200833 const bool is_sync = rw_is_sync(rw_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 struct request *rq;
835
Jens Axboe7749a8d2006-12-13 13:02:26 +0100836 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -0700837 while (!rq) {
838 DEFINE_WAIT(wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200839 struct io_context *ioc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 struct request_list *rl = &q->rq;
841
Jens Axboe1faa16d2009-04-06 14:48:01 +0200842 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 TASK_UNINTERRUPTIBLE);
844
Jens Axboe1faa16d2009-04-06 14:48:01 +0200845 trace_block_sleeprq(q, bio, rw_flags & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200847 __generic_unplug_device(q);
848 spin_unlock_irq(q->queue_lock);
849 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200851 /*
852 * After sleeping, we become a "batching" process and
853 * will be able to allocate at least one request, and
854 * up to a big batch of them for a small period time.
855 * See ioc_batching, ioc_set_batching
856 */
857 ioc = current_io_context(GFP_NOIO, q->node);
858 ioc_set_batching(q, ioc);
Jens Axboe2056a782006-03-23 20:00:26 +0100859
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200860 spin_lock_irq(q->queue_lock);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200861 finish_wait(&rl->wait[is_sync], &wait);
Zhang, Yanmin05caf8d2008-05-22 15:13:29 +0200862
863 rq = get_request(q, rw_flags, bio, GFP_NOIO);
864 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 return rq;
867}
868
Jens Axboe165125e2007-07-24 09:28:11 +0200869struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 struct request *rq;
872
873 BUG_ON(rw != READ && rw != WRITE);
874
Nick Piggind6344532005-06-28 20:45:14 -0700875 spin_lock_irq(q->queue_lock);
876 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200877 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -0700878 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +0200879 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -0700880 if (!rq)
881 spin_unlock_irq(q->queue_lock);
882 }
883 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 return rq;
886}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887EXPORT_SYMBOL(blk_get_request);
888
889/**
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300890 * blk_make_request - given a bio, allocate a corresponding struct request.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700891 * @q: target request queue
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300892 * @bio: The bio describing the memory mappings that will be submitted for IO.
893 * It may be a chained-bio properly constructed by block/bio layer.
Randy Dunlap8ebf9752009-06-11 20:00:41 -0700894 * @gfp_mask: gfp flags to be used for memory allocation
Jens Axboedc72ef42006-07-20 14:54:05 +0200895 *
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300896 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
897 * type commands. Where the struct request needs to be farther initialized by
898 * the caller. It is passed a &struct bio, which describes the memory info of
899 * the I/O transfer.
900 *
901 * The caller of blk_make_request must make sure that bi_io_vec
902 * are set to describe the memory buffers. That bio_data_dir() will return
903 * the needed direction of the request. (And all bio's in the passed bio-chain
904 * are properly set accordingly)
905 *
906 * If called under none-sleepable conditions, mapped bio buffers must not
907 * need bouncing, by calling the appropriate masked or flagged allocator,
908 * suitable for the target device. Otherwise the call to blk_queue_bounce will
909 * BUG.
Jens Axboe53674ac2009-05-19 19:52:35 +0200910 *
911 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
912 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
913 * anything but the first bio in the chain. Otherwise you risk waiting for IO
914 * completion of a bio that hasn't been submitted yet, thus resulting in a
915 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
916 * of bio_alloc(), as that avoids the mempool deadlock.
917 * If possible a big IO should be split into smaller parts when allocation
918 * fails. Partial allocation should not be an error, or you risk a live-lock.
Jens Axboedc72ef42006-07-20 14:54:05 +0200919 */
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300920struct request *blk_make_request(struct request_queue *q, struct bio *bio,
921 gfp_t gfp_mask)
Jens Axboedc72ef42006-07-20 14:54:05 +0200922{
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300923 struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
924
925 if (unlikely(!rq))
926 return ERR_PTR(-ENOMEM);
927
928 for_each_bio(bio) {
929 struct bio *bounce_bio = bio;
930 int ret;
931
932 blk_queue_bounce(q, &bounce_bio);
933 ret = blk_rq_append_bio(q, rq, bounce_bio);
934 if (unlikely(ret)) {
935 blk_put_request(rq);
936 return ERR_PTR(ret);
937 }
938 }
939
940 return rq;
Jens Axboedc72ef42006-07-20 14:54:05 +0200941}
Boaz Harrosh79eb63e2009-05-17 18:57:15 +0300942EXPORT_SYMBOL(blk_make_request);
Jens Axboedc72ef42006-07-20 14:54:05 +0200943
944/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 * blk_requeue_request - put a request back on queue
946 * @q: request queue where request should be inserted
947 * @rq: request to be inserted
948 *
949 * Description:
950 * Drivers often keep queueing requests until the hardware cannot accept
951 * more, when that condition happens we need to put the request back
952 * on the queue. Must be called with queue lock held.
953 */
Jens Axboe165125e2007-07-24 09:28:11 +0200954void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700956 blk_delete_timer(rq);
957 blk_clear_rq_complete(rq);
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100958 trace_block_rq_requeue(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +0100959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (blk_rq_tagged(rq))
961 blk_queue_end_tag(q, rq);
962
James Bottomleyba396a62009-05-27 14:17:08 +0200963 BUG_ON(blk_queued_rq(rq));
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 elv_requeue_request(q, rq);
966}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967EXPORT_SYMBOL(blk_requeue_request);
968
969/**
Randy Dunlap710027a2008-08-19 20:13:11 +0200970 * blk_insert_request - insert a special request into a request queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * @q: request queue where request should be inserted
972 * @rq: request to be inserted
973 * @at_head: insert request at head or tail of queue
974 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 *
976 * Description:
977 * Many block devices need to execute commands asynchronously, so they don't
978 * block the whole kernel from preemption during request execution. This is
979 * accomplished normally by inserting aritficial requests tagged as
Randy Dunlap710027a2008-08-19 20:13:11 +0200980 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
981 * be scheduled for actual execution by the request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 *
983 * We have the option of inserting the head or the tail of the queue.
984 * Typically we use the tail for new ioctls and so forth. We use the head
985 * of the queue for things like a QUEUE_FULL message from a device, or a
986 * host that is unable to accept a particular command.
987 */
Jens Axboe165125e2007-07-24 09:28:11 +0200988void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -0500989 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Tejun Heo 867d1192005-04-24 02:06:05 -0500991 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 unsigned long flags;
993
994 /*
995 * tell I/O scheduler that this isn't a regular read/write (ie it
996 * must not attempt merges on this) and that it acts as a soft
997 * barrier
998 */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200999 rq->cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 rq->special = data;
1002
1003 spin_lock_irqsave(q->queue_lock, flags);
1004
1005 /*
1006 * If command is tagged, release the tag
1007 */
Tejun Heo 867d1192005-04-24 02:06:05 -05001008 if (blk_rq_tagged(rq))
1009 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001011 drive_stat_acct(rq, 1);
Tejun Heo 867d1192005-04-24 02:06:05 -05001012 __elv_add_request(q, rq, where, 0);
Tejun Heoa7f55792009-04-23 11:05:17 +09001013 __blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 spin_unlock_irqrestore(q->queue_lock, flags);
1015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016EXPORT_SYMBOL(blk_insert_request);
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/*
1019 * add-request adds a request to the linked list.
1020 * queue lock is held and interrupts disabled, as we muck with the
1021 * request queue list.
1022 */
Jens Axboe6728cb02008-01-31 13:03:55 +01001023static inline void add_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Jerome Marchandb238b3d2007-10-23 15:05:46 +02001025 drive_stat_acct(req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /*
1028 * elevator indicated where it wants this request to be
1029 * inserted at elevator_merge time
1030 */
1031 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1032}
Jens Axboe6728cb02008-01-31 13:03:55 +01001033
Tejun Heo074a7ac2008-08-25 19:56:14 +09001034static void part_round_stats_single(int cpu, struct hd_struct *part,
1035 unsigned long now)
1036{
1037 if (now == part->stamp)
1038 return;
1039
1040 if (part->in_flight) {
1041 __part_stat_add(cpu, part, time_in_queue,
1042 part->in_flight * (now - part->stamp));
1043 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1044 }
1045 part->stamp = now;
1046}
1047
1048/**
Randy Dunlap496aa8a2008-10-16 07:46:23 +02001049 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1050 * @cpu: cpu number for stats access
1051 * @part: target partition
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 *
1053 * The average IO queue length and utilisation statistics are maintained
1054 * by observing the current state of the queue length and the amount of
1055 * time it has been in this state for.
1056 *
1057 * Normally, that accounting is done on IO completion, but that can result
1058 * in more than a second's worth of IO being accounted for within any one
1059 * second, leading to >100% utilisation. To deal with that, we call this
1060 * function to do a round-off before returning the results when reading
1061 * /proc/diskstats. This accounts immediately for all queue usage up to
1062 * the current jiffies and restarts the counters again.
1063 */
Tejun Heoc9959052008-08-25 19:47:21 +09001064void part_round_stats(int cpu, struct hd_struct *part)
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001065{
1066 unsigned long now = jiffies;
1067
Tejun Heo074a7ac2008-08-25 19:56:14 +09001068 if (part->partno)
1069 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1070 part_round_stats_single(cpu, part, now);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001071}
Tejun Heo074a7ac2008-08-25 19:56:14 +09001072EXPORT_SYMBOL_GPL(part_round_stats);
Jerome Marchand6f2576a2008-02-08 11:04:35 +01001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074/*
1075 * queue lock must be held
1076 */
Jens Axboe165125e2007-07-24 09:28:11 +02001077void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (unlikely(!q))
1080 return;
1081 if (unlikely(--req->ref_count))
1082 return;
1083
Tejun Heo8922e162005-10-20 16:23:44 +02001084 elv_completed_request(q, req);
1085
Boaz Harrosh1cd96c22009-03-24 12:35:07 +01001086 /* this is a bio leak */
1087 WARN_ON(req->bio != NULL);
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /*
1090 * Request may not have originated from ll_rw_blk. if not,
1091 * it didn't come out of our reserved rq pools
1092 */
Jens Axboe49171e52006-08-10 08:59:11 +02001093 if (req->cmd_flags & REQ_ALLOCED) {
Jens Axboe1faa16d2009-04-06 14:48:01 +02001094 int is_sync = rq_is_sync(req) != 0;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001095 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02001098 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 blk_free_request(q, req);
Jens Axboe1faa16d2009-04-06 14:48:01 +02001101 freed_request(q, is_sync, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103}
Mike Christie6e39b692005-11-11 05:30:24 -06001104EXPORT_SYMBOL_GPL(__blk_put_request);
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106void blk_put_request(struct request *req)
1107{
Tejun Heo8922e162005-10-20 16:23:44 +02001108 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02001109 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
FUJITA Tomonori52a93ba2008-07-15 21:21:45 +02001111 spin_lock_irqsave(q->queue_lock, flags);
1112 __blk_put_request(q, req);
1113 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115EXPORT_SYMBOL(blk_put_request);
1116
Jens Axboe86db1e22008-01-29 14:53:40 +01001117void init_request_from_bio(struct request *req, struct bio *bio)
Tejun Heo52d9e672006-01-06 09:49:58 +01001118{
Jens Axboec7c22e42008-09-13 20:26:01 +02001119 req->cpu = bio->bi_comp_cpu;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001120 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01001121
1122 /*
1123 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1124 */
Mike Christie6000a362008-08-19 18:45:30 -05001125 if (bio_rw_ahead(bio))
1126 req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
1127 REQ_FAILFAST_DRIVER);
1128 if (bio_failfast_dev(bio))
1129 req->cmd_flags |= REQ_FAILFAST_DEV;
1130 if (bio_failfast_transport(bio))
1131 req->cmd_flags |= REQ_FAILFAST_TRANSPORT;
1132 if (bio_failfast_driver(bio))
1133 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001134
David Woodhousefb2dce82008-08-05 18:01:53 +01001135 if (unlikely(bio_discard(bio))) {
David Woodhousee17fc0a2008-08-09 16:42:20 +01001136 req->cmd_flags |= REQ_DISCARD;
1137 if (bio_barrier(bio))
1138 req->cmd_flags |= REQ_SOFTBARRIER;
David Woodhousefb2dce82008-08-05 18:01:53 +01001139 req->q->prepare_discard_fn(req->q, req);
David Woodhousee17fc0a2008-08-09 16:42:20 +01001140 } else if (unlikely(bio_barrier(bio)))
Tejun Heoe4025f62009-04-23 11:05:17 +09001141 req->cmd_flags |= REQ_HARDBARRIER;
Tejun Heo52d9e672006-01-06 09:49:58 +01001142
Jens Axboeb31dc662006-06-13 08:26:10 +02001143 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02001144 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02001145 if (bio_rw_meta(bio))
1146 req->cmd_flags |= REQ_RW_META;
Jens Axboeaeb6faf2009-04-06 14:48:07 +02001147 if (bio_noidle(bio))
1148 req->cmd_flags |= REQ_NOIDLE;
Jens Axboeb31dc662006-06-13 08:26:10 +02001149
Tejun Heo52d9e672006-01-06 09:49:58 +01001150 req->errors = 0;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001151 req->__sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01001152 req->ioprio = bio_prio(bio);
NeilBrownbc1c56f2007-08-16 13:31:30 +02001153 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01001154}
1155
Jens Axboe644b2d92009-04-06 14:48:06 +02001156/*
1157 * Only disabling plugging for non-rotational devices if it does tagging
1158 * as well, otherwise we do need the proper merging
1159 */
1160static inline bool queue_should_plug(struct request_queue *q)
1161{
1162 return !(blk_queue_nonrot(q) && blk_queue_tagged(q));
1163}
1164
Jens Axboe165125e2007-07-24 09:28:11 +02001165static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Nick Piggin450991b2005-06-28 20:45:13 -07001167 struct request *req;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001168 int el_ret;
1169 unsigned int bytes = bio->bi_size;
Jens Axboe51da90f2006-07-18 04:14:45 +02001170 const unsigned short prio = bio_prio(bio);
1171 const int sync = bio_sync(bio);
Jens Axboe213d9412009-01-06 09:16:05 +01001172 const int unplug = bio_unplug(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01001173 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /*
1176 * low level driver can indicate that it wants pages above a
1177 * certain limit bounced to low memory (ie for highmem, or even
1178 * ISA dma in theory)
1179 */
1180 blk_queue_bounce(q, &bio);
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 spin_lock_irq(q->queue_lock);
1183
Tejun Heoa7384672008-11-28 13:32:03 +09001184 if (unlikely(bio_barrier(bio)) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 goto get_rq;
1186
1187 el_ret = elv_merge(q, &req, bio);
1188 switch (el_ret) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001189 case ELEVATOR_BACK_MERGE:
1190 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Jens Axboe6728cb02008-01-31 13:03:55 +01001192 if (!ll_back_merge_fn(q, req, bio))
1193 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001195 trace_block_bio_backmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001196
Jens Axboe6728cb02008-01-31 13:03:55 +01001197 req->biotail->bi_next = bio;
1198 req->biotail = bio;
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001199 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001200 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001201 if (!blk_rq_cpu_valid(req))
1202 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001203 drive_stat_acct(req, 0);
1204 if (!attempt_back_merge(q, req))
1205 elv_merged_request(q, req, el_ret);
1206 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jens Axboe6728cb02008-01-31 13:03:55 +01001208 case ELEVATOR_FRONT_MERGE:
1209 BUG_ON(!rq_mergeable(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Jens Axboe6728cb02008-01-31 13:03:55 +01001211 if (!ll_front_merge_fn(q, req, bio))
1212 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001214 trace_block_bio_frontmerge(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001215
Jens Axboe6728cb02008-01-31 13:03:55 +01001216 bio->bi_next = req->bio;
1217 req->bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Jens Axboe6728cb02008-01-31 13:03:55 +01001219 /*
1220 * may not be valid. if the low level driver said
1221 * it didn't need a bounce buffer then it better
1222 * not touch req->buffer either...
1223 */
1224 req->buffer = bio_data(bio);
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001225 req->__sector = bio->bi_sector;
1226 req->__data_len += bytes;
Jens Axboe6728cb02008-01-31 13:03:55 +01001227 req->ioprio = ioprio_best(req->ioprio, prio);
Jens Axboeab780f12008-08-26 10:25:02 +02001228 if (!blk_rq_cpu_valid(req))
1229 req->cpu = bio->bi_comp_cpu;
Jens Axboe6728cb02008-01-31 13:03:55 +01001230 drive_stat_acct(req, 0);
1231 if (!attempt_front_merge(q, req))
1232 elv_merged_request(q, req, el_ret);
1233 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Jens Axboe6728cb02008-01-31 13:03:55 +01001235 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1236 default:
1237 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07001241 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01001242 * This sync check and mask will be re-done in init_request_from_bio(),
1243 * but we need to set it earlier to expose the sync flag to the
1244 * rq allocator and io schedulers.
1245 */
1246 rw_flags = bio_data_dir(bio);
1247 if (sync)
1248 rw_flags |= REQ_RW_SYNC;
1249
1250 /*
Nick Piggin450991b2005-06-28 20:45:13 -07001251 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07001252 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07001253 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01001254 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07001255
Nick Piggin450991b2005-06-28 20:45:13 -07001256 /*
1257 * After dropping the lock and possibly sleeping here, our request
1258 * may now be mergeable after it had proven unmergeable (above).
1259 * We don't worry about that case for efficiency. It won't happen
1260 * often, and the elevators are able to handle it.
1261 */
Tejun Heo52d9e672006-01-06 09:49:58 +01001262 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Nick Piggin450991b2005-06-28 20:45:13 -07001264 spin_lock_irq(q->queue_lock);
Jens Axboec7c22e42008-09-13 20:26:01 +02001265 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1266 bio_flagged(bio, BIO_CPU_AFFINE))
1267 req->cpu = blk_cpu_to_group(smp_processor_id());
Jens Axboe644b2d92009-04-06 14:48:06 +02001268 if (queue_should_plug(q) && elv_queue_empty(q))
Nick Piggin450991b2005-06-28 20:45:13 -07001269 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 add_request(q, req);
1271out:
Jens Axboe644b2d92009-04-06 14:48:06 +02001272 if (unplug || !queue_should_plug(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 __generic_unplug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 spin_unlock_irq(q->queue_lock);
1275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
1278/*
1279 * If bio->bi_dev is a partition, remap the location
1280 */
1281static inline void blk_partition_remap(struct bio *bio)
1282{
1283 struct block_device *bdev = bio->bi_bdev;
1284
Jens Axboebf2de6f2007-09-27 13:01:25 +02001285 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 bio->bi_sector += p->start_sect;
1289 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001290
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001291 trace_block_remap(bdev_get_queue(bio->bi_bdev), bio,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001292 bdev->bd_dev,
Alan D. Brunellec7149d62007-08-07 15:30:23 +02001293 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295}
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297static void handle_bad_sector(struct bio *bio)
1298{
1299 char b[BDEVNAME_SIZE];
1300
1301 printk(KERN_INFO "attempt to access beyond end of device\n");
1302 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1303 bdevname(bio->bi_bdev, b),
1304 bio->bi_rw,
1305 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1306 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1307
1308 set_bit(BIO_EOF, &bio->bi_flags);
1309}
1310
Akinobu Mitac17bb492006-12-08 02:39:46 -08001311#ifdef CONFIG_FAIL_MAKE_REQUEST
1312
1313static DECLARE_FAULT_ATTR(fail_make_request);
1314
1315static int __init setup_fail_make_request(char *str)
1316{
1317 return setup_fault_attr(&fail_make_request, str);
1318}
1319__setup("fail_make_request=", setup_fail_make_request);
1320
1321static int should_fail_request(struct bio *bio)
1322{
Tejun Heoeddb2e22008-08-25 19:56:13 +09001323 struct hd_struct *part = bio->bi_bdev->bd_part;
1324
1325 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
Akinobu Mitac17bb492006-12-08 02:39:46 -08001326 return should_fail(&fail_make_request, bio->bi_size);
1327
1328 return 0;
1329}
1330
1331static int __init fail_make_request_debugfs(void)
1332{
1333 return init_fault_attr_dentries(&fail_make_request,
1334 "fail_make_request");
1335}
1336
1337late_initcall(fail_make_request_debugfs);
1338
1339#else /* CONFIG_FAIL_MAKE_REQUEST */
1340
1341static inline int should_fail_request(struct bio *bio)
1342{
1343 return 0;
1344}
1345
1346#endif /* CONFIG_FAIL_MAKE_REQUEST */
1347
Jens Axboec07e2b42007-07-18 13:27:58 +02001348/*
1349 * Check whether this bio extends beyond the end of the device.
1350 */
1351static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1352{
1353 sector_t maxsector;
1354
1355 if (!nr_sectors)
1356 return 0;
1357
1358 /* Test device or partition size, when known. */
1359 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1360 if (maxsector) {
1361 sector_t sector = bio->bi_sector;
1362
1363 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1364 /*
1365 * This may well happen - the kernel calls bread()
1366 * without checking the size of the device, e.g., when
1367 * mounting a device.
1368 */
1369 handle_bad_sector(bio);
1370 return 1;
1371 }
1372 }
1373
1374 return 0;
1375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001378 * generic_make_request - hand a buffer to its device driver for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * @bio: The bio describing the location in memory and on the device.
1380 *
1381 * generic_make_request() is used to make I/O requests of block
1382 * devices. It is passed a &struct bio, which describes the I/O that needs
1383 * to be done.
1384 *
1385 * generic_make_request() does not return any status. The
1386 * success/failure status of the request, along with notification of
1387 * completion, is delivered asynchronously through the bio->bi_end_io
1388 * function described (one day) else where.
1389 *
1390 * The caller of generic_make_request must make sure that bi_io_vec
1391 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1392 * set to describe the device address, and the
1393 * bi_end_io and optionally bi_private are set to describe how
1394 * completion notification should be signaled.
1395 *
1396 * generic_make_request and the drivers it calls may use bi_next if this
1397 * bio happens to be merged with someone else, and may change bi_dev and
1398 * bi_sector for remaps as it sees fit. So the values of these fields
1399 * should NOT be depended on after the call to generic_make_request.
1400 */
Neil Brownd89d8792007-05-01 09:53:42 +02001401static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Jens Axboe165125e2007-07-24 09:28:11 +02001403 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08001404 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001406 dev_t old_dev;
Jens Axboe51fd77b2007-11-02 08:49:08 +01001407 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Jens Axboec07e2b42007-07-18 13:27:58 +02001411 if (bio_check_eod(bio, nr_sectors))
1412 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 /*
1415 * Resolve the mapping until finished. (drivers are
1416 * still free to implement/resolve their own stacking
1417 * by explicitly returning 0)
1418 *
1419 * NOTE: we don't repeat the blk_size check for each new device.
1420 * Stacking drivers are expected to know what they are doing.
1421 */
NeilBrown5ddfe962006-10-30 22:07:21 -08001422 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01001423 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 do {
1425 char b[BDEVNAME_SIZE];
1426
1427 q = bdev_get_queue(bio->bi_bdev);
Tejun Heoa7384672008-11-28 13:32:03 +09001428 if (unlikely(!q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 printk(KERN_ERR
1430 "generic_make_request: Trying to access "
1431 "nonexistent block-device %s (%Lu)\n",
1432 bdevname(bio->bi_bdev, b),
1433 (long long) bio->bi_sector);
Tejun Heoa7384672008-11-28 13:32:03 +09001434 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001437 if (unlikely(nr_sectors > queue_max_hw_sectors(q))) {
Jens Axboe6728cb02008-01-31 13:03:55 +01001438 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001439 bdevname(bio->bi_bdev, b),
1440 bio_sectors(bio),
1441 queue_max_hw_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto end_io;
1443 }
1444
Nick Pigginfde6ad22005-06-23 00:08:53 -07001445 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 goto end_io;
1447
Akinobu Mitac17bb492006-12-08 02:39:46 -08001448 if (should_fail_request(bio))
1449 goto end_io;
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /*
1452 * If this device has partitions, remap block n
1453 * of partition p to block n+start(p) of the disk.
1454 */
1455 blk_partition_remap(bio);
1456
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001457 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1458 goto end_io;
1459
NeilBrown5ddfe962006-10-30 22:07:21 -08001460 if (old_sector != -1)
Alan D. Brunelle22a7c312009-05-04 16:35:08 -04001461 trace_block_remap(q, bio, old_dev, old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001462
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001463 trace_block_bio_queue(q, bio);
Jens Axboe2056a782006-03-23 20:00:26 +01001464
NeilBrown5ddfe962006-10-30 22:07:21 -08001465 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01001466 old_dev = bio->bi_bdev->bd_dev;
1467
Jens Axboec07e2b42007-07-18 13:27:58 +02001468 if (bio_check_eod(bio, nr_sectors))
1469 goto end_io;
Tejun Heoa7384672008-11-28 13:32:03 +09001470
1471 if (bio_discard(bio) && !q->prepare_discard_fn) {
Jens Axboe51fd77b2007-11-02 08:49:08 +01001472 err = -EOPNOTSUPP;
1473 goto end_io;
1474 }
Jens Axboecec07072009-01-13 15:28:32 +01001475 if (bio_barrier(bio) && bio_has_data(bio) &&
1476 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1477 err = -EOPNOTSUPP;
1478 goto end_io;
1479 }
NeilBrown5ddfe962006-10-30 22:07:21 -08001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 ret = q->make_request_fn(q, bio);
1482 } while (ret);
Tejun Heoa7384672008-11-28 13:32:03 +09001483
1484 return;
1485
1486end_io:
1487 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Neil Brownd89d8792007-05-01 09:53:42 +02001490/*
1491 * We only want one ->make_request_fn to be active at a time,
1492 * else stack usage with stacked devices could be a problem.
1493 * So use current->bio_{list,tail} to keep a list of requests
1494 * submited by a make_request_fn function.
1495 * current->bio_tail is also used as a flag to say if
1496 * generic_make_request is currently active in this task or not.
1497 * If it is NULL, then no make_request is active. If it is non-NULL,
1498 * then a make_request is active, and new requests should be added
1499 * at the tail
1500 */
1501void generic_make_request(struct bio *bio)
1502{
1503 if (current->bio_tail) {
1504 /* make_request is active */
1505 *(current->bio_tail) = bio;
1506 bio->bi_next = NULL;
1507 current->bio_tail = &bio->bi_next;
1508 return;
1509 }
1510 /* following loop may be a bit non-obvious, and so deserves some
1511 * explanation.
1512 * Before entering the loop, bio->bi_next is NULL (as all callers
1513 * ensure that) so we have a list with a single bio.
1514 * We pretend that we have just taken it off a longer list, so
1515 * we assign bio_list to the next (which is NULL) and bio_tail
1516 * to &bio_list, thus initialising the bio_list of new bios to be
1517 * added. __generic_make_request may indeed add some more bios
1518 * through a recursive call to generic_make_request. If it
1519 * did, we find a non-NULL value in bio_list and re-enter the loop
1520 * from the top. In this case we really did just take the bio
1521 * of the top of the list (no pretending) and so fixup bio_list and
1522 * bio_tail or bi_next, and call into __generic_make_request again.
1523 *
1524 * The loop was structured like this to make only one call to
1525 * __generic_make_request (which is important as it is large and
1526 * inlined) and to keep the structure simple.
1527 */
1528 BUG_ON(bio->bi_next);
1529 do {
1530 current->bio_list = bio->bi_next;
1531 if (bio->bi_next == NULL)
1532 current->bio_tail = &current->bio_list;
1533 else
1534 bio->bi_next = NULL;
1535 __generic_make_request(bio);
1536 bio = current->bio_list;
1537 } while (bio);
1538 current->bio_tail = NULL; /* deactivate */
1539}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540EXPORT_SYMBOL(generic_make_request);
1541
1542/**
Randy Dunlap710027a2008-08-19 20:13:11 +02001543 * submit_bio - submit a bio to the block device layer for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1545 * @bio: The &struct bio which describes the I/O
1546 *
1547 * submit_bio() is very similar in purpose to generic_make_request(), and
1548 * uses that function to do most of the work. Both are fairly rough
Randy Dunlap710027a2008-08-19 20:13:11 +02001549 * interfaces; @bio must be presetup and ready for I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 *
1551 */
1552void submit_bio(int rw, struct bio *bio)
1553{
1554 int count = bio_sectors(bio);
1555
Jens Axboe22e2c502005-06-27 10:55:12 +02001556 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Jens Axboebf2de6f2007-09-27 13:01:25 +02001558 /*
1559 * If it's a regular read/write or a barrier with data attached,
1560 * go through the normal accounting stuff before submission.
1561 */
Jens Axboea9c701e2008-08-08 11:04:44 +02001562 if (bio_has_data(bio)) {
Jens Axboebf2de6f2007-09-27 13:01:25 +02001563 if (rw & WRITE) {
1564 count_vm_events(PGPGOUT, count);
1565 } else {
1566 task_io_account_read(bio->bi_size);
1567 count_vm_events(PGPGIN, count);
1568 }
1569
1570 if (unlikely(block_dump)) {
1571 char b[BDEVNAME_SIZE];
1572 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001573 current->comm, task_pid_nr(current),
Jens Axboebf2de6f2007-09-27 13:01:25 +02001574 (rw & WRITE) ? "WRITE" : "READ",
1575 (unsigned long long)bio->bi_sector,
Jens Axboe6728cb02008-01-31 13:03:55 +01001576 bdevname(bio->bi_bdev, b));
Jens Axboebf2de6f2007-09-27 13:01:25 +02001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
1580 generic_make_request(bio);
1581}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582EXPORT_SYMBOL(submit_bio);
1583
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001584/**
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001585 * blk_rq_check_limits - Helper function to check a request for the queue limit
1586 * @q: the queue
1587 * @rq: the request being checked
1588 *
1589 * Description:
1590 * @rq may have been made based on weaker limitations of upper-level queues
1591 * in request stacking drivers, and it may violate the limitation of @q.
1592 * Since the block layer and the underlying device driver trust @rq
1593 * after it is inserted to @q, it should be checked against @q before
1594 * the insertion using this generic function.
1595 *
1596 * This function should also be useful for request stacking drivers
1597 * in some cases below, so export this fuction.
1598 * Request stacking drivers like request-based dm may change the queue
1599 * limits while requests are in the queue (e.g. dm's table swapping).
1600 * Such request stacking drivers should check those requests agaist
1601 * the new queue limits again when they dispatch those requests,
1602 * although such checkings are also done against the old queue limits
1603 * when submitting requests.
1604 */
1605int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1606{
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001607 if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1608 blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001609 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1610 return -EIO;
1611 }
1612
1613 /*
1614 * queue's settings related to segment counting like q->bounce_pfn
1615 * may differ from that of other stacking queues.
1616 * Recalculate it to check the request correctly on this queue's
1617 * limitation.
1618 */
1619 blk_recalc_rq_segments(rq);
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001620 if (rq->nr_phys_segments > queue_max_phys_segments(q) ||
1621 rq->nr_phys_segments > queue_max_hw_segments(q)) {
Kiyoshi Ueda82124d62008-09-18 10:45:38 -04001622 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1623 return -EIO;
1624 }
1625
1626 return 0;
1627}
1628EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1629
1630/**
1631 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1632 * @q: the queue to submit the request
1633 * @rq: the request being queued
1634 */
1635int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1636{
1637 unsigned long flags;
1638
1639 if (blk_rq_check_limits(q, rq))
1640 return -EIO;
1641
1642#ifdef CONFIG_FAIL_MAKE_REQUEST
1643 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1644 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1645 return -EIO;
1646#endif
1647
1648 spin_lock_irqsave(q->queue_lock, flags);
1649
1650 /*
1651 * Submitting request must be dequeued before calling this function
1652 * because it will be linked to another request_queue
1653 */
1654 BUG_ON(blk_queued_rq(rq));
1655
1656 drive_stat_acct(rq, 1);
1657 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1658
1659 spin_unlock_irqrestore(q->queue_lock, flags);
1660
1661 return 0;
1662}
1663EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1664
Jens Axboebc58ba92009-01-23 10:54:44 +01001665static void blk_account_io_completion(struct request *req, unsigned int bytes)
1666{
Jens Axboec2553b52009-04-24 08:10:11 +02001667 if (blk_do_io_stat(req)) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001668 const int rw = rq_data_dir(req);
1669 struct hd_struct *part;
1670 int cpu;
1671
1672 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001673 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001674 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1675 part_stat_unlock();
1676 }
1677}
1678
1679static void blk_account_io_done(struct request *req)
1680{
Jens Axboebc58ba92009-01-23 10:54:44 +01001681 /*
1682 * Account IO completion. bar_rq isn't accounted as a normal
1683 * IO on queueing nor completion. Accounting the containing
1684 * request is enough.
1685 */
Jens Axboec2553b52009-04-24 08:10:11 +02001686 if (blk_do_io_stat(req) && req != &req->q->bar_rq) {
Jens Axboebc58ba92009-01-23 10:54:44 +01001687 unsigned long duration = jiffies - req->start_time;
1688 const int rw = rq_data_dir(req);
1689 struct hd_struct *part;
1690 int cpu;
1691
1692 cpu = part_stat_lock();
Tejun Heo83096eb2009-05-07 22:24:39 +09001693 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
Jens Axboebc58ba92009-01-23 10:54:44 +01001694
1695 part_stat_inc(cpu, part, ios[rw]);
1696 part_stat_add(cpu, part, ticks[rw], duration);
1697 part_round_stats(cpu, part);
1698 part_dec_in_flight(part);
1699
1700 part_stat_unlock();
1701 }
1702}
1703
Tejun Heo53a08802008-12-03 12:41:26 +01001704/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001705 * blk_peek_request - peek at the top of a request queue
1706 * @q: request queue to peek at
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001707 *
1708 * Description:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001709 * Return the request at the top of @q. The returned request
1710 * should be started using blk_start_request() before LLD starts
1711 * processing it.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001712 *
1713 * Return:
Tejun Heo9934c8c2009-05-08 11:54:16 +09001714 * Pointer to the request at the top of @q if available. Null
1715 * otherwise.
1716 *
1717 * Context:
1718 * queue_lock must be held.
1719 */
1720struct request *blk_peek_request(struct request_queue *q)
Tejun Heo158dbda2009-04-23 11:05:18 +09001721{
1722 struct request *rq;
1723 int ret;
1724
1725 while ((rq = __elv_next_request(q)) != NULL) {
1726 if (!(rq->cmd_flags & REQ_STARTED)) {
1727 /*
1728 * This is the first time the device driver
1729 * sees this request (possibly after
1730 * requeueing). Notify IO scheduler.
1731 */
1732 if (blk_sorted_rq(rq))
1733 elv_activate_rq(q, rq);
1734
1735 /*
1736 * just mark as started even if we don't start
1737 * it, a request that has been delayed should
1738 * not be passed by new incoming requests
1739 */
1740 rq->cmd_flags |= REQ_STARTED;
1741 trace_block_rq_issue(q, rq);
1742 }
1743
1744 if (!q->boundary_rq || q->boundary_rq == rq) {
1745 q->end_sector = rq_end_sector(rq);
1746 q->boundary_rq = NULL;
1747 }
1748
1749 if (rq->cmd_flags & REQ_DONTPREP)
1750 break;
1751
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001752 if (q->dma_drain_size && blk_rq_bytes(rq)) {
Tejun Heo158dbda2009-04-23 11:05:18 +09001753 /*
1754 * make sure space for the drain appears we
1755 * know we can do this because max_hw_segments
1756 * has been adjusted to be one fewer than the
1757 * device can handle
1758 */
1759 rq->nr_phys_segments++;
1760 }
1761
1762 if (!q->prep_rq_fn)
1763 break;
1764
1765 ret = q->prep_rq_fn(q, rq);
1766 if (ret == BLKPREP_OK) {
1767 break;
1768 } else if (ret == BLKPREP_DEFER) {
1769 /*
1770 * the request may have been (partially) prepped.
1771 * we need to keep this request in the front to
1772 * avoid resource deadlock. REQ_STARTED will
1773 * prevent other fs requests from passing this one.
1774 */
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001775 if (q->dma_drain_size && blk_rq_bytes(rq) &&
Tejun Heo158dbda2009-04-23 11:05:18 +09001776 !(rq->cmd_flags & REQ_DONTPREP)) {
1777 /*
1778 * remove the space for the drain we added
1779 * so that we don't add it again
1780 */
1781 --rq->nr_phys_segments;
1782 }
1783
1784 rq = NULL;
1785 break;
1786 } else if (ret == BLKPREP_KILL) {
1787 rq->cmd_flags |= REQ_QUIET;
James Bottomleyc143dc92009-05-30 06:43:49 +02001788 /*
1789 * Mark this request as started so we don't trigger
1790 * any debug logic in the end I/O path.
1791 */
1792 blk_start_request(rq);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001793 __blk_end_request_all(rq, -EIO);
Tejun Heo158dbda2009-04-23 11:05:18 +09001794 } else {
1795 printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1796 break;
1797 }
1798 }
1799
1800 return rq;
1801}
Tejun Heo9934c8c2009-05-08 11:54:16 +09001802EXPORT_SYMBOL(blk_peek_request);
Tejun Heo158dbda2009-04-23 11:05:18 +09001803
Tejun Heo9934c8c2009-05-08 11:54:16 +09001804void blk_dequeue_request(struct request *rq)
Tejun Heo158dbda2009-04-23 11:05:18 +09001805{
Tejun Heo9934c8c2009-05-08 11:54:16 +09001806 struct request_queue *q = rq->q;
1807
Tejun Heo158dbda2009-04-23 11:05:18 +09001808 BUG_ON(list_empty(&rq->queuelist));
1809 BUG_ON(ELV_ON_HASH(rq));
1810
1811 list_del_init(&rq->queuelist);
1812
1813 /*
1814 * the time frame between a request being removed from the lists
1815 * and to it is freed is accounted as io that is in progress at
1816 * the driver side.
1817 */
1818 if (blk_account_rq(rq))
Jens Axboe0a7ae2f2009-05-20 08:54:31 +02001819 q->in_flight[rq_is_sync(rq)]++;
Tejun Heo158dbda2009-04-23 11:05:18 +09001820}
1821
Tejun Heo5efccd12009-04-23 11:05:18 +09001822/**
Tejun Heo9934c8c2009-05-08 11:54:16 +09001823 * blk_start_request - start request processing on the driver
1824 * @req: request to dequeue
1825 *
1826 * Description:
1827 * Dequeue @req and start timeout timer on it. This hands off the
1828 * request to the driver.
1829 *
1830 * Block internal functions which don't want to start timer should
1831 * call blk_dequeue_request().
1832 *
1833 * Context:
1834 * queue_lock must be held.
1835 */
1836void blk_start_request(struct request *req)
1837{
1838 blk_dequeue_request(req);
1839
1840 /*
Tejun Heo5f49f632009-05-19 18:33:05 +09001841 * We are now handing the request to the hardware, initialize
1842 * resid_len to full count and add the timeout handler.
Tejun Heo9934c8c2009-05-08 11:54:16 +09001843 */
Tejun Heo5f49f632009-05-19 18:33:05 +09001844 req->resid_len = blk_rq_bytes(req);
FUJITA Tomonoridbb66c42009-06-09 05:47:10 +02001845 if (unlikely(blk_bidi_rq(req)))
1846 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1847
Tejun Heo9934c8c2009-05-08 11:54:16 +09001848 blk_add_timer(req);
1849}
1850EXPORT_SYMBOL(blk_start_request);
1851
1852/**
1853 * blk_fetch_request - fetch a request from a request queue
1854 * @q: request queue to fetch a request from
1855 *
1856 * Description:
1857 * Return the request at the top of @q. The request is started on
1858 * return and LLD can start processing it immediately.
1859 *
1860 * Return:
1861 * Pointer to the request at the top of @q if available. Null
1862 * otherwise.
1863 *
1864 * Context:
1865 * queue_lock must be held.
1866 */
1867struct request *blk_fetch_request(struct request_queue *q)
1868{
1869 struct request *rq;
1870
1871 rq = blk_peek_request(q);
1872 if (rq)
1873 blk_start_request(rq);
1874 return rq;
1875}
1876EXPORT_SYMBOL(blk_fetch_request);
1877
1878/**
Tejun Heo2e60e022009-04-23 11:05:18 +09001879 * blk_update_request - Special helper function for request stacking drivers
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001880 * @req: the request being processed
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001881 * @error: %0 for success, < %0 for error
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001882 * @nr_bytes: number of bytes to complete @req
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001883 *
1884 * Description:
Randy Dunlap8ebf9752009-06-11 20:00:41 -07001885 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1886 * the request structure even if @req doesn't have leftover.
1887 * If @req has leftover, sets it up for the next range of segments.
Tejun Heo2e60e022009-04-23 11:05:18 +09001888 *
1889 * This special helper function is only for request stacking drivers
1890 * (e.g. request-based dm) so that they can handle partial completion.
1891 * Actual device drivers should use blk_end_request instead.
1892 *
1893 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1894 * %false return from this function.
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001895 *
1896 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09001897 * %false - this request doesn't have any more data
1898 * %true - this request has more data
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001899 **/
Tejun Heo2e60e022009-04-23 11:05:18 +09001900bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Kiyoshi Ueda5450d3e2007-12-11 17:53:03 -05001902 int total_bytes, bio_nbytes, next_idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 struct bio *bio;
1904
Tejun Heo2e60e022009-04-23 11:05:18 +09001905 if (!req->bio)
1906 return false;
1907
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001908 trace_block_rq_complete(req->q, req);
Jens Axboe2056a782006-03-23 20:00:26 +01001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 /*
Tejun Heo6f414692009-04-19 07:00:41 +09001911 * For fs requests, rq is just carrier of independent bio's
1912 * and each partial completion should be handled separately.
1913 * Reset per-request error on each partial completion.
1914 *
1915 * TODO: tj: This is too subtle. It would be better to let
1916 * low level drivers do what they see fit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 */
Tejun Heo6f414692009-04-19 07:00:41 +09001918 if (blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 req->errors = 0;
1920
Jens Axboe6728cb02008-01-31 13:03:55 +01001921 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1922 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 req->rq_disk ? req->rq_disk->disk_name : "?",
Tejun Heo83096eb2009-05-07 22:24:39 +09001924 (unsigned long long)blk_rq_pos(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926
Jens Axboebc58ba92009-01-23 10:54:44 +01001927 blk_account_io_completion(req, nr_bytes);
Jens Axboed72d9042005-11-01 08:35:42 +01001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 total_bytes = bio_nbytes = 0;
1930 while ((bio = req->bio) != NULL) {
1931 int nbytes;
1932
1933 if (nr_bytes >= bio->bi_size) {
1934 req->bio = bio->bi_next;
1935 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02001936 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 next_idx = 0;
1938 bio_nbytes = 0;
1939 } else {
1940 int idx = bio->bi_idx + next_idx;
1941
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001942 if (unlikely(idx >= bio->bi_vcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 blk_dump_rq_flags(req, "__end_that");
Jens Axboe6728cb02008-01-31 13:03:55 +01001944 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
Kazuhisa Ichikawaaf498d72009-05-12 13:27:45 +02001945 __func__, idx, bio->bi_vcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 break;
1947 }
1948
1949 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1950 BIO_BUG_ON(nbytes > bio->bi_size);
1951
1952 /*
1953 * not a complete bvec done
1954 */
1955 if (unlikely(nbytes > nr_bytes)) {
1956 bio_nbytes += nr_bytes;
1957 total_bytes += nr_bytes;
1958 break;
1959 }
1960
1961 /*
1962 * advance to the next vector
1963 */
1964 next_idx++;
1965 bio_nbytes += nbytes;
1966 }
1967
1968 total_bytes += nbytes;
1969 nr_bytes -= nbytes;
1970
Jens Axboe6728cb02008-01-31 13:03:55 +01001971 bio = req->bio;
1972 if (bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /*
1974 * end more in this run, or just return 'not-done'
1975 */
1976 if (unlikely(nr_bytes <= 0))
1977 break;
1978 }
1979 }
1980
1981 /*
1982 * completely done
1983 */
Tejun Heo2e60e022009-04-23 11:05:18 +09001984 if (!req->bio) {
1985 /*
1986 * Reset counters so that the request stacking driver
1987 * can find how many bytes remain in the request
1988 * later.
1989 */
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001990 req->__data_len = 0;
Tejun Heo2e60e022009-04-23 11:05:18 +09001991 return false;
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /*
1995 * if the request wasn't completed, update state
1996 */
1997 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02001998 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 bio->bi_idx += next_idx;
2000 bio_iovec(bio)->bv_offset += nr_bytes;
2001 bio_iovec(bio)->bv_len -= nr_bytes;
2002 }
2003
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002004 req->__data_len -= total_bytes;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002005 req->buffer = bio_data(req->bio);
2006
2007 /* update sector only for requests with clear definition of sector */
2008 if (blk_fs_request(req) || blk_discard_rq(req))
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002009 req->__sector += total_bytes >> 9;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002010
2011 /*
2012 * If total number of sectors is less than the first segment
2013 * size, something has gone terribly wrong.
2014 */
2015 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2016 printk(KERN_ERR "blk: request botched\n");
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002017 req->__data_len = blk_rq_cur_bytes(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002018 }
2019
2020 /* recalculate the number of segments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 blk_recalc_rq_segments(req);
Tejun Heo2e46e8b2009-05-07 22:24:41 +09002022
Tejun Heo2e60e022009-04-23 11:05:18 +09002023 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
Tejun Heo2e60e022009-04-23 11:05:18 +09002025EXPORT_SYMBOL_GPL(blk_update_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Tejun Heo2e60e022009-04-23 11:05:18 +09002027static bool blk_update_bidi_request(struct request *rq, int error,
2028 unsigned int nr_bytes,
2029 unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002030{
Tejun Heo2e60e022009-04-23 11:05:18 +09002031 if (blk_update_request(rq, error, nr_bytes))
2032 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002033
Tejun Heo2e60e022009-04-23 11:05:18 +09002034 /* Bidi request must be completed as a whole */
2035 if (unlikely(blk_bidi_rq(rq)) &&
2036 blk_update_request(rq->next_rq, error, bidi_bytes))
2037 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002038
Tejun Heo2e60e022009-04-23 11:05:18 +09002039 add_disk_randomness(rq->rq_disk);
2040
2041 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044/*
2045 * queue lock must be held
2046 */
Tejun Heo2e60e022009-04-23 11:05:18 +09002047static void blk_finish_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002049 if (blk_rq_tagged(req))
2050 blk_queue_end_tag(req->q, req);
2051
James Bottomleyba396a62009-05-27 14:17:08 +02002052 BUG_ON(blk_queued_rq(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 if (unlikely(laptop_mode) && blk_fs_request(req))
2055 laptop_io_completion();
2056
Mike Andersone78042e2008-10-30 02:16:20 -07002057 blk_delete_timer(req);
2058
Jens Axboebc58ba92009-01-23 10:54:44 +01002059 blk_account_io_done(req);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01002062 req->end_io(req, error);
Kiyoshi Uedab8286232007-12-11 17:53:24 -05002063 else {
2064 if (blk_bidi_rq(req))
2065 __blk_put_request(req->next_rq->q, req->next_rq);
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 __blk_put_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069}
2070
Kiyoshi Ueda3b113132007-12-11 17:41:17 -05002071/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002072 * blk_end_bidi_request - Complete a bidi request
2073 * @rq: the request to complete
Randy Dunlap710027a2008-08-19 20:13:11 +02002074 * @error: %0 for success, < %0 for error
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002075 * @nr_bytes: number of bytes to complete @rq
2076 * @bidi_bytes: number of bytes to complete @rq->next_rq
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002077 *
2078 * Description:
2079 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
Tejun Heo2e60e022009-04-23 11:05:18 +09002080 * Drivers that supports bidi can safely call this member for any
2081 * type of request, bidi or uni. In the later case @bidi_bytes is
2082 * just ignored.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002083 *
2084 * Return:
Tejun Heo2e60e022009-04-23 11:05:18 +09002085 * %false - we are done with this request
2086 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002087 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002088static bool blk_end_bidi_request(struct request *rq, int error,
2089 unsigned int nr_bytes, unsigned int bidi_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002090{
2091 struct request_queue *q = rq->q;
Tejun Heo2e60e022009-04-23 11:05:18 +09002092 unsigned long flags;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002093
Tejun Heo2e60e022009-04-23 11:05:18 +09002094 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2095 return true;
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002096
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002097 spin_lock_irqsave(q->queue_lock, flags);
Tejun Heo2e60e022009-04-23 11:05:18 +09002098 blk_finish_request(rq, error);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002099 spin_unlock_irqrestore(q->queue_lock, flags);
2100
Tejun Heo2e60e022009-04-23 11:05:18 +09002101 return false;
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002102}
Kiyoshi Uedae3a04fe2007-12-11 17:51:46 -05002103
2104/**
Tejun Heo2e60e022009-04-23 11:05:18 +09002105 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2106 * @rq: the request to complete
2107 * @error: %0 for success, < %0 for error
2108 * @nr_bytes: number of bytes to complete @rq
2109 * @bidi_bytes: number of bytes to complete @rq->next_rq
Tejun Heo5efccd12009-04-23 11:05:18 +09002110 *
2111 * Description:
Tejun Heo2e60e022009-04-23 11:05:18 +09002112 * Identical to blk_end_bidi_request() except that queue lock is
2113 * assumed to be locked on entry and remains so on return.
Tejun Heo5efccd12009-04-23 11:05:18 +09002114 *
Tejun Heo2e60e022009-04-23 11:05:18 +09002115 * Return:
2116 * %false - we are done with this request
2117 * %true - still buffers pending for this request
Tejun Heo5efccd12009-04-23 11:05:18 +09002118 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002119static bool __blk_end_bidi_request(struct request *rq, int error,
2120 unsigned int nr_bytes, unsigned int bidi_bytes)
Tejun Heo5efccd12009-04-23 11:05:18 +09002121{
Tejun Heo2e60e022009-04-23 11:05:18 +09002122 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2123 return true;
Tejun Heo5efccd12009-04-23 11:05:18 +09002124
Tejun Heo2e60e022009-04-23 11:05:18 +09002125 blk_finish_request(rq, error);
Tejun Heo5efccd12009-04-23 11:05:18 +09002126
Tejun Heo2e60e022009-04-23 11:05:18 +09002127 return false;
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002128}
2129
2130/**
2131 * blk_end_request - Helper function for drivers to complete the request.
2132 * @rq: the request being processed
2133 * @error: %0 for success, < %0 for error
2134 * @nr_bytes: number of bytes to complete
2135 *
2136 * Description:
2137 * Ends I/O on a number of bytes attached to @rq.
2138 * If @rq has leftover, sets it up for the next range of segments.
2139 *
2140 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002141 * %false - we are done with this request
2142 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002143 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002144bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002145{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002146 return blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002147}
2148EXPORT_SYMBOL_GPL(blk_end_request);
2149
2150/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002151 * blk_end_request_all - Helper function for drives to finish the request.
2152 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002153 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002154 *
2155 * Description:
2156 * Completely finish @rq.
2157 */
2158void blk_end_request_all(struct request *rq, int error)
2159{
2160 bool pending;
2161 unsigned int bidi_bytes = 0;
2162
2163 if (unlikely(blk_bidi_rq(rq)))
2164 bidi_bytes = blk_rq_bytes(rq->next_rq);
2165
2166 pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2167 BUG_ON(pending);
2168}
2169EXPORT_SYMBOL_GPL(blk_end_request_all);
2170
2171/**
2172 * blk_end_request_cur - Helper function to finish the current request chunk.
2173 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002174 * @error: %0 for success, < %0 for error
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002175 *
2176 * Description:
2177 * Complete the current consecutively mapped chunk from @rq.
2178 *
2179 * Return:
2180 * %false - we are done with this request
2181 * %true - still buffers pending for this request
2182 */
2183bool blk_end_request_cur(struct request *rq, int error)
2184{
2185 return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2186}
2187EXPORT_SYMBOL_GPL(blk_end_request_cur);
2188
2189/**
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002190 * __blk_end_request - Helper function for drivers to complete the request.
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002191 * @rq: the request being processed
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002192 * @error: %0 for success, < %0 for error
2193 * @nr_bytes: number of bytes to complete
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002194 *
2195 * Description:
2196 * Must be called with queue lock held unlike blk_end_request().
2197 *
2198 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002199 * %false - we are done with this request
2200 * %true - still buffers pending for this request
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002201 **/
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002202bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002203{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002204 return __blk_end_bidi_request(rq, error, nr_bytes, 0);
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002205}
2206EXPORT_SYMBOL_GPL(__blk_end_request);
2207
2208/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002209 * __blk_end_request_all - Helper function for drives to finish the request.
2210 * @rq: the request to finish
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002211 * @error: %0 for success, < %0 for error
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -05002212 *
2213 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002214 * Completely finish @rq. Must be called with queue lock held.
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002215 */
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002216void __blk_end_request_all(struct request *rq, int error)
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002217{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002218 bool pending;
2219 unsigned int bidi_bytes = 0;
2220
2221 if (unlikely(blk_bidi_rq(rq)))
2222 bidi_bytes = blk_rq_bytes(rq->next_rq);
2223
2224 pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2225 BUG_ON(pending);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002226}
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002227EXPORT_SYMBOL_GPL(__blk_end_request_all);
Kiyoshi Ueda32fab442008-09-18 10:45:09 -04002228
2229/**
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002230 * __blk_end_request_cur - Helper function to finish the current request chunk.
2231 * @rq: the request to finish the current chunk for
Randy Dunlap8ebf9752009-06-11 20:00:41 -07002232 * @error: %0 for success, < %0 for error
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002233 *
2234 * Description:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002235 * Complete the current consecutively mapped chunk from @rq. Must
2236 * be called with queue lock held.
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002237 *
2238 * Return:
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002239 * %false - we are done with this request
2240 * %true - still buffers pending for this request
2241 */
2242bool __blk_end_request_cur(struct request *rq, int error)
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002243{
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002244 return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002245}
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09002246EXPORT_SYMBOL_GPL(__blk_end_request_cur);
Kiyoshi Uedae19a3ab2007-12-11 17:51:02 -05002247
Jens Axboe86db1e22008-01-29 14:53:40 +01002248void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2249 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
David Woodhoused628eae2008-08-09 16:22:17 +01002251 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2252 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002253 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
David Woodhousefb2dce82008-08-05 18:01:53 +01002255 if (bio_has_data(bio)) {
2256 rq->nr_phys_segments = bio_phys_segments(q, bio);
David Woodhousefb2dce82008-08-05 18:01:53 +01002257 rq->buffer = bio_data(bio);
2258 }
Tejun Heoa2dec7b2009-05-07 22:24:44 +09002259 rq->__data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
NeilBrown66846572007-08-16 13:31:28 +02002262 if (bio->bi_bdev)
2263 rq->rq_disk = bio->bi_bdev->bd_disk;
2264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02002266/**
2267 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2268 * @q : the queue of the device being checked
2269 *
2270 * Description:
2271 * Check if underlying low-level drivers of a device are busy.
2272 * If the drivers want to export their busy state, they must set own
2273 * exporting function using blk_queue_lld_busy() first.
2274 *
2275 * Basically, this function is used only by request stacking drivers
2276 * to stop dispatching requests to underlying devices when underlying
2277 * devices are busy. This behavior helps more I/O merging on the queue
2278 * of the request stacking driver and prevents I/O throughput regression
2279 * on burst I/O load.
2280 *
2281 * Return:
2282 * 0 - Not busy (The request stacking driver should dispatch request)
2283 * 1 - Busy (The request stacking driver should stop dispatching request)
2284 */
2285int blk_lld_busy(struct request_queue *q)
2286{
2287 if (q->lld_busy_fn)
2288 return q->lld_busy_fn(q);
2289
2290 return 0;
2291}
2292EXPORT_SYMBOL_GPL(blk_lld_busy);
2293
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002294/**
2295 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2296 * @rq: the clone request to be cleaned up
2297 *
2298 * Description:
2299 * Free all bios in @rq for a cloned request.
2300 */
2301void blk_rq_unprep_clone(struct request *rq)
2302{
2303 struct bio *bio;
2304
2305 while ((bio = rq->bio) != NULL) {
2306 rq->bio = bio->bi_next;
2307
2308 bio_put(bio);
2309 }
2310}
2311EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2312
2313/*
2314 * Copy attributes of the original request to the clone request.
2315 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2316 */
2317static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2318{
2319 dst->cpu = src->cpu;
2320 dst->cmd_flags = (rq_data_dir(src) | REQ_NOMERGE);
2321 dst->cmd_type = src->cmd_type;
2322 dst->__sector = blk_rq_pos(src);
2323 dst->__data_len = blk_rq_bytes(src);
2324 dst->nr_phys_segments = src->nr_phys_segments;
2325 dst->ioprio = src->ioprio;
2326 dst->extra_len = src->extra_len;
2327}
2328
2329/**
2330 * blk_rq_prep_clone - Helper function to setup clone request
2331 * @rq: the request to be setup
2332 * @rq_src: original request to be cloned
2333 * @bs: bio_set that bios for clone are allocated from
2334 * @gfp_mask: memory allocation mask for bio
2335 * @bio_ctr: setup function to be called for each clone bio.
2336 * Returns %0 for success, non %0 for failure.
2337 * @data: private data to be passed to @bio_ctr
2338 *
2339 * Description:
2340 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2341 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2342 * are not copied, and copying such parts is the caller's responsibility.
2343 * Also, pages which the original bios are pointing to are not copied
2344 * and the cloned bios just point same pages.
2345 * So cloned bios must be completed before original bios, which means
2346 * the caller must complete @rq before @rq_src.
2347 */
2348int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2349 struct bio_set *bs, gfp_t gfp_mask,
2350 int (*bio_ctr)(struct bio *, struct bio *, void *),
2351 void *data)
2352{
2353 struct bio *bio, *bio_src;
2354
2355 if (!bs)
2356 bs = fs_bio_set;
2357
2358 blk_rq_init(NULL, rq);
2359
2360 __rq_for_each_bio(bio_src, rq_src) {
2361 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2362 if (!bio)
2363 goto free_and_out;
2364
2365 __bio_clone(bio, bio_src);
2366
2367 if (bio_integrity(bio_src) &&
Martin K. Petersen7878cba2009-06-26 15:37:49 +02002368 bio_integrity_clone(bio, bio_src, gfp_mask, bs))
Kiyoshi Uedab0fd2712009-06-11 13:10:16 +02002369 goto free_and_out;
2370
2371 if (bio_ctr && bio_ctr(bio, bio_src, data))
2372 goto free_and_out;
2373
2374 if (rq->bio) {
2375 rq->biotail->bi_next = bio;
2376 rq->biotail = bio;
2377 } else
2378 rq->bio = rq->biotail = bio;
2379 }
2380
2381 __blk_rq_prep_clone(rq, rq_src);
2382
2383 return 0;
2384
2385free_and_out:
2386 if (bio)
2387 bio_free(bio, bs);
2388 blk_rq_unprep_clone(rq);
2389
2390 return -ENOMEM;
2391}
2392EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2393
Jens Axboe18887ad2008-07-28 13:08:45 +02002394int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
2396 return queue_work(kblockd_workqueue, work);
2397}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398EXPORT_SYMBOL(kblockd_schedule_work);
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400int __init blk_dev_init(void)
2401{
Nikanth Karthikesan9eb55b02009-04-27 14:53:54 +02002402 BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2403 sizeof(((struct request *)0)->cmd_flags));
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 kblockd_workqueue = create_workqueue("kblockd");
2406 if (!kblockd_workqueue)
2407 panic("Failed to create kblockd\n");
2408
2409 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09002410 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Jens Axboe8324aa92008-01-29 14:51:59 +01002412 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02002413 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 return 0;
2416}
2417