Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * 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 Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 6 | * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au> |
| 7 | * - July2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/completion.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/swap.h> |
| 27 | #include <linux/writeback.h> |
Andrew Morton | faccbd4b | 2006-12-10 02:19:35 -0800 | [diff] [blame] | 28 | #include <linux/task_io_accounting_ops.h> |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 29 | #include <linux/blktrace_api.h> |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 30 | #include <linux/fault-inject.h> |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 31 | #include <trace/block.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 33 | #include "blk.h" |
| 34 | |
Ingo Molnar | 0bfc245 | 2008-11-26 11:59:56 +0100 | [diff] [blame] | 35 | DEFINE_TRACE(block_plug); |
| 36 | DEFINE_TRACE(block_unplug_io); |
| 37 | DEFINE_TRACE(block_unplug_timer); |
| 38 | DEFINE_TRACE(block_getrq); |
| 39 | DEFINE_TRACE(block_sleeprq); |
| 40 | DEFINE_TRACE(block_rq_requeue); |
| 41 | DEFINE_TRACE(block_bio_backmerge); |
| 42 | DEFINE_TRACE(block_bio_frontmerge); |
| 43 | DEFINE_TRACE(block_bio_queue); |
| 44 | DEFINE_TRACE(block_rq_complete); |
| 45 | DEFINE_TRACE(block_remap); /* Also used in drivers/md/dm.c */ |
| 46 | EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap); |
| 47 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 48 | static int __make_request(struct request_queue *q, struct bio *bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | /* |
| 51 | * For the allocated request tables |
| 52 | */ |
Adrian Bunk | 5ece6c5 | 2008-02-18 13:45:51 +0100 | [diff] [blame] | 53 | static struct kmem_cache *request_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * For queue allocation |
| 57 | */ |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 58 | struct kmem_cache *blk_requestq_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | * Controlling structure to kblockd |
| 62 | */ |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 63 | static struct workqueue_struct *kblockd_workqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 65 | static void drive_stat_acct(struct request *rq, int new_io) |
| 66 | { |
Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 67 | struct hd_struct *part; |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 68 | int rw = rq_data_dir(rq); |
Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 69 | int cpu; |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 70 | |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 71 | if (!blk_fs_request(rq) || !blk_do_io_stat(rq)) |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 72 | return; |
| 73 | |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 74 | cpu = part_stat_lock(); |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 75 | part = disk_map_sector_rcu(rq->rq_disk, rq->sector); |
Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 76 | |
Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 77 | if (!new_io) |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 78 | part_stat_inc(cpu, part, merges[rw]); |
Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 79 | else { |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 80 | part_round_stats(cpu, part); |
| 81 | part_inc_in_flight(part); |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 82 | } |
Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 83 | |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 84 | part_stat_unlock(); |
Jens Axboe | 26b8256 | 2008-01-29 13:54:41 +0100 | [diff] [blame] | 85 | } |
| 86 | |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 87 | void blk_queue_congestion_threshold(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
| 89 | int nr; |
| 90 | |
| 91 | nr = q->nr_requests - (q->nr_requests / 8) + 1; |
| 92 | if (nr > q->nr_requests) |
| 93 | nr = q->nr_requests; |
| 94 | q->nr_congestion_on = nr; |
| 95 | |
| 96 | nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1; |
| 97 | if (nr < 1) |
| 98 | nr = 1; |
| 99 | q->nr_congestion_off = nr; |
| 100 | } |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | /** |
| 103 | * blk_get_backing_dev_info - get the address of a queue's backing_dev_info |
| 104 | * @bdev: device |
| 105 | * |
| 106 | * Locates the passed device's request queue and returns the address of its |
| 107 | * backing_dev_info |
| 108 | * |
| 109 | * Will return NULL if the request queue cannot be located. |
| 110 | */ |
| 111 | struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev) |
| 112 | { |
| 113 | struct backing_dev_info *ret = NULL; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 114 | struct request_queue *q = bdev_get_queue(bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | if (q) |
| 117 | ret = &q->backing_dev_info; |
| 118 | return ret; |
| 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | EXPORT_SYMBOL(blk_get_backing_dev_info); |
| 121 | |
FUJITA Tomonori | 2a4aa30 | 2008-04-29 09:54:36 +0200 | [diff] [blame] | 122 | void blk_rq_init(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
FUJITA Tomonori | 1afb20f | 2008-04-25 12:26:28 +0200 | [diff] [blame] | 124 | memset(rq, 0, sizeof(*rq)); |
| 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | INIT_LIST_HEAD(&rq->queuelist); |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 127 | INIT_LIST_HEAD(&rq->timeout_list); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 128 | rq->cpu = -1; |
Jens Axboe | 63a7138 | 2008-02-08 12:41:03 +0100 | [diff] [blame] | 129 | rq->q = q; |
| 130 | rq->sector = rq->hard_sector = (sector_t) -1; |
Jens Axboe | 2e662b6 | 2006-07-13 11:55:04 +0200 | [diff] [blame] | 131 | INIT_HLIST_NODE(&rq->hash); |
| 132 | RB_CLEAR_NODE(&rq->rb_node); |
FUJITA Tomonori | d7e3c32 | 2008-04-29 09:54:39 +0200 | [diff] [blame] | 133 | rq->cmd = rq->__cmd; |
Li Zefan | e2494e1 | 2009-04-02 13:43:26 +0800 | [diff] [blame] | 134 | rq->cmd_len = BLK_MAX_CDB; |
Jens Axboe | 63a7138 | 2008-02-08 12:41:03 +0100 | [diff] [blame] | 135 | rq->tag = -1; |
Jens Axboe | 63a7138 | 2008-02-08 12:41:03 +0100 | [diff] [blame] | 136 | rq->ref_count = 1; |
Tejun Heo | b243ddc | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 137 | rq->start_time = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
FUJITA Tomonori | 2a4aa30 | 2008-04-29 09:54:36 +0200 | [diff] [blame] | 139 | EXPORT_SYMBOL(blk_rq_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 141 | static void req_bio_endio(struct request *rq, struct bio *bio, |
| 142 | unsigned int nbytes, int error) |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 143 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 144 | struct request_queue *q = rq->q; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 145 | |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 146 | if (&q->bar_rq != rq) { |
| 147 | if (error) |
| 148 | clear_bit(BIO_UPTODATE, &bio->bi_flags); |
| 149 | else if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) |
| 150 | error = -EIO; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 151 | |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 152 | if (unlikely(nbytes > bio->bi_size)) { |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 153 | printk(KERN_ERR "%s: want %u bytes done, %u left\n", |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 154 | __func__, nbytes, bio->bi_size); |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 155 | nbytes = bio->bi_size; |
| 156 | } |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 157 | |
Keith Mannthey | 08bafc0 | 2008-11-25 10:24:35 +0100 | [diff] [blame] | 158 | if (unlikely(rq->cmd_flags & REQ_QUIET)) |
| 159 | set_bit(BIO_QUIET, &bio->bi_flags); |
| 160 | |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 161 | bio->bi_size -= nbytes; |
| 162 | bio->bi_sector += (nbytes >> 9); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 163 | |
| 164 | if (bio_integrity(bio)) |
| 165 | bio_integrity_advance(bio, nbytes); |
| 166 | |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 167 | if (bio->bi_size == 0) |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 168 | bio_endio(bio, error); |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 169 | } else { |
| 170 | |
| 171 | /* |
| 172 | * Okay, this is the barrier request in progress, just |
| 173 | * record the error; |
| 174 | */ |
| 175 | if (error && !q->orderr) |
| 176 | q->orderr = error; |
| 177 | } |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 178 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | void blk_dump_rq_flags(struct request *rq, char *msg) |
| 181 | { |
| 182 | int bit; |
| 183 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 184 | printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg, |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 185 | rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type, |
| 186 | rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 188 | printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n", |
| 189 | (unsigned long long)rq->sector, |
| 190 | rq->nr_sectors, |
| 191 | rq->current_nr_sectors); |
Tejun Heo | 731ec49 | 2009-04-23 11:05:20 +0900 | [diff] [blame^] | 192 | printk(KERN_INFO " bio %p, biotail %p, buffer %p, len %u\n", |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 193 | rq->bio, rq->biotail, |
Tejun Heo | 731ec49 | 2009-04-23 11:05:20 +0900 | [diff] [blame^] | 194 | rq->buffer, rq->data_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 196 | if (blk_pc_request(rq)) { |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 197 | printk(KERN_INFO " cdb: "); |
FUJITA Tomonori | d34c87e | 2008-04-29 14:37:52 +0200 | [diff] [blame] | 198 | for (bit = 0; bit < BLK_MAX_CDB; bit++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | printk("%02x ", rq->cmd[bit]); |
| 200 | printk("\n"); |
| 201 | } |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | EXPORT_SYMBOL(blk_dump_rq_flags); |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /* |
| 206 | * "plug" the device if there are no outstanding requests: this will |
| 207 | * force the transfer to start only after we have put all the requests |
| 208 | * on the list. |
| 209 | * |
| 210 | * This is called with interrupts off and no requests on the queue and |
| 211 | * with the queue lock held. |
| 212 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 213 | void blk_plug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | WARN_ON(!irqs_disabled()); |
| 216 | |
| 217 | /* |
| 218 | * don't plug a stopped queue, it must be paired with blk_start_queue() |
| 219 | * which will restart the queueing |
| 220 | */ |
Coywolf Qi Hunt | 7daac49 | 2006-04-19 10:14:49 +0200 | [diff] [blame] | 221 | if (blk_queue_stopped(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return; |
| 223 | |
Jens Axboe | e48ec69 | 2008-07-03 13:18:54 +0200 | [diff] [blame] | 224 | if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | mod_timer(&q->unplug_timer, jiffies + q->unplug_delay); |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 226 | trace_block_plug(q); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 227 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | EXPORT_SYMBOL(blk_plug_device); |
| 230 | |
Jens Axboe | 6c5e0c4 | 2008-08-01 20:31:32 +0200 | [diff] [blame] | 231 | /** |
| 232 | * blk_plug_device_unlocked - plug a device without queue lock held |
| 233 | * @q: The &struct request_queue to plug |
| 234 | * |
| 235 | * Description: |
| 236 | * Like @blk_plug_device(), but grabs the queue lock and disables |
| 237 | * interrupts. |
| 238 | **/ |
| 239 | void blk_plug_device_unlocked(struct request_queue *q) |
| 240 | { |
| 241 | unsigned long flags; |
| 242 | |
| 243 | spin_lock_irqsave(q->queue_lock, flags); |
| 244 | blk_plug_device(q); |
| 245 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 246 | } |
| 247 | EXPORT_SYMBOL(blk_plug_device_unlocked); |
| 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | /* |
| 250 | * remove the queue from the plugged list, if present. called with |
| 251 | * queue lock held and interrupts disabled. |
| 252 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 253 | int blk_remove_plug(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
| 255 | WARN_ON(!irqs_disabled()); |
| 256 | |
Jens Axboe | e48ec69 | 2008-07-03 13:18:54 +0200 | [diff] [blame] | 257 | if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return 0; |
| 259 | |
| 260 | del_timer(&q->unplug_timer); |
| 261 | return 1; |
| 262 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | EXPORT_SYMBOL(blk_remove_plug); |
| 264 | |
| 265 | /* |
| 266 | * remove the plug and let it rip.. |
| 267 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 268 | void __generic_unplug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
Coywolf Qi Hunt | 7daac49 | 2006-04-19 10:14:49 +0200 | [diff] [blame] | 270 | if (unlikely(blk_queue_stopped(q))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | return; |
Jens Axboe | a31a973 | 2008-10-17 13:58:29 +0200 | [diff] [blame] | 272 | if (!blk_remove_plug(q) && !blk_queue_nonrot(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return; |
| 274 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 275 | q->request_fn(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | /** |
| 279 | * generic_unplug_device - fire a request queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 280 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | * |
| 282 | * Description: |
| 283 | * Linux uses plugging to build bigger requests queues before letting |
| 284 | * the device have at them. If a queue is plugged, the I/O scheduler |
| 285 | * is still adding and merging requests on the queue. Once the queue |
| 286 | * gets unplugged, the request_fn defined for the queue is invoked and |
| 287 | * transfers started. |
| 288 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 289 | void generic_unplug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { |
Jens Axboe | dbaf2c0 | 2008-05-07 09:48:17 +0200 | [diff] [blame] | 291 | if (blk_queue_plugged(q)) { |
| 292 | spin_lock_irq(q->queue_lock); |
| 293 | __generic_unplug_device(q); |
| 294 | spin_unlock_irq(q->queue_lock); |
| 295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
| 297 | EXPORT_SYMBOL(generic_unplug_device); |
| 298 | |
| 299 | static void blk_backing_dev_unplug(struct backing_dev_info *bdi, |
| 300 | struct page *page) |
| 301 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 302 | struct request_queue *q = bdi->unplug_io_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Alan D. Brunelle | 2ad8b1e | 2007-11-07 14:26:56 -0500 | [diff] [blame] | 304 | blk_unplug(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 307 | void blk_unplug_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 309 | struct request_queue *q = |
| 310 | container_of(work, struct request_queue, unplug_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 312 | trace_block_unplug_io(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | q->unplug_fn(q); |
| 314 | } |
| 315 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 316 | void blk_unplug_timeout(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 318 | struct request_queue *q = (struct request_queue *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 320 | trace_block_unplug_timer(q); |
Jens Axboe | 18887ad | 2008-07-28 13:08:45 +0200 | [diff] [blame] | 321 | kblockd_schedule_work(q, &q->unplug_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Alan D. Brunelle | 2ad8b1e | 2007-11-07 14:26:56 -0500 | [diff] [blame] | 324 | void blk_unplug(struct request_queue *q) |
| 325 | { |
| 326 | /* |
| 327 | * devices don't necessarily have an ->unplug_fn defined |
| 328 | */ |
| 329 | if (q->unplug_fn) { |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 330 | trace_block_unplug_io(q); |
Alan D. Brunelle | 2ad8b1e | 2007-11-07 14:26:56 -0500 | [diff] [blame] | 331 | q->unplug_fn(q); |
| 332 | } |
| 333 | } |
| 334 | EXPORT_SYMBOL(blk_unplug); |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | /** |
| 337 | * blk_start_queue - restart a previously stopped queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 338 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | * |
| 340 | * Description: |
| 341 | * blk_start_queue() will clear the stop flag on the queue, and call |
| 342 | * the request_fn for the queue if it was in a stopped state when |
| 343 | * entered. Also see blk_stop_queue(). Queue lock must be held. |
| 344 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 345 | void blk_start_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { |
Paolo 'Blaisorblade' Giarrusso | a038e25 | 2006-06-05 12:09:01 +0200 | [diff] [blame] | 347 | WARN_ON(!irqs_disabled()); |
| 348 | |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 349 | queue_flag_clear(QUEUE_FLAG_STOPPED, q); |
Tejun Heo | a538cd0 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 350 | __blk_run_queue(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | EXPORT_SYMBOL(blk_start_queue); |
| 353 | |
| 354 | /** |
| 355 | * blk_stop_queue - stop a queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 356 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | * |
| 358 | * Description: |
| 359 | * The Linux block layer assumes that a block driver will consume all |
| 360 | * entries on the request queue when the request_fn strategy is called. |
| 361 | * Often this will not happen, because of hardware limitations (queue |
| 362 | * depth settings). If a device driver gets a 'queue full' response, |
| 363 | * or if it simply chooses not to queue more I/O at one point, it can |
| 364 | * call this function to prevent the request_fn from being called until |
| 365 | * the driver has signalled it's ready to go again. This happens by calling |
| 366 | * blk_start_queue() to restart queue operations. Queue lock must be held. |
| 367 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 368 | void blk_stop_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
| 370 | blk_remove_plug(q); |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 371 | queue_flag_set(QUEUE_FLAG_STOPPED, q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
| 373 | EXPORT_SYMBOL(blk_stop_queue); |
| 374 | |
| 375 | /** |
| 376 | * blk_sync_queue - cancel any pending callbacks on a queue |
| 377 | * @q: the queue |
| 378 | * |
| 379 | * Description: |
| 380 | * The block layer may perform asynchronous callback activity |
| 381 | * on a queue, such as calling the unplug function after a timeout. |
| 382 | * A block device may call blk_sync_queue to ensure that any |
| 383 | * such activity is cancelled, thus allowing it to release resources |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 384 | * that the callbacks might use. The caller must already have made sure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | * that its ->make_request_fn will not re-add plugging prior to calling |
| 386 | * this function. |
| 387 | * |
| 388 | */ |
| 389 | void blk_sync_queue(struct request_queue *q) |
| 390 | { |
| 391 | del_timer_sync(&q->unplug_timer); |
Jens Axboe | 70ed28b | 2008-11-19 14:38:39 +0100 | [diff] [blame] | 392 | del_timer_sync(&q->timeout); |
Cheng Renquan | 64d01dc | 2008-12-03 12:41:39 +0100 | [diff] [blame] | 393 | cancel_work_sync(&q->unplug_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | EXPORT_SYMBOL(blk_sync_queue); |
| 396 | |
| 397 | /** |
Jens Axboe | 80a4b58 | 2008-10-14 09:51:06 +0200 | [diff] [blame] | 398 | * __blk_run_queue - run a single device queue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | * @q: The queue to run |
Jens Axboe | 80a4b58 | 2008-10-14 09:51:06 +0200 | [diff] [blame] | 400 | * |
| 401 | * Description: |
| 402 | * See @blk_run_queue. This variant must be called with the queue lock |
| 403 | * held and interrupts disabled. |
| 404 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | */ |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 406 | void __blk_run_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | blk_remove_plug(q); |
Jens Axboe | dac07ec | 2006-05-11 08:20:16 +0200 | [diff] [blame] | 409 | |
Tejun Heo | a538cd0 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 410 | if (unlikely(blk_queue_stopped(q))) |
| 411 | return; |
| 412 | |
| 413 | if (elv_queue_empty(q)) |
| 414 | return; |
| 415 | |
Jens Axboe | dac07ec | 2006-05-11 08:20:16 +0200 | [diff] [blame] | 416 | /* |
| 417 | * Only recurse once to avoid overrunning the stack, let the unplug |
| 418 | * handling reinvoke the handler shortly if we already got there. |
| 419 | */ |
Tejun Heo | a538cd0 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 420 | if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) { |
| 421 | q->request_fn(q); |
| 422 | queue_flag_clear(QUEUE_FLAG_REENTER, q); |
| 423 | } else { |
| 424 | queue_flag_set(QUEUE_FLAG_PLUGGED, q); |
| 425 | kblockd_schedule_work(q, &q->unplug_work); |
| 426 | } |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 427 | } |
| 428 | EXPORT_SYMBOL(__blk_run_queue); |
Jens Axboe | dac07ec | 2006-05-11 08:20:16 +0200 | [diff] [blame] | 429 | |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 430 | /** |
| 431 | * blk_run_queue - run a single device queue |
| 432 | * @q: The queue to run |
Jens Axboe | 80a4b58 | 2008-10-14 09:51:06 +0200 | [diff] [blame] | 433 | * |
| 434 | * Description: |
| 435 | * Invoke request handling on this queue, if it has pending work to do. |
Tejun Heo | a7f5579 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 436 | * May be used to restart queueing when a request has completed. |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 437 | */ |
| 438 | void blk_run_queue(struct request_queue *q) |
| 439 | { |
| 440 | unsigned long flags; |
| 441 | |
| 442 | spin_lock_irqsave(q->queue_lock, flags); |
| 443 | __blk_run_queue(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 445 | } |
| 446 | EXPORT_SYMBOL(blk_run_queue); |
| 447 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 448 | void blk_put_queue(struct request_queue *q) |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 449 | { |
| 450 | kobject_put(&q->kobj); |
| 451 | } |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 452 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 453 | void blk_cleanup_queue(struct request_queue *q) |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 454 | { |
Jens Axboe | e3335de | 2008-09-18 09:22:54 -0700 | [diff] [blame] | 455 | /* |
| 456 | * We know we have process context here, so we can be a little |
| 457 | * cautious and ensure that pending block actions on this device |
| 458 | * are done before moving on. Going into this function, we should |
| 459 | * not have processes doing IO to this device. |
| 460 | */ |
| 461 | blk_sync_queue(q); |
| 462 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 463 | mutex_lock(&q->sysfs_lock); |
Nick Piggin | 75ad23b | 2008-04-29 14:48:33 +0200 | [diff] [blame] | 464 | queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q); |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 465 | mutex_unlock(&q->sysfs_lock); |
| 466 | |
| 467 | if (q->elevator) |
| 468 | elevator_exit(q->elevator); |
| 469 | |
| 470 | blk_put_queue(q); |
| 471 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | EXPORT_SYMBOL(blk_cleanup_queue); |
| 473 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 474 | static int blk_init_free_list(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | { |
| 476 | struct request_list *rl = &q->rq; |
| 477 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 478 | rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0; |
| 479 | rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 480 | rl->elvpriv = 0; |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 481 | init_waitqueue_head(&rl->wait[BLK_RW_SYNC]); |
| 482 | init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 484 | rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab, |
| 485 | mempool_free_slab, request_cachep, q->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | if (!rl->rq_pool) |
| 488 | return -ENOMEM; |
| 489 | |
| 490 | return 0; |
| 491 | } |
| 492 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 493 | struct request_queue *blk_alloc_queue(gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | { |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 495 | return blk_alloc_queue_node(gfp_mask, -1); |
| 496 | } |
| 497 | EXPORT_SYMBOL(blk_alloc_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 499 | struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id) |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 500 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 501 | struct request_queue *q; |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 502 | int err; |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 503 | |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 504 | q = kmem_cache_alloc_node(blk_requestq_cachep, |
Christoph Lameter | 94f6030 | 2007-07-17 04:03:29 -0700 | [diff] [blame] | 505 | gfp_mask | __GFP_ZERO, node_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (!q) |
| 507 | return NULL; |
| 508 | |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 509 | q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug; |
| 510 | q->backing_dev_info.unplug_io_data = q; |
| 511 | err = bdi_init(&q->backing_dev_info); |
| 512 | if (err) { |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 513 | kmem_cache_free(blk_requestq_cachep, q); |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 514 | return NULL; |
| 515 | } |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | init_timer(&q->unplug_timer); |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 518 | setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q); |
| 519 | INIT_LIST_HEAD(&q->timeout_list); |
Peter Zijlstra | 713ada9 | 2008-10-16 13:44:57 +0200 | [diff] [blame] | 520 | INIT_WORK(&q->unplug_work, blk_unplug_work); |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 521 | |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 522 | kobject_init(&q->kobj, &blk_queue_ktype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 524 | mutex_init(&q->sysfs_lock); |
Neil Brown | e7e72bf | 2008-05-14 16:05:54 -0700 | [diff] [blame] | 525 | spin_lock_init(&q->__queue_lock); |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | return q; |
| 528 | } |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 529 | EXPORT_SYMBOL(blk_alloc_queue_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | /** |
| 532 | * blk_init_queue - prepare a request queue for use with a block device |
| 533 | * @rfn: The function to be called to process requests that have been |
| 534 | * placed on the queue. |
| 535 | * @lock: Request queue spin lock |
| 536 | * |
| 537 | * Description: |
| 538 | * If a block device wishes to use the standard request handling procedures, |
| 539 | * which sorts requests and coalesces adjacent requests, then it must |
| 540 | * call blk_init_queue(). The function @rfn will be called when there |
| 541 | * are requests on the queue that need to be processed. If the device |
| 542 | * supports plugging, then @rfn may not be called immediately when requests |
| 543 | * are available on the queue, but may be called at some time later instead. |
| 544 | * Plugged queues are generally unplugged when a buffer belonging to one |
| 545 | * of the requests on the queue is needed, or due to memory pressure. |
| 546 | * |
| 547 | * @rfn is not required, or even expected, to remove all requests off the |
| 548 | * queue, but only as many as it can handle at a time. If it does leave |
| 549 | * requests on the queue, it is responsible for arranging that the requests |
| 550 | * get dealt with eventually. |
| 551 | * |
| 552 | * The queue spin lock must be held while manipulating the requests on the |
Paolo 'Blaisorblade' Giarrusso | a038e25 | 2006-06-05 12:09:01 +0200 | [diff] [blame] | 553 | * request queue; this lock will be taken also from interrupt context, so irq |
| 554 | * disabling is needed for it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | * |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 556 | * Function returns a pointer to the initialized request queue, or %NULL if |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | * it didn't succeed. |
| 558 | * |
| 559 | * Note: |
| 560 | * blk_init_queue() must be paired with a blk_cleanup_queue() call |
| 561 | * when the block device is deactivated (such as at module unload). |
| 562 | **/ |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 563 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 564 | struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | { |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 566 | return blk_init_queue_node(rfn, lock, -1); |
| 567 | } |
| 568 | EXPORT_SYMBOL(blk_init_queue); |
| 569 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 570 | struct request_queue * |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 571 | blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) |
| 572 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 573 | struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
| 575 | if (!q) |
| 576 | return NULL; |
| 577 | |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 578 | q->node = node_id; |
Al Viro | 8669aaf | 2006-03-18 13:50:00 -0500 | [diff] [blame] | 579 | if (blk_init_free_list(q)) { |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 580 | kmem_cache_free(blk_requestq_cachep, q); |
Al Viro | 8669aaf | 2006-03-18 13:50:00 -0500 | [diff] [blame] | 581 | return NULL; |
| 582 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
| 152587d | 2005-04-12 16:22:06 -0500 | [diff] [blame] | 584 | /* |
| 585 | * if caller didn't supply a lock, they get per-queue locking with |
| 586 | * our embedded lock |
| 587 | */ |
Neil Brown | e7e72bf | 2008-05-14 16:05:54 -0700 | [diff] [blame] | 588 | if (!lock) |
| 152587d | 2005-04-12 16:22:06 -0500 | [diff] [blame] | 589 | lock = &q->__queue_lock; |
| 152587d | 2005-04-12 16:22:06 -0500 | [diff] [blame] | 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | q->request_fn = rfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | q->prep_rq_fn = NULL; |
| 593 | q->unplug_fn = generic_unplug_device; |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 594 | q->queue_flags = QUEUE_FLAG_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | q->queue_lock = lock; |
| 596 | |
Jens Axboe | f3b144a | 2009-03-06 08:48:33 +0100 | [diff] [blame] | 597 | /* |
| 598 | * This also sets hw/phys segments, boundary and size |
| 599 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | blk_queue_make_request(q, __make_request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Alan Stern | 44ec954 | 2007-02-20 11:01:57 -0500 | [diff] [blame] | 602 | q->sg_reserved_size = INT_MAX; |
| 603 | |
FUJITA Tomonori | abf5439 | 2008-08-16 14:10:05 +0900 | [diff] [blame] | 604 | blk_set_cmd_filter_defaults(&q->cmd_filter); |
| 605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | /* |
| 607 | * all done |
| 608 | */ |
| 609 | if (!elevator_init(q, NULL)) { |
| 610 | blk_queue_congestion_threshold(q); |
| 611 | return q; |
| 612 | } |
| 613 | |
Al Viro | 8669aaf | 2006-03-18 13:50:00 -0500 | [diff] [blame] | 614 | blk_put_queue(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | return NULL; |
| 616 | } |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 617 | EXPORT_SYMBOL(blk_init_queue_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 619 | int blk_get_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | { |
Nick Piggin | fde6ad2 | 2005-06-23 00:08:53 -0700 | [diff] [blame] | 621 | if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) { |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 622 | kobject_get(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | return 1; |
| 627 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 629 | static inline void blk_free_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 631 | if (rq->cmd_flags & REQ_ELVPRIV) |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 632 | elv_put_request(q, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | mempool_free(rq, q->rq.rq_pool); |
| 634 | } |
| 635 | |
Jens Axboe | 1ea25ecb | 2006-07-18 22:24:11 +0200 | [diff] [blame] | 636 | static struct request * |
Jerome Marchand | 42dad76 | 2009-04-22 14:01:49 +0200 | [diff] [blame] | 637 | blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
| 639 | struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask); |
| 640 | |
| 641 | if (!rq) |
| 642 | return NULL; |
| 643 | |
FUJITA Tomonori | 2a4aa30 | 2008-04-29 09:54:36 +0200 | [diff] [blame] | 644 | blk_rq_init(q, rq); |
FUJITA Tomonori | 1afb20f | 2008-04-25 12:26:28 +0200 | [diff] [blame] | 645 | |
Jerome Marchand | 42dad76 | 2009-04-22 14:01:49 +0200 | [diff] [blame] | 646 | rq->cmd_flags = flags | REQ_ALLOCED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 648 | if (priv) { |
Jens Axboe | cb78b28 | 2006-07-28 09:32:57 +0200 | [diff] [blame] | 649 | if (unlikely(elv_set_request(q, rq, gfp_mask))) { |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 650 | mempool_free(rq, q->rq.rq_pool); |
| 651 | return NULL; |
| 652 | } |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 653 | rq->cmd_flags |= REQ_ELVPRIV; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 654 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 656 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | /* |
| 660 | * ioc_batching returns true if the ioc is a valid batching request and |
| 661 | * should be given priority access to a request. |
| 662 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 663 | static inline int ioc_batching(struct request_queue *q, struct io_context *ioc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
| 665 | if (!ioc) |
| 666 | return 0; |
| 667 | |
| 668 | /* |
| 669 | * Make sure the process is able to allocate at least 1 request |
| 670 | * even if the batch times out, otherwise we could theoretically |
| 671 | * lose wakeups. |
| 672 | */ |
| 673 | return ioc->nr_batch_requests == q->nr_batching || |
| 674 | (ioc->nr_batch_requests > 0 |
| 675 | && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME)); |
| 676 | } |
| 677 | |
| 678 | /* |
| 679 | * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This |
| 680 | * will cause the process to be a "batcher" on all queues in the system. This |
| 681 | * is the behaviour we want though - once it gets a wakeup it should be given |
| 682 | * a nice run. |
| 683 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 684 | static void ioc_set_batching(struct request_queue *q, struct io_context *ioc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
| 686 | if (!ioc || ioc_batching(q, ioc)) |
| 687 | return; |
| 688 | |
| 689 | ioc->nr_batch_requests = q->nr_batching; |
| 690 | ioc->last_waited = jiffies; |
| 691 | } |
| 692 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 693 | static void __freed_request(struct request_queue *q, int sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { |
| 695 | struct request_list *rl = &q->rq; |
| 696 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 697 | if (rl->count[sync] < queue_congestion_off_threshold(q)) |
| 698 | blk_clear_queue_congested(q, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 700 | if (rl->count[sync] + 1 <= q->nr_requests) { |
| 701 | if (waitqueue_active(&rl->wait[sync])) |
| 702 | wake_up(&rl->wait[sync]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 704 | blk_clear_queue_full(q, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | } |
| 707 | |
| 708 | /* |
| 709 | * A request has just been released. Account for it, update the full and |
| 710 | * congestion status, wake up any waiters. Called under q->queue_lock. |
| 711 | */ |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 712 | static void freed_request(struct request_queue *q, int sync, int priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
| 714 | struct request_list *rl = &q->rq; |
| 715 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 716 | rl->count[sync]--; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 717 | if (priv) |
| 718 | rl->elvpriv--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 720 | __freed_request(q, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 722 | if (unlikely(rl->starved[sync ^ 1])) |
| 723 | __freed_request(q, sync ^ 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | /* |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 727 | * Get a free request, queue_lock must be held. |
| 728 | * Returns NULL on failure, with queue_lock held. |
| 729 | * Returns !NULL on success, with queue_lock *not held*. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 731 | static struct request *get_request(struct request_queue *q, int rw_flags, |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 732 | struct bio *bio, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
| 734 | struct request *rq = NULL; |
| 735 | struct request_list *rl = &q->rq; |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 736 | struct io_context *ioc = NULL; |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 737 | const bool is_sync = rw_is_sync(rw_flags) != 0; |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 738 | int may_queue, priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 740 | may_queue = elv_may_queue(q, rw_flags); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 741 | if (may_queue == ELV_MQUEUE_NO) |
| 742 | goto rq_starved; |
| 743 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 744 | if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) { |
| 745 | if (rl->count[is_sync]+1 >= q->nr_requests) { |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 746 | ioc = current_io_context(GFP_ATOMIC, q->node); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 747 | /* |
| 748 | * The queue will fill after this allocation, so set |
| 749 | * it as full, and mark this process as "batching". |
| 750 | * This process will be allowed to complete a batch of |
| 751 | * requests, others will be blocked. |
| 752 | */ |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 753 | if (!blk_queue_full(q, is_sync)) { |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 754 | ioc_set_batching(q, ioc); |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 755 | blk_set_queue_full(q, is_sync); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 756 | } else { |
| 757 | if (may_queue != ELV_MQUEUE_MUST |
| 758 | && !ioc_batching(q, ioc)) { |
| 759 | /* |
| 760 | * The queue is full and the allocating |
| 761 | * process is not a "batcher", and not |
| 762 | * exempted by the IO scheduler |
| 763 | */ |
| 764 | goto out; |
| 765 | } |
| 766 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 768 | blk_set_queue_congested(q, is_sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } |
| 770 | |
Jens Axboe | 082cf69 | 2005-06-28 16:35:11 +0200 | [diff] [blame] | 771 | /* |
| 772 | * Only allow batching queuers to allocate up to 50% over the defined |
| 773 | * limit of requests, otherwise we could have thousands of requests |
| 774 | * allocated with any setting of ->nr_requests |
| 775 | */ |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 776 | if (rl->count[is_sync] >= (3 * q->nr_requests / 2)) |
Jens Axboe | 082cf69 | 2005-06-28 16:35:11 +0200 | [diff] [blame] | 777 | goto out; |
Hugh Dickins | fd782a4 | 2005-06-29 15:15:40 +0100 | [diff] [blame] | 778 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 779 | rl->count[is_sync]++; |
| 780 | rl->starved[is_sync] = 0; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 781 | |
Jens Axboe | 64521d1 | 2005-10-28 08:30:39 +0200 | [diff] [blame] | 782 | priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags); |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 783 | if (priv) |
| 784 | rl->elvpriv++; |
| 785 | |
Jerome Marchand | 42dad76 | 2009-04-22 14:01:49 +0200 | [diff] [blame] | 786 | if (blk_queue_io_stat(q)) |
| 787 | rw_flags |= REQ_IO_STAT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | spin_unlock_irq(q->queue_lock); |
| 789 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 790 | rq = blk_alloc_request(q, rw_flags, priv, gfp_mask); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 791 | if (unlikely(!rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | /* |
| 793 | * Allocation failed presumably due to memory. Undo anything |
| 794 | * we might have messed up. |
| 795 | * |
| 796 | * Allocating task should really be put onto the front of the |
| 797 | * wait queue, but this is pretty rare. |
| 798 | */ |
| 799 | spin_lock_irq(q->queue_lock); |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 800 | freed_request(q, is_sync, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | /* |
| 803 | * in the very unlikely event that allocation failed and no |
| 804 | * requests for this direction was pending, mark us starved |
| 805 | * so that freeing of a request in the other direction will |
| 806 | * notice us. another possible fix would be to split the |
| 807 | * rq mempool into READ and WRITE |
| 808 | */ |
| 809 | rq_starved: |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 810 | if (unlikely(rl->count[is_sync] == 0)) |
| 811 | rl->starved[is_sync] = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | goto out; |
| 814 | } |
| 815 | |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 816 | /* |
| 817 | * ioc may be NULL here, and ioc_batching will be false. That's |
| 818 | * OK, if the queue is under the request limit then requests need |
| 819 | * not count toward the nr_batch_requests limit. There will always |
| 820 | * be some limit enforced by BLK_BATCH_TIME. |
| 821 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | if (ioc_batching(q, ioc)) |
| 823 | ioc->nr_batch_requests--; |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 824 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 825 | trace_block_getrq(q, bio, rw_flags & 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | return rq; |
| 828 | } |
| 829 | |
| 830 | /* |
| 831 | * No available requests for this queue, unplug the device and wait for some |
| 832 | * requests to become available. |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 833 | * |
| 834 | * Called with q->queue_lock held, and returns with it unlocked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 836 | static struct request *get_request_wait(struct request_queue *q, int rw_flags, |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 837 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | { |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 839 | const bool is_sync = rw_is_sync(rw_flags) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | struct request *rq; |
| 841 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 842 | rq = get_request(q, rw_flags, bio, GFP_NOIO); |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 843 | while (!rq) { |
| 844 | DEFINE_WAIT(wait); |
Zhang, Yanmin | 05caf8d | 2008-05-22 15:13:29 +0200 | [diff] [blame] | 845 | struct io_context *ioc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | struct request_list *rl = &q->rq; |
| 847 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 848 | prepare_to_wait_exclusive(&rl->wait[is_sync], &wait, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | TASK_UNINTERRUPTIBLE); |
| 850 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 851 | trace_block_sleeprq(q, bio, rw_flags & 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
Zhang, Yanmin | 05caf8d | 2008-05-22 15:13:29 +0200 | [diff] [blame] | 853 | __generic_unplug_device(q); |
| 854 | spin_unlock_irq(q->queue_lock); |
| 855 | io_schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
Zhang, Yanmin | 05caf8d | 2008-05-22 15:13:29 +0200 | [diff] [blame] | 857 | /* |
| 858 | * After sleeping, we become a "batching" process and |
| 859 | * will be able to allocate at least one request, and |
| 860 | * up to a big batch of them for a small period time. |
| 861 | * See ioc_batching, ioc_set_batching |
| 862 | */ |
| 863 | ioc = current_io_context(GFP_NOIO, q->node); |
| 864 | ioc_set_batching(q, ioc); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 865 | |
Zhang, Yanmin | 05caf8d | 2008-05-22 15:13:29 +0200 | [diff] [blame] | 866 | spin_lock_irq(q->queue_lock); |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 867 | finish_wait(&rl->wait[is_sync], &wait); |
Zhang, Yanmin | 05caf8d | 2008-05-22 15:13:29 +0200 | [diff] [blame] | 868 | |
| 869 | rq = get_request(q, rw_flags, bio, GFP_NOIO); |
| 870 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
| 872 | return rq; |
| 873 | } |
| 874 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 875 | struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | { |
| 877 | struct request *rq; |
| 878 | |
| 879 | BUG_ON(rw != READ && rw != WRITE); |
| 880 | |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 881 | spin_lock_irq(q->queue_lock); |
| 882 | if (gfp_mask & __GFP_WAIT) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 883 | rq = get_request_wait(q, rw, NULL); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 884 | } else { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 885 | rq = get_request(q, rw, NULL, gfp_mask); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 886 | if (!rq) |
| 887 | spin_unlock_irq(q->queue_lock); |
| 888 | } |
| 889 | /* q->queue_lock is unlocked at this point */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
| 891 | return rq; |
| 892 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | EXPORT_SYMBOL(blk_get_request); |
| 894 | |
| 895 | /** |
| 896 | * blk_requeue_request - put a request back on queue |
| 897 | * @q: request queue where request should be inserted |
| 898 | * @rq: request to be inserted |
| 899 | * |
| 900 | * Description: |
| 901 | * Drivers often keep queueing requests until the hardware cannot accept |
| 902 | * more, when that condition happens we need to put the request back |
| 903 | * on the queue. Must be called with queue lock held. |
| 904 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 905 | void blk_requeue_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 907 | blk_delete_timer(rq); |
| 908 | blk_clear_rq_complete(rq); |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 909 | trace_block_rq_requeue(q, rq); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | if (blk_rq_tagged(rq)) |
| 912 | blk_queue_end_tag(q, rq); |
| 913 | |
| 914 | elv_requeue_request(q, rq); |
| 915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | EXPORT_SYMBOL(blk_requeue_request); |
| 917 | |
| 918 | /** |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 919 | * blk_insert_request - insert a special request into a request queue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | * @q: request queue where request should be inserted |
| 921 | * @rq: request to be inserted |
| 922 | * @at_head: insert request at head or tail of queue |
| 923 | * @data: private data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | * |
| 925 | * Description: |
| 926 | * Many block devices need to execute commands asynchronously, so they don't |
| 927 | * block the whole kernel from preemption during request execution. This is |
| 928 | * accomplished normally by inserting aritficial requests tagged as |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 929 | * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them |
| 930 | * be scheduled for actual execution by the request queue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | * |
| 932 | * We have the option of inserting the head or the tail of the queue. |
| 933 | * Typically we use the tail for new ioctls and so forth. We use the head |
| 934 | * of the queue for things like a QUEUE_FULL message from a device, or a |
| 935 | * host that is unable to accept a particular command. |
| 936 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 937 | void blk_insert_request(struct request_queue *q, struct request *rq, |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 938 | int at_head, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | { |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 940 | int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | unsigned long flags; |
| 942 | |
| 943 | /* |
| 944 | * tell I/O scheduler that this isn't a regular read/write (ie it |
| 945 | * must not attempt merges on this) and that it acts as a soft |
| 946 | * barrier |
| 947 | */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 948 | rq->cmd_type = REQ_TYPE_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | |
| 950 | rq->special = data; |
| 951 | |
| 952 | spin_lock_irqsave(q->queue_lock, flags); |
| 953 | |
| 954 | /* |
| 955 | * If command is tagged, release the tag |
| 956 | */ |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 957 | if (blk_rq_tagged(rq)) |
| 958 | blk_queue_end_tag(q, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Jerome Marchand | b238b3d | 2007-10-23 15:05:46 +0200 | [diff] [blame] | 960 | drive_stat_acct(rq, 1); |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 961 | __elv_add_request(q, rq, where, 0); |
Tejun Heo | a7f5579 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 962 | __blk_run_queue(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 964 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | EXPORT_SYMBOL(blk_insert_request); |
| 966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | /* |
| 968 | * add-request adds a request to the linked list. |
| 969 | * queue lock is held and interrupts disabled, as we muck with the |
| 970 | * request queue list. |
| 971 | */ |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 972 | static inline void add_request(struct request_queue *q, struct request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | { |
Jerome Marchand | b238b3d | 2007-10-23 15:05:46 +0200 | [diff] [blame] | 974 | drive_stat_acct(req, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | /* |
| 977 | * elevator indicated where it wants this request to be |
| 978 | * inserted at elevator_merge time |
| 979 | */ |
| 980 | __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0); |
| 981 | } |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 982 | |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 983 | static void part_round_stats_single(int cpu, struct hd_struct *part, |
| 984 | unsigned long now) |
| 985 | { |
| 986 | if (now == part->stamp) |
| 987 | return; |
| 988 | |
| 989 | if (part->in_flight) { |
| 990 | __part_stat_add(cpu, part, time_in_queue, |
| 991 | part->in_flight * (now - part->stamp)); |
| 992 | __part_stat_add(cpu, part, io_ticks, (now - part->stamp)); |
| 993 | } |
| 994 | part->stamp = now; |
| 995 | } |
| 996 | |
| 997 | /** |
Randy Dunlap | 496aa8a | 2008-10-16 07:46:23 +0200 | [diff] [blame] | 998 | * part_round_stats() - Round off the performance stats on a struct disk_stats. |
| 999 | * @cpu: cpu number for stats access |
| 1000 | * @part: target partition |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | * |
| 1002 | * The average IO queue length and utilisation statistics are maintained |
| 1003 | * by observing the current state of the queue length and the amount of |
| 1004 | * time it has been in this state for. |
| 1005 | * |
| 1006 | * Normally, that accounting is done on IO completion, but that can result |
| 1007 | * in more than a second's worth of IO being accounted for within any one |
| 1008 | * second, leading to >100% utilisation. To deal with that, we call this |
| 1009 | * function to do a round-off before returning the results when reading |
| 1010 | * /proc/diskstats. This accounts immediately for all queue usage up to |
| 1011 | * the current jiffies and restarts the counters again. |
| 1012 | */ |
Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 1013 | void part_round_stats(int cpu, struct hd_struct *part) |
Jerome Marchand | 6f2576a | 2008-02-08 11:04:35 +0100 | [diff] [blame] | 1014 | { |
| 1015 | unsigned long now = jiffies; |
| 1016 | |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 1017 | if (part->partno) |
| 1018 | part_round_stats_single(cpu, &part_to_disk(part)->part0, now); |
| 1019 | part_round_stats_single(cpu, part, now); |
Jerome Marchand | 6f2576a | 2008-02-08 11:04:35 +0100 | [diff] [blame] | 1020 | } |
Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 1021 | EXPORT_SYMBOL_GPL(part_round_stats); |
Jerome Marchand | 6f2576a | 2008-02-08 11:04:35 +0100 | [diff] [blame] | 1022 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | /* |
| 1024 | * queue lock must be held |
| 1025 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1026 | void __blk_put_request(struct request_queue *q, struct request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | if (unlikely(!q)) |
| 1029 | return; |
| 1030 | if (unlikely(--req->ref_count)) |
| 1031 | return; |
| 1032 | |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 1033 | elv_completed_request(q, req); |
| 1034 | |
Boaz Harrosh | 1cd96c2 | 2009-03-24 12:35:07 +0100 | [diff] [blame] | 1035 | /* this is a bio leak */ |
| 1036 | WARN_ON(req->bio != NULL); |
| 1037 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | /* |
| 1039 | * Request may not have originated from ll_rw_blk. if not, |
| 1040 | * it didn't come out of our reserved rq pools |
| 1041 | */ |
Jens Axboe | 49171e5 | 2006-08-10 08:59:11 +0200 | [diff] [blame] | 1042 | if (req->cmd_flags & REQ_ALLOCED) { |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 1043 | int is_sync = rq_is_sync(req) != 0; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1044 | int priv = req->cmd_flags & REQ_ELVPRIV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | BUG_ON(!list_empty(&req->queuelist)); |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 1047 | BUG_ON(!hlist_unhashed(&req->hash)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
| 1049 | blk_free_request(q, req); |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 1050 | freed_request(q, is_sync, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } |
| 1052 | } |
Mike Christie | 6e39b69 | 2005-11-11 05:30:24 -0600 | [diff] [blame] | 1053 | EXPORT_SYMBOL_GPL(__blk_put_request); |
| 1054 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | void blk_put_request(struct request *req) |
| 1056 | { |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 1057 | unsigned long flags; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1058 | struct request_queue *q = req->q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | |
FUJITA Tomonori | 52a93ba | 2008-07-15 21:21:45 +0200 | [diff] [blame] | 1060 | spin_lock_irqsave(q->queue_lock, flags); |
| 1061 | __blk_put_request(q, req); |
| 1062 | spin_unlock_irqrestore(q->queue_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | EXPORT_SYMBOL(blk_put_request); |
| 1065 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 1066 | void init_request_from_bio(struct request *req, struct bio *bio) |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1067 | { |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 1068 | req->cpu = bio->bi_comp_cpu; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1069 | req->cmd_type = REQ_TYPE_FS; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1070 | |
| 1071 | /* |
| 1072 | * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST) |
| 1073 | */ |
Mike Christie | 6000a36 | 2008-08-19 18:45:30 -0500 | [diff] [blame] | 1074 | if (bio_rw_ahead(bio)) |
| 1075 | req->cmd_flags |= (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | |
| 1076 | REQ_FAILFAST_DRIVER); |
| 1077 | if (bio_failfast_dev(bio)) |
| 1078 | req->cmd_flags |= REQ_FAILFAST_DEV; |
| 1079 | if (bio_failfast_transport(bio)) |
| 1080 | req->cmd_flags |= REQ_FAILFAST_TRANSPORT; |
| 1081 | if (bio_failfast_driver(bio)) |
| 1082 | req->cmd_flags |= REQ_FAILFAST_DRIVER; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1083 | |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 1084 | if (unlikely(bio_discard(bio))) { |
David Woodhouse | e17fc0a | 2008-08-09 16:42:20 +0100 | [diff] [blame] | 1085 | req->cmd_flags |= REQ_DISCARD; |
| 1086 | if (bio_barrier(bio)) |
| 1087 | req->cmd_flags |= REQ_SOFTBARRIER; |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 1088 | req->q->prepare_discard_fn(req->q, req); |
David Woodhouse | e17fc0a | 2008-08-09 16:42:20 +0100 | [diff] [blame] | 1089 | } else if (unlikely(bio_barrier(bio))) |
Tejun Heo | e4025f6 | 2009-04-23 11:05:17 +0900 | [diff] [blame] | 1090 | req->cmd_flags |= REQ_HARDBARRIER; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1091 | |
Jens Axboe | b31dc66 | 2006-06-13 08:26:10 +0200 | [diff] [blame] | 1092 | if (bio_sync(bio)) |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1093 | req->cmd_flags |= REQ_RW_SYNC; |
Jens Axboe | 5404bc7 | 2006-08-10 09:01:02 +0200 | [diff] [blame] | 1094 | if (bio_rw_meta(bio)) |
| 1095 | req->cmd_flags |= REQ_RW_META; |
Jens Axboe | aeb6faf | 2009-04-06 14:48:07 +0200 | [diff] [blame] | 1096 | if (bio_noidle(bio)) |
| 1097 | req->cmd_flags |= REQ_NOIDLE; |
Jens Axboe | b31dc66 | 2006-06-13 08:26:10 +0200 | [diff] [blame] | 1098 | |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1099 | req->errors = 0; |
| 1100 | req->hard_sector = req->sector = bio->bi_sector; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1101 | req->ioprio = bio_prio(bio); |
NeilBrown | bc1c56f | 2007-08-16 13:31:30 +0200 | [diff] [blame] | 1102 | blk_rq_bio_prep(req->q, req, bio); |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1103 | } |
| 1104 | |
Jens Axboe | 644b2d9 | 2009-04-06 14:48:06 +0200 | [diff] [blame] | 1105 | /* |
| 1106 | * Only disabling plugging for non-rotational devices if it does tagging |
| 1107 | * as well, otherwise we do need the proper merging |
| 1108 | */ |
| 1109 | static inline bool queue_should_plug(struct request_queue *q) |
| 1110 | { |
| 1111 | return !(blk_queue_nonrot(q) && blk_queue_tagged(q)); |
| 1112 | } |
| 1113 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1114 | static int __make_request(struct request_queue *q, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | { |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1116 | struct request *req; |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1117 | int el_ret, nr_sectors; |
Jens Axboe | 51da90f | 2006-07-18 04:14:45 +0200 | [diff] [blame] | 1118 | const unsigned short prio = bio_prio(bio); |
| 1119 | const int sync = bio_sync(bio); |
Jens Axboe | 213d941 | 2009-01-06 09:16:05 +0100 | [diff] [blame] | 1120 | const int unplug = bio_unplug(bio); |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1121 | int rw_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | nr_sectors = bio_sectors(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
| 1125 | /* |
| 1126 | * low level driver can indicate that it wants pages above a |
| 1127 | * certain limit bounced to low memory (ie for highmem, or even |
| 1128 | * ISA dma in theory) |
| 1129 | */ |
| 1130 | blk_queue_bounce(q, &bio); |
| 1131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | spin_lock_irq(q->queue_lock); |
| 1133 | |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1134 | if (unlikely(bio_barrier(bio)) || elv_queue_empty(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | goto get_rq; |
| 1136 | |
| 1137 | el_ret = elv_merge(q, &req, bio); |
| 1138 | switch (el_ret) { |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1139 | case ELEVATOR_BACK_MERGE: |
| 1140 | BUG_ON(!rq_mergeable(req)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1142 | if (!ll_back_merge_fn(q, req, bio)) |
| 1143 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1145 | trace_block_bio_backmerge(q, bio); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1146 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1147 | req->biotail->bi_next = bio; |
| 1148 | req->biotail = bio; |
| 1149 | req->nr_sectors = req->hard_nr_sectors += nr_sectors; |
| 1150 | req->ioprio = ioprio_best(req->ioprio, prio); |
Jens Axboe | ab780f1 | 2008-08-26 10:25:02 +0200 | [diff] [blame] | 1151 | if (!blk_rq_cpu_valid(req)) |
| 1152 | req->cpu = bio->bi_comp_cpu; |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1153 | drive_stat_acct(req, 0); |
| 1154 | if (!attempt_back_merge(q, req)) |
| 1155 | elv_merged_request(q, req, el_ret); |
| 1156 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1158 | case ELEVATOR_FRONT_MERGE: |
| 1159 | BUG_ON(!rq_mergeable(req)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1161 | if (!ll_front_merge_fn(q, req, bio)) |
| 1162 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1164 | trace_block_bio_frontmerge(q, bio); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1165 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1166 | bio->bi_next = req->bio; |
| 1167 | req->bio = bio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1169 | /* |
| 1170 | * may not be valid. if the low level driver said |
| 1171 | * it didn't need a bounce buffer then it better |
| 1172 | * not touch req->buffer either... |
| 1173 | */ |
| 1174 | req->buffer = bio_data(bio); |
| 1175 | req->current_nr_sectors = bio_cur_sectors(bio); |
| 1176 | req->hard_cur_sectors = req->current_nr_sectors; |
| 1177 | req->sector = req->hard_sector = bio->bi_sector; |
| 1178 | req->nr_sectors = req->hard_nr_sectors += nr_sectors; |
| 1179 | req->ioprio = ioprio_best(req->ioprio, prio); |
Jens Axboe | ab780f1 | 2008-08-26 10:25:02 +0200 | [diff] [blame] | 1180 | if (!blk_rq_cpu_valid(req)) |
| 1181 | req->cpu = bio->bi_comp_cpu; |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1182 | drive_stat_acct(req, 0); |
| 1183 | if (!attempt_front_merge(q, req)) |
| 1184 | elv_merged_request(q, req, el_ret); |
| 1185 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1187 | /* ELV_NO_MERGE: elevator says don't/can't merge. */ |
| 1188 | default: |
| 1189 | ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | } |
| 1191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | get_rq: |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1193 | /* |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1194 | * This sync check and mask will be re-done in init_request_from_bio(), |
| 1195 | * but we need to set it earlier to expose the sync flag to the |
| 1196 | * rq allocator and io schedulers. |
| 1197 | */ |
| 1198 | rw_flags = bio_data_dir(bio); |
| 1199 | if (sync) |
| 1200 | rw_flags |= REQ_RW_SYNC; |
| 1201 | |
| 1202 | /* |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1203 | * Grab a free request. This is might sleep but can not fail. |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 1204 | * Returns with the queue unlocked. |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1205 | */ |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 1206 | req = get_request_wait(q, rw_flags, bio); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 1207 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1208 | /* |
| 1209 | * After dropping the lock and possibly sleeping here, our request |
| 1210 | * may now be mergeable after it had proven unmergeable (above). |
| 1211 | * We don't worry about that case for efficiency. It won't happen |
| 1212 | * often, and the elevators are able to handle it. |
| 1213 | */ |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 1214 | init_request_from_bio(req, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1216 | spin_lock_irq(q->queue_lock); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 1217 | if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) || |
| 1218 | bio_flagged(bio, BIO_CPU_AFFINE)) |
| 1219 | req->cpu = blk_cpu_to_group(smp_processor_id()); |
Jens Axboe | 644b2d9 | 2009-04-06 14:48:06 +0200 | [diff] [blame] | 1220 | if (queue_should_plug(q) && elv_queue_empty(q)) |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 1221 | blk_plug_device(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | add_request(q, req); |
| 1223 | out: |
Jens Axboe | 644b2d9 | 2009-04-06 14:48:06 +0200 | [diff] [blame] | 1224 | if (unplug || !queue_should_plug(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | __generic_unplug_device(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | spin_unlock_irq(q->queue_lock); |
| 1227 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | } |
| 1229 | |
| 1230 | /* |
| 1231 | * If bio->bi_dev is a partition, remap the location |
| 1232 | */ |
| 1233 | static inline void blk_partition_remap(struct bio *bio) |
| 1234 | { |
| 1235 | struct block_device *bdev = bio->bi_bdev; |
| 1236 | |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 1237 | if (bio_sectors(bio) && bdev != bdev->bd_contains) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | struct hd_struct *p = bdev->bd_part; |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 1239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | bio->bi_sector += p->start_sect; |
| 1241 | bio->bi_bdev = bdev->bd_contains; |
Alan D. Brunelle | c7149d6 | 2007-08-07 15:30:23 +0200 | [diff] [blame] | 1242 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1243 | trace_block_remap(bdev_get_queue(bio->bi_bdev), bio, |
Alan D. Brunelle | c7149d6 | 2007-08-07 15:30:23 +0200 | [diff] [blame] | 1244 | bdev->bd_dev, bio->bi_sector, |
| 1245 | bio->bi_sector - p->start_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | } |
| 1247 | } |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | static void handle_bad_sector(struct bio *bio) |
| 1250 | { |
| 1251 | char b[BDEVNAME_SIZE]; |
| 1252 | |
| 1253 | printk(KERN_INFO "attempt to access beyond end of device\n"); |
| 1254 | printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n", |
| 1255 | bdevname(bio->bi_bdev, b), |
| 1256 | bio->bi_rw, |
| 1257 | (unsigned long long)bio->bi_sector + bio_sectors(bio), |
| 1258 | (long long)(bio->bi_bdev->bd_inode->i_size >> 9)); |
| 1259 | |
| 1260 | set_bit(BIO_EOF, &bio->bi_flags); |
| 1261 | } |
| 1262 | |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 1263 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 1264 | |
| 1265 | static DECLARE_FAULT_ATTR(fail_make_request); |
| 1266 | |
| 1267 | static int __init setup_fail_make_request(char *str) |
| 1268 | { |
| 1269 | return setup_fault_attr(&fail_make_request, str); |
| 1270 | } |
| 1271 | __setup("fail_make_request=", setup_fail_make_request); |
| 1272 | |
| 1273 | static int should_fail_request(struct bio *bio) |
| 1274 | { |
Tejun Heo | eddb2e2 | 2008-08-25 19:56:13 +0900 | [diff] [blame] | 1275 | struct hd_struct *part = bio->bi_bdev->bd_part; |
| 1276 | |
| 1277 | if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail) |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 1278 | return should_fail(&fail_make_request, bio->bi_size); |
| 1279 | |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
| 1283 | static int __init fail_make_request_debugfs(void) |
| 1284 | { |
| 1285 | return init_fault_attr_dentries(&fail_make_request, |
| 1286 | "fail_make_request"); |
| 1287 | } |
| 1288 | |
| 1289 | late_initcall(fail_make_request_debugfs); |
| 1290 | |
| 1291 | #else /* CONFIG_FAIL_MAKE_REQUEST */ |
| 1292 | |
| 1293 | static inline int should_fail_request(struct bio *bio) |
| 1294 | { |
| 1295 | return 0; |
| 1296 | } |
| 1297 | |
| 1298 | #endif /* CONFIG_FAIL_MAKE_REQUEST */ |
| 1299 | |
Jens Axboe | c07e2b4 | 2007-07-18 13:27:58 +0200 | [diff] [blame] | 1300 | /* |
| 1301 | * Check whether this bio extends beyond the end of the device. |
| 1302 | */ |
| 1303 | static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors) |
| 1304 | { |
| 1305 | sector_t maxsector; |
| 1306 | |
| 1307 | if (!nr_sectors) |
| 1308 | return 0; |
| 1309 | |
| 1310 | /* Test device or partition size, when known. */ |
| 1311 | maxsector = bio->bi_bdev->bd_inode->i_size >> 9; |
| 1312 | if (maxsector) { |
| 1313 | sector_t sector = bio->bi_sector; |
| 1314 | |
| 1315 | if (maxsector < nr_sectors || maxsector - nr_sectors < sector) { |
| 1316 | /* |
| 1317 | * This may well happen - the kernel calls bread() |
| 1318 | * without checking the size of the device, e.g., when |
| 1319 | * mounting a device. |
| 1320 | */ |
| 1321 | handle_bad_sector(bio); |
| 1322 | return 1; |
| 1323 | } |
| 1324 | } |
| 1325 | |
| 1326 | return 0; |
| 1327 | } |
| 1328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | /** |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 1330 | * generic_make_request - hand a buffer to its device driver for I/O |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | * @bio: The bio describing the location in memory and on the device. |
| 1332 | * |
| 1333 | * generic_make_request() is used to make I/O requests of block |
| 1334 | * devices. It is passed a &struct bio, which describes the I/O that needs |
| 1335 | * to be done. |
| 1336 | * |
| 1337 | * generic_make_request() does not return any status. The |
| 1338 | * success/failure status of the request, along with notification of |
| 1339 | * completion, is delivered asynchronously through the bio->bi_end_io |
| 1340 | * function described (one day) else where. |
| 1341 | * |
| 1342 | * The caller of generic_make_request must make sure that bi_io_vec |
| 1343 | * are set to describe the memory buffer, and that bi_dev and bi_sector are |
| 1344 | * set to describe the device address, and the |
| 1345 | * bi_end_io and optionally bi_private are set to describe how |
| 1346 | * completion notification should be signaled. |
| 1347 | * |
| 1348 | * generic_make_request and the drivers it calls may use bi_next if this |
| 1349 | * bio happens to be merged with someone else, and may change bi_dev and |
| 1350 | * bi_sector for remaps as it sees fit. So the values of these fields |
| 1351 | * should NOT be depended on after the call to generic_make_request. |
| 1352 | */ |
Neil Brown | d89d879 | 2007-05-01 09:53:42 +0200 | [diff] [blame] | 1353 | static inline void __generic_make_request(struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1355 | struct request_queue *q; |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1356 | sector_t old_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | int ret, nr_sectors = bio_sectors(bio); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1358 | dev_t old_dev; |
Jens Axboe | 51fd77b | 2007-11-02 08:49:08 +0100 | [diff] [blame] | 1359 | int err = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | |
| 1361 | might_sleep(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
Jens Axboe | c07e2b4 | 2007-07-18 13:27:58 +0200 | [diff] [blame] | 1363 | if (bio_check_eod(bio, nr_sectors)) |
| 1364 | goto end_io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | |
| 1366 | /* |
| 1367 | * Resolve the mapping until finished. (drivers are |
| 1368 | * still free to implement/resolve their own stacking |
| 1369 | * by explicitly returning 0) |
| 1370 | * |
| 1371 | * NOTE: we don't repeat the blk_size check for each new device. |
| 1372 | * Stacking drivers are expected to know what they are doing. |
| 1373 | */ |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1374 | old_sector = -1; |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1375 | old_dev = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | do { |
| 1377 | char b[BDEVNAME_SIZE]; |
| 1378 | |
| 1379 | q = bdev_get_queue(bio->bi_bdev); |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1380 | if (unlikely(!q)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | printk(KERN_ERR |
| 1382 | "generic_make_request: Trying to access " |
| 1383 | "nonexistent block-device %s (%Lu)\n", |
| 1384 | bdevname(bio->bi_bdev, b), |
| 1385 | (long long) bio->bi_sector); |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1386 | goto end_io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Jens Axboe | 4fa253f | 2007-07-18 13:13:10 +0200 | [diff] [blame] | 1389 | if (unlikely(nr_sectors > q->max_hw_sectors)) { |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1390 | printk(KERN_ERR "bio too big device %s (%u > %u)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | bdevname(bio->bi_bdev, b), |
| 1392 | bio_sectors(bio), |
| 1393 | q->max_hw_sectors); |
| 1394 | goto end_io; |
| 1395 | } |
| 1396 | |
Nick Piggin | fde6ad2 | 2005-06-23 00:08:53 -0700 | [diff] [blame] | 1397 | if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | goto end_io; |
| 1399 | |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 1400 | if (should_fail_request(bio)) |
| 1401 | goto end_io; |
| 1402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | /* |
| 1404 | * If this device has partitions, remap block n |
| 1405 | * of partition p to block n+start(p) of the disk. |
| 1406 | */ |
| 1407 | blk_partition_remap(bio); |
| 1408 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1409 | if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) |
| 1410 | goto end_io; |
| 1411 | |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1412 | if (old_sector != -1) |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1413 | trace_block_remap(q, bio, old_dev, bio->bi_sector, |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1414 | old_sector); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1415 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1416 | trace_block_bio_queue(q, bio); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1417 | |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1418 | old_sector = bio->bi_sector; |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1419 | old_dev = bio->bi_bdev->bd_dev; |
| 1420 | |
Jens Axboe | c07e2b4 | 2007-07-18 13:27:58 +0200 | [diff] [blame] | 1421 | if (bio_check_eod(bio, nr_sectors)) |
| 1422 | goto end_io; |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1423 | |
| 1424 | if (bio_discard(bio) && !q->prepare_discard_fn) { |
Jens Axboe | 51fd77b | 2007-11-02 08:49:08 +0100 | [diff] [blame] | 1425 | err = -EOPNOTSUPP; |
| 1426 | goto end_io; |
| 1427 | } |
Jens Axboe | cec0707 | 2009-01-13 15:28:32 +0100 | [diff] [blame] | 1428 | if (bio_barrier(bio) && bio_has_data(bio) && |
| 1429 | (q->next_ordered == QUEUE_ORDERED_NONE)) { |
| 1430 | err = -EOPNOTSUPP; |
| 1431 | goto end_io; |
| 1432 | } |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 1433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | ret = q->make_request_fn(q, bio); |
| 1435 | } while (ret); |
Tejun Heo | a738467 | 2008-11-28 13:32:03 +0900 | [diff] [blame] | 1436 | |
| 1437 | return; |
| 1438 | |
| 1439 | end_io: |
| 1440 | bio_endio(bio, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
Neil Brown | d89d879 | 2007-05-01 09:53:42 +0200 | [diff] [blame] | 1443 | /* |
| 1444 | * We only want one ->make_request_fn to be active at a time, |
| 1445 | * else stack usage with stacked devices could be a problem. |
| 1446 | * So use current->bio_{list,tail} to keep a list of requests |
| 1447 | * submited by a make_request_fn function. |
| 1448 | * current->bio_tail is also used as a flag to say if |
| 1449 | * generic_make_request is currently active in this task or not. |
| 1450 | * If it is NULL, then no make_request is active. If it is non-NULL, |
| 1451 | * then a make_request is active, and new requests should be added |
| 1452 | * at the tail |
| 1453 | */ |
| 1454 | void generic_make_request(struct bio *bio) |
| 1455 | { |
| 1456 | if (current->bio_tail) { |
| 1457 | /* make_request is active */ |
| 1458 | *(current->bio_tail) = bio; |
| 1459 | bio->bi_next = NULL; |
| 1460 | current->bio_tail = &bio->bi_next; |
| 1461 | return; |
| 1462 | } |
| 1463 | /* following loop may be a bit non-obvious, and so deserves some |
| 1464 | * explanation. |
| 1465 | * Before entering the loop, bio->bi_next is NULL (as all callers |
| 1466 | * ensure that) so we have a list with a single bio. |
| 1467 | * We pretend that we have just taken it off a longer list, so |
| 1468 | * we assign bio_list to the next (which is NULL) and bio_tail |
| 1469 | * to &bio_list, thus initialising the bio_list of new bios to be |
| 1470 | * added. __generic_make_request may indeed add some more bios |
| 1471 | * through a recursive call to generic_make_request. If it |
| 1472 | * did, we find a non-NULL value in bio_list and re-enter the loop |
| 1473 | * from the top. In this case we really did just take the bio |
| 1474 | * of the top of the list (no pretending) and so fixup bio_list and |
| 1475 | * bio_tail or bi_next, and call into __generic_make_request again. |
| 1476 | * |
| 1477 | * The loop was structured like this to make only one call to |
| 1478 | * __generic_make_request (which is important as it is large and |
| 1479 | * inlined) and to keep the structure simple. |
| 1480 | */ |
| 1481 | BUG_ON(bio->bi_next); |
| 1482 | do { |
| 1483 | current->bio_list = bio->bi_next; |
| 1484 | if (bio->bi_next == NULL) |
| 1485 | current->bio_tail = ¤t->bio_list; |
| 1486 | else |
| 1487 | bio->bi_next = NULL; |
| 1488 | __generic_make_request(bio); |
| 1489 | bio = current->bio_list; |
| 1490 | } while (bio); |
| 1491 | current->bio_tail = NULL; /* deactivate */ |
| 1492 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | EXPORT_SYMBOL(generic_make_request); |
| 1494 | |
| 1495 | /** |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 1496 | * submit_bio - submit a bio to the block device layer for I/O |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead) |
| 1498 | * @bio: The &struct bio which describes the I/O |
| 1499 | * |
| 1500 | * submit_bio() is very similar in purpose to generic_make_request(), and |
| 1501 | * uses that function to do most of the work. Both are fairly rough |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 1502 | * interfaces; @bio must be presetup and ready for I/O. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | * |
| 1504 | */ |
| 1505 | void submit_bio(int rw, struct bio *bio) |
| 1506 | { |
| 1507 | int count = bio_sectors(bio); |
| 1508 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1509 | bio->bi_rw |= rw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 1511 | /* |
| 1512 | * If it's a regular read/write or a barrier with data attached, |
| 1513 | * go through the normal accounting stuff before submission. |
| 1514 | */ |
Jens Axboe | a9c701e | 2008-08-08 11:04:44 +0200 | [diff] [blame] | 1515 | if (bio_has_data(bio)) { |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 1516 | if (rw & WRITE) { |
| 1517 | count_vm_events(PGPGOUT, count); |
| 1518 | } else { |
| 1519 | task_io_account_read(bio->bi_size); |
| 1520 | count_vm_events(PGPGIN, count); |
| 1521 | } |
| 1522 | |
| 1523 | if (unlikely(block_dump)) { |
| 1524 | char b[BDEVNAME_SIZE]; |
| 1525 | printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1526 | current->comm, task_pid_nr(current), |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 1527 | (rw & WRITE) ? "WRITE" : "READ", |
| 1528 | (unsigned long long)bio->bi_sector, |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1529 | bdevname(bio->bi_bdev, b)); |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 1530 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | } |
| 1532 | |
| 1533 | generic_make_request(bio); |
| 1534 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | EXPORT_SYMBOL(submit_bio); |
| 1536 | |
Kiyoshi Ueda | 3bcddea | 2007-12-11 17:52:28 -0500 | [diff] [blame] | 1537 | /** |
Kiyoshi Ueda | 82124d6 | 2008-09-18 10:45:38 -0400 | [diff] [blame] | 1538 | * blk_rq_check_limits - Helper function to check a request for the queue limit |
| 1539 | * @q: the queue |
| 1540 | * @rq: the request being checked |
| 1541 | * |
| 1542 | * Description: |
| 1543 | * @rq may have been made based on weaker limitations of upper-level queues |
| 1544 | * in request stacking drivers, and it may violate the limitation of @q. |
| 1545 | * Since the block layer and the underlying device driver trust @rq |
| 1546 | * after it is inserted to @q, it should be checked against @q before |
| 1547 | * the insertion using this generic function. |
| 1548 | * |
| 1549 | * This function should also be useful for request stacking drivers |
| 1550 | * in some cases below, so export this fuction. |
| 1551 | * Request stacking drivers like request-based dm may change the queue |
| 1552 | * limits while requests are in the queue (e.g. dm's table swapping). |
| 1553 | * Such request stacking drivers should check those requests agaist |
| 1554 | * the new queue limits again when they dispatch those requests, |
| 1555 | * although such checkings are also done against the old queue limits |
| 1556 | * when submitting requests. |
| 1557 | */ |
| 1558 | int blk_rq_check_limits(struct request_queue *q, struct request *rq) |
| 1559 | { |
| 1560 | if (rq->nr_sectors > q->max_sectors || |
| 1561 | rq->data_len > q->max_hw_sectors << 9) { |
| 1562 | printk(KERN_ERR "%s: over max size limit.\n", __func__); |
| 1563 | return -EIO; |
| 1564 | } |
| 1565 | |
| 1566 | /* |
| 1567 | * queue's settings related to segment counting like q->bounce_pfn |
| 1568 | * may differ from that of other stacking queues. |
| 1569 | * Recalculate it to check the request correctly on this queue's |
| 1570 | * limitation. |
| 1571 | */ |
| 1572 | blk_recalc_rq_segments(rq); |
| 1573 | if (rq->nr_phys_segments > q->max_phys_segments || |
| 1574 | rq->nr_phys_segments > q->max_hw_segments) { |
| 1575 | printk(KERN_ERR "%s: over max segments limit.\n", __func__); |
| 1576 | return -EIO; |
| 1577 | } |
| 1578 | |
| 1579 | return 0; |
| 1580 | } |
| 1581 | EXPORT_SYMBOL_GPL(blk_rq_check_limits); |
| 1582 | |
| 1583 | /** |
| 1584 | * blk_insert_cloned_request - Helper for stacking drivers to submit a request |
| 1585 | * @q: the queue to submit the request |
| 1586 | * @rq: the request being queued |
| 1587 | */ |
| 1588 | int blk_insert_cloned_request(struct request_queue *q, struct request *rq) |
| 1589 | { |
| 1590 | unsigned long flags; |
| 1591 | |
| 1592 | if (blk_rq_check_limits(q, rq)) |
| 1593 | return -EIO; |
| 1594 | |
| 1595 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 1596 | if (rq->rq_disk && rq->rq_disk->part0.make_it_fail && |
| 1597 | should_fail(&fail_make_request, blk_rq_bytes(rq))) |
| 1598 | return -EIO; |
| 1599 | #endif |
| 1600 | |
| 1601 | spin_lock_irqsave(q->queue_lock, flags); |
| 1602 | |
| 1603 | /* |
| 1604 | * Submitting request must be dequeued before calling this function |
| 1605 | * because it will be linked to another request_queue |
| 1606 | */ |
| 1607 | BUG_ON(blk_queued_rq(rq)); |
| 1608 | |
| 1609 | drive_stat_acct(rq, 1); |
| 1610 | __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0); |
| 1611 | |
| 1612 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1613 | |
| 1614 | return 0; |
| 1615 | } |
| 1616 | EXPORT_SYMBOL_GPL(blk_insert_cloned_request); |
| 1617 | |
| 1618 | /** |
Tejun Heo | 53a0880 | 2008-12-03 12:41:26 +0100 | [diff] [blame] | 1619 | * blkdev_dequeue_request - dequeue request and start timeout timer |
| 1620 | * @req: request to dequeue |
| 1621 | * |
| 1622 | * Dequeue @req and start timeout timer on it. This hands off the |
| 1623 | * request to the driver. |
| 1624 | * |
| 1625 | * Block internal functions which don't want to start timer should |
| 1626 | * call elv_dequeue_request(). |
| 1627 | */ |
| 1628 | void blkdev_dequeue_request(struct request *req) |
| 1629 | { |
| 1630 | elv_dequeue_request(req->q, req); |
| 1631 | |
| 1632 | /* |
| 1633 | * We are now handing the request to the hardware, add the |
| 1634 | * timeout handler. |
| 1635 | */ |
| 1636 | blk_add_timer(req); |
| 1637 | } |
| 1638 | EXPORT_SYMBOL(blkdev_dequeue_request); |
| 1639 | |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1640 | static void blk_account_io_completion(struct request *req, unsigned int bytes) |
| 1641 | { |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 1642 | if (!blk_do_io_stat(req)) |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1643 | return; |
| 1644 | |
| 1645 | if (blk_fs_request(req)) { |
| 1646 | const int rw = rq_data_dir(req); |
| 1647 | struct hd_struct *part; |
| 1648 | int cpu; |
| 1649 | |
| 1650 | cpu = part_stat_lock(); |
| 1651 | part = disk_map_sector_rcu(req->rq_disk, req->sector); |
| 1652 | part_stat_add(cpu, part, sectors[rw], bytes >> 9); |
| 1653 | part_stat_unlock(); |
| 1654 | } |
| 1655 | } |
| 1656 | |
| 1657 | static void blk_account_io_done(struct request *req) |
| 1658 | { |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 1659 | if (!blk_do_io_stat(req)) |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1660 | return; |
| 1661 | |
| 1662 | /* |
| 1663 | * Account IO completion. bar_rq isn't accounted as a normal |
| 1664 | * IO on queueing nor completion. Accounting the containing |
| 1665 | * request is enough. |
| 1666 | */ |
| 1667 | if (blk_fs_request(req) && req != &req->q->bar_rq) { |
| 1668 | unsigned long duration = jiffies - req->start_time; |
| 1669 | const int rw = rq_data_dir(req); |
| 1670 | struct hd_struct *part; |
| 1671 | int cpu; |
| 1672 | |
| 1673 | cpu = part_stat_lock(); |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 1674 | part = disk_map_sector_rcu(req->rq_disk, req->sector); |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1675 | |
| 1676 | part_stat_inc(cpu, part, ios[rw]); |
| 1677 | part_stat_add(cpu, part, ticks[rw], duration); |
| 1678 | part_round_stats(cpu, part); |
| 1679 | part_dec_in_flight(part); |
| 1680 | |
| 1681 | part_stat_unlock(); |
| 1682 | } |
| 1683 | } |
| 1684 | |
Tejun Heo | 53a0880 | 2008-12-03 12:41:26 +0100 | [diff] [blame] | 1685 | /** |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1686 | * blk_rq_bytes - Returns bytes left to complete in the entire request |
| 1687 | * @rq: the request being processed |
| 1688 | **/ |
| 1689 | unsigned int blk_rq_bytes(struct request *rq) |
| 1690 | { |
| 1691 | if (blk_fs_request(rq)) |
| 1692 | return rq->hard_nr_sectors << 9; |
| 1693 | |
| 1694 | return rq->data_len; |
| 1695 | } |
| 1696 | EXPORT_SYMBOL_GPL(blk_rq_bytes); |
| 1697 | |
| 1698 | /** |
| 1699 | * blk_rq_cur_bytes - Returns bytes left to complete in the current segment |
| 1700 | * @rq: the request being processed |
| 1701 | **/ |
| 1702 | unsigned int blk_rq_cur_bytes(struct request *rq) |
| 1703 | { |
| 1704 | if (blk_fs_request(rq)) |
| 1705 | return rq->current_nr_sectors << 9; |
| 1706 | |
| 1707 | if (rq->bio) |
| 1708 | return rq->bio->bi_size; |
| 1709 | |
| 1710 | return rq->data_len; |
| 1711 | } |
| 1712 | EXPORT_SYMBOL_GPL(blk_rq_cur_bytes); |
| 1713 | |
Tejun Heo | 158dbda | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1714 | struct request *elv_next_request(struct request_queue *q) |
| 1715 | { |
| 1716 | struct request *rq; |
| 1717 | int ret; |
| 1718 | |
| 1719 | while ((rq = __elv_next_request(q)) != NULL) { |
| 1720 | if (!(rq->cmd_flags & REQ_STARTED)) { |
| 1721 | /* |
| 1722 | * This is the first time the device driver |
| 1723 | * sees this request (possibly after |
| 1724 | * requeueing). Notify IO scheduler. |
| 1725 | */ |
| 1726 | if (blk_sorted_rq(rq)) |
| 1727 | elv_activate_rq(q, rq); |
| 1728 | |
| 1729 | /* |
| 1730 | * just mark as started even if we don't start |
| 1731 | * it, a request that has been delayed should |
| 1732 | * not be passed by new incoming requests |
| 1733 | */ |
| 1734 | rq->cmd_flags |= REQ_STARTED; |
| 1735 | trace_block_rq_issue(q, rq); |
| 1736 | } |
| 1737 | |
| 1738 | if (!q->boundary_rq || q->boundary_rq == rq) { |
| 1739 | q->end_sector = rq_end_sector(rq); |
| 1740 | q->boundary_rq = NULL; |
| 1741 | } |
| 1742 | |
| 1743 | if (rq->cmd_flags & REQ_DONTPREP) |
| 1744 | break; |
| 1745 | |
| 1746 | if (q->dma_drain_size && rq->data_len) { |
| 1747 | /* |
| 1748 | * make sure space for the drain appears we |
| 1749 | * know we can do this because max_hw_segments |
| 1750 | * has been adjusted to be one fewer than the |
| 1751 | * device can handle |
| 1752 | */ |
| 1753 | rq->nr_phys_segments++; |
| 1754 | } |
| 1755 | |
| 1756 | if (!q->prep_rq_fn) |
| 1757 | break; |
| 1758 | |
| 1759 | ret = q->prep_rq_fn(q, rq); |
| 1760 | if (ret == BLKPREP_OK) { |
| 1761 | break; |
| 1762 | } else if (ret == BLKPREP_DEFER) { |
| 1763 | /* |
| 1764 | * the request may have been (partially) prepped. |
| 1765 | * we need to keep this request in the front to |
| 1766 | * avoid resource deadlock. REQ_STARTED will |
| 1767 | * prevent other fs requests from passing this one. |
| 1768 | */ |
| 1769 | if (q->dma_drain_size && rq->data_len && |
| 1770 | !(rq->cmd_flags & REQ_DONTPREP)) { |
| 1771 | /* |
| 1772 | * remove the space for the drain we added |
| 1773 | * so that we don't add it again |
| 1774 | */ |
| 1775 | --rq->nr_phys_segments; |
| 1776 | } |
| 1777 | |
| 1778 | rq = NULL; |
| 1779 | break; |
| 1780 | } else if (ret == BLKPREP_KILL) { |
| 1781 | rq->cmd_flags |= REQ_QUIET; |
Tejun Heo | 40cbbb7 | 2009-04-23 11:05:19 +0900 | [diff] [blame] | 1782 | __blk_end_request_all(rq, -EIO); |
Tejun Heo | 158dbda | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1783 | } else { |
| 1784 | printk(KERN_ERR "%s: bad return=%d\n", __func__, ret); |
| 1785 | break; |
| 1786 | } |
| 1787 | } |
| 1788 | |
| 1789 | return rq; |
| 1790 | } |
| 1791 | EXPORT_SYMBOL(elv_next_request); |
| 1792 | |
| 1793 | void elv_dequeue_request(struct request_queue *q, struct request *rq) |
| 1794 | { |
| 1795 | BUG_ON(list_empty(&rq->queuelist)); |
| 1796 | BUG_ON(ELV_ON_HASH(rq)); |
| 1797 | |
| 1798 | list_del_init(&rq->queuelist); |
| 1799 | |
| 1800 | /* |
| 1801 | * the time frame between a request being removed from the lists |
| 1802 | * and to it is freed is accounted as io that is in progress at |
| 1803 | * the driver side. |
| 1804 | */ |
| 1805 | if (blk_account_rq(rq)) |
| 1806 | q->in_flight++; |
| 1807 | } |
| 1808 | |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1809 | /** |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1810 | * blk_update_request - Special helper function for request stacking drivers |
| 1811 | * @rq: the request being processed |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 1812 | * @error: %0 for success, < %0 for error |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1813 | * @nr_bytes: number of bytes to complete @rq |
Kiyoshi Ueda | 3bcddea | 2007-12-11 17:52:28 -0500 | [diff] [blame] | 1814 | * |
| 1815 | * Description: |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1816 | * Ends I/O on a number of bytes attached to @rq, but doesn't complete |
| 1817 | * the request structure even if @rq doesn't have leftover. |
| 1818 | * If @rq has leftover, sets it up for the next range of segments. |
| 1819 | * |
| 1820 | * This special helper function is only for request stacking drivers |
| 1821 | * (e.g. request-based dm) so that they can handle partial completion. |
| 1822 | * Actual device drivers should use blk_end_request instead. |
| 1823 | * |
| 1824 | * Passing the result of blk_rq_bytes() as @nr_bytes guarantees |
| 1825 | * %false return from this function. |
Kiyoshi Ueda | 3bcddea | 2007-12-11 17:52:28 -0500 | [diff] [blame] | 1826 | * |
| 1827 | * Return: |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1828 | * %false - this request doesn't have any more data |
| 1829 | * %true - this request has more data |
Kiyoshi Ueda | 3bcddea | 2007-12-11 17:52:28 -0500 | [diff] [blame] | 1830 | **/ |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1831 | bool blk_update_request(struct request *req, int error, unsigned int nr_bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | { |
Kiyoshi Ueda | 5450d3e | 2007-12-11 17:53:03 -0500 | [diff] [blame] | 1833 | int total_bytes, bio_nbytes, next_idx = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | struct bio *bio; |
| 1835 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1836 | if (!req->bio) |
| 1837 | return false; |
| 1838 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 1839 | trace_block_rq_complete(req->q, req); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | /* |
Tejun Heo | 924cec7 | 2009-04-19 07:00:41 +0900 | [diff] [blame] | 1842 | * For fs requests, rq is just carrier of independent bio's |
| 1843 | * and each partial completion should be handled separately. |
| 1844 | * Reset per-request error on each partial completion. |
| 1845 | * |
| 1846 | * TODO: tj: This is too subtle. It would be better to let |
| 1847 | * low level drivers do what they see fit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | */ |
Tejun Heo | 924cec7 | 2009-04-19 07:00:41 +0900 | [diff] [blame] | 1849 | if (blk_fs_request(req)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | req->errors = 0; |
| 1851 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1852 | if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) { |
| 1853 | printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | req->rq_disk ? req->rq_disk->disk_name : "?", |
| 1855 | (unsigned long long)req->sector); |
| 1856 | } |
| 1857 | |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1858 | blk_account_io_completion(req, nr_bytes); |
Jens Axboe | d72d904 | 2005-11-01 08:35:42 +0100 | [diff] [blame] | 1859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | total_bytes = bio_nbytes = 0; |
| 1861 | while ((bio = req->bio) != NULL) { |
| 1862 | int nbytes; |
| 1863 | |
| 1864 | if (nr_bytes >= bio->bi_size) { |
| 1865 | req->bio = bio->bi_next; |
| 1866 | nbytes = bio->bi_size; |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 1867 | req_bio_endio(req, bio, nbytes, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | next_idx = 0; |
| 1869 | bio_nbytes = 0; |
| 1870 | } else { |
| 1871 | int idx = bio->bi_idx + next_idx; |
| 1872 | |
| 1873 | if (unlikely(bio->bi_idx >= bio->bi_vcnt)) { |
| 1874 | blk_dump_rq_flags(req, "__end_that"); |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1875 | printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n", |
Harvey Harrison | 24c03d4 | 2008-05-01 04:35:17 -0700 | [diff] [blame] | 1876 | __func__, bio->bi_idx, bio->bi_vcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | break; |
| 1878 | } |
| 1879 | |
| 1880 | nbytes = bio_iovec_idx(bio, idx)->bv_len; |
| 1881 | BIO_BUG_ON(nbytes > bio->bi_size); |
| 1882 | |
| 1883 | /* |
| 1884 | * not a complete bvec done |
| 1885 | */ |
| 1886 | if (unlikely(nbytes > nr_bytes)) { |
| 1887 | bio_nbytes += nr_bytes; |
| 1888 | total_bytes += nr_bytes; |
| 1889 | break; |
| 1890 | } |
| 1891 | |
| 1892 | /* |
| 1893 | * advance to the next vector |
| 1894 | */ |
| 1895 | next_idx++; |
| 1896 | bio_nbytes += nbytes; |
| 1897 | } |
| 1898 | |
| 1899 | total_bytes += nbytes; |
| 1900 | nr_bytes -= nbytes; |
| 1901 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 1902 | bio = req->bio; |
| 1903 | if (bio) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | /* |
| 1905 | * end more in this run, or just return 'not-done' |
| 1906 | */ |
| 1907 | if (unlikely(nr_bytes <= 0)) |
| 1908 | break; |
| 1909 | } |
| 1910 | } |
| 1911 | |
| 1912 | /* |
| 1913 | * completely done |
| 1914 | */ |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1915 | if (!req->bio) { |
| 1916 | /* |
| 1917 | * Reset counters so that the request stacking driver |
| 1918 | * can find how many bytes remain in the request |
| 1919 | * later. |
| 1920 | */ |
| 1921 | req->nr_sectors = req->hard_nr_sectors = 0; |
| 1922 | req->current_nr_sectors = req->hard_cur_sectors = 0; |
| 1923 | return false; |
| 1924 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | |
| 1926 | /* |
| 1927 | * if the request wasn't completed, update state |
| 1928 | */ |
| 1929 | if (bio_nbytes) { |
NeilBrown | 5bb23a6 | 2007-09-27 12:46:13 +0200 | [diff] [blame] | 1930 | req_bio_endio(req, bio, bio_nbytes, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | bio->bi_idx += next_idx; |
| 1932 | bio_iovec(bio)->bv_offset += nr_bytes; |
| 1933 | bio_iovec(bio)->bv_len -= nr_bytes; |
| 1934 | } |
| 1935 | |
| 1936 | blk_recalc_rq_sectors(req, total_bytes >> 9); |
| 1937 | blk_recalc_rq_segments(req); |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1938 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | } |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1940 | EXPORT_SYMBOL_GPL(blk_update_request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1942 | static bool blk_update_bidi_request(struct request *rq, int error, |
| 1943 | unsigned int nr_bytes, |
| 1944 | unsigned int bidi_bytes) |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1945 | { |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1946 | if (blk_update_request(rq, error, nr_bytes)) |
| 1947 | return true; |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1948 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1949 | /* Bidi request must be completed as a whole */ |
| 1950 | if (unlikely(blk_bidi_rq(rq)) && |
| 1951 | blk_update_request(rq->next_rq, error, bidi_bytes)) |
| 1952 | return true; |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1953 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1954 | add_disk_randomness(rq->rq_disk); |
| 1955 | |
| 1956 | return false; |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1957 | } |
| 1958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | /* |
| 1960 | * queue lock must be held |
| 1961 | */ |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1962 | static void blk_finish_request(struct request *req, int error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | { |
Kiyoshi Ueda | b828623 | 2007-12-11 17:53:24 -0500 | [diff] [blame] | 1964 | if (blk_rq_tagged(req)) |
| 1965 | blk_queue_end_tag(req->q, req); |
| 1966 | |
| 1967 | if (blk_queued_rq(req)) |
Tejun Heo | 53a0880 | 2008-12-03 12:41:26 +0100 | [diff] [blame] | 1968 | elv_dequeue_request(req->q, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | |
| 1970 | if (unlikely(laptop_mode) && blk_fs_request(req)) |
| 1971 | laptop_io_completion(); |
| 1972 | |
Mike Anderson | e78042e | 2008-10-30 02:16:20 -0700 | [diff] [blame] | 1973 | blk_delete_timer(req); |
| 1974 | |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 1975 | blk_account_io_done(req); |
Kiyoshi Ueda | b828623 | 2007-12-11 17:53:24 -0500 | [diff] [blame] | 1976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | if (req->end_io) |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 1978 | req->end_io(req, error); |
Kiyoshi Ueda | b828623 | 2007-12-11 17:53:24 -0500 | [diff] [blame] | 1979 | else { |
| 1980 | if (blk_bidi_rq(req)) |
| 1981 | __blk_put_request(req->next_rq->q, req->next_rq); |
| 1982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | __blk_put_request(req->q, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | } |
| 1985 | } |
| 1986 | |
Kiyoshi Ueda | 3b11313 | 2007-12-11 17:41:17 -0500 | [diff] [blame] | 1987 | /** |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1988 | * blk_end_bidi_request - Complete a bidi request |
| 1989 | * @rq: the request to complete |
Randy Dunlap | 710027a | 2008-08-19 20:13:11 +0200 | [diff] [blame] | 1990 | * @error: %0 for success, < %0 for error |
Kiyoshi Ueda | e3a04fe | 2007-12-11 17:51:46 -0500 | [diff] [blame] | 1991 | * @nr_bytes: number of bytes to complete @rq |
| 1992 | * @bidi_bytes: number of bytes to complete @rq->next_rq |
| 1993 | * |
| 1994 | * Description: |
| 1995 | * Ends I/O on a number of bytes attached to @rq and @rq->next_rq. |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1996 | * Drivers that supports bidi can safely call this member for any |
| 1997 | * type of request, bidi or uni. In the later case @bidi_bytes is |
| 1998 | * just ignored. |
Kiyoshi Ueda | e3a04fe | 2007-12-11 17:51:46 -0500 | [diff] [blame] | 1999 | * |
| 2000 | * Return: |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2001 | * %false - we are done with this request |
| 2002 | * %true - still buffers pending for this request |
Kiyoshi Ueda | e3a04fe | 2007-12-11 17:51:46 -0500 | [diff] [blame] | 2003 | **/ |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2004 | bool blk_end_bidi_request(struct request *rq, int error, |
| 2005 | unsigned int nr_bytes, unsigned int bidi_bytes) |
Kiyoshi Ueda | e3a04fe | 2007-12-11 17:51:46 -0500 | [diff] [blame] | 2006 | { |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2007 | struct request_queue *q = rq->q; |
| 2008 | unsigned long flags; |
| 2009 | |
| 2010 | if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes)) |
| 2011 | return true; |
| 2012 | |
| 2013 | spin_lock_irqsave(q->queue_lock, flags); |
| 2014 | blk_finish_request(rq, error); |
| 2015 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2016 | |
| 2017 | return false; |
Kiyoshi Ueda | e3a04fe | 2007-12-11 17:51:46 -0500 | [diff] [blame] | 2018 | } |
| 2019 | EXPORT_SYMBOL_GPL(blk_end_bidi_request); |
| 2020 | |
| 2021 | /** |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2022 | * __blk_end_bidi_request - Complete a bidi request with queue lock held |
| 2023 | * @rq: the request to complete |
| 2024 | * @error: %0 for success, < %0 for error |
| 2025 | * @nr_bytes: number of bytes to complete @rq |
| 2026 | * @bidi_bytes: number of bytes to complete @rq->next_rq |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2027 | * |
| 2028 | * Description: |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2029 | * Identical to blk_end_bidi_request() except that queue lock is |
| 2030 | * assumed to be locked on entry and remains so on return. |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2031 | * |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2032 | * Return: |
| 2033 | * %false - we are done with this request |
| 2034 | * %true - still buffers pending for this request |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2035 | **/ |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2036 | bool __blk_end_bidi_request(struct request *rq, int error, |
| 2037 | unsigned int nr_bytes, unsigned int bidi_bytes) |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2038 | { |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2039 | if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes)) |
| 2040 | return true; |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2041 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2042 | blk_finish_request(rq, error); |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2043 | |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2044 | return false; |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2045 | } |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 2046 | EXPORT_SYMBOL_GPL(__blk_end_bidi_request); |
Kiyoshi Ueda | 32fab44 | 2008-09-18 10:45:09 -0400 | [diff] [blame] | 2047 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 2048 | void blk_rq_bio_prep(struct request_queue *q, struct request *rq, |
| 2049 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | { |
David Woodhouse | d628eae | 2008-08-09 16:22:17 +0100 | [diff] [blame] | 2051 | /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and |
| 2052 | we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2053 | rq->cmd_flags |= (bio->bi_rw & 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 2055 | if (bio_has_data(bio)) { |
| 2056 | rq->nr_phys_segments = bio_phys_segments(q, bio); |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 2057 | rq->buffer = bio_data(bio); |
| 2058 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | rq->current_nr_sectors = bio_cur_sectors(bio); |
| 2060 | rq->hard_cur_sectors = rq->current_nr_sectors; |
| 2061 | rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio); |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2062 | rq->data_len = bio->bi_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | |
| 2064 | rq->bio = rq->biotail = bio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | |
NeilBrown | 6684657 | 2007-08-16 13:31:28 +0200 | [diff] [blame] | 2066 | if (bio->bi_bdev) |
| 2067 | rq->rq_disk = bio->bi_bdev->bd_disk; |
| 2068 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | |
Kiyoshi Ueda | ef9e3fa | 2008-10-01 16:12:15 +0200 | [diff] [blame] | 2070 | /** |
| 2071 | * blk_lld_busy - Check if underlying low-level drivers of a device are busy |
| 2072 | * @q : the queue of the device being checked |
| 2073 | * |
| 2074 | * Description: |
| 2075 | * Check if underlying low-level drivers of a device are busy. |
| 2076 | * If the drivers want to export their busy state, they must set own |
| 2077 | * exporting function using blk_queue_lld_busy() first. |
| 2078 | * |
| 2079 | * Basically, this function is used only by request stacking drivers |
| 2080 | * to stop dispatching requests to underlying devices when underlying |
| 2081 | * devices are busy. This behavior helps more I/O merging on the queue |
| 2082 | * of the request stacking driver and prevents I/O throughput regression |
| 2083 | * on burst I/O load. |
| 2084 | * |
| 2085 | * Return: |
| 2086 | * 0 - Not busy (The request stacking driver should dispatch request) |
| 2087 | * 1 - Busy (The request stacking driver should stop dispatching request) |
| 2088 | */ |
| 2089 | int blk_lld_busy(struct request_queue *q) |
| 2090 | { |
| 2091 | if (q->lld_busy_fn) |
| 2092 | return q->lld_busy_fn(q); |
| 2093 | |
| 2094 | return 0; |
| 2095 | } |
| 2096 | EXPORT_SYMBOL_GPL(blk_lld_busy); |
| 2097 | |
Jens Axboe | 18887ad | 2008-07-28 13:08:45 +0200 | [diff] [blame] | 2098 | int kblockd_schedule_work(struct request_queue *q, struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | { |
| 2100 | return queue_work(kblockd_workqueue, work); |
| 2101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | EXPORT_SYMBOL(kblockd_schedule_work); |
| 2103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | int __init blk_dev_init(void) |
| 2105 | { |
| 2106 | kblockd_workqueue = create_workqueue("kblockd"); |
| 2107 | if (!kblockd_workqueue) |
| 2108 | panic("Failed to create kblockd\n"); |
| 2109 | |
| 2110 | request_cachep = kmem_cache_create("blkdev_requests", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2111 | sizeof(struct request), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | |
Jens Axboe | 8324aa9 | 2008-01-29 14:51:59 +0100 | [diff] [blame] | 2113 | blk_requestq_cachep = kmem_cache_create("blkdev_queue", |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2114 | sizeof(struct request_queue), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | return 0; |
| 2117 | } |
| 2118 | |