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