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