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> |
| 6 | * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au> - July2000 |
| 7 | * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001 |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * This handles all read/write requests to block devices |
| 12 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/backing-dev.h> |
| 16 | #include <linux/bio.h> |
| 17 | #include <linux/blkdev.h> |
| 18 | #include <linux/highmem.h> |
| 19 | #include <linux/mm.h> |
| 20 | #include <linux/kernel_stat.h> |
| 21 | #include <linux/string.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/bootmem.h> /* for max_pfn/max_low_pfn */ |
| 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 | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 29 | #include <linux/interrupt.h> |
| 30 | #include <linux/cpu.h> |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 31 | #include <linux/blktrace_api.h> |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 32 | #include <linux/fault-inject.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * for max sense size |
| 36 | */ |
| 37 | #include <scsi/scsi_cmnd.h> |
| 38 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 39 | static void blk_unplug_work(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static void blk_unplug_timeout(unsigned long data); |
Adrian Bunk | 93d17d3 | 2005-06-25 14:59:10 -0700 | [diff] [blame] | 41 | static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io); |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 42 | static void init_request_from_bio(struct request *req, struct bio *bio); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 43 | static int __make_request(struct request_queue *q, struct bio *bio); |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 44 | static struct io_context *current_io_context(gfp_t gfp_flags, int node); |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 45 | static void blk_recalc_rq_segments(struct request *rq); |
NeilBrown | 6684657 | 2007-08-16 13:31:28 +0200 | [diff] [blame] | 46 | static void blk_rq_bio_prep(struct request_queue *q, struct request *rq, |
| 47 | struct bio *bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * For the allocated request tables |
| 51 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 52 | static struct kmem_cache *request_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /* |
| 55 | * For queue allocation |
| 56 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 57 | static struct kmem_cache *requestq_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * For io context allocations |
| 61 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 62 | static struct kmem_cache *iocontext_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | /* |
| 65 | * Controlling structure to kblockd |
| 66 | */ |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 67 | static struct workqueue_struct *kblockd_workqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | unsigned long blk_max_low_pfn, blk_max_pfn; |
| 70 | |
| 71 | EXPORT_SYMBOL(blk_max_low_pfn); |
| 72 | EXPORT_SYMBOL(blk_max_pfn); |
| 73 | |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 74 | static DEFINE_PER_CPU(struct list_head, blk_cpu_done); |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | /* Amount of time in which a process may batch requests */ |
| 77 | #define BLK_BATCH_TIME (HZ/50UL) |
| 78 | |
| 79 | /* Number of requests a "batching" process may submit */ |
| 80 | #define BLK_BATCH_REQ 32 |
| 81 | |
| 82 | /* |
| 83 | * Return the threshold (number of used requests) at which the queue is |
| 84 | * considered to be congested. It include a little hysteresis to keep the |
| 85 | * context switch rate down. |
| 86 | */ |
| 87 | static inline int queue_congestion_on_threshold(struct request_queue *q) |
| 88 | { |
| 89 | return q->nr_congestion_on; |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * The threshold at which a queue is considered to be uncongested |
| 94 | */ |
| 95 | static inline int queue_congestion_off_threshold(struct request_queue *q) |
| 96 | { |
| 97 | return q->nr_congestion_off; |
| 98 | } |
| 99 | |
| 100 | static void blk_queue_congestion_threshold(struct request_queue *q) |
| 101 | { |
| 102 | int nr; |
| 103 | |
| 104 | nr = q->nr_requests - (q->nr_requests / 8) + 1; |
| 105 | if (nr > q->nr_requests) |
| 106 | nr = q->nr_requests; |
| 107 | q->nr_congestion_on = nr; |
| 108 | |
| 109 | nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1; |
| 110 | if (nr < 1) |
| 111 | nr = 1; |
| 112 | q->nr_congestion_off = nr; |
| 113 | } |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /** |
| 116 | * blk_get_backing_dev_info - get the address of a queue's backing_dev_info |
| 117 | * @bdev: device |
| 118 | * |
| 119 | * Locates the passed device's request queue and returns the address of its |
| 120 | * backing_dev_info |
| 121 | * |
| 122 | * Will return NULL if the request queue cannot be located. |
| 123 | */ |
| 124 | struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev) |
| 125 | { |
| 126 | struct backing_dev_info *ret = NULL; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 127 | struct request_queue *q = bdev_get_queue(bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | if (q) |
| 130 | ret = &q->backing_dev_info; |
| 131 | return ret; |
| 132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | EXPORT_SYMBOL(blk_get_backing_dev_info); |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /** |
| 136 | * blk_queue_prep_rq - set a prepare_request function for queue |
| 137 | * @q: queue |
| 138 | * @pfn: prepare_request function |
| 139 | * |
| 140 | * It's possible for a queue to register a prepare_request callback which |
| 141 | * is invoked before the request is handed to the request_fn. The goal of |
| 142 | * the function is to prepare a request for I/O, it can be used to build a |
| 143 | * cdb from the request data for instance. |
| 144 | * |
| 145 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 146 | void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
| 148 | q->prep_rq_fn = pfn; |
| 149 | } |
| 150 | |
| 151 | EXPORT_SYMBOL(blk_queue_prep_rq); |
| 152 | |
| 153 | /** |
| 154 | * blk_queue_merge_bvec - set a merge_bvec function for queue |
| 155 | * @q: queue |
| 156 | * @mbfn: merge_bvec_fn |
| 157 | * |
| 158 | * Usually queues have static limitations on the max sectors or segments that |
| 159 | * we can put in a request. Stacking drivers may have some settings that |
| 160 | * are dynamic, and thus we have to query the queue whether it is ok to |
| 161 | * add a new bio_vec to a bio at a given offset or not. If the block device |
| 162 | * has such limitations, it needs to register a merge_bvec_fn to control |
| 163 | * the size of bio's sent to it. Note that a block device *must* allow a |
| 164 | * single page to be added to an empty bio. The block device driver may want |
| 165 | * to use the bio_split() function to deal with these bio's. By default |
| 166 | * no merge_bvec_fn is defined for a queue, and only the fixed limits are |
| 167 | * honored. |
| 168 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 169 | void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
| 171 | q->merge_bvec_fn = mbfn; |
| 172 | } |
| 173 | |
| 174 | EXPORT_SYMBOL(blk_queue_merge_bvec); |
| 175 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 176 | void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn) |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 177 | { |
| 178 | q->softirq_done_fn = fn; |
| 179 | } |
| 180 | |
| 181 | EXPORT_SYMBOL(blk_queue_softirq_done); |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /** |
| 184 | * blk_queue_make_request - define an alternate make_request function for a device |
| 185 | * @q: the request queue for the device to be affected |
| 186 | * @mfn: the alternate make_request function |
| 187 | * |
| 188 | * Description: |
| 189 | * The normal way for &struct bios to be passed to a device |
| 190 | * driver is for them to be collected into requests on a request |
| 191 | * queue, and then to allow the device driver to select requests |
| 192 | * off that queue when it is ready. This works well for many block |
| 193 | * devices. However some block devices (typically virtual devices |
| 194 | * such as md or lvm) do not benefit from the processing on the |
| 195 | * request queue, and are served best by having the requests passed |
| 196 | * directly to them. This can be achieved by providing a function |
| 197 | * to blk_queue_make_request(). |
| 198 | * |
| 199 | * Caveat: |
| 200 | * The driver that does this *must* be able to deal appropriately |
| 201 | * with buffers in "highmemory". This can be accomplished by either calling |
| 202 | * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling |
| 203 | * blk_queue_bounce() to create a buffer in normal memory. |
| 204 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 205 | void blk_queue_make_request(struct request_queue * q, make_request_fn * mfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
| 207 | /* |
| 208 | * set defaults |
| 209 | */ |
| 210 | q->nr_requests = BLKDEV_MAX_RQ; |
Stuart McLaren | 309c0a1 | 2005-09-06 15:17:47 -0700 | [diff] [blame] | 211 | blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS); |
| 212 | blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | q->make_request_fn = mfn; |
| 214 | q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE; |
| 215 | q->backing_dev_info.state = 0; |
| 216 | q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY; |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 217 | blk_queue_max_sectors(q, SAFE_MAX_SECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | blk_queue_hardsect_size(q, 512); |
| 219 | blk_queue_dma_alignment(q, 511); |
| 220 | blk_queue_congestion_threshold(q); |
| 221 | q->nr_batching = BLK_BATCH_REQ; |
| 222 | |
| 223 | q->unplug_thresh = 4; /* hmm */ |
| 224 | q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */ |
| 225 | if (q->unplug_delay == 0) |
| 226 | q->unplug_delay = 1; |
| 227 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 228 | INIT_WORK(&q->unplug_work, blk_unplug_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | q->unplug_timer.function = blk_unplug_timeout; |
| 231 | q->unplug_timer.data = (unsigned long)q; |
| 232 | |
| 233 | /* |
| 234 | * by default assume old behaviour and bounce for any highmem page |
| 235 | */ |
| 236 | blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | EXPORT_SYMBOL(blk_queue_make_request); |
| 240 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 241 | static void rq_init(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
| 243 | INIT_LIST_HEAD(&rq->queuelist); |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 244 | INIT_LIST_HEAD(&rq->donelist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | rq->errors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | rq->bio = rq->biotail = NULL; |
Jens Axboe | 2e662b6 | 2006-07-13 11:55:04 +0200 | [diff] [blame] | 248 | INIT_HLIST_NODE(&rq->hash); |
| 249 | RB_CLEAR_NODE(&rq->rb_node); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 250 | rq->ioprio = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | rq->buffer = NULL; |
| 252 | rq->ref_count = 1; |
| 253 | rq->q = q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | rq->special = NULL; |
| 255 | rq->data_len = 0; |
| 256 | rq->data = NULL; |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 257 | rq->nr_phys_segments = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | rq->sense = NULL; |
| 259 | rq->end_io = NULL; |
| 260 | rq->end_io_data = NULL; |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 261 | rq->completion_data = NULL; |
FUJITA Tomonori | abae1fd | 2007-07-16 08:52:14 +0200 | [diff] [blame] | 262 | rq->next_rq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /** |
| 266 | * blk_queue_ordered - does this queue support ordered writes |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 267 | * @q: the request queue |
| 268 | * @ordered: one of QUEUE_ORDERED_* |
Jens Axboe | fddfdea | 2006-01-31 15:24:34 +0100 | [diff] [blame] | 269 | * @prepare_flush_fn: rq setup helper for cache flush ordered writes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | * |
| 271 | * Description: |
| 272 | * For journalled file systems, doing ordered writes on a commit |
| 273 | * block instead of explicitly doing wait_on_buffer (which is bad |
| 274 | * for performance) can be a big win. Block drivers supporting this |
| 275 | * feature should call this function and indicate so. |
| 276 | * |
| 277 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 278 | int blk_queue_ordered(struct request_queue *q, unsigned ordered, |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 279 | prepare_flush_fn *prepare_flush_fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 281 | if (ordered & (QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH) && |
| 282 | prepare_flush_fn == NULL) { |
| 283 | printk(KERN_ERR "blk_queue_ordered: prepare_flush_fn required\n"); |
| 284 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 286 | |
| 287 | if (ordered != QUEUE_ORDERED_NONE && |
| 288 | ordered != QUEUE_ORDERED_DRAIN && |
| 289 | ordered != QUEUE_ORDERED_DRAIN_FLUSH && |
| 290 | ordered != QUEUE_ORDERED_DRAIN_FUA && |
| 291 | ordered != QUEUE_ORDERED_TAG && |
| 292 | ordered != QUEUE_ORDERED_TAG_FLUSH && |
| 293 | ordered != QUEUE_ORDERED_TAG_FUA) { |
| 294 | printk(KERN_ERR "blk_queue_ordered: bad value %d\n", ordered); |
| 295 | return -EINVAL; |
| 296 | } |
| 297 | |
Tetsuo Takata | 60481b1 | 2006-01-24 10:34:36 +0100 | [diff] [blame] | 298 | q->ordered = ordered; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 299 | q->next_ordered = ordered; |
| 300 | q->prepare_flush_fn = prepare_flush_fn; |
| 301 | |
| 302 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | EXPORT_SYMBOL(blk_queue_ordered); |
| 306 | |
| 307 | /** |
| 308 | * blk_queue_issue_flush_fn - set function for issuing a flush |
| 309 | * @q: the request queue |
| 310 | * @iff: the function to be called issuing the flush |
| 311 | * |
| 312 | * Description: |
| 313 | * If a driver supports issuing a flush command, the support is notified |
| 314 | * to the block layer by defining it through this call. |
| 315 | * |
| 316 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 317 | void blk_queue_issue_flush_fn(struct request_queue *q, issue_flush_fn *iff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
| 319 | q->issue_flush_fn = iff; |
| 320 | } |
| 321 | |
| 322 | EXPORT_SYMBOL(blk_queue_issue_flush_fn); |
| 323 | |
| 324 | /* |
| 325 | * Cache flushing for ordered writes handling |
| 326 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 327 | inline unsigned blk_ordered_cur_seq(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 329 | if (!q->ordseq) |
| 330 | return 0; |
| 331 | return 1 << ffz(q->ordseq); |
| 332 | } |
| 333 | |
| 334 | unsigned blk_ordered_req_seq(struct request *rq) |
| 335 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 336 | struct request_queue *q = rq->q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 338 | BUG_ON(q->ordseq == 0); |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 339 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 340 | if (rq == &q->pre_flush_rq) |
| 341 | return QUEUE_ORDSEQ_PREFLUSH; |
| 342 | if (rq == &q->bar_rq) |
| 343 | return QUEUE_ORDSEQ_BAR; |
| 344 | if (rq == &q->post_flush_rq) |
| 345 | return QUEUE_ORDSEQ_POSTFLUSH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Tejun Heo | bc90ba0 | 2007-06-15 13:24:28 +0200 | [diff] [blame] | 347 | /* |
| 348 | * !fs requests don't need to follow barrier ordering. Always |
| 349 | * put them at the front. This fixes the following deadlock. |
| 350 | * |
| 351 | * http://thread.gmane.org/gmane.linux.kernel/537473 |
| 352 | */ |
| 353 | if (!blk_fs_request(rq)) |
| 354 | return QUEUE_ORDSEQ_DRAIN; |
| 355 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 356 | if ((rq->cmd_flags & REQ_ORDERED_COLOR) == |
| 357 | (q->orig_bar_rq->cmd_flags & REQ_ORDERED_COLOR)) |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 358 | return QUEUE_ORDSEQ_DRAIN; |
| 359 | else |
| 360 | return QUEUE_ORDSEQ_DONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 363 | void blk_ordered_complete_seq(struct request_queue *q, unsigned seq, int error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 365 | struct request *rq; |
| 366 | int uptodate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 368 | if (error && !q->orderr) |
| 369 | q->orderr = error; |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 370 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 371 | BUG_ON(q->ordseq & seq); |
| 372 | q->ordseq |= seq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 374 | if (blk_ordered_cur_seq(q) != QUEUE_ORDSEQ_DONE) |
| 375 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
| 377 | /* |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 378 | * Okay, sequence complete. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | */ |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 380 | rq = q->orig_bar_rq; |
| 381 | uptodate = q->orderr ? q->orderr : 1; |
| 382 | |
| 383 | q->ordseq = 0; |
| 384 | |
| 385 | end_that_request_first(rq, uptodate, rq->hard_nr_sectors); |
| 386 | end_that_request_last(rq, uptodate); |
| 387 | } |
| 388 | |
| 389 | static void pre_flush_end_io(struct request *rq, int error) |
| 390 | { |
| 391 | elv_completed_request(rq->q, rq); |
| 392 | blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_PREFLUSH, error); |
| 393 | } |
| 394 | |
| 395 | static void bar_end_io(struct request *rq, int error) |
| 396 | { |
| 397 | elv_completed_request(rq->q, rq); |
| 398 | blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_BAR, error); |
| 399 | } |
| 400 | |
| 401 | static void post_flush_end_io(struct request *rq, int error) |
| 402 | { |
| 403 | elv_completed_request(rq->q, rq); |
| 404 | blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_POSTFLUSH, error); |
| 405 | } |
| 406 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 407 | static void queue_flush(struct request_queue *q, unsigned which) |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 408 | { |
| 409 | struct request *rq; |
| 410 | rq_end_io_fn *end_io; |
| 411 | |
| 412 | if (which == QUEUE_ORDERED_PREFLUSH) { |
| 413 | rq = &q->pre_flush_rq; |
| 414 | end_io = pre_flush_end_io; |
| 415 | } else { |
| 416 | rq = &q->post_flush_rq; |
| 417 | end_io = post_flush_end_io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 420 | rq->cmd_flags = REQ_HARDBARRIER; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 421 | rq_init(q, rq); |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 422 | rq->elevator_private = NULL; |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 423 | rq->elevator_private2 = NULL; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 424 | rq->rq_disk = q->bar_rq.rq_disk; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 425 | rq->end_io = end_io; |
| 426 | q->prepare_flush_fn(q, rq); |
| 427 | |
Tejun Heo | 30e9656 | 2006-02-08 01:01:31 -0800 | [diff] [blame] | 428 | elv_insert(q, rq, ELEVATOR_INSERT_FRONT); |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 429 | } |
| 430 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 431 | static inline struct request *start_ordered(struct request_queue *q, |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 432 | struct request *rq) |
| 433 | { |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 434 | q->orderr = 0; |
| 435 | q->ordered = q->next_ordered; |
| 436 | q->ordseq |= QUEUE_ORDSEQ_STARTED; |
| 437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | /* |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 439 | * Prep proxy barrier request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | */ |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 441 | blkdev_dequeue_request(rq); |
| 442 | q->orig_bar_rq = rq; |
| 443 | rq = &q->bar_rq; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 444 | rq->cmd_flags = 0; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 445 | rq_init(q, rq); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 446 | if (bio_data_dir(q->orig_bar_rq->bio) == WRITE) |
| 447 | rq->cmd_flags |= REQ_RW; |
| 448 | rq->cmd_flags |= q->ordered & QUEUE_ORDERED_FUA ? REQ_FUA : 0; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 449 | rq->elevator_private = NULL; |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 450 | rq->elevator_private2 = NULL; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 451 | init_request_from_bio(rq, q->orig_bar_rq->bio); |
| 452 | rq->end_io = bar_end_io; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 454 | /* |
| 455 | * Queue ordered sequence. As we stack them at the head, we |
| 456 | * need to queue in reverse order. Note that we rely on that |
| 457 | * no fs request uses ELEVATOR_INSERT_FRONT and thus no fs |
| 458 | * request gets inbetween ordered sequence. |
| 459 | */ |
| 460 | if (q->ordered & QUEUE_ORDERED_POSTFLUSH) |
| 461 | queue_flush(q, QUEUE_ORDERED_POSTFLUSH); |
| 462 | else |
| 463 | q->ordseq |= QUEUE_ORDSEQ_POSTFLUSH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Tejun Heo | 30e9656 | 2006-02-08 01:01:31 -0800 | [diff] [blame] | 465 | elv_insert(q, rq, ELEVATOR_INSERT_FRONT); |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 466 | |
| 467 | if (q->ordered & QUEUE_ORDERED_PREFLUSH) { |
| 468 | queue_flush(q, QUEUE_ORDERED_PREFLUSH); |
| 469 | rq = &q->pre_flush_rq; |
| 470 | } else |
| 471 | q->ordseq |= QUEUE_ORDSEQ_PREFLUSH; |
| 472 | |
| 473 | if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0) |
| 474 | q->ordseq |= QUEUE_ORDSEQ_DRAIN; |
| 475 | else |
| 476 | rq = NULL; |
| 477 | |
| 478 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 481 | int blk_do_ordered(struct request_queue *q, struct request **rqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | { |
Jens Axboe | 9a7a67a | 2006-02-04 23:27:38 -0800 | [diff] [blame] | 483 | struct request *rq = *rqp; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 484 | int is_barrier = blk_fs_request(rq) && blk_barrier_rq(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 486 | if (!q->ordseq) { |
| 487 | if (!is_barrier) |
| 488 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 490 | if (q->next_ordered != QUEUE_ORDERED_NONE) { |
| 491 | *rqp = start_ordered(q, rq); |
| 492 | return 1; |
| 493 | } else { |
| 494 | /* |
| 495 | * This can happen when the queue switches to |
| 496 | * ORDERED_NONE while this request is on it. |
| 497 | */ |
| 498 | blkdev_dequeue_request(rq); |
| 499 | end_that_request_first(rq, -EOPNOTSUPP, |
| 500 | rq->hard_nr_sectors); |
| 501 | end_that_request_last(rq, -EOPNOTSUPP); |
| 502 | *rqp = NULL; |
| 503 | return 0; |
| 504 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Jens Axboe | 9a7a67a | 2006-02-04 23:27:38 -0800 | [diff] [blame] | 507 | /* |
| 508 | * Ordered sequence in progress |
| 509 | */ |
| 510 | |
| 511 | /* Special requests are not subject to ordering rules. */ |
| 512 | if (!blk_fs_request(rq) && |
| 513 | rq != &q->pre_flush_rq && rq != &q->post_flush_rq) |
| 514 | return 1; |
| 515 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 516 | if (q->ordered & QUEUE_ORDERED_TAG) { |
Jens Axboe | 9a7a67a | 2006-02-04 23:27:38 -0800 | [diff] [blame] | 517 | /* Ordered by tag. Blocking the next barrier is enough. */ |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 518 | if (is_barrier && rq != &q->bar_rq) |
| 519 | *rqp = NULL; |
Jens Axboe | 9a7a67a | 2006-02-04 23:27:38 -0800 | [diff] [blame] | 520 | } else { |
| 521 | /* Ordered by draining. Wait for turn. */ |
| 522 | WARN_ON(blk_ordered_req_seq(rq) < blk_ordered_cur_seq(q)); |
| 523 | if (blk_ordered_req_seq(rq) > blk_ordered_cur_seq(q)) |
| 524 | *rqp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | return 1; |
| 528 | } |
| 529 | |
Jens Axboe | 1ea25ecb | 2006-07-18 22:24:11 +0200 | [diff] [blame] | 530 | static int ordered_bio_endio(struct request *rq, struct bio *bio, |
| 531 | unsigned int nbytes, int error) |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 532 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 533 | struct request_queue *q = rq->q; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 534 | |
| 535 | if (&q->bar_rq != rq) |
| 536 | return 0; |
| 537 | |
| 538 | /* |
NeilBrown | d24517d | 2007-09-27 12:46:11 +0200 | [diff] [blame] | 539 | * Okay, this is the barrier request in progress, just |
| 540 | * record the error; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 541 | */ |
| 542 | if (error && !q->orderr) |
| 543 | q->orderr = error; |
| 544 | |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 545 | return 1; |
| 546 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | /** |
| 549 | * blk_queue_bounce_limit - set bounce buffer limit for queue |
| 550 | * @q: the request queue for the device |
| 551 | * @dma_addr: bus address limit |
| 552 | * |
| 553 | * Description: |
| 554 | * Different hardware can have different requirements as to what pages |
| 555 | * it can do I/O directly to. A low level driver can call |
| 556 | * blk_queue_bounce_limit to have lower memory pages allocated as bounce |
Andi Kleen | 5ee1af9 | 2006-03-08 17:57:26 -0800 | [diff] [blame] | 557 | * buffers for doing I/O to pages residing above @page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 559 | void blk_queue_bounce_limit(struct request_queue *q, u64 dma_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | { |
| 561 | unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT; |
Andi Kleen | 5ee1af9 | 2006-03-08 17:57:26 -0800 | [diff] [blame] | 562 | int dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Andi Kleen | 5ee1af9 | 2006-03-08 17:57:26 -0800 | [diff] [blame] | 564 | q->bounce_gfp = GFP_NOIO; |
| 565 | #if BITS_PER_LONG == 64 |
| 566 | /* Assume anything <= 4GB can be handled by IOMMU. |
| 567 | Actually some IOMMUs can handle everything, but I don't |
| 568 | know of a way to test this here. */ |
Andi Kleen | 8269730 | 2006-06-21 14:48:09 +0200 | [diff] [blame] | 569 | if (bounce_pfn < (min_t(u64,0xffffffff,BLK_BOUNCE_HIGH) >> PAGE_SHIFT)) |
Andi Kleen | 5ee1af9 | 2006-03-08 17:57:26 -0800 | [diff] [blame] | 570 | dma = 1; |
| 571 | q->bounce_pfn = max_low_pfn; |
| 572 | #else |
| 573 | if (bounce_pfn < blk_max_low_pfn) |
| 574 | dma = 1; |
| 575 | q->bounce_pfn = bounce_pfn; |
| 576 | #endif |
| 577 | if (dma) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | init_emergency_isa_pool(); |
| 579 | q->bounce_gfp = GFP_NOIO | GFP_DMA; |
Andi Kleen | 5ee1af9 | 2006-03-08 17:57:26 -0800 | [diff] [blame] | 580 | q->bounce_pfn = bounce_pfn; |
| 581 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | EXPORT_SYMBOL(blk_queue_bounce_limit); |
| 585 | |
| 586 | /** |
| 587 | * blk_queue_max_sectors - set max sectors for a request for this queue |
| 588 | * @q: the request queue for the device |
| 589 | * @max_sectors: max sectors in the usual 512b unit |
| 590 | * |
| 591 | * Description: |
| 592 | * Enables a low level driver to set an upper limit on the size of |
| 593 | * received requests. |
| 594 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 595 | void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | { |
| 597 | if ((max_sectors << 9) < PAGE_CACHE_SIZE) { |
| 598 | max_sectors = 1 << (PAGE_CACHE_SHIFT - 9); |
| 599 | printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors); |
| 600 | } |
| 601 | |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 602 | if (BLK_DEF_MAX_SECTORS > max_sectors) |
| 603 | q->max_hw_sectors = q->max_sectors = max_sectors; |
| 604 | else { |
| 605 | q->max_sectors = BLK_DEF_MAX_SECTORS; |
| 606 | q->max_hw_sectors = max_sectors; |
| 607 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | EXPORT_SYMBOL(blk_queue_max_sectors); |
| 611 | |
| 612 | /** |
| 613 | * blk_queue_max_phys_segments - set max phys segments for a request for this queue |
| 614 | * @q: the request queue for the device |
| 615 | * @max_segments: max number of segments |
| 616 | * |
| 617 | * Description: |
| 618 | * Enables a low level driver to set an upper limit on the number of |
| 619 | * physical data segments in a request. This would be the largest sized |
| 620 | * scatter list the driver could handle. |
| 621 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 622 | void blk_queue_max_phys_segments(struct request_queue *q, |
| 623 | unsigned short max_segments) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
| 625 | if (!max_segments) { |
| 626 | max_segments = 1; |
| 627 | printk("%s: set to minimum %d\n", __FUNCTION__, max_segments); |
| 628 | } |
| 629 | |
| 630 | q->max_phys_segments = max_segments; |
| 631 | } |
| 632 | |
| 633 | EXPORT_SYMBOL(blk_queue_max_phys_segments); |
| 634 | |
| 635 | /** |
| 636 | * blk_queue_max_hw_segments - set max hw segments for a request for this queue |
| 637 | * @q: the request queue for the device |
| 638 | * @max_segments: max number of segments |
| 639 | * |
| 640 | * Description: |
| 641 | * Enables a low level driver to set an upper limit on the number of |
| 642 | * hw data segments in a request. This would be the largest number of |
| 643 | * address/length pairs the host adapter can actually give as once |
| 644 | * to the device. |
| 645 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 646 | void blk_queue_max_hw_segments(struct request_queue *q, |
| 647 | unsigned short max_segments) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
| 649 | if (!max_segments) { |
| 650 | max_segments = 1; |
| 651 | printk("%s: set to minimum %d\n", __FUNCTION__, max_segments); |
| 652 | } |
| 653 | |
| 654 | q->max_hw_segments = max_segments; |
| 655 | } |
| 656 | |
| 657 | EXPORT_SYMBOL(blk_queue_max_hw_segments); |
| 658 | |
| 659 | /** |
| 660 | * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg |
| 661 | * @q: the request queue for the device |
| 662 | * @max_size: max size of segment in bytes |
| 663 | * |
| 664 | * Description: |
| 665 | * Enables a low level driver to set an upper limit on the size of a |
| 666 | * coalesced segment |
| 667 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 668 | void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
| 670 | if (max_size < PAGE_CACHE_SIZE) { |
| 671 | max_size = PAGE_CACHE_SIZE; |
| 672 | printk("%s: set to minimum %d\n", __FUNCTION__, max_size); |
| 673 | } |
| 674 | |
| 675 | q->max_segment_size = max_size; |
| 676 | } |
| 677 | |
| 678 | EXPORT_SYMBOL(blk_queue_max_segment_size); |
| 679 | |
| 680 | /** |
| 681 | * blk_queue_hardsect_size - set hardware sector size for the queue |
| 682 | * @q: the request queue for the device |
| 683 | * @size: the hardware sector size, in bytes |
| 684 | * |
| 685 | * Description: |
| 686 | * This should typically be set to the lowest possible sector size |
| 687 | * that the hardware can operate on (possible without reverting to |
| 688 | * even internal read-modify-write operations). Usually the default |
| 689 | * of 512 covers most hardware. |
| 690 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 691 | void blk_queue_hardsect_size(struct request_queue *q, unsigned short size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | { |
| 693 | q->hardsect_size = size; |
| 694 | } |
| 695 | |
| 696 | EXPORT_SYMBOL(blk_queue_hardsect_size); |
| 697 | |
| 698 | /* |
| 699 | * Returns the minimum that is _not_ zero, unless both are zero. |
| 700 | */ |
| 701 | #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r)) |
| 702 | |
| 703 | /** |
| 704 | * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers |
| 705 | * @t: the stacking driver (top) |
| 706 | * @b: the underlying device (bottom) |
| 707 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 708 | void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | { |
| 710 | /* zero is "infinity" */ |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 711 | t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors); |
| 712 | t->max_hw_sectors = min_not_zero(t->max_hw_sectors,b->max_hw_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments); |
| 715 | t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments); |
| 716 | t->max_segment_size = min(t->max_segment_size,b->max_segment_size); |
| 717 | t->hardsect_size = max(t->hardsect_size,b->hardsect_size); |
NeilBrown | 89e5c8b | 2006-03-27 01:18:02 -0800 | [diff] [blame] | 718 | if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) |
| 719 | clear_bit(QUEUE_FLAG_CLUSTER, &t->queue_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | EXPORT_SYMBOL(blk_queue_stack_limits); |
| 723 | |
| 724 | /** |
| 725 | * blk_queue_segment_boundary - set boundary rules for segment merging |
| 726 | * @q: the request queue for the device |
| 727 | * @mask: the memory boundary mask |
| 728 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 729 | void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | { |
| 731 | if (mask < PAGE_CACHE_SIZE - 1) { |
| 732 | mask = PAGE_CACHE_SIZE - 1; |
| 733 | printk("%s: set to minimum %lx\n", __FUNCTION__, mask); |
| 734 | } |
| 735 | |
| 736 | q->seg_boundary_mask = mask; |
| 737 | } |
| 738 | |
| 739 | EXPORT_SYMBOL(blk_queue_segment_boundary); |
| 740 | |
| 741 | /** |
| 742 | * blk_queue_dma_alignment - set dma length and memory alignment |
| 743 | * @q: the request queue for the device |
| 744 | * @mask: alignment mask |
| 745 | * |
| 746 | * description: |
| 747 | * set required memory and length aligment for direct dma transactions. |
| 748 | * this is used when buiding direct io requests for the queue. |
| 749 | * |
| 750 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 751 | void blk_queue_dma_alignment(struct request_queue *q, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
| 753 | q->dma_alignment = mask; |
| 754 | } |
| 755 | |
| 756 | EXPORT_SYMBOL(blk_queue_dma_alignment); |
| 757 | |
| 758 | /** |
| 759 | * blk_queue_find_tag - find a request by its tag and queue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | * @q: The request queue for the device |
| 761 | * @tag: The tag of the request |
| 762 | * |
| 763 | * Notes: |
| 764 | * Should be used when a device returns a tag and you want to match |
| 765 | * it with a request. |
| 766 | * |
| 767 | * no locks need be held. |
| 768 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 769 | struct request *blk_queue_find_tag(struct request_queue *q, int tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | { |
David C Somayajulu | f583f49 | 2006-10-04 08:27:25 +0200 | [diff] [blame] | 771 | return blk_map_queue_find_tag(q->queue_tags, tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | EXPORT_SYMBOL(blk_queue_find_tag); |
| 775 | |
| 776 | /** |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 777 | * __blk_free_tags - release a given set of tag maintenance info |
| 778 | * @bqt: the tag map to free |
| 779 | * |
| 780 | * Tries to free the specified @bqt@. Returns true if it was |
| 781 | * actually freed and false if there are still references using it |
| 782 | */ |
| 783 | static int __blk_free_tags(struct blk_queue_tag *bqt) |
| 784 | { |
| 785 | int retval; |
| 786 | |
| 787 | retval = atomic_dec_and_test(&bqt->refcnt); |
| 788 | if (retval) { |
| 789 | BUG_ON(bqt->busy); |
| 790 | BUG_ON(!list_empty(&bqt->busy_list)); |
| 791 | |
| 792 | kfree(bqt->tag_index); |
| 793 | bqt->tag_index = NULL; |
| 794 | |
| 795 | kfree(bqt->tag_map); |
| 796 | bqt->tag_map = NULL; |
| 797 | |
| 798 | kfree(bqt); |
| 799 | |
| 800 | } |
| 801 | |
| 802 | return retval; |
| 803 | } |
| 804 | |
| 805 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | * __blk_queue_free_tags - release tag maintenance info |
| 807 | * @q: the request queue for the device |
| 808 | * |
| 809 | * Notes: |
| 810 | * blk_cleanup_queue() will take care of calling this function, if tagging |
| 811 | * has been used. So there's no need to call this directly. |
| 812 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 813 | static void __blk_queue_free_tags(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | { |
| 815 | struct blk_queue_tag *bqt = q->queue_tags; |
| 816 | |
| 817 | if (!bqt) |
| 818 | return; |
| 819 | |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 820 | __blk_free_tags(bqt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| 822 | q->queue_tags = NULL; |
| 823 | q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED); |
| 824 | } |
| 825 | |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 826 | |
| 827 | /** |
| 828 | * blk_free_tags - release a given set of tag maintenance info |
| 829 | * @bqt: the tag map to free |
| 830 | * |
| 831 | * For externally managed @bqt@ frees the map. Callers of this |
| 832 | * function must guarantee to have released all the queues that |
| 833 | * might have been using this tag map. |
| 834 | */ |
| 835 | void blk_free_tags(struct blk_queue_tag *bqt) |
| 836 | { |
| 837 | if (unlikely(!__blk_free_tags(bqt))) |
| 838 | BUG(); |
| 839 | } |
| 840 | EXPORT_SYMBOL(blk_free_tags); |
| 841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | /** |
| 843 | * blk_queue_free_tags - release tag maintenance info |
| 844 | * @q: the request queue for the device |
| 845 | * |
| 846 | * Notes: |
| 847 | * This is used to disabled tagged queuing to a device, yet leave |
| 848 | * queue in function. |
| 849 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 850 | void blk_queue_free_tags(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | { |
| 852 | clear_bit(QUEUE_FLAG_QUEUED, &q->queue_flags); |
| 853 | } |
| 854 | |
| 855 | EXPORT_SYMBOL(blk_queue_free_tags); |
| 856 | |
| 857 | static int |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 858 | init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | struct request **tag_index; |
| 861 | unsigned long *tag_map; |
Tejun Heo | fa72b90 | 2005-06-23 00:08:49 -0700 | [diff] [blame] | 862 | int nr_ulongs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 864 | if (q && depth > q->nr_requests * 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | depth = q->nr_requests * 2; |
| 866 | printk(KERN_ERR "%s: adjusted depth to %d\n", |
| 867 | __FUNCTION__, depth); |
| 868 | } |
| 869 | |
Jens Axboe | f68110f | 2006-03-08 13:31:44 +0100 | [diff] [blame] | 870 | tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | if (!tag_index) |
| 872 | goto fail; |
| 873 | |
Tejun Heo | f7d37d0 | 2005-06-23 00:08:50 -0700 | [diff] [blame] | 874 | nr_ulongs = ALIGN(depth, BITS_PER_LONG) / BITS_PER_LONG; |
Jens Axboe | f68110f | 2006-03-08 13:31:44 +0100 | [diff] [blame] | 875 | tag_map = kzalloc(nr_ulongs * sizeof(unsigned long), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | if (!tag_map) |
| 877 | goto fail; |
| 878 | |
Tejun Heo | ba02508 | 2005-08-05 13:28:11 -0700 | [diff] [blame] | 879 | tags->real_max_depth = depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | tags->max_depth = depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | tags->tag_index = tag_index; |
| 882 | tags->tag_map = tag_map; |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | return 0; |
| 885 | fail: |
| 886 | kfree(tag_index); |
| 887 | return -ENOMEM; |
| 888 | } |
| 889 | |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 890 | static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q, |
| 891 | int depth) |
| 892 | { |
| 893 | struct blk_queue_tag *tags; |
| 894 | |
| 895 | tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC); |
| 896 | if (!tags) |
| 897 | goto fail; |
| 898 | |
| 899 | if (init_tag_map(q, tags, depth)) |
| 900 | goto fail; |
| 901 | |
| 902 | INIT_LIST_HEAD(&tags->busy_list); |
| 903 | tags->busy = 0; |
| 904 | atomic_set(&tags->refcnt, 1); |
| 905 | return tags; |
| 906 | fail: |
| 907 | kfree(tags); |
| 908 | return NULL; |
| 909 | } |
| 910 | |
| 911 | /** |
| 912 | * blk_init_tags - initialize the tag info for an external tag map |
| 913 | * @depth: the maximum queue depth supported |
| 914 | * @tags: the tag to use |
| 915 | **/ |
| 916 | struct blk_queue_tag *blk_init_tags(int depth) |
| 917 | { |
| 918 | return __blk_queue_init_tags(NULL, depth); |
| 919 | } |
| 920 | EXPORT_SYMBOL(blk_init_tags); |
| 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | /** |
| 923 | * blk_queue_init_tags - initialize the queue tag info |
| 924 | * @q: the request queue for the device |
| 925 | * @depth: the maximum queue depth supported |
| 926 | * @tags: the tag to use |
| 927 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 928 | int blk_queue_init_tags(struct request_queue *q, int depth, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | struct blk_queue_tag *tags) |
| 930 | { |
| 931 | int rc; |
| 932 | |
| 933 | BUG_ON(tags && q->queue_tags && tags != q->queue_tags); |
| 934 | |
| 935 | if (!tags && !q->queue_tags) { |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 936 | tags = __blk_queue_init_tags(q, depth); |
| 937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | if (!tags) |
| 939 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } else if (q->queue_tags) { |
| 941 | if ((rc = blk_queue_resize_tags(q, depth))) |
| 942 | return rc; |
| 943 | set_bit(QUEUE_FLAG_QUEUED, &q->queue_flags); |
| 944 | return 0; |
| 945 | } else |
| 946 | atomic_inc(&tags->refcnt); |
| 947 | |
| 948 | /* |
| 949 | * assign it, all done |
| 950 | */ |
| 951 | q->queue_tags = tags; |
| 952 | q->queue_flags |= (1 << QUEUE_FLAG_QUEUED); |
| 953 | return 0; |
| 954 | fail: |
| 955 | kfree(tags); |
| 956 | return -ENOMEM; |
| 957 | } |
| 958 | |
| 959 | EXPORT_SYMBOL(blk_queue_init_tags); |
| 960 | |
| 961 | /** |
| 962 | * blk_queue_resize_tags - change the queueing depth |
| 963 | * @q: the request queue for the device |
| 964 | * @new_depth: the new max command queueing depth |
| 965 | * |
| 966 | * Notes: |
| 967 | * Must be called with the queue lock held. |
| 968 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 969 | int blk_queue_resize_tags(struct request_queue *q, int new_depth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | { |
| 971 | struct blk_queue_tag *bqt = q->queue_tags; |
| 972 | struct request **tag_index; |
| 973 | unsigned long *tag_map; |
Tejun Heo | fa72b90 | 2005-06-23 00:08:49 -0700 | [diff] [blame] | 974 | int max_depth, nr_ulongs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
| 976 | if (!bqt) |
| 977 | return -ENXIO; |
| 978 | |
| 979 | /* |
Tejun Heo | ba02508 | 2005-08-05 13:28:11 -0700 | [diff] [blame] | 980 | * if we already have large enough real_max_depth. just |
| 981 | * adjust max_depth. *NOTE* as requests with tag value |
| 982 | * between new_depth and real_max_depth can be in-flight, tag |
| 983 | * map can not be shrunk blindly here. |
| 984 | */ |
| 985 | if (new_depth <= bqt->real_max_depth) { |
| 986 | bqt->max_depth = new_depth; |
| 987 | return 0; |
| 988 | } |
| 989 | |
| 990 | /* |
James Bottomley | 492dfb4 | 2006-08-30 15:48:45 -0400 | [diff] [blame] | 991 | * Currently cannot replace a shared tag map with a new |
| 992 | * one, so error out if this is the case |
| 993 | */ |
| 994 | if (atomic_read(&bqt->refcnt) != 1) |
| 995 | return -EBUSY; |
| 996 | |
| 997 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | * save the old state info, so we can copy it back |
| 999 | */ |
| 1000 | tag_index = bqt->tag_index; |
| 1001 | tag_map = bqt->tag_map; |
Tejun Heo | ba02508 | 2005-08-05 13:28:11 -0700 | [diff] [blame] | 1002 | max_depth = bqt->real_max_depth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
| 1004 | if (init_tag_map(q, bqt, new_depth)) |
| 1005 | return -ENOMEM; |
| 1006 | |
| 1007 | memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *)); |
Tejun Heo | f7d37d0 | 2005-06-23 00:08:50 -0700 | [diff] [blame] | 1008 | nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG; |
Tejun Heo | fa72b90 | 2005-06-23 00:08:49 -0700 | [diff] [blame] | 1009 | memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | kfree(tag_index); |
| 1012 | kfree(tag_map); |
| 1013 | return 0; |
| 1014 | } |
| 1015 | |
| 1016 | EXPORT_SYMBOL(blk_queue_resize_tags); |
| 1017 | |
| 1018 | /** |
| 1019 | * blk_queue_end_tag - end tag operations for a request |
| 1020 | * @q: the request queue for the device |
| 1021 | * @rq: the request that has completed |
| 1022 | * |
| 1023 | * Description: |
| 1024 | * Typically called when end_that_request_first() returns 0, meaning |
| 1025 | * all transfers have been done for a request. It's important to call |
| 1026 | * this function before end_that_request_last(), as that will put the |
| 1027 | * request back on the free list thus corrupting the internal tag list. |
| 1028 | * |
| 1029 | * Notes: |
| 1030 | * queue lock must be held. |
| 1031 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1032 | void blk_queue_end_tag(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | { |
| 1034 | struct blk_queue_tag *bqt = q->queue_tags; |
| 1035 | int tag = rq->tag; |
| 1036 | |
| 1037 | BUG_ON(tag == -1); |
| 1038 | |
Tejun Heo | ba02508 | 2005-08-05 13:28:11 -0700 | [diff] [blame] | 1039 | if (unlikely(tag >= bqt->real_max_depth)) |
Tejun Heo | 040c928 | 2005-06-23 00:08:51 -0700 | [diff] [blame] | 1040 | /* |
| 1041 | * This can happen after tag depth has been reduced. |
| 1042 | * FIXME: how about a warning or info message here? |
| 1043 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | return; |
| 1045 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | list_del_init(&rq->queuelist); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1047 | rq->cmd_flags &= ~REQ_QUEUED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | rq->tag = -1; |
| 1049 | |
| 1050 | if (unlikely(bqt->tag_index[tag] == NULL)) |
Tejun Heo | 040c928 | 2005-06-23 00:08:51 -0700 | [diff] [blame] | 1051 | printk(KERN_ERR "%s: tag %d is missing\n", |
| 1052 | __FUNCTION__, tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | bqt->tag_index[tag] = NULL; |
Jens Axboe | f3da54b | 2007-09-13 14:26:53 +0200 | [diff] [blame] | 1055 | |
Nick Piggin | dd94125 | 2007-09-14 08:41:12 +0200 | [diff] [blame] | 1056 | /* |
| 1057 | * We use test_and_clear_bit's memory ordering properties here. |
| 1058 | * The tag_map bit acts as a lock for tag_index[bit], so we need |
| 1059 | * a barrer before clearing the bit (precisely: release semantics). |
| 1060 | * Could use clear_bit_unlock when it is merged. |
| 1061 | */ |
Jens Axboe | f3da54b | 2007-09-13 14:26:53 +0200 | [diff] [blame] | 1062 | if (unlikely(!test_and_clear_bit(tag, bqt->tag_map))) { |
| 1063 | printk(KERN_ERR "%s: attempt to clear non-busy tag (%d)\n", |
| 1064 | __FUNCTION__, tag); |
| 1065 | return; |
| 1066 | } |
| 1067 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | bqt->busy--; |
| 1069 | } |
| 1070 | |
| 1071 | EXPORT_SYMBOL(blk_queue_end_tag); |
| 1072 | |
| 1073 | /** |
| 1074 | * blk_queue_start_tag - find a free tag and assign it |
| 1075 | * @q: the request queue for the device |
| 1076 | * @rq: the block request that needs tagging |
| 1077 | * |
| 1078 | * Description: |
| 1079 | * This can either be used as a stand-alone helper, or possibly be |
| 1080 | * assigned as the queue &prep_rq_fn (in which case &struct request |
| 1081 | * automagically gets a tag assigned). Note that this function |
| 1082 | * assumes that any type of request can be queued! if this is not |
| 1083 | * true for your device, you must check the request type before |
| 1084 | * calling this function. The request will also be removed from |
| 1085 | * the request queue, so it's the drivers responsibility to readd |
| 1086 | * it if it should need to be restarted for some reason. |
| 1087 | * |
| 1088 | * Notes: |
| 1089 | * queue lock must be held. |
| 1090 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1091 | int blk_queue_start_tag(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | { |
| 1093 | struct blk_queue_tag *bqt = q->queue_tags; |
Tejun Heo | 2bf0fda | 2005-06-23 00:08:48 -0700 | [diff] [blame] | 1094 | int tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1096 | if (unlikely((rq->cmd_flags & REQ_QUEUED))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | printk(KERN_ERR |
Tejun Heo | 040c928 | 2005-06-23 00:08:51 -0700 | [diff] [blame] | 1098 | "%s: request %p for device [%s] already tagged %d", |
| 1099 | __FUNCTION__, rq, |
| 1100 | rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | BUG(); |
| 1102 | } |
| 1103 | |
Jens Axboe | 059af49 | 2006-09-21 20:37:22 +0200 | [diff] [blame] | 1104 | /* |
| 1105 | * Protect against shared tag maps, as we may not have exclusive |
| 1106 | * access to the tag map. |
| 1107 | */ |
| 1108 | do { |
| 1109 | tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth); |
| 1110 | if (tag >= bqt->max_depth) |
| 1111 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Jens Axboe | 059af49 | 2006-09-21 20:37:22 +0200 | [diff] [blame] | 1113 | } while (test_and_set_bit(tag, bqt->tag_map)); |
Nick Piggin | dd94125 | 2007-09-14 08:41:12 +0200 | [diff] [blame] | 1114 | /* |
| 1115 | * We rely on test_and_set_bit providing lock memory ordering semantics |
| 1116 | * (could use test_and_set_bit_lock when it is merged). |
| 1117 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1119 | rq->cmd_flags |= REQ_QUEUED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | rq->tag = tag; |
| 1121 | bqt->tag_index[tag] = rq; |
| 1122 | blkdev_dequeue_request(rq); |
| 1123 | list_add(&rq->queuelist, &bqt->busy_list); |
| 1124 | bqt->busy++; |
| 1125 | return 0; |
| 1126 | } |
| 1127 | |
| 1128 | EXPORT_SYMBOL(blk_queue_start_tag); |
| 1129 | |
| 1130 | /** |
| 1131 | * blk_queue_invalidate_tags - invalidate all pending tags |
| 1132 | * @q: the request queue for the device |
| 1133 | * |
| 1134 | * Description: |
| 1135 | * Hardware conditions may dictate a need to stop all pending requests. |
| 1136 | * In this case, we will safely clear the block side of the tag queue and |
| 1137 | * readd all requests to the request queue in the right order. |
| 1138 | * |
| 1139 | * Notes: |
| 1140 | * queue lock must be held. |
| 1141 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1142 | void blk_queue_invalidate_tags(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | { |
| 1144 | struct blk_queue_tag *bqt = q->queue_tags; |
| 1145 | struct list_head *tmp, *n; |
| 1146 | struct request *rq; |
| 1147 | |
| 1148 | list_for_each_safe(tmp, n, &bqt->busy_list) { |
| 1149 | rq = list_entry_rq(tmp); |
| 1150 | |
| 1151 | if (rq->tag == -1) { |
Tejun Heo | 040c928 | 2005-06-23 00:08:51 -0700 | [diff] [blame] | 1152 | printk(KERN_ERR |
| 1153 | "%s: bad tag found on list\n", __FUNCTION__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | list_del_init(&rq->queuelist); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1155 | rq->cmd_flags &= ~REQ_QUEUED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | } else |
| 1157 | blk_queue_end_tag(q, rq); |
| 1158 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1159 | rq->cmd_flags &= ~REQ_STARTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0); |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | EXPORT_SYMBOL(blk_queue_invalidate_tags); |
| 1165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | void blk_dump_rq_flags(struct request *rq, char *msg) |
| 1167 | { |
| 1168 | int bit; |
| 1169 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1170 | printk("%s: dev %s: type=%x, flags=%x\n", msg, |
| 1171 | rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type, |
| 1172 | rq->cmd_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
| 1174 | printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector, |
| 1175 | rq->nr_sectors, |
| 1176 | rq->current_nr_sectors); |
| 1177 | printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len); |
| 1178 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1179 | if (blk_pc_request(rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | printk("cdb: "); |
| 1181 | for (bit = 0; bit < sizeof(rq->cmd); bit++) |
| 1182 | printk("%02x ", rq->cmd[bit]); |
| 1183 | printk("\n"); |
| 1184 | } |
| 1185 | } |
| 1186 | |
| 1187 | EXPORT_SYMBOL(blk_dump_rq_flags); |
| 1188 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1189 | void blk_recount_segments(struct request_queue *q, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | { |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1191 | struct request rq; |
| 1192 | struct bio *nxt = bio->bi_next; |
| 1193 | rq.q = q; |
| 1194 | rq.bio = rq.biotail = bio; |
| 1195 | bio->bi_next = NULL; |
| 1196 | blk_recalc_rq_segments(&rq); |
| 1197 | bio->bi_next = nxt; |
| 1198 | bio->bi_phys_segments = rq.nr_phys_segments; |
| 1199 | bio->bi_hw_segments = rq.nr_hw_segments; |
| 1200 | bio->bi_flags |= (1 << BIO_SEG_VALID); |
| 1201 | } |
| 1202 | EXPORT_SYMBOL(blk_recount_segments); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1204 | static void blk_recalc_rq_segments(struct request *rq) |
| 1205 | { |
| 1206 | int nr_phys_segs; |
| 1207 | int nr_hw_segs; |
| 1208 | unsigned int phys_size; |
| 1209 | unsigned int hw_size; |
| 1210 | struct bio_vec *bv, *bvprv = NULL; |
| 1211 | int seg_size; |
| 1212 | int hw_seg_size; |
| 1213 | int cluster; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 1214 | struct req_iterator iter; |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1215 | int high, highprv = 1; |
| 1216 | struct request_queue *q = rq->q; |
| 1217 | |
| 1218 | if (!rq->bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | return; |
| 1220 | |
| 1221 | cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER); |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1222 | hw_seg_size = seg_size = 0; |
| 1223 | phys_size = hw_size = nr_phys_segs = nr_hw_segs = 0; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 1224 | rq_for_each_segment(bv, rq, iter) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | /* |
| 1226 | * the trick here is making sure that a high page is never |
| 1227 | * considered part of another segment, since that might |
| 1228 | * change with the bounce page. |
| 1229 | */ |
Vasily Tarasov | f772b3d | 2007-03-27 08:52:47 +0200 | [diff] [blame] | 1230 | high = page_to_pfn(bv->bv_page) > q->bounce_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | if (high || highprv) |
| 1232 | goto new_hw_segment; |
| 1233 | if (cluster) { |
| 1234 | if (seg_size + bv->bv_len > q->max_segment_size) |
| 1235 | goto new_segment; |
| 1236 | if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv)) |
| 1237 | goto new_segment; |
| 1238 | if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv)) |
| 1239 | goto new_segment; |
| 1240 | if (BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len)) |
| 1241 | goto new_hw_segment; |
| 1242 | |
| 1243 | seg_size += bv->bv_len; |
| 1244 | hw_seg_size += bv->bv_len; |
| 1245 | bvprv = bv; |
| 1246 | continue; |
| 1247 | } |
| 1248 | new_segment: |
| 1249 | if (BIOVEC_VIRT_MERGEABLE(bvprv, bv) && |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1250 | !BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | hw_seg_size += bv->bv_len; |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1252 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | new_hw_segment: |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1254 | if (nr_hw_segs == 1 && |
| 1255 | hw_seg_size > rq->bio->bi_hw_front_size) |
| 1256 | rq->bio->bi_hw_front_size = hw_seg_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | hw_seg_size = BIOVEC_VIRT_START_SIZE(bv) + bv->bv_len; |
| 1258 | nr_hw_segs++; |
| 1259 | } |
| 1260 | |
| 1261 | nr_phys_segs++; |
| 1262 | bvprv = bv; |
| 1263 | seg_size = bv->bv_len; |
| 1264 | highprv = high; |
| 1265 | } |
NeilBrown | 9dfa528 | 2007-08-16 13:27:52 +0200 | [diff] [blame] | 1266 | |
| 1267 | if (nr_hw_segs == 1 && |
| 1268 | hw_seg_size > rq->bio->bi_hw_front_size) |
| 1269 | rq->bio->bi_hw_front_size = hw_seg_size; |
| 1270 | if (hw_seg_size > rq->biotail->bi_hw_back_size) |
| 1271 | rq->biotail->bi_hw_back_size = hw_seg_size; |
| 1272 | rq->nr_phys_segments = nr_phys_segs; |
| 1273 | rq->nr_hw_segments = nr_hw_segs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1276 | static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | struct bio *nxt) |
| 1278 | { |
| 1279 | if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER))) |
| 1280 | return 0; |
| 1281 | |
| 1282 | if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt))) |
| 1283 | return 0; |
| 1284 | if (bio->bi_size + nxt->bi_size > q->max_segment_size) |
| 1285 | return 0; |
| 1286 | |
| 1287 | /* |
| 1288 | * bio and nxt are contigous in memory, check if the queue allows |
| 1289 | * these two to be merged into one |
| 1290 | */ |
| 1291 | if (BIO_SEG_BOUNDARY(q, bio, nxt)) |
| 1292 | return 1; |
| 1293 | |
| 1294 | return 0; |
| 1295 | } |
| 1296 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1297 | static int blk_hw_contig_segment(struct request_queue *q, struct bio *bio, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | struct bio *nxt) |
| 1299 | { |
| 1300 | if (unlikely(!bio_flagged(bio, BIO_SEG_VALID))) |
| 1301 | blk_recount_segments(q, bio); |
| 1302 | if (unlikely(!bio_flagged(nxt, BIO_SEG_VALID))) |
| 1303 | blk_recount_segments(q, nxt); |
| 1304 | if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)) || |
Jens Axboe | 32eef96 | 2007-06-19 09:09:27 +0200 | [diff] [blame] | 1305 | BIOVEC_VIRT_OVERSIZE(bio->bi_hw_back_size + nxt->bi_hw_front_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | return 0; |
Jens Axboe | 32eef96 | 2007-06-19 09:09:27 +0200 | [diff] [blame] | 1307 | if (bio->bi_hw_back_size + nxt->bi_hw_front_size > q->max_segment_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | return 0; |
| 1309 | |
| 1310 | return 1; |
| 1311 | } |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* |
| 1314 | * map a request to scatterlist, return number of sg entries setup. Caller |
| 1315 | * must make sure sg can hold rq->nr_phys_segments entries |
| 1316 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1317 | int blk_rq_map_sg(struct request_queue *q, struct request *rq, |
| 1318 | struct scatterlist *sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | { |
| 1320 | struct bio_vec *bvec, *bvprv; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 1321 | struct req_iterator iter; |
| 1322 | int nsegs, cluster; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
| 1324 | nsegs = 0; |
| 1325 | cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER); |
| 1326 | |
| 1327 | /* |
| 1328 | * for each bio in rq |
| 1329 | */ |
| 1330 | bvprv = NULL; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 1331 | rq_for_each_segment(bvec, rq, iter) { |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1332 | int nbytes = bvec->bv_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1334 | if (bvprv && cluster) { |
| 1335 | if (sg[nsegs - 1].length + nbytes > q->max_segment_size) |
| 1336 | goto new_segment; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1338 | if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec)) |
| 1339 | goto new_segment; |
| 1340 | if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec)) |
| 1341 | goto new_segment; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1343 | sg[nsegs - 1].length += nbytes; |
| 1344 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | new_segment: |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1346 | memset(&sg[nsegs],0,sizeof(struct scatterlist)); |
| 1347 | sg[nsegs].page = bvec->bv_page; |
| 1348 | sg[nsegs].length = nbytes; |
| 1349 | sg[nsegs].offset = bvec->bv_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 1351 | nsegs++; |
| 1352 | } |
| 1353 | bvprv = bvec; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 1354 | } /* segments in rq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | |
| 1356 | return nsegs; |
| 1357 | } |
| 1358 | |
| 1359 | EXPORT_SYMBOL(blk_rq_map_sg); |
| 1360 | |
| 1361 | /* |
| 1362 | * the standard queue merge functions, can be overridden with device |
| 1363 | * specific ones if so desired |
| 1364 | */ |
| 1365 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1366 | static inline int ll_new_mergeable(struct request_queue *q, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | struct request *req, |
| 1368 | struct bio *bio) |
| 1369 | { |
| 1370 | int nr_phys_segs = bio_phys_segments(q, bio); |
| 1371 | |
| 1372 | if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1373 | req->cmd_flags |= REQ_NOMERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | if (req == q->last_merge) |
| 1375 | q->last_merge = NULL; |
| 1376 | return 0; |
| 1377 | } |
| 1378 | |
| 1379 | /* |
| 1380 | * A hw segment is just getting larger, bump just the phys |
| 1381 | * counter. |
| 1382 | */ |
| 1383 | req->nr_phys_segments += nr_phys_segs; |
| 1384 | return 1; |
| 1385 | } |
| 1386 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1387 | static inline int ll_new_hw_segment(struct request_queue *q, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | struct request *req, |
| 1389 | struct bio *bio) |
| 1390 | { |
| 1391 | int nr_hw_segs = bio_hw_segments(q, bio); |
| 1392 | int nr_phys_segs = bio_phys_segments(q, bio); |
| 1393 | |
| 1394 | if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments |
| 1395 | || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1396 | req->cmd_flags |= REQ_NOMERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | if (req == q->last_merge) |
| 1398 | q->last_merge = NULL; |
| 1399 | return 0; |
| 1400 | } |
| 1401 | |
| 1402 | /* |
| 1403 | * This will form the start of a new hw segment. Bump both |
| 1404 | * counters. |
| 1405 | */ |
| 1406 | req->nr_hw_segments += nr_hw_segs; |
| 1407 | req->nr_phys_segments += nr_phys_segs; |
| 1408 | return 1; |
| 1409 | } |
| 1410 | |
NeilBrown | 3001ca7 | 2007-08-16 13:31:27 +0200 | [diff] [blame] | 1411 | static int ll_back_merge_fn(struct request_queue *q, struct request *req, |
| 1412 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | { |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 1414 | unsigned short max_sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | int len; |
| 1416 | |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 1417 | if (unlikely(blk_pc_request(req))) |
| 1418 | max_sectors = q->max_hw_sectors; |
| 1419 | else |
| 1420 | max_sectors = q->max_sectors; |
| 1421 | |
| 1422 | if (req->nr_sectors + bio_sectors(bio) > max_sectors) { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1423 | req->cmd_flags |= REQ_NOMERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | if (req == q->last_merge) |
| 1425 | q->last_merge = NULL; |
| 1426 | return 0; |
| 1427 | } |
| 1428 | if (unlikely(!bio_flagged(req->biotail, BIO_SEG_VALID))) |
| 1429 | blk_recount_segments(q, req->biotail); |
| 1430 | if (unlikely(!bio_flagged(bio, BIO_SEG_VALID))) |
| 1431 | blk_recount_segments(q, bio); |
| 1432 | len = req->biotail->bi_hw_back_size + bio->bi_hw_front_size; |
| 1433 | if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)) && |
| 1434 | !BIOVEC_VIRT_OVERSIZE(len)) { |
| 1435 | int mergeable = ll_new_mergeable(q, req, bio); |
| 1436 | |
| 1437 | if (mergeable) { |
| 1438 | if (req->nr_hw_segments == 1) |
| 1439 | req->bio->bi_hw_front_size = len; |
| 1440 | if (bio->bi_hw_segments == 1) |
| 1441 | bio->bi_hw_back_size = len; |
| 1442 | } |
| 1443 | return mergeable; |
| 1444 | } |
| 1445 | |
| 1446 | return ll_new_hw_segment(q, req, bio); |
| 1447 | } |
| 1448 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1449 | static int ll_front_merge_fn(struct request_queue *q, struct request *req, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | struct bio *bio) |
| 1451 | { |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 1452 | unsigned short max_sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | int len; |
| 1454 | |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 1455 | if (unlikely(blk_pc_request(req))) |
| 1456 | max_sectors = q->max_hw_sectors; |
| 1457 | else |
| 1458 | max_sectors = q->max_sectors; |
| 1459 | |
| 1460 | |
| 1461 | if (req->nr_sectors + bio_sectors(bio) > max_sectors) { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1462 | req->cmd_flags |= REQ_NOMERGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | if (req == q->last_merge) |
| 1464 | q->last_merge = NULL; |
| 1465 | return 0; |
| 1466 | } |
| 1467 | len = bio->bi_hw_back_size + req->bio->bi_hw_front_size; |
| 1468 | if (unlikely(!bio_flagged(bio, BIO_SEG_VALID))) |
| 1469 | blk_recount_segments(q, bio); |
| 1470 | if (unlikely(!bio_flagged(req->bio, BIO_SEG_VALID))) |
| 1471 | blk_recount_segments(q, req->bio); |
| 1472 | if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)) && |
| 1473 | !BIOVEC_VIRT_OVERSIZE(len)) { |
| 1474 | int mergeable = ll_new_mergeable(q, req, bio); |
| 1475 | |
| 1476 | if (mergeable) { |
| 1477 | if (bio->bi_hw_segments == 1) |
| 1478 | bio->bi_hw_front_size = len; |
| 1479 | if (req->nr_hw_segments == 1) |
| 1480 | req->biotail->bi_hw_back_size = len; |
| 1481 | } |
| 1482 | return mergeable; |
| 1483 | } |
| 1484 | |
| 1485 | return ll_new_hw_segment(q, req, bio); |
| 1486 | } |
| 1487 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1488 | static int ll_merge_requests_fn(struct request_queue *q, struct request *req, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | struct request *next) |
| 1490 | { |
Nikita Danilov | dfa1a55 | 2005-06-25 14:59:20 -0700 | [diff] [blame] | 1491 | int total_phys_segments; |
| 1492 | int total_hw_segments; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | |
| 1494 | /* |
| 1495 | * First check if the either of the requests are re-queued |
| 1496 | * requests. Can't merge them if they are. |
| 1497 | */ |
| 1498 | if (req->special || next->special) |
| 1499 | return 0; |
| 1500 | |
| 1501 | /* |
Nikita Danilov | dfa1a55 | 2005-06-25 14:59:20 -0700 | [diff] [blame] | 1502 | * Will it become too large? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | */ |
| 1504 | if ((req->nr_sectors + next->nr_sectors) > q->max_sectors) |
| 1505 | return 0; |
| 1506 | |
| 1507 | total_phys_segments = req->nr_phys_segments + next->nr_phys_segments; |
| 1508 | if (blk_phys_contig_segment(q, req->biotail, next->bio)) |
| 1509 | total_phys_segments--; |
| 1510 | |
| 1511 | if (total_phys_segments > q->max_phys_segments) |
| 1512 | return 0; |
| 1513 | |
| 1514 | total_hw_segments = req->nr_hw_segments + next->nr_hw_segments; |
| 1515 | if (blk_hw_contig_segment(q, req->biotail, next->bio)) { |
| 1516 | int len = req->biotail->bi_hw_back_size + next->bio->bi_hw_front_size; |
| 1517 | /* |
| 1518 | * propagate the combined length to the end of the requests |
| 1519 | */ |
| 1520 | if (req->nr_hw_segments == 1) |
| 1521 | req->bio->bi_hw_front_size = len; |
| 1522 | if (next->nr_hw_segments == 1) |
| 1523 | next->biotail->bi_hw_back_size = len; |
| 1524 | total_hw_segments--; |
| 1525 | } |
| 1526 | |
| 1527 | if (total_hw_segments > q->max_hw_segments) |
| 1528 | return 0; |
| 1529 | |
| 1530 | /* Merge is OK... */ |
| 1531 | req->nr_phys_segments = total_phys_segments; |
| 1532 | req->nr_hw_segments = total_hw_segments; |
| 1533 | return 1; |
| 1534 | } |
| 1535 | |
| 1536 | /* |
| 1537 | * "plug" the device if there are no outstanding requests: this will |
| 1538 | * force the transfer to start only after we have put all the requests |
| 1539 | * on the list. |
| 1540 | * |
| 1541 | * This is called with interrupts off and no requests on the queue and |
| 1542 | * with the queue lock held. |
| 1543 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1544 | void blk_plug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | { |
| 1546 | WARN_ON(!irqs_disabled()); |
| 1547 | |
| 1548 | /* |
| 1549 | * don't plug a stopped queue, it must be paired with blk_start_queue() |
| 1550 | * which will restart the queueing |
| 1551 | */ |
Coywolf Qi Hunt | 7daac49 | 2006-04-19 10:14:49 +0200 | [diff] [blame] | 1552 | if (blk_queue_stopped(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | return; |
| 1554 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1555 | if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | mod_timer(&q->unplug_timer, jiffies + q->unplug_delay); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1557 | blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG); |
| 1558 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | EXPORT_SYMBOL(blk_plug_device); |
| 1562 | |
| 1563 | /* |
| 1564 | * remove the queue from the plugged list, if present. called with |
| 1565 | * queue lock held and interrupts disabled. |
| 1566 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1567 | int blk_remove_plug(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | { |
| 1569 | WARN_ON(!irqs_disabled()); |
| 1570 | |
| 1571 | if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) |
| 1572 | return 0; |
| 1573 | |
| 1574 | del_timer(&q->unplug_timer); |
| 1575 | return 1; |
| 1576 | } |
| 1577 | |
| 1578 | EXPORT_SYMBOL(blk_remove_plug); |
| 1579 | |
| 1580 | /* |
| 1581 | * remove the plug and let it rip.. |
| 1582 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1583 | void __generic_unplug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | { |
Coywolf Qi Hunt | 7daac49 | 2006-04-19 10:14:49 +0200 | [diff] [blame] | 1585 | if (unlikely(blk_queue_stopped(q))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | return; |
| 1587 | |
| 1588 | if (!blk_remove_plug(q)) |
| 1589 | return; |
| 1590 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 1591 | q->request_fn(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | } |
| 1593 | EXPORT_SYMBOL(__generic_unplug_device); |
| 1594 | |
| 1595 | /** |
| 1596 | * generic_unplug_device - fire a request queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1597 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | * |
| 1599 | * Description: |
| 1600 | * Linux uses plugging to build bigger requests queues before letting |
| 1601 | * the device have at them. If a queue is plugged, the I/O scheduler |
| 1602 | * is still adding and merging requests on the queue. Once the queue |
| 1603 | * gets unplugged, the request_fn defined for the queue is invoked and |
| 1604 | * transfers started. |
| 1605 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1606 | void generic_unplug_device(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | { |
| 1608 | spin_lock_irq(q->queue_lock); |
| 1609 | __generic_unplug_device(q); |
| 1610 | spin_unlock_irq(q->queue_lock); |
| 1611 | } |
| 1612 | EXPORT_SYMBOL(generic_unplug_device); |
| 1613 | |
| 1614 | static void blk_backing_dev_unplug(struct backing_dev_info *bdi, |
| 1615 | struct page *page) |
| 1616 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1617 | struct request_queue *q = bdi->unplug_io_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | |
| 1619 | /* |
| 1620 | * devices don't necessarily have an ->unplug_fn defined |
| 1621 | */ |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1622 | if (q->unplug_fn) { |
| 1623 | blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL, |
| 1624 | q->rq.count[READ] + q->rq.count[WRITE]); |
| 1625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | q->unplug_fn(q); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1627 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | } |
| 1629 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1630 | static void blk_unplug_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1632 | struct request_queue *q = |
| 1633 | container_of(work, struct request_queue, unplug_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1635 | blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL, |
| 1636 | q->rq.count[READ] + q->rq.count[WRITE]); |
| 1637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | q->unplug_fn(q); |
| 1639 | } |
| 1640 | |
| 1641 | static void blk_unplug_timeout(unsigned long data) |
| 1642 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1643 | struct request_queue *q = (struct request_queue *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1645 | blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL, |
| 1646 | q->rq.count[READ] + q->rq.count[WRITE]); |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | kblockd_schedule_work(&q->unplug_work); |
| 1649 | } |
| 1650 | |
| 1651 | /** |
| 1652 | * blk_start_queue - restart a previously stopped queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1653 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | * |
| 1655 | * Description: |
| 1656 | * blk_start_queue() will clear the stop flag on the queue, and call |
| 1657 | * the request_fn for the queue if it was in a stopped state when |
| 1658 | * entered. Also see blk_stop_queue(). Queue lock must be held. |
| 1659 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1660 | void blk_start_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | { |
Paolo 'Blaisorblade' Giarrusso | a038e25 | 2006-06-05 12:09:01 +0200 | [diff] [blame] | 1662 | WARN_ON(!irqs_disabled()); |
| 1663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags); |
| 1665 | |
| 1666 | /* |
| 1667 | * one level of recursion is ok and is much faster than kicking |
| 1668 | * the unplug handling |
| 1669 | */ |
| 1670 | if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) { |
| 1671 | q->request_fn(q); |
| 1672 | clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags); |
| 1673 | } else { |
| 1674 | blk_plug_device(q); |
| 1675 | kblockd_schedule_work(&q->unplug_work); |
| 1676 | } |
| 1677 | } |
| 1678 | |
| 1679 | EXPORT_SYMBOL(blk_start_queue); |
| 1680 | |
| 1681 | /** |
| 1682 | * blk_stop_queue - stop a queue |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1683 | * @q: The &struct request_queue in question |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | * |
| 1685 | * Description: |
| 1686 | * The Linux block layer assumes that a block driver will consume all |
| 1687 | * entries on the request queue when the request_fn strategy is called. |
| 1688 | * Often this will not happen, because of hardware limitations (queue |
| 1689 | * depth settings). If a device driver gets a 'queue full' response, |
| 1690 | * or if it simply chooses not to queue more I/O at one point, it can |
| 1691 | * call this function to prevent the request_fn from being called until |
| 1692 | * the driver has signalled it's ready to go again. This happens by calling |
| 1693 | * blk_start_queue() to restart queue operations. Queue lock must be held. |
| 1694 | **/ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1695 | void blk_stop_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | { |
| 1697 | blk_remove_plug(q); |
| 1698 | set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags); |
| 1699 | } |
| 1700 | EXPORT_SYMBOL(blk_stop_queue); |
| 1701 | |
| 1702 | /** |
| 1703 | * blk_sync_queue - cancel any pending callbacks on a queue |
| 1704 | * @q: the queue |
| 1705 | * |
| 1706 | * Description: |
| 1707 | * The block layer may perform asynchronous callback activity |
| 1708 | * on a queue, such as calling the unplug function after a timeout. |
| 1709 | * A block device may call blk_sync_queue to ensure that any |
| 1710 | * such activity is cancelled, thus allowing it to release resources |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 1711 | * that the callbacks might use. The caller must already have made sure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | * that its ->make_request_fn will not re-add plugging prior to calling |
| 1713 | * this function. |
| 1714 | * |
| 1715 | */ |
| 1716 | void blk_sync_queue(struct request_queue *q) |
| 1717 | { |
| 1718 | del_timer_sync(&q->unplug_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | } |
| 1720 | EXPORT_SYMBOL(blk_sync_queue); |
| 1721 | |
| 1722 | /** |
| 1723 | * blk_run_queue - run a single device queue |
| 1724 | * @q: The queue to run |
| 1725 | */ |
| 1726 | void blk_run_queue(struct request_queue *q) |
| 1727 | { |
| 1728 | unsigned long flags; |
| 1729 | |
| 1730 | spin_lock_irqsave(q->queue_lock, flags); |
| 1731 | blk_remove_plug(q); |
Jens Axboe | dac07ec | 2006-05-11 08:20:16 +0200 | [diff] [blame] | 1732 | |
| 1733 | /* |
| 1734 | * Only recurse once to avoid overrunning the stack, let the unplug |
| 1735 | * handling reinvoke the handler shortly if we already got there. |
| 1736 | */ |
| 1737 | if (!elv_queue_empty(q)) { |
| 1738 | if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) { |
| 1739 | q->request_fn(q); |
| 1740 | clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags); |
| 1741 | } else { |
| 1742 | blk_plug_device(q); |
| 1743 | kblockd_schedule_work(&q->unplug_work); |
| 1744 | } |
| 1745 | } |
| 1746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1748 | } |
| 1749 | EXPORT_SYMBOL(blk_run_queue); |
| 1750 | |
| 1751 | /** |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1752 | * blk_cleanup_queue: - release a &struct request_queue when it is no longer needed |
Martin Waitz | a580290 | 2006-04-02 13:59:55 +0200 | [diff] [blame] | 1753 | * @kobj: the kobj belonging of the request queue to be released |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | * |
| 1755 | * Description: |
| 1756 | * blk_cleanup_queue is the pair to blk_init_queue() or |
| 1757 | * blk_queue_make_request(). It should be called when a request queue is |
| 1758 | * being released; typically when a block device is being de-registered. |
| 1759 | * Currently, its primary task it to free all the &struct request |
| 1760 | * structures that were allocated to the queue and the queue itself. |
| 1761 | * |
| 1762 | * Caveat: |
| 1763 | * Hopefully the low level driver will have finished any |
| 1764 | * outstanding requests first... |
| 1765 | **/ |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1766 | static void blk_release_queue(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1768 | struct request_queue *q = |
| 1769 | container_of(kobj, struct request_queue, kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | struct request_list *rl = &q->rq; |
| 1771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | blk_sync_queue(q); |
| 1773 | |
| 1774 | if (rl->rq_pool) |
| 1775 | mempool_destroy(rl->rq_pool); |
| 1776 | |
| 1777 | if (q->queue_tags) |
| 1778 | __blk_queue_free_tags(q); |
| 1779 | |
Alexey Dobriyan | 6c5c934 | 2006-09-29 01:59:40 -0700 | [diff] [blame] | 1780 | blk_trace_shutdown(q); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 1781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | kmem_cache_free(requestq_cachep, q); |
| 1783 | } |
| 1784 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1785 | void blk_put_queue(struct request_queue *q) |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1786 | { |
| 1787 | kobject_put(&q->kobj); |
| 1788 | } |
| 1789 | EXPORT_SYMBOL(blk_put_queue); |
| 1790 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1791 | void blk_cleanup_queue(struct request_queue * q) |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1792 | { |
| 1793 | mutex_lock(&q->sysfs_lock); |
| 1794 | set_bit(QUEUE_FLAG_DEAD, &q->queue_flags); |
| 1795 | mutex_unlock(&q->sysfs_lock); |
| 1796 | |
| 1797 | if (q->elevator) |
| 1798 | elevator_exit(q->elevator); |
| 1799 | |
| 1800 | blk_put_queue(q); |
| 1801 | } |
| 1802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | EXPORT_SYMBOL(blk_cleanup_queue); |
| 1804 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1805 | static int blk_init_free_list(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | { |
| 1807 | struct request_list *rl = &q->rq; |
| 1808 | |
| 1809 | rl->count[READ] = rl->count[WRITE] = 0; |
| 1810 | rl->starved[READ] = rl->starved[WRITE] = 0; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1811 | rl->elvpriv = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | init_waitqueue_head(&rl->wait[READ]); |
| 1813 | init_waitqueue_head(&rl->wait[WRITE]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1815 | rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab, |
| 1816 | mempool_free_slab, request_cachep, q->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | |
| 1818 | if (!rl->rq_pool) |
| 1819 | return -ENOMEM; |
| 1820 | |
| 1821 | return 0; |
| 1822 | } |
| 1823 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1824 | struct request_queue *blk_alloc_queue(gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | { |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1826 | return blk_alloc_queue_node(gfp_mask, -1); |
| 1827 | } |
| 1828 | EXPORT_SYMBOL(blk_alloc_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1830 | static struct kobj_type queue_ktype; |
| 1831 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1832 | 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] | 1833 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1834 | struct request_queue *q; |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1835 | |
Christoph Lameter | 94f6030 | 2007-07-17 04:03:29 -0700 | [diff] [blame] | 1836 | q = kmem_cache_alloc_node(requestq_cachep, |
| 1837 | gfp_mask | __GFP_ZERO, node_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | if (!q) |
| 1839 | return NULL; |
| 1840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | init_timer(&q->unplug_timer); |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1842 | |
| 1843 | snprintf(q->kobj.name, KOBJ_NAME_LEN, "%s", "queue"); |
| 1844 | q->kobj.ktype = &queue_ktype; |
| 1845 | kobject_init(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | |
| 1847 | q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug; |
| 1848 | q->backing_dev_info.unplug_io_data = q; |
| 1849 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1850 | mutex_init(&q->sysfs_lock); |
| 1851 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | return q; |
| 1853 | } |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1854 | EXPORT_SYMBOL(blk_alloc_queue_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | |
| 1856 | /** |
| 1857 | * blk_init_queue - prepare a request queue for use with a block device |
| 1858 | * @rfn: The function to be called to process requests that have been |
| 1859 | * placed on the queue. |
| 1860 | * @lock: Request queue spin lock |
| 1861 | * |
| 1862 | * Description: |
| 1863 | * If a block device wishes to use the standard request handling procedures, |
| 1864 | * which sorts requests and coalesces adjacent requests, then it must |
| 1865 | * call blk_init_queue(). The function @rfn will be called when there |
| 1866 | * are requests on the queue that need to be processed. If the device |
| 1867 | * supports plugging, then @rfn may not be called immediately when requests |
| 1868 | * are available on the queue, but may be called at some time later instead. |
| 1869 | * Plugged queues are generally unplugged when a buffer belonging to one |
| 1870 | * of the requests on the queue is needed, or due to memory pressure. |
| 1871 | * |
| 1872 | * @rfn is not required, or even expected, to remove all requests off the |
| 1873 | * queue, but only as many as it can handle at a time. If it does leave |
| 1874 | * requests on the queue, it is responsible for arranging that the requests |
| 1875 | * get dealt with eventually. |
| 1876 | * |
| 1877 | * 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] | 1878 | * request queue; this lock will be taken also from interrupt context, so irq |
| 1879 | * disabling is needed for it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | * |
| 1881 | * Function returns a pointer to the initialized request queue, or NULL if |
| 1882 | * it didn't succeed. |
| 1883 | * |
| 1884 | * Note: |
| 1885 | * blk_init_queue() must be paired with a blk_cleanup_queue() call |
| 1886 | * when the block device is deactivated (such as at module unload). |
| 1887 | **/ |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1888 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1889 | 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] | 1890 | { |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1891 | return blk_init_queue_node(rfn, lock, -1); |
| 1892 | } |
| 1893 | EXPORT_SYMBOL(blk_init_queue); |
| 1894 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1895 | struct request_queue * |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1896 | blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) |
| 1897 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1898 | struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | |
| 1900 | if (!q) |
| 1901 | return NULL; |
| 1902 | |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1903 | q->node = node_id; |
Al Viro | 8669aaf | 2006-03-18 13:50:00 -0500 | [diff] [blame] | 1904 | if (blk_init_free_list(q)) { |
| 1905 | kmem_cache_free(requestq_cachep, q); |
| 1906 | return NULL; |
| 1907 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | |
| 152587d | 2005-04-12 16:22:06 -0500 | [diff] [blame] | 1909 | /* |
| 1910 | * if caller didn't supply a lock, they get per-queue locking with |
| 1911 | * our embedded lock |
| 1912 | */ |
| 1913 | if (!lock) { |
| 1914 | spin_lock_init(&q->__queue_lock); |
| 1915 | lock = &q->__queue_lock; |
| 1916 | } |
| 1917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | q->request_fn = rfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | q->prep_rq_fn = NULL; |
| 1920 | q->unplug_fn = generic_unplug_device; |
| 1921 | q->queue_flags = (1 << QUEUE_FLAG_CLUSTER); |
| 1922 | q->queue_lock = lock; |
| 1923 | |
| 1924 | blk_queue_segment_boundary(q, 0xffffffff); |
| 1925 | |
| 1926 | blk_queue_make_request(q, __make_request); |
| 1927 | blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE); |
| 1928 | |
| 1929 | blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS); |
| 1930 | blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS); |
| 1931 | |
Alan Stern | 44ec954 | 2007-02-20 11:01:57 -0500 | [diff] [blame] | 1932 | q->sg_reserved_size = INT_MAX; |
| 1933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | /* |
| 1935 | * all done |
| 1936 | */ |
| 1937 | if (!elevator_init(q, NULL)) { |
| 1938 | blk_queue_congestion_threshold(q); |
| 1939 | return q; |
| 1940 | } |
| 1941 | |
Al Viro | 8669aaf | 2006-03-18 13:50:00 -0500 | [diff] [blame] | 1942 | blk_put_queue(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | return NULL; |
| 1944 | } |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 1945 | EXPORT_SYMBOL(blk_init_queue_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1947 | int blk_get_queue(struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | { |
Nick Piggin | fde6ad2 | 2005-06-23 00:08:53 -0700 | [diff] [blame] | 1949 | if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) { |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 1950 | kobject_get(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | return 0; |
| 1952 | } |
| 1953 | |
| 1954 | return 1; |
| 1955 | } |
| 1956 | |
| 1957 | EXPORT_SYMBOL(blk_get_queue); |
| 1958 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1959 | 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] | 1960 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1961 | if (rq->cmd_flags & REQ_ELVPRIV) |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1962 | elv_put_request(q, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | mempool_free(rq, q->rq.rq_pool); |
| 1964 | } |
| 1965 | |
Jens Axboe | 1ea25ecb | 2006-07-18 22:24:11 +0200 | [diff] [blame] | 1966 | static struct request * |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1967 | 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] | 1968 | { |
| 1969 | struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask); |
| 1970 | |
| 1971 | if (!rq) |
| 1972 | return NULL; |
| 1973 | |
| 1974 | /* |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1975 | * first three bits are identical in rq->cmd_flags and bio->bi_rw, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | * see bio.h and blkdev.h |
| 1977 | */ |
Jens Axboe | 49171e5 | 2006-08-10 08:59:11 +0200 | [diff] [blame] | 1978 | rq->cmd_flags = rw | REQ_ALLOCED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1980 | if (priv) { |
Jens Axboe | cb78b28 | 2006-07-28 09:32:57 +0200 | [diff] [blame] | 1981 | if (unlikely(elv_set_request(q, rq, gfp_mask))) { |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1982 | mempool_free(rq, q->rq.rq_pool); |
| 1983 | return NULL; |
| 1984 | } |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 1985 | rq->cmd_flags |= REQ_ELVPRIV; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1986 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 1988 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | } |
| 1990 | |
| 1991 | /* |
| 1992 | * ioc_batching returns true if the ioc is a valid batching request and |
| 1993 | * should be given priority access to a request. |
| 1994 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1995 | 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] | 1996 | { |
| 1997 | if (!ioc) |
| 1998 | return 0; |
| 1999 | |
| 2000 | /* |
| 2001 | * Make sure the process is able to allocate at least 1 request |
| 2002 | * even if the batch times out, otherwise we could theoretically |
| 2003 | * lose wakeups. |
| 2004 | */ |
| 2005 | return ioc->nr_batch_requests == q->nr_batching || |
| 2006 | (ioc->nr_batch_requests > 0 |
| 2007 | && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME)); |
| 2008 | } |
| 2009 | |
| 2010 | /* |
| 2011 | * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This |
| 2012 | * will cause the process to be a "batcher" on all queues in the system. This |
| 2013 | * is the behaviour we want though - once it gets a wakeup it should be given |
| 2014 | * a nice run. |
| 2015 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2016 | 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] | 2017 | { |
| 2018 | if (!ioc || ioc_batching(q, ioc)) |
| 2019 | return; |
| 2020 | |
| 2021 | ioc->nr_batch_requests = q->nr_batching; |
| 2022 | ioc->last_waited = jiffies; |
| 2023 | } |
| 2024 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2025 | static void __freed_request(struct request_queue *q, int rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | { |
| 2027 | struct request_list *rl = &q->rq; |
| 2028 | |
| 2029 | if (rl->count[rw] < queue_congestion_off_threshold(q)) |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 2030 | blk_clear_queue_congested(q, rw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | |
| 2032 | if (rl->count[rw] + 1 <= q->nr_requests) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | if (waitqueue_active(&rl->wait[rw])) |
| 2034 | wake_up(&rl->wait[rw]); |
| 2035 | |
| 2036 | blk_clear_queue_full(q, rw); |
| 2037 | } |
| 2038 | } |
| 2039 | |
| 2040 | /* |
| 2041 | * A request has just been released. Account for it, update the full and |
| 2042 | * congestion status, wake up any waiters. Called under q->queue_lock. |
| 2043 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2044 | static void freed_request(struct request_queue *q, int rw, int priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | { |
| 2046 | struct request_list *rl = &q->rq; |
| 2047 | |
| 2048 | rl->count[rw]--; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 2049 | if (priv) |
| 2050 | rl->elvpriv--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | |
| 2052 | __freed_request(q, rw); |
| 2053 | |
| 2054 | if (unlikely(rl->starved[rw ^ 1])) |
| 2055 | __freed_request(q, rw ^ 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | } |
| 2057 | |
| 2058 | #define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist) |
| 2059 | /* |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2060 | * Get a free request, queue_lock must be held. |
| 2061 | * Returns NULL on failure, with queue_lock held. |
| 2062 | * Returns !NULL on success, with queue_lock *not held*. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2064 | static struct request *get_request(struct request_queue *q, int rw_flags, |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2065 | struct bio *bio, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | { |
| 2067 | struct request *rq = NULL; |
| 2068 | struct request_list *rl = &q->rq; |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2069 | struct io_context *ioc = NULL; |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2070 | const int rw = rw_flags & 0x01; |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2071 | int may_queue, priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2073 | may_queue = elv_may_queue(q, rw_flags); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2074 | if (may_queue == ELV_MQUEUE_NO) |
| 2075 | goto rq_starved; |
| 2076 | |
| 2077 | if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) { |
| 2078 | if (rl->count[rw]+1 >= q->nr_requests) { |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 2079 | ioc = current_io_context(GFP_ATOMIC, q->node); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2080 | /* |
| 2081 | * The queue will fill after this allocation, so set |
| 2082 | * it as full, and mark this process as "batching". |
| 2083 | * This process will be allowed to complete a batch of |
| 2084 | * requests, others will be blocked. |
| 2085 | */ |
| 2086 | if (!blk_queue_full(q, rw)) { |
| 2087 | ioc_set_batching(q, ioc); |
| 2088 | blk_set_queue_full(q, rw); |
| 2089 | } else { |
| 2090 | if (may_queue != ELV_MQUEUE_MUST |
| 2091 | && !ioc_batching(q, ioc)) { |
| 2092 | /* |
| 2093 | * The queue is full and the allocating |
| 2094 | * process is not a "batcher", and not |
| 2095 | * exempted by the IO scheduler |
| 2096 | */ |
| 2097 | goto out; |
| 2098 | } |
| 2099 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | } |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 2101 | blk_set_queue_congested(q, rw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | } |
| 2103 | |
Jens Axboe | 082cf69 | 2005-06-28 16:35:11 +0200 | [diff] [blame] | 2104 | /* |
| 2105 | * Only allow batching queuers to allocate up to 50% over the defined |
| 2106 | * limit of requests, otherwise we could have thousands of requests |
| 2107 | * allocated with any setting of ->nr_requests |
| 2108 | */ |
Hugh Dickins | fd782a4 | 2005-06-29 15:15:40 +0100 | [diff] [blame] | 2109 | if (rl->count[rw] >= (3 * q->nr_requests / 2)) |
Jens Axboe | 082cf69 | 2005-06-28 16:35:11 +0200 | [diff] [blame] | 2110 | goto out; |
Hugh Dickins | fd782a4 | 2005-06-29 15:15:40 +0100 | [diff] [blame] | 2111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | rl->count[rw]++; |
| 2113 | rl->starved[rw] = 0; |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 2114 | |
Jens Axboe | 64521d1 | 2005-10-28 08:30:39 +0200 | [diff] [blame] | 2115 | priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags); |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 2116 | if (priv) |
| 2117 | rl->elvpriv++; |
| 2118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | spin_unlock_irq(q->queue_lock); |
| 2120 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2121 | rq = blk_alloc_request(q, rw_flags, priv, gfp_mask); |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2122 | if (unlikely(!rq)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | /* |
| 2124 | * Allocation failed presumably due to memory. Undo anything |
| 2125 | * we might have messed up. |
| 2126 | * |
| 2127 | * Allocating task should really be put onto the front of the |
| 2128 | * wait queue, but this is pretty rare. |
| 2129 | */ |
| 2130 | spin_lock_irq(q->queue_lock); |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 2131 | freed_request(q, rw, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | |
| 2133 | /* |
| 2134 | * in the very unlikely event that allocation failed and no |
| 2135 | * requests for this direction was pending, mark us starved |
| 2136 | * so that freeing of a request in the other direction will |
| 2137 | * notice us. another possible fix would be to split the |
| 2138 | * rq mempool into READ and WRITE |
| 2139 | */ |
| 2140 | rq_starved: |
| 2141 | if (unlikely(rl->count[rw] == 0)) |
| 2142 | rl->starved[rw] = 1; |
| 2143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | goto out; |
| 2145 | } |
| 2146 | |
Jens Axboe | 88ee5ef | 2005-11-12 11:09:12 +0100 | [diff] [blame] | 2147 | /* |
| 2148 | * ioc may be NULL here, and ioc_batching will be false. That's |
| 2149 | * OK, if the queue is under the request limit then requests need |
| 2150 | * not count toward the nr_batch_requests limit. There will always |
| 2151 | * be some limit enforced by BLK_BATCH_TIME. |
| 2152 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | if (ioc_batching(q, ioc)) |
| 2154 | ioc->nr_batch_requests--; |
| 2155 | |
| 2156 | rq_init(q, rq); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 2157 | |
| 2158 | blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | return rq; |
| 2161 | } |
| 2162 | |
| 2163 | /* |
| 2164 | * No available requests for this queue, unplug the device and wait for some |
| 2165 | * requests to become available. |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2166 | * |
| 2167 | * Called with q->queue_lock held, and returns with it unlocked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2169 | 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] | 2170 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | { |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2172 | const int rw = rw_flags & 0x01; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | struct request *rq; |
| 2174 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2175 | rq = get_request(q, rw_flags, bio, GFP_NOIO); |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2176 | while (!rq) { |
| 2177 | DEFINE_WAIT(wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | struct request_list *rl = &q->rq; |
| 2179 | |
| 2180 | prepare_to_wait_exclusive(&rl->wait[rw], &wait, |
| 2181 | TASK_UNINTERRUPTIBLE); |
| 2182 | |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2183 | rq = get_request(q, rw_flags, bio, GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | |
| 2185 | if (!rq) { |
| 2186 | struct io_context *ioc; |
| 2187 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 2188 | blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ); |
| 2189 | |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2190 | __generic_unplug_device(q); |
| 2191 | spin_unlock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | io_schedule(); |
| 2193 | |
| 2194 | /* |
| 2195 | * After sleeping, we become a "batching" process and |
| 2196 | * will be able to allocate at least one request, and |
| 2197 | * up to a big batch of them for a small period time. |
| 2198 | * See ioc_batching, ioc_set_batching |
| 2199 | */ |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 2200 | ioc = current_io_context(GFP_NOIO, q->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | ioc_set_batching(q, ioc); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2202 | |
| 2203 | spin_lock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | } |
| 2205 | finish_wait(&rl->wait[rw], &wait); |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | |
| 2208 | return rq; |
| 2209 | } |
| 2210 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2211 | 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] | 2212 | { |
| 2213 | struct request *rq; |
| 2214 | |
| 2215 | BUG_ON(rw != READ && rw != WRITE); |
| 2216 | |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2217 | spin_lock_irq(q->queue_lock); |
| 2218 | if (gfp_mask & __GFP_WAIT) { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2219 | rq = get_request_wait(q, rw, NULL); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2220 | } else { |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2221 | rq = get_request(q, rw, NULL, gfp_mask); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 2222 | if (!rq) |
| 2223 | spin_unlock_irq(q->queue_lock); |
| 2224 | } |
| 2225 | /* q->queue_lock is unlocked at this point */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | |
| 2227 | return rq; |
| 2228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | EXPORT_SYMBOL(blk_get_request); |
| 2230 | |
| 2231 | /** |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 2232 | * blk_start_queueing - initiate dispatch of requests to device |
| 2233 | * @q: request queue to kick into gear |
| 2234 | * |
| 2235 | * This is basically a helper to remove the need to know whether a queue |
| 2236 | * is plugged or not if someone just wants to initiate dispatch of requests |
| 2237 | * for this queue. |
| 2238 | * |
| 2239 | * The queue lock must be held with interrupts disabled. |
| 2240 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2241 | void blk_start_queueing(struct request_queue *q) |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 2242 | { |
| 2243 | if (!blk_queue_plugged(q)) |
| 2244 | q->request_fn(q); |
| 2245 | else |
| 2246 | __generic_unplug_device(q); |
| 2247 | } |
| 2248 | EXPORT_SYMBOL(blk_start_queueing); |
| 2249 | |
| 2250 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | * blk_requeue_request - put a request back on queue |
| 2252 | * @q: request queue where request should be inserted |
| 2253 | * @rq: request to be inserted |
| 2254 | * |
| 2255 | * Description: |
| 2256 | * Drivers often keep queueing requests until the hardware cannot accept |
| 2257 | * more, when that condition happens we need to put the request back |
| 2258 | * on the queue. Must be called with queue lock held. |
| 2259 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2260 | void blk_requeue_request(struct request_queue *q, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | { |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 2262 | blk_add_trace_rq(q, rq, BLK_TA_REQUEUE); |
| 2263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | if (blk_rq_tagged(rq)) |
| 2265 | blk_queue_end_tag(q, rq); |
| 2266 | |
| 2267 | elv_requeue_request(q, rq); |
| 2268 | } |
| 2269 | |
| 2270 | EXPORT_SYMBOL(blk_requeue_request); |
| 2271 | |
| 2272 | /** |
| 2273 | * blk_insert_request - insert a special request in to a request queue |
| 2274 | * @q: request queue where request should be inserted |
| 2275 | * @rq: request to be inserted |
| 2276 | * @at_head: insert request at head or tail of queue |
| 2277 | * @data: private data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | * |
| 2279 | * Description: |
| 2280 | * Many block devices need to execute commands asynchronously, so they don't |
| 2281 | * block the whole kernel from preemption during request execution. This is |
| 2282 | * accomplished normally by inserting aritficial requests tagged as |
| 2283 | * REQ_SPECIAL in to the corresponding request queue, and letting them be |
| 2284 | * scheduled for actual execution by the request queue. |
| 2285 | * |
| 2286 | * We have the option of inserting the head or the tail of the queue. |
| 2287 | * Typically we use the tail for new ioctls and so forth. We use the head |
| 2288 | * of the queue for things like a QUEUE_FULL message from a device, or a |
| 2289 | * host that is unable to accept a particular command. |
| 2290 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2291 | void blk_insert_request(struct request_queue *q, struct request *rq, |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 2292 | int at_head, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | { |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 2294 | int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | unsigned long flags; |
| 2296 | |
| 2297 | /* |
| 2298 | * tell I/O scheduler that this isn't a regular read/write (ie it |
| 2299 | * must not attempt merges on this) and that it acts as a soft |
| 2300 | * barrier |
| 2301 | */ |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2302 | rq->cmd_type = REQ_TYPE_SPECIAL; |
| 2303 | rq->cmd_flags |= REQ_SOFTBARRIER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | |
| 2305 | rq->special = data; |
| 2306 | |
| 2307 | spin_lock_irqsave(q->queue_lock, flags); |
| 2308 | |
| 2309 | /* |
| 2310 | * If command is tagged, release the tag |
| 2311 | */ |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 2312 | if (blk_rq_tagged(rq)) |
| 2313 | blk_queue_end_tag(q, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
Tejun Heo | 867d119 | 2005-04-24 02:06:05 -0500 | [diff] [blame] | 2315 | drive_stat_acct(rq, rq->nr_sectors, 1); |
| 2316 | __elv_add_request(q, rq, where, 0); |
Jens Axboe | dc72ef4 | 2006-07-20 14:54:05 +0200 | [diff] [blame] | 2317 | blk_start_queueing(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2319 | } |
| 2320 | |
| 2321 | EXPORT_SYMBOL(blk_insert_request); |
| 2322 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2323 | static int __blk_rq_unmap_user(struct bio *bio) |
| 2324 | { |
| 2325 | int ret = 0; |
| 2326 | |
| 2327 | if (bio) { |
| 2328 | if (bio_flagged(bio, BIO_USER_MAPPED)) |
| 2329 | bio_unmap_user(bio); |
| 2330 | else |
| 2331 | ret = bio_uncopy_user(bio); |
| 2332 | } |
| 2333 | |
| 2334 | return ret; |
| 2335 | } |
| 2336 | |
NeilBrown | 3001ca7 | 2007-08-16 13:31:27 +0200 | [diff] [blame] | 2337 | int blk_rq_append_bio(struct request_queue *q, struct request *rq, |
| 2338 | struct bio *bio) |
| 2339 | { |
| 2340 | if (!rq->bio) |
| 2341 | blk_rq_bio_prep(q, rq, bio); |
| 2342 | else if (!ll_back_merge_fn(q, rq, bio)) |
| 2343 | return -EINVAL; |
| 2344 | else { |
| 2345 | rq->biotail->bi_next = bio; |
| 2346 | rq->biotail = bio; |
| 2347 | |
| 2348 | rq->data_len += bio->bi_size; |
| 2349 | } |
| 2350 | return 0; |
| 2351 | } |
| 2352 | EXPORT_SYMBOL(blk_rq_append_bio); |
| 2353 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2354 | static int __blk_rq_map_user(struct request_queue *q, struct request *rq, |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2355 | void __user *ubuf, unsigned int len) |
| 2356 | { |
| 2357 | unsigned long uaddr; |
| 2358 | struct bio *bio, *orig_bio; |
| 2359 | int reading, ret; |
| 2360 | |
| 2361 | reading = rq_data_dir(rq) == READ; |
| 2362 | |
| 2363 | /* |
| 2364 | * if alignment requirement is satisfied, map in user pages for |
| 2365 | * direct dma. else, set up kernel bounce buffers |
| 2366 | */ |
| 2367 | uaddr = (unsigned long) ubuf; |
| 2368 | if (!(uaddr & queue_dma_alignment(q)) && !(len & queue_dma_alignment(q))) |
| 2369 | bio = bio_map_user(q, NULL, uaddr, len, reading); |
| 2370 | else |
| 2371 | bio = bio_copy_user(q, uaddr, len, reading); |
| 2372 | |
Jens Axboe | 2985259 | 2006-12-19 08:27:31 +0100 | [diff] [blame] | 2373 | if (IS_ERR(bio)) |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2374 | return PTR_ERR(bio); |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2375 | |
| 2376 | orig_bio = bio; |
| 2377 | blk_queue_bounce(q, &bio); |
Jens Axboe | 2985259 | 2006-12-19 08:27:31 +0100 | [diff] [blame] | 2378 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2379 | /* |
| 2380 | * We link the bounce buffer in and could have to traverse it |
| 2381 | * later so we have to get a ref to prevent it from being freed |
| 2382 | */ |
| 2383 | bio_get(bio); |
| 2384 | |
NeilBrown | 3001ca7 | 2007-08-16 13:31:27 +0200 | [diff] [blame] | 2385 | ret = blk_rq_append_bio(q, rq, bio); |
| 2386 | if (!ret) |
| 2387 | return bio->bi_size; |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2388 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2389 | /* if it was boucned we must call the end io function */ |
| 2390 | bio_endio(bio, bio->bi_size, 0); |
| 2391 | __blk_rq_unmap_user(orig_bio); |
| 2392 | bio_put(bio); |
| 2393 | return ret; |
| 2394 | } |
| 2395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | /** |
| 2397 | * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage |
| 2398 | * @q: request queue where request should be inserted |
Christoph Hellwig | 73747ae | 2005-06-20 14:21:01 +0200 | [diff] [blame] | 2399 | * @rq: request structure to fill |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | * @ubuf: the user buffer |
| 2401 | * @len: length of user data |
| 2402 | * |
| 2403 | * Description: |
| 2404 | * Data will be mapped directly for zero copy io, if possible. Otherwise |
| 2405 | * a kernel bounce buffer is used. |
| 2406 | * |
| 2407 | * A matching blk_rq_unmap_user() must be issued at the end of io, while |
| 2408 | * still in process context. |
| 2409 | * |
| 2410 | * Note: The mapped bio may need to be bounced through blk_queue_bounce() |
| 2411 | * before being submitted to the device, as pages mapped may be out of |
| 2412 | * reach. It's the callers responsibility to make sure this happens. The |
| 2413 | * original bio must be passed back in to blk_rq_unmap_user() for proper |
| 2414 | * unmapping. |
| 2415 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2416 | int blk_rq_map_user(struct request_queue *q, struct request *rq, |
| 2417 | void __user *ubuf, unsigned long len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | { |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2419 | unsigned long bytes_read = 0; |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2420 | struct bio *bio = NULL; |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2421 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 2423 | if (len > (q->max_hw_sectors << 9)) |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2424 | return -EINVAL; |
| 2425 | if (!len || !ubuf) |
| 2426 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2428 | while (bytes_read != len) { |
| 2429 | unsigned long map_len, end, start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2431 | map_len = min_t(unsigned long, len - bytes_read, BIO_MAX_SIZE); |
| 2432 | end = ((unsigned long)ubuf + map_len + PAGE_SIZE - 1) |
| 2433 | >> PAGE_SHIFT; |
| 2434 | start = (unsigned long)ubuf >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2435 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2436 | /* |
| 2437 | * A bad offset could cause us to require BIO_MAX_PAGES + 1 |
| 2438 | * pages. If this happens we just lower the requested |
| 2439 | * mapping len by a page so that we can fit |
| 2440 | */ |
| 2441 | if (end - start > BIO_MAX_PAGES) |
| 2442 | map_len -= PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2444 | ret = __blk_rq_map_user(q, rq, ubuf, map_len); |
| 2445 | if (ret < 0) |
| 2446 | goto unmap_rq; |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2447 | if (!bio) |
| 2448 | bio = rq->bio; |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2449 | bytes_read += ret; |
| 2450 | ubuf += ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | } |
| 2452 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2453 | rq->buffer = rq->data = NULL; |
| 2454 | return 0; |
| 2455 | unmap_rq: |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2456 | blk_rq_unmap_user(bio); |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2457 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | } |
| 2459 | |
| 2460 | EXPORT_SYMBOL(blk_rq_map_user); |
| 2461 | |
| 2462 | /** |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2463 | * blk_rq_map_user_iov - map user data to a request, for REQ_BLOCK_PC usage |
| 2464 | * @q: request queue where request should be inserted |
| 2465 | * @rq: request to map data to |
| 2466 | * @iov: pointer to the iovec |
| 2467 | * @iov_count: number of elements in the iovec |
Randy Dunlap | af9997e | 2006-12-22 01:06:52 -0800 | [diff] [blame] | 2468 | * @len: I/O byte count |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2469 | * |
| 2470 | * Description: |
| 2471 | * Data will be mapped directly for zero copy io, if possible. Otherwise |
| 2472 | * a kernel bounce buffer is used. |
| 2473 | * |
| 2474 | * A matching blk_rq_unmap_user() must be issued at the end of io, while |
| 2475 | * still in process context. |
| 2476 | * |
| 2477 | * Note: The mapped bio may need to be bounced through blk_queue_bounce() |
| 2478 | * before being submitted to the device, as pages mapped may be out of |
| 2479 | * reach. It's the callers responsibility to make sure this happens. The |
| 2480 | * original bio must be passed back in to blk_rq_unmap_user() for proper |
| 2481 | * unmapping. |
| 2482 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2483 | int blk_rq_map_user_iov(struct request_queue *q, struct request *rq, |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2484 | struct sg_iovec *iov, int iov_count, unsigned int len) |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2485 | { |
| 2486 | struct bio *bio; |
| 2487 | |
| 2488 | if (!iov || iov_count <= 0) |
| 2489 | return -EINVAL; |
| 2490 | |
| 2491 | /* we don't allow misaligned data like bio_map_user() does. If the |
| 2492 | * user is using sg, they're expected to know the alignment constraints |
| 2493 | * and respect them accordingly */ |
| 2494 | bio = bio_map_user_iov(q, NULL, iov, iov_count, rq_data_dir(rq)== READ); |
| 2495 | if (IS_ERR(bio)) |
| 2496 | return PTR_ERR(bio); |
| 2497 | |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2498 | if (bio->bi_size != len) { |
| 2499 | bio_endio(bio, bio->bi_size, 0); |
| 2500 | bio_unmap_user(bio); |
| 2501 | return -EINVAL; |
| 2502 | } |
| 2503 | |
| 2504 | bio_get(bio); |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2505 | blk_rq_bio_prep(q, rq, bio); |
| 2506 | rq->buffer = rq->data = NULL; |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2507 | return 0; |
| 2508 | } |
| 2509 | |
| 2510 | EXPORT_SYMBOL(blk_rq_map_user_iov); |
| 2511 | |
| 2512 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | * blk_rq_unmap_user - unmap a request with user data |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2514 | * @bio: start of bio list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2515 | * |
| 2516 | * Description: |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2517 | * Unmap a rq previously mapped by blk_rq_map_user(). The caller must |
| 2518 | * supply the original rq->bio from the blk_rq_map_user() return, since |
| 2519 | * the io completion may have changed rq->bio. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | */ |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2521 | int blk_rq_unmap_user(struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | { |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2523 | struct bio *mapped_bio; |
Jens Axboe | 48785bb | 2006-12-19 11:07:59 +0100 | [diff] [blame] | 2524 | int ret = 0, ret2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2526 | while (bio) { |
| 2527 | mapped_bio = bio; |
| 2528 | if (unlikely(bio_flagged(bio, BIO_BOUNCED))) |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2529 | mapped_bio = bio->bi_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | |
Jens Axboe | 48785bb | 2006-12-19 11:07:59 +0100 | [diff] [blame] | 2531 | ret2 = __blk_rq_unmap_user(mapped_bio); |
| 2532 | if (ret2 && !ret) |
| 2533 | ret = ret2; |
| 2534 | |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 2535 | mapped_bio = bio; |
| 2536 | bio = bio->bi_next; |
| 2537 | bio_put(mapped_bio); |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 2538 | } |
Jens Axboe | 48785bb | 2006-12-19 11:07:59 +0100 | [diff] [blame] | 2539 | |
| 2540 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | } |
| 2542 | |
| 2543 | EXPORT_SYMBOL(blk_rq_unmap_user); |
| 2544 | |
| 2545 | /** |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2546 | * blk_rq_map_kern - map kernel data to a request, for REQ_BLOCK_PC usage |
| 2547 | * @q: request queue where request should be inserted |
Christoph Hellwig | 73747ae | 2005-06-20 14:21:01 +0200 | [diff] [blame] | 2548 | * @rq: request to fill |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2549 | * @kbuf: the kernel buffer |
| 2550 | * @len: length of user data |
Christoph Hellwig | 73747ae | 2005-06-20 14:21:01 +0200 | [diff] [blame] | 2551 | * @gfp_mask: memory allocation flags |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2552 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2553 | int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf, |
Al Viro | 8267e26 | 2005-10-21 03:20:53 -0400 | [diff] [blame] | 2554 | unsigned int len, gfp_t gfp_mask) |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2555 | { |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2556 | struct bio *bio; |
| 2557 | |
Mike Christie | defd94b | 2005-12-05 02:37:06 -0600 | [diff] [blame] | 2558 | if (len > (q->max_hw_sectors << 9)) |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2559 | return -EINVAL; |
| 2560 | if (!len || !kbuf) |
| 2561 | return -EINVAL; |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2562 | |
| 2563 | bio = bio_map_kern(q, kbuf, len, gfp_mask); |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2564 | if (IS_ERR(bio)) |
| 2565 | return PTR_ERR(bio); |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2566 | |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2567 | if (rq_data_dir(rq) == WRITE) |
| 2568 | bio->bi_rw |= (1 << BIO_RW); |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2569 | |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2570 | blk_rq_bio_prep(q, rq, bio); |
Mike Christie | 821de3a | 2007-05-08 19:12:23 +0200 | [diff] [blame] | 2571 | blk_queue_bounce(q, &rq->bio); |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2572 | rq->buffer = rq->data = NULL; |
Jens Axboe | dd1cab9 | 2005-06-20 14:06:01 +0200 | [diff] [blame] | 2573 | return 0; |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 2574 | } |
| 2575 | |
| 2576 | EXPORT_SYMBOL(blk_rq_map_kern); |
| 2577 | |
Christoph Hellwig | 73747ae | 2005-06-20 14:21:01 +0200 | [diff] [blame] | 2578 | /** |
| 2579 | * blk_execute_rq_nowait - insert a request into queue for execution |
| 2580 | * @q: queue to insert the request in |
| 2581 | * @bd_disk: matching gendisk |
| 2582 | * @rq: request to insert |
| 2583 | * @at_head: insert request at head or tail of queue |
| 2584 | * @done: I/O completion handler |
| 2585 | * |
| 2586 | * Description: |
| 2587 | * Insert a fully prepared request at the back of the io scheduler queue |
| 2588 | * for execution. Don't wait for completion. |
| 2589 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2590 | void blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk, |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2591 | struct request *rq, int at_head, |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 2592 | rq_end_io_fn *done) |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2593 | { |
| 2594 | int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK; |
| 2595 | |
| 2596 | rq->rq_disk = bd_disk; |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2597 | rq->cmd_flags |= REQ_NOMERGE; |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2598 | rq->end_io = done; |
Andrew Morton | 4c5d0bb | 2006-03-22 08:08:01 +0100 | [diff] [blame] | 2599 | WARN_ON(irqs_disabled()); |
| 2600 | spin_lock_irq(q->queue_lock); |
| 2601 | __elv_add_request(q, rq, where, 1); |
| 2602 | __generic_unplug_device(q); |
| 2603 | spin_unlock_irq(q->queue_lock); |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 2604 | } |
Mike Christie | 6e39b69 | 2005-11-11 05:30:24 -0600 | [diff] [blame] | 2605 | EXPORT_SYMBOL_GPL(blk_execute_rq_nowait); |
| 2606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | /** |
| 2608 | * blk_execute_rq - insert a request into queue for execution |
| 2609 | * @q: queue to insert the request in |
| 2610 | * @bd_disk: matching gendisk |
| 2611 | * @rq: request to insert |
James Bottomley | 994ca9a | 2005-06-20 14:11:09 +0200 | [diff] [blame] | 2612 | * @at_head: insert request at head or tail of queue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | * |
| 2614 | * Description: |
| 2615 | * Insert a fully prepared request at the back of the io scheduler queue |
Christoph Hellwig | 73747ae | 2005-06-20 14:21:01 +0200 | [diff] [blame] | 2616 | * for execution and wait for completion. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2618 | int blk_execute_rq(struct request_queue *q, struct gendisk *bd_disk, |
James Bottomley | 994ca9a | 2005-06-20 14:11:09 +0200 | [diff] [blame] | 2619 | struct request *rq, int at_head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | { |
Ingo Molnar | 60be6b9 | 2006-07-03 00:25:26 -0700 | [diff] [blame] | 2621 | DECLARE_COMPLETION_ONSTACK(wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | char sense[SCSI_SENSE_BUFFERSIZE]; |
| 2623 | int err = 0; |
| 2624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | /* |
| 2626 | * we need an extra reference to the request, so we can look at |
| 2627 | * it after io completion |
| 2628 | */ |
| 2629 | rq->ref_count++; |
| 2630 | |
| 2631 | if (!rq->sense) { |
| 2632 | memset(sense, 0, sizeof(sense)); |
| 2633 | rq->sense = sense; |
| 2634 | rq->sense_len = 0; |
| 2635 | } |
| 2636 | |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 2637 | rq->end_io_data = &wait; |
James Bottomley | 994ca9a | 2005-06-20 14:11:09 +0200 | [diff] [blame] | 2638 | blk_execute_rq_nowait(q, bd_disk, rq, at_head, blk_end_sync_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | wait_for_completion(&wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | |
| 2641 | if (rq->errors) |
| 2642 | err = -EIO; |
| 2643 | |
| 2644 | return err; |
| 2645 | } |
| 2646 | |
| 2647 | EXPORT_SYMBOL(blk_execute_rq); |
| 2648 | |
| 2649 | /** |
| 2650 | * blkdev_issue_flush - queue a flush |
| 2651 | * @bdev: blockdev to issue flush for |
| 2652 | * @error_sector: error sector |
| 2653 | * |
| 2654 | * Description: |
| 2655 | * Issue a flush for the block device in question. Caller can supply |
| 2656 | * room for storing the error offset in case of a flush error, if they |
| 2657 | * wish to. Caller must run wait_for_completion() on its own. |
| 2658 | */ |
| 2659 | int blkdev_issue_flush(struct block_device *bdev, sector_t *error_sector) |
| 2660 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2661 | struct request_queue *q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2662 | |
| 2663 | if (bdev->bd_disk == NULL) |
| 2664 | return -ENXIO; |
| 2665 | |
| 2666 | q = bdev_get_queue(bdev); |
| 2667 | if (!q) |
| 2668 | return -ENXIO; |
| 2669 | if (!q->issue_flush_fn) |
| 2670 | return -EOPNOTSUPP; |
| 2671 | |
| 2672 | return q->issue_flush_fn(q, bdev->bd_disk, error_sector); |
| 2673 | } |
| 2674 | |
| 2675 | EXPORT_SYMBOL(blkdev_issue_flush); |
| 2676 | |
Adrian Bunk | 93d17d3 | 2005-06-25 14:59:10 -0700 | [diff] [blame] | 2677 | static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | { |
| 2679 | int rw = rq_data_dir(rq); |
| 2680 | |
| 2681 | if (!blk_fs_request(rq) || !rq->rq_disk) |
| 2682 | return; |
| 2683 | |
Jens Axboe | d72d904 | 2005-11-01 08:35:42 +0100 | [diff] [blame] | 2684 | if (!new_io) { |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 2685 | __disk_stat_inc(rq->rq_disk, merges[rw]); |
Jens Axboe | d72d904 | 2005-11-01 08:35:42 +0100 | [diff] [blame] | 2686 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | disk_round_stats(rq->rq_disk); |
| 2688 | rq->rq_disk->in_flight++; |
| 2689 | } |
| 2690 | } |
| 2691 | |
| 2692 | /* |
| 2693 | * add-request adds a request to the linked list. |
| 2694 | * queue lock is held and interrupts disabled, as we muck with the |
| 2695 | * request queue list. |
| 2696 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2697 | static inline void add_request(struct request_queue * q, struct request * req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | { |
| 2699 | drive_stat_acct(req, req->nr_sectors, 1); |
| 2700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | /* |
| 2702 | * elevator indicated where it wants this request to be |
| 2703 | * inserted at elevator_merge time |
| 2704 | */ |
| 2705 | __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0); |
| 2706 | } |
| 2707 | |
| 2708 | /* |
| 2709 | * disk_round_stats() - Round off the performance stats on a struct |
| 2710 | * disk_stats. |
| 2711 | * |
| 2712 | * The average IO queue length and utilisation statistics are maintained |
| 2713 | * by observing the current state of the queue length and the amount of |
| 2714 | * time it has been in this state for. |
| 2715 | * |
| 2716 | * Normally, that accounting is done on IO completion, but that can result |
| 2717 | * in more than a second's worth of IO being accounted for within any one |
| 2718 | * second, leading to >100% utilisation. To deal with that, we call this |
| 2719 | * function to do a round-off before returning the results when reading |
| 2720 | * /proc/diskstats. This accounts immediately for all queue usage up to |
| 2721 | * the current jiffies and restarts the counters again. |
| 2722 | */ |
| 2723 | void disk_round_stats(struct gendisk *disk) |
| 2724 | { |
| 2725 | unsigned long now = jiffies; |
| 2726 | |
Chen, Kenneth W | b298264 | 2005-10-13 21:49:29 +0200 | [diff] [blame] | 2727 | if (now == disk->stamp) |
| 2728 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | |
Chen, Kenneth W | 20e5c81 | 2005-10-13 21:48:42 +0200 | [diff] [blame] | 2730 | if (disk->in_flight) { |
| 2731 | __disk_stat_add(disk, time_in_queue, |
| 2732 | disk->in_flight * (now - disk->stamp)); |
| 2733 | __disk_stat_add(disk, io_ticks, (now - disk->stamp)); |
| 2734 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | disk->stamp = now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | } |
| 2737 | |
Jun'ichi "Nick" Nomura | 3eaf840 | 2006-02-01 03:04:53 -0800 | [diff] [blame] | 2738 | EXPORT_SYMBOL_GPL(disk_round_stats); |
| 2739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | /* |
| 2741 | * queue lock must be held |
| 2742 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2743 | void __blk_put_request(struct request_queue *q, struct request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | if (unlikely(!q)) |
| 2746 | return; |
| 2747 | if (unlikely(--req->ref_count)) |
| 2748 | return; |
| 2749 | |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 2750 | elv_completed_request(q, req); |
| 2751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | /* |
| 2753 | * Request may not have originated from ll_rw_blk. if not, |
| 2754 | * it didn't come out of our reserved rq pools |
| 2755 | */ |
Jens Axboe | 49171e5 | 2006-08-10 08:59:11 +0200 | [diff] [blame] | 2756 | if (req->cmd_flags & REQ_ALLOCED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | int rw = rq_data_dir(req); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2758 | int priv = req->cmd_flags & REQ_ELVPRIV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | BUG_ON(!list_empty(&req->queuelist)); |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 2761 | BUG_ON(!hlist_unhashed(&req->hash)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | |
| 2763 | blk_free_request(q, req); |
Tejun Heo | cb98fc8 | 2005-10-28 08:29:39 +0200 | [diff] [blame] | 2764 | freed_request(q, rw, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | } |
| 2766 | } |
| 2767 | |
Mike Christie | 6e39b69 | 2005-11-11 05:30:24 -0600 | [diff] [blame] | 2768 | EXPORT_SYMBOL_GPL(__blk_put_request); |
| 2769 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | void blk_put_request(struct request *req) |
| 2771 | { |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 2772 | unsigned long flags; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2773 | struct request_queue *q = req->q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | |
Tejun Heo | 8922e16 | 2005-10-20 16:23:44 +0200 | [diff] [blame] | 2775 | /* |
| 2776 | * Gee, IDE calls in w/ NULL q. Fix IDE and remove the |
| 2777 | * following if (q) test. |
| 2778 | */ |
| 2779 | if (q) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | spin_lock_irqsave(q->queue_lock, flags); |
| 2781 | __blk_put_request(q, req); |
| 2782 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2783 | } |
| 2784 | } |
| 2785 | |
| 2786 | EXPORT_SYMBOL(blk_put_request); |
| 2787 | |
| 2788 | /** |
| 2789 | * blk_end_sync_rq - executes a completion event on a request |
| 2790 | * @rq: request to complete |
Jens Axboe | fddfdea | 2006-01-31 15:24:34 +0100 | [diff] [blame] | 2791 | * @error: end io status of the request |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | */ |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 2793 | void blk_end_sync_rq(struct request *rq, int error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | { |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 2795 | struct completion *waiting = rq->end_io_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 2797 | rq->end_io_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | __blk_put_request(rq->q, rq); |
| 2799 | |
| 2800 | /* |
| 2801 | * complete last, if this is a stack request the process (and thus |
| 2802 | * the rq pointer) could be invalid right after this complete() |
| 2803 | */ |
| 2804 | complete(waiting); |
| 2805 | } |
| 2806 | EXPORT_SYMBOL(blk_end_sync_rq); |
| 2807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | /* |
| 2809 | * Has to be called with the request spinlock acquired |
| 2810 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2811 | static int attempt_merge(struct request_queue *q, struct request *req, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | struct request *next) |
| 2813 | { |
| 2814 | if (!rq_mergeable(req) || !rq_mergeable(next)) |
| 2815 | return 0; |
| 2816 | |
| 2817 | /* |
Andreas Mohr | d6e05ed | 2006-06-26 18:35:02 +0200 | [diff] [blame] | 2818 | * not contiguous |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | */ |
| 2820 | if (req->sector + req->nr_sectors != next->sector) |
| 2821 | return 0; |
| 2822 | |
| 2823 | if (rq_data_dir(req) != rq_data_dir(next) |
| 2824 | || req->rq_disk != next->rq_disk |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 2825 | || next->special) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | return 0; |
| 2827 | |
| 2828 | /* |
| 2829 | * If we are allowed to merge, then append bio list |
| 2830 | * from next to rq and release next. merge_requests_fn |
| 2831 | * will have updated segment counts, update sector |
| 2832 | * counts here. |
| 2833 | */ |
Jens Axboe | 1aa4f24 | 2006-12-19 08:33:11 +0100 | [diff] [blame] | 2834 | if (!ll_merge_requests_fn(q, req, next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | return 0; |
| 2836 | |
| 2837 | /* |
| 2838 | * At this point we have either done a back merge |
| 2839 | * or front merge. We need the smaller start_time of |
| 2840 | * the merged requests to be the current request |
| 2841 | * for accounting purposes. |
| 2842 | */ |
| 2843 | if (time_after(req->start_time, next->start_time)) |
| 2844 | req->start_time = next->start_time; |
| 2845 | |
| 2846 | req->biotail->bi_next = next->bio; |
| 2847 | req->biotail = next->biotail; |
| 2848 | |
| 2849 | req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors; |
| 2850 | |
| 2851 | elv_merge_requests(q, req, next); |
| 2852 | |
| 2853 | if (req->rq_disk) { |
| 2854 | disk_round_stats(req->rq_disk); |
| 2855 | req->rq_disk->in_flight--; |
| 2856 | } |
| 2857 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2858 | req->ioprio = ioprio_best(req->ioprio, next->ioprio); |
| 2859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | __blk_put_request(q, next); |
| 2861 | return 1; |
| 2862 | } |
| 2863 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2864 | static inline int attempt_back_merge(struct request_queue *q, |
| 2865 | struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | { |
| 2867 | struct request *next = elv_latter_request(q, rq); |
| 2868 | |
| 2869 | if (next) |
| 2870 | return attempt_merge(q, rq, next); |
| 2871 | |
| 2872 | return 0; |
| 2873 | } |
| 2874 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2875 | static inline int attempt_front_merge(struct request_queue *q, |
| 2876 | struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | { |
| 2878 | struct request *prev = elv_former_request(q, rq); |
| 2879 | |
| 2880 | if (prev) |
| 2881 | return attempt_merge(q, prev, rq); |
| 2882 | |
| 2883 | return 0; |
| 2884 | } |
| 2885 | |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2886 | static void init_request_from_bio(struct request *req, struct bio *bio) |
| 2887 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2888 | req->cmd_type = REQ_TYPE_FS; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2889 | |
| 2890 | /* |
| 2891 | * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST) |
| 2892 | */ |
| 2893 | if (bio_rw_ahead(bio) || bio_failfast(bio)) |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2894 | req->cmd_flags |= REQ_FAILFAST; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2895 | |
| 2896 | /* |
| 2897 | * REQ_BARRIER implies no merging, but lets make it explicit |
| 2898 | */ |
| 2899 | if (unlikely(bio_barrier(bio))) |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2900 | req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE); |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2901 | |
Jens Axboe | b31dc66 | 2006-06-13 08:26:10 +0200 | [diff] [blame] | 2902 | if (bio_sync(bio)) |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 2903 | req->cmd_flags |= REQ_RW_SYNC; |
Jens Axboe | 5404bc7 | 2006-08-10 09:01:02 +0200 | [diff] [blame] | 2904 | if (bio_rw_meta(bio)) |
| 2905 | req->cmd_flags |= REQ_RW_META; |
Jens Axboe | b31dc66 | 2006-06-13 08:26:10 +0200 | [diff] [blame] | 2906 | |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2907 | req->errors = 0; |
| 2908 | req->hard_sector = req->sector = bio->bi_sector; |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2909 | req->ioprio = bio_prio(bio); |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2910 | req->start_time = jiffies; |
NeilBrown | bc1c56f | 2007-08-16 13:31:30 +0200 | [diff] [blame] | 2911 | blk_rq_bio_prep(req->q, req, bio); |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 2912 | } |
| 2913 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 2914 | static int __make_request(struct request_queue *q, struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2915 | { |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2916 | struct request *req; |
Jens Axboe | 51da90f | 2006-07-18 04:14:45 +0200 | [diff] [blame] | 2917 | int el_ret, nr_sectors, barrier, err; |
| 2918 | const unsigned short prio = bio_prio(bio); |
| 2919 | const int sync = bio_sync(bio); |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2920 | int rw_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2922 | nr_sectors = bio_sectors(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | |
| 2924 | /* |
| 2925 | * low level driver can indicate that it wants pages above a |
| 2926 | * certain limit bounced to low memory (ie for highmem, or even |
| 2927 | * ISA dma in theory) |
| 2928 | */ |
| 2929 | blk_queue_bounce(q, &bio); |
| 2930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | barrier = bio_barrier(bio); |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 2932 | if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | err = -EOPNOTSUPP; |
| 2934 | goto end_io; |
| 2935 | } |
| 2936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | spin_lock_irq(q->queue_lock); |
| 2938 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2939 | if (unlikely(barrier) || elv_queue_empty(q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2940 | goto get_rq; |
| 2941 | |
| 2942 | el_ret = elv_merge(q, &req, bio); |
| 2943 | switch (el_ret) { |
| 2944 | case ELEVATOR_BACK_MERGE: |
| 2945 | BUG_ON(!rq_mergeable(req)); |
| 2946 | |
Jens Axboe | 1aa4f24 | 2006-12-19 08:33:11 +0100 | [diff] [blame] | 2947 | if (!ll_back_merge_fn(q, req, bio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | break; |
| 2949 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 2950 | blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE); |
| 2951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | req->biotail->bi_next = bio; |
| 2953 | req->biotail = bio; |
| 2954 | req->nr_sectors = req->hard_nr_sectors += nr_sectors; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2955 | req->ioprio = ioprio_best(req->ioprio, prio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | drive_stat_acct(req, nr_sectors, 0); |
| 2957 | if (!attempt_back_merge(q, req)) |
Jens Axboe | 2e662b6 | 2006-07-13 11:55:04 +0200 | [diff] [blame] | 2958 | elv_merged_request(q, req, el_ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | goto out; |
| 2960 | |
| 2961 | case ELEVATOR_FRONT_MERGE: |
| 2962 | BUG_ON(!rq_mergeable(req)); |
| 2963 | |
Jens Axboe | 1aa4f24 | 2006-12-19 08:33:11 +0100 | [diff] [blame] | 2964 | if (!ll_front_merge_fn(q, req, bio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | break; |
| 2966 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 2967 | blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE); |
| 2968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2969 | bio->bi_next = req->bio; |
| 2970 | req->bio = bio; |
| 2971 | |
| 2972 | /* |
| 2973 | * may not be valid. if the low level driver said |
| 2974 | * it didn't need a bounce buffer then it better |
| 2975 | * not touch req->buffer either... |
| 2976 | */ |
| 2977 | req->buffer = bio_data(bio); |
Jens Axboe | 51da90f | 2006-07-18 04:14:45 +0200 | [diff] [blame] | 2978 | req->current_nr_sectors = bio_cur_sectors(bio); |
| 2979 | req->hard_cur_sectors = req->current_nr_sectors; |
| 2980 | req->sector = req->hard_sector = bio->bi_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | req->nr_sectors = req->hard_nr_sectors += nr_sectors; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 2982 | req->ioprio = ioprio_best(req->ioprio, prio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | drive_stat_acct(req, nr_sectors, 0); |
| 2984 | if (!attempt_front_merge(q, req)) |
Jens Axboe | 2e662b6 | 2006-07-13 11:55:04 +0200 | [diff] [blame] | 2985 | elv_merged_request(q, req, el_ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | goto out; |
| 2987 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2988 | /* ELV_NO_MERGE: elevator says don't/can't merge. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | default: |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2990 | ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | } |
| 2992 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | get_rq: |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 2994 | /* |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 2995 | * This sync check and mask will be re-done in init_request_from_bio(), |
| 2996 | * but we need to set it earlier to expose the sync flag to the |
| 2997 | * rq allocator and io schedulers. |
| 2998 | */ |
| 2999 | rw_flags = bio_data_dir(bio); |
| 3000 | if (sync) |
| 3001 | rw_flags |= REQ_RW_SYNC; |
| 3002 | |
| 3003 | /* |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 3004 | * Grab a free request. This is might sleep but can not fail. |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 3005 | * Returns with the queue unlocked. |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 3006 | */ |
Jens Axboe | 7749a8d | 2006-12-13 13:02:26 +0100 | [diff] [blame] | 3007 | req = get_request_wait(q, rw_flags, bio); |
Nick Piggin | d634453 | 2005-06-28 20:45:14 -0700 | [diff] [blame] | 3008 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 3009 | /* |
| 3010 | * After dropping the lock and possibly sleeping here, our request |
| 3011 | * may now be mergeable after it had proven unmergeable (above). |
| 3012 | * We don't worry about that case for efficiency. It won't happen |
| 3013 | * often, and the elevators are able to handle it. |
| 3014 | */ |
Tejun Heo | 52d9e67 | 2006-01-06 09:49:58 +0100 | [diff] [blame] | 3015 | init_request_from_bio(req, bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3016 | |
Nick Piggin | 450991b | 2005-06-28 20:45:13 -0700 | [diff] [blame] | 3017 | spin_lock_irq(q->queue_lock); |
| 3018 | if (elv_queue_empty(q)) |
| 3019 | blk_plug_device(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | add_request(q, req); |
| 3021 | out: |
Jens Axboe | 4a534f9 | 2005-04-16 15:25:40 -0700 | [diff] [blame] | 3022 | if (sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | __generic_unplug_device(q); |
| 3024 | |
| 3025 | spin_unlock_irq(q->queue_lock); |
| 3026 | return 0; |
| 3027 | |
| 3028 | end_io: |
| 3029 | bio_endio(bio, nr_sectors << 9, err); |
| 3030 | return 0; |
| 3031 | } |
| 3032 | |
| 3033 | /* |
| 3034 | * If bio->bi_dev is a partition, remap the location |
| 3035 | */ |
| 3036 | static inline void blk_partition_remap(struct bio *bio) |
| 3037 | { |
| 3038 | struct block_device *bdev = bio->bi_bdev; |
| 3039 | |
| 3040 | if (bdev != bdev->bd_contains) { |
| 3041 | struct hd_struct *p = bdev->bd_part; |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 3042 | const int rw = bio_data_dir(bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 3044 | p->sectors[rw] += bio_sectors(bio); |
| 3045 | p->ios[rw]++; |
| 3046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | bio->bi_sector += p->start_sect; |
| 3048 | bio->bi_bdev = bdev->bd_contains; |
Alan D. Brunelle | c7149d6 | 2007-08-07 15:30:23 +0200 | [diff] [blame] | 3049 | |
| 3050 | blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio, |
| 3051 | bdev->bd_dev, bio->bi_sector, |
| 3052 | bio->bi_sector - p->start_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | } |
| 3054 | } |
| 3055 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | static void handle_bad_sector(struct bio *bio) |
| 3057 | { |
| 3058 | char b[BDEVNAME_SIZE]; |
| 3059 | |
| 3060 | printk(KERN_INFO "attempt to access beyond end of device\n"); |
| 3061 | printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n", |
| 3062 | bdevname(bio->bi_bdev, b), |
| 3063 | bio->bi_rw, |
| 3064 | (unsigned long long)bio->bi_sector + bio_sectors(bio), |
| 3065 | (long long)(bio->bi_bdev->bd_inode->i_size >> 9)); |
| 3066 | |
| 3067 | set_bit(BIO_EOF, &bio->bi_flags); |
| 3068 | } |
| 3069 | |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 3070 | #ifdef CONFIG_FAIL_MAKE_REQUEST |
| 3071 | |
| 3072 | static DECLARE_FAULT_ATTR(fail_make_request); |
| 3073 | |
| 3074 | static int __init setup_fail_make_request(char *str) |
| 3075 | { |
| 3076 | return setup_fault_attr(&fail_make_request, str); |
| 3077 | } |
| 3078 | __setup("fail_make_request=", setup_fail_make_request); |
| 3079 | |
| 3080 | static int should_fail_request(struct bio *bio) |
| 3081 | { |
| 3082 | if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) || |
| 3083 | (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail)) |
| 3084 | return should_fail(&fail_make_request, bio->bi_size); |
| 3085 | |
| 3086 | return 0; |
| 3087 | } |
| 3088 | |
| 3089 | static int __init fail_make_request_debugfs(void) |
| 3090 | { |
| 3091 | return init_fault_attr_dentries(&fail_make_request, |
| 3092 | "fail_make_request"); |
| 3093 | } |
| 3094 | |
| 3095 | late_initcall(fail_make_request_debugfs); |
| 3096 | |
| 3097 | #else /* CONFIG_FAIL_MAKE_REQUEST */ |
| 3098 | |
| 3099 | static inline int should_fail_request(struct bio *bio) |
| 3100 | { |
| 3101 | return 0; |
| 3102 | } |
| 3103 | |
| 3104 | #endif /* CONFIG_FAIL_MAKE_REQUEST */ |
| 3105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | /** |
| 3107 | * generic_make_request: hand a buffer to its device driver for I/O |
| 3108 | * @bio: The bio describing the location in memory and on the device. |
| 3109 | * |
| 3110 | * generic_make_request() is used to make I/O requests of block |
| 3111 | * devices. It is passed a &struct bio, which describes the I/O that needs |
| 3112 | * to be done. |
| 3113 | * |
| 3114 | * generic_make_request() does not return any status. The |
| 3115 | * success/failure status of the request, along with notification of |
| 3116 | * completion, is delivered asynchronously through the bio->bi_end_io |
| 3117 | * function described (one day) else where. |
| 3118 | * |
| 3119 | * The caller of generic_make_request must make sure that bi_io_vec |
| 3120 | * are set to describe the memory buffer, and that bi_dev and bi_sector are |
| 3121 | * set to describe the device address, and the |
| 3122 | * bi_end_io and optionally bi_private are set to describe how |
| 3123 | * completion notification should be signaled. |
| 3124 | * |
| 3125 | * generic_make_request and the drivers it calls may use bi_next if this |
| 3126 | * bio happens to be merged with someone else, and may change bi_dev and |
| 3127 | * bi_sector for remaps as it sees fit. So the values of these fields |
| 3128 | * should NOT be depended on after the call to generic_make_request. |
| 3129 | */ |
Neil Brown | d89d879 | 2007-05-01 09:53:42 +0200 | [diff] [blame] | 3130 | static inline void __generic_make_request(struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 3132 | struct request_queue *q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | sector_t maxsector; |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3134 | sector_t old_sector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3135 | int ret, nr_sectors = bio_sectors(bio); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3136 | dev_t old_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | |
| 3138 | might_sleep(); |
| 3139 | /* Test device or partition size, when known. */ |
| 3140 | maxsector = bio->bi_bdev->bd_inode->i_size >> 9; |
| 3141 | if (maxsector) { |
| 3142 | sector_t sector = bio->bi_sector; |
| 3143 | |
| 3144 | if (maxsector < nr_sectors || maxsector - nr_sectors < sector) { |
| 3145 | /* |
| 3146 | * This may well happen - the kernel calls bread() |
| 3147 | * without checking the size of the device, e.g., when |
| 3148 | * mounting a device. |
| 3149 | */ |
| 3150 | handle_bad_sector(bio); |
| 3151 | goto end_io; |
| 3152 | } |
| 3153 | } |
| 3154 | |
| 3155 | /* |
| 3156 | * Resolve the mapping until finished. (drivers are |
| 3157 | * still free to implement/resolve their own stacking |
| 3158 | * by explicitly returning 0) |
| 3159 | * |
| 3160 | * NOTE: we don't repeat the blk_size check for each new device. |
| 3161 | * Stacking drivers are expected to know what they are doing. |
| 3162 | */ |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3163 | old_sector = -1; |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3164 | old_dev = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | do { |
| 3166 | char b[BDEVNAME_SIZE]; |
| 3167 | |
| 3168 | q = bdev_get_queue(bio->bi_bdev); |
| 3169 | if (!q) { |
| 3170 | printk(KERN_ERR |
| 3171 | "generic_make_request: Trying to access " |
| 3172 | "nonexistent block-device %s (%Lu)\n", |
| 3173 | bdevname(bio->bi_bdev, b), |
| 3174 | (long long) bio->bi_sector); |
| 3175 | end_io: |
| 3176 | bio_endio(bio, bio->bi_size, -EIO); |
| 3177 | break; |
| 3178 | } |
| 3179 | |
| 3180 | if (unlikely(bio_sectors(bio) > q->max_hw_sectors)) { |
| 3181 | printk("bio too big device %s (%u > %u)\n", |
| 3182 | bdevname(bio->bi_bdev, b), |
| 3183 | bio_sectors(bio), |
| 3184 | q->max_hw_sectors); |
| 3185 | goto end_io; |
| 3186 | } |
| 3187 | |
Nick Piggin | fde6ad2 | 2005-06-23 00:08:53 -0700 | [diff] [blame] | 3188 | if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | goto end_io; |
| 3190 | |
Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 3191 | if (should_fail_request(bio)) |
| 3192 | goto end_io; |
| 3193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | /* |
| 3195 | * If this device has partitions, remap block n |
| 3196 | * of partition p to block n+start(p) of the disk. |
| 3197 | */ |
| 3198 | blk_partition_remap(bio); |
| 3199 | |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3200 | if (old_sector != -1) |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3201 | blk_add_trace_remap(q, bio, old_dev, bio->bi_sector, |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3202 | old_sector); |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3203 | |
| 3204 | blk_add_trace_bio(q, bio, BLK_TA_QUEUE); |
| 3205 | |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3206 | old_sector = bio->bi_sector; |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3207 | old_dev = bio->bi_bdev->bd_dev; |
| 3208 | |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3209 | maxsector = bio->bi_bdev->bd_inode->i_size >> 9; |
| 3210 | if (maxsector) { |
| 3211 | sector_t sector = bio->bi_sector; |
| 3212 | |
Andrew Morton | df66b85 | 2006-11-02 22:06:56 -0800 | [diff] [blame] | 3213 | if (maxsector < nr_sectors || |
| 3214 | maxsector - nr_sectors < sector) { |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3215 | /* |
Andrew Morton | df66b85 | 2006-11-02 22:06:56 -0800 | [diff] [blame] | 3216 | * This may well happen - partitions are not |
| 3217 | * checked to make sure they are within the size |
| 3218 | * of the whole device. |
NeilBrown | 5ddfe96 | 2006-10-30 22:07:21 -0800 | [diff] [blame] | 3219 | */ |
| 3220 | handle_bad_sector(bio); |
| 3221 | goto end_io; |
| 3222 | } |
| 3223 | } |
| 3224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | ret = q->make_request_fn(q, bio); |
| 3226 | } while (ret); |
| 3227 | } |
| 3228 | |
Neil Brown | d89d879 | 2007-05-01 09:53:42 +0200 | [diff] [blame] | 3229 | /* |
| 3230 | * We only want one ->make_request_fn to be active at a time, |
| 3231 | * else stack usage with stacked devices could be a problem. |
| 3232 | * So use current->bio_{list,tail} to keep a list of requests |
| 3233 | * submited by a make_request_fn function. |
| 3234 | * current->bio_tail is also used as a flag to say if |
| 3235 | * generic_make_request is currently active in this task or not. |
| 3236 | * If it is NULL, then no make_request is active. If it is non-NULL, |
| 3237 | * then a make_request is active, and new requests should be added |
| 3238 | * at the tail |
| 3239 | */ |
| 3240 | void generic_make_request(struct bio *bio) |
| 3241 | { |
| 3242 | if (current->bio_tail) { |
| 3243 | /* make_request is active */ |
| 3244 | *(current->bio_tail) = bio; |
| 3245 | bio->bi_next = NULL; |
| 3246 | current->bio_tail = &bio->bi_next; |
| 3247 | return; |
| 3248 | } |
| 3249 | /* following loop may be a bit non-obvious, and so deserves some |
| 3250 | * explanation. |
| 3251 | * Before entering the loop, bio->bi_next is NULL (as all callers |
| 3252 | * ensure that) so we have a list with a single bio. |
| 3253 | * We pretend that we have just taken it off a longer list, so |
| 3254 | * we assign bio_list to the next (which is NULL) and bio_tail |
| 3255 | * to &bio_list, thus initialising the bio_list of new bios to be |
| 3256 | * added. __generic_make_request may indeed add some more bios |
| 3257 | * through a recursive call to generic_make_request. If it |
| 3258 | * did, we find a non-NULL value in bio_list and re-enter the loop |
| 3259 | * from the top. In this case we really did just take the bio |
| 3260 | * of the top of the list (no pretending) and so fixup bio_list and |
| 3261 | * bio_tail or bi_next, and call into __generic_make_request again. |
| 3262 | * |
| 3263 | * The loop was structured like this to make only one call to |
| 3264 | * __generic_make_request (which is important as it is large and |
| 3265 | * inlined) and to keep the structure simple. |
| 3266 | */ |
| 3267 | BUG_ON(bio->bi_next); |
| 3268 | do { |
| 3269 | current->bio_list = bio->bi_next; |
| 3270 | if (bio->bi_next == NULL) |
| 3271 | current->bio_tail = ¤t->bio_list; |
| 3272 | else |
| 3273 | bio->bi_next = NULL; |
| 3274 | __generic_make_request(bio); |
| 3275 | bio = current->bio_list; |
| 3276 | } while (bio); |
| 3277 | current->bio_tail = NULL; /* deactivate */ |
| 3278 | } |
| 3279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3280 | EXPORT_SYMBOL(generic_make_request); |
| 3281 | |
| 3282 | /** |
| 3283 | * submit_bio: submit a bio to the block device layer for I/O |
| 3284 | * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead) |
| 3285 | * @bio: The &struct bio which describes the I/O |
| 3286 | * |
| 3287 | * submit_bio() is very similar in purpose to generic_make_request(), and |
| 3288 | * uses that function to do most of the work. Both are fairly rough |
| 3289 | * interfaces, @bio must be presetup and ready for I/O. |
| 3290 | * |
| 3291 | */ |
| 3292 | void submit_bio(int rw, struct bio *bio) |
| 3293 | { |
| 3294 | int count = bio_sectors(bio); |
| 3295 | |
| 3296 | BIO_BUG_ON(!bio->bi_size); |
| 3297 | BIO_BUG_ON(!bio->bi_io_vec); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3298 | bio->bi_rw |= rw; |
Andrew Morton | faccbd4b | 2006-12-10 02:19:35 -0800 | [diff] [blame] | 3299 | if (rw & WRITE) { |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 3300 | count_vm_events(PGPGOUT, count); |
Andrew Morton | faccbd4b | 2006-12-10 02:19:35 -0800 | [diff] [blame] | 3301 | } else { |
| 3302 | task_io_account_read(bio->bi_size); |
Christoph Lameter | f8891e5 | 2006-06-30 01:55:45 -0700 | [diff] [blame] | 3303 | count_vm_events(PGPGIN, count); |
Andrew Morton | faccbd4b | 2006-12-10 02:19:35 -0800 | [diff] [blame] | 3304 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | |
| 3306 | if (unlikely(block_dump)) { |
| 3307 | char b[BDEVNAME_SIZE]; |
| 3308 | printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n", |
| 3309 | current->comm, current->pid, |
| 3310 | (rw & WRITE) ? "WRITE" : "READ", |
| 3311 | (unsigned long long)bio->bi_sector, |
| 3312 | bdevname(bio->bi_bdev,b)); |
| 3313 | } |
| 3314 | |
| 3315 | generic_make_request(bio); |
| 3316 | } |
| 3317 | |
| 3318 | EXPORT_SYMBOL(submit_bio); |
| 3319 | |
Adrian Bunk | 93d17d3 | 2005-06-25 14:59:10 -0700 | [diff] [blame] | 3320 | static void blk_recalc_rq_sectors(struct request *rq, int nsect) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | { |
| 3322 | if (blk_fs_request(rq)) { |
| 3323 | rq->hard_sector += nsect; |
| 3324 | rq->hard_nr_sectors -= nsect; |
| 3325 | |
| 3326 | /* |
| 3327 | * Move the I/O submission pointers ahead if required. |
| 3328 | */ |
| 3329 | if ((rq->nr_sectors >= rq->hard_nr_sectors) && |
| 3330 | (rq->sector <= rq->hard_sector)) { |
| 3331 | rq->sector = rq->hard_sector; |
| 3332 | rq->nr_sectors = rq->hard_nr_sectors; |
| 3333 | rq->hard_cur_sectors = bio_cur_sectors(rq->bio); |
| 3334 | rq->current_nr_sectors = rq->hard_cur_sectors; |
| 3335 | rq->buffer = bio_data(rq->bio); |
| 3336 | } |
| 3337 | |
| 3338 | /* |
| 3339 | * if total number of sectors is less than the first segment |
| 3340 | * size, something has gone terribly wrong |
| 3341 | */ |
| 3342 | if (rq->nr_sectors < rq->current_nr_sectors) { |
| 3343 | printk("blk: request botched\n"); |
| 3344 | rq->nr_sectors = rq->current_nr_sectors; |
| 3345 | } |
| 3346 | } |
| 3347 | } |
| 3348 | |
| 3349 | static int __end_that_request_first(struct request *req, int uptodate, |
| 3350 | int nr_bytes) |
| 3351 | { |
| 3352 | int total_bytes, bio_nbytes, error, next_idx = 0; |
| 3353 | struct bio *bio; |
| 3354 | |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 3355 | blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE); |
| 3356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | /* |
| 3358 | * extend uptodate bool to allow < 0 value to be direct io error |
| 3359 | */ |
| 3360 | error = 0; |
| 3361 | if (end_io_error(uptodate)) |
| 3362 | error = !uptodate ? -EIO : uptodate; |
| 3363 | |
| 3364 | /* |
| 3365 | * for a REQ_BLOCK_PC request, we want to carry any eventual |
| 3366 | * sense key with us all the way through |
| 3367 | */ |
| 3368 | if (!blk_pc_request(req)) |
| 3369 | req->errors = 0; |
| 3370 | |
| 3371 | if (!uptodate) { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 3372 | if (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3373 | printk("end_request: I/O error, dev %s, sector %llu\n", |
| 3374 | req->rq_disk ? req->rq_disk->disk_name : "?", |
| 3375 | (unsigned long long)req->sector); |
| 3376 | } |
| 3377 | |
Jens Axboe | d72d904 | 2005-11-01 08:35:42 +0100 | [diff] [blame] | 3378 | if (blk_fs_request(req) && req->rq_disk) { |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 3379 | const int rw = rq_data_dir(req); |
| 3380 | |
Jens Axboe | 53e8606 | 2006-01-17 11:09:27 +0100 | [diff] [blame] | 3381 | disk_stat_add(req->rq_disk, sectors[rw], nr_bytes >> 9); |
Jens Axboe | d72d904 | 2005-11-01 08:35:42 +0100 | [diff] [blame] | 3382 | } |
| 3383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3384 | total_bytes = bio_nbytes = 0; |
| 3385 | while ((bio = req->bio) != NULL) { |
| 3386 | int nbytes; |
| 3387 | |
| 3388 | if (nr_bytes >= bio->bi_size) { |
| 3389 | req->bio = bio->bi_next; |
| 3390 | nbytes = bio->bi_size; |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 3391 | if (!ordered_bio_endio(req, bio, nbytes, error)) |
| 3392 | bio_endio(bio, nbytes, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3393 | next_idx = 0; |
| 3394 | bio_nbytes = 0; |
| 3395 | } else { |
| 3396 | int idx = bio->bi_idx + next_idx; |
| 3397 | |
| 3398 | if (unlikely(bio->bi_idx >= bio->bi_vcnt)) { |
| 3399 | blk_dump_rq_flags(req, "__end_that"); |
| 3400 | printk("%s: bio idx %d >= vcnt %d\n", |
| 3401 | __FUNCTION__, |
| 3402 | bio->bi_idx, bio->bi_vcnt); |
| 3403 | break; |
| 3404 | } |
| 3405 | |
| 3406 | nbytes = bio_iovec_idx(bio, idx)->bv_len; |
| 3407 | BIO_BUG_ON(nbytes > bio->bi_size); |
| 3408 | |
| 3409 | /* |
| 3410 | * not a complete bvec done |
| 3411 | */ |
| 3412 | if (unlikely(nbytes > nr_bytes)) { |
| 3413 | bio_nbytes += nr_bytes; |
| 3414 | total_bytes += nr_bytes; |
| 3415 | break; |
| 3416 | } |
| 3417 | |
| 3418 | /* |
| 3419 | * advance to the next vector |
| 3420 | */ |
| 3421 | next_idx++; |
| 3422 | bio_nbytes += nbytes; |
| 3423 | } |
| 3424 | |
| 3425 | total_bytes += nbytes; |
| 3426 | nr_bytes -= nbytes; |
| 3427 | |
| 3428 | if ((bio = req->bio)) { |
| 3429 | /* |
| 3430 | * end more in this run, or just return 'not-done' |
| 3431 | */ |
| 3432 | if (unlikely(nr_bytes <= 0)) |
| 3433 | break; |
| 3434 | } |
| 3435 | } |
| 3436 | |
| 3437 | /* |
| 3438 | * completely done |
| 3439 | */ |
| 3440 | if (!req->bio) |
| 3441 | return 0; |
| 3442 | |
| 3443 | /* |
| 3444 | * if the request wasn't completed, update state |
| 3445 | */ |
| 3446 | if (bio_nbytes) { |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 3447 | if (!ordered_bio_endio(req, bio, bio_nbytes, error)) |
| 3448 | bio_endio(bio, bio_nbytes, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3449 | bio->bi_idx += next_idx; |
| 3450 | bio_iovec(bio)->bv_offset += nr_bytes; |
| 3451 | bio_iovec(bio)->bv_len -= nr_bytes; |
| 3452 | } |
| 3453 | |
| 3454 | blk_recalc_rq_sectors(req, total_bytes >> 9); |
| 3455 | blk_recalc_rq_segments(req); |
| 3456 | return 1; |
| 3457 | } |
| 3458 | |
| 3459 | /** |
| 3460 | * end_that_request_first - end I/O on a request |
| 3461 | * @req: the request being processed |
| 3462 | * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error |
| 3463 | * @nr_sectors: number of sectors to end I/O on |
| 3464 | * |
| 3465 | * Description: |
| 3466 | * Ends I/O on a number of sectors attached to @req, and sets it up |
| 3467 | * for the next range of segments (if any) in the cluster. |
| 3468 | * |
| 3469 | * Return: |
| 3470 | * 0 - we are done with this request, call end_that_request_last() |
| 3471 | * 1 - still buffers pending for this request |
| 3472 | **/ |
| 3473 | int end_that_request_first(struct request *req, int uptodate, int nr_sectors) |
| 3474 | { |
| 3475 | return __end_that_request_first(req, uptodate, nr_sectors << 9); |
| 3476 | } |
| 3477 | |
| 3478 | EXPORT_SYMBOL(end_that_request_first); |
| 3479 | |
| 3480 | /** |
| 3481 | * end_that_request_chunk - end I/O on a request |
| 3482 | * @req: the request being processed |
| 3483 | * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error |
| 3484 | * @nr_bytes: number of bytes to complete |
| 3485 | * |
| 3486 | * Description: |
| 3487 | * Ends I/O on a number of bytes attached to @req, and sets it up |
| 3488 | * for the next range of segments (if any). Like end_that_request_first(), |
| 3489 | * but deals with bytes instead of sectors. |
| 3490 | * |
| 3491 | * Return: |
| 3492 | * 0 - we are done with this request, call end_that_request_last() |
| 3493 | * 1 - still buffers pending for this request |
| 3494 | **/ |
| 3495 | int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes) |
| 3496 | { |
| 3497 | return __end_that_request_first(req, uptodate, nr_bytes); |
| 3498 | } |
| 3499 | |
| 3500 | EXPORT_SYMBOL(end_that_request_chunk); |
| 3501 | |
| 3502 | /* |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3503 | * splice the completion data to a local structure and hand off to |
| 3504 | * process_completion_queue() to complete the requests |
| 3505 | */ |
| 3506 | static void blk_done_softirq(struct softirq_action *h) |
| 3507 | { |
Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 3508 | struct list_head *cpu_list, local_list; |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3509 | |
| 3510 | local_irq_disable(); |
| 3511 | cpu_list = &__get_cpu_var(blk_cpu_done); |
Oleg Nesterov | 626ab0e | 2006-06-23 02:05:55 -0700 | [diff] [blame] | 3512 | list_replace_init(cpu_list, &local_list); |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3513 | local_irq_enable(); |
| 3514 | |
| 3515 | while (!list_empty(&local_list)) { |
| 3516 | struct request *rq = list_entry(local_list.next, struct request, donelist); |
| 3517 | |
| 3518 | list_del_init(&rq->donelist); |
| 3519 | rq->q->softirq_done_fn(rq); |
| 3520 | } |
| 3521 | } |
| 3522 | |
Satyam Sharma | db47d47 | 2007-08-23 09:29:40 +0200 | [diff] [blame] | 3523 | static int __cpuinit blk_cpu_notify(struct notifier_block *self, unsigned long action, |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3524 | void *hcpu) |
| 3525 | { |
| 3526 | /* |
| 3527 | * If a CPU goes away, splice its entries to the current CPU |
| 3528 | * and trigger a run of the softirq |
| 3529 | */ |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 3530 | if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) { |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3531 | int cpu = (unsigned long) hcpu; |
| 3532 | |
| 3533 | local_irq_disable(); |
| 3534 | list_splice_init(&per_cpu(blk_cpu_done, cpu), |
| 3535 | &__get_cpu_var(blk_cpu_done)); |
| 3536 | raise_softirq_irqoff(BLOCK_SOFTIRQ); |
| 3537 | local_irq_enable(); |
| 3538 | } |
| 3539 | |
| 3540 | return NOTIFY_OK; |
| 3541 | } |
| 3542 | |
| 3543 | |
Satyam Sharma | db47d47 | 2007-08-23 09:29:40 +0200 | [diff] [blame] | 3544 | static struct notifier_block blk_cpu_notifier __cpuinitdata = { |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3545 | .notifier_call = blk_cpu_notify, |
| 3546 | }; |
| 3547 | |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3548 | /** |
| 3549 | * blk_complete_request - end I/O on a request |
| 3550 | * @req: the request being processed |
| 3551 | * |
| 3552 | * Description: |
| 3553 | * Ends all I/O on a request. It does not handle partial completions, |
Andreas Mohr | d6e05ed | 2006-06-26 18:35:02 +0200 | [diff] [blame] | 3554 | * unless the driver actually implements this in its completion callback |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3555 | * through requeueing. Theh actual completion happens out-of-order, |
| 3556 | * through a softirq handler. The user must have registered a completion |
| 3557 | * callback through blk_queue_softirq_done(). |
| 3558 | **/ |
| 3559 | |
| 3560 | void blk_complete_request(struct request *req) |
| 3561 | { |
| 3562 | struct list_head *cpu_list; |
| 3563 | unsigned long flags; |
| 3564 | |
| 3565 | BUG_ON(!req->q->softirq_done_fn); |
| 3566 | |
| 3567 | local_irq_save(flags); |
| 3568 | |
| 3569 | cpu_list = &__get_cpu_var(blk_cpu_done); |
| 3570 | list_add_tail(&req->donelist, cpu_list); |
| 3571 | raise_softirq_irqoff(BLOCK_SOFTIRQ); |
| 3572 | |
| 3573 | local_irq_restore(flags); |
| 3574 | } |
| 3575 | |
| 3576 | EXPORT_SYMBOL(blk_complete_request); |
| 3577 | |
| 3578 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3579 | * queue lock must be held |
| 3580 | */ |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 3581 | void end_that_request_last(struct request *req, int uptodate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3582 | { |
| 3583 | struct gendisk *disk = req->rq_disk; |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 3584 | int error; |
| 3585 | |
| 3586 | /* |
| 3587 | * extend uptodate bool to allow < 0 value to be direct io error |
| 3588 | */ |
| 3589 | error = 0; |
| 3590 | if (end_io_error(uptodate)) |
| 3591 | error = !uptodate ? -EIO : uptodate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | |
| 3593 | if (unlikely(laptop_mode) && blk_fs_request(req)) |
| 3594 | laptop_io_completion(); |
| 3595 | |
Jens Axboe | fd0ff8a | 2006-05-23 11:23:49 +0200 | [diff] [blame] | 3596 | /* |
| 3597 | * Account IO completion. bar_rq isn't accounted as a normal |
| 3598 | * IO on queueing nor completion. Accounting the containing |
| 3599 | * request is enough. |
| 3600 | */ |
| 3601 | if (disk && blk_fs_request(req) && req != &req->q->bar_rq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | unsigned long duration = jiffies - req->start_time; |
Jens Axboe | a362357 | 2005-11-01 09:26:16 +0100 | [diff] [blame] | 3603 | const int rw = rq_data_dir(req); |
| 3604 | |
| 3605 | __disk_stat_inc(disk, ios[rw]); |
| 3606 | __disk_stat_add(disk, ticks[rw], duration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | disk_round_stats(disk); |
| 3608 | disk->in_flight--; |
| 3609 | } |
| 3610 | if (req->end_io) |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 3611 | req->end_io(req, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3612 | else |
| 3613 | __blk_put_request(req->q, req); |
| 3614 | } |
| 3615 | |
| 3616 | EXPORT_SYMBOL(end_that_request_last); |
| 3617 | |
| 3618 | void end_request(struct request *req, int uptodate) |
| 3619 | { |
| 3620 | if (!end_that_request_first(req, uptodate, req->hard_cur_sectors)) { |
| 3621 | add_disk_randomness(req->rq_disk); |
| 3622 | blkdev_dequeue_request(req); |
Tejun Heo | 8ffdc65 | 2006-01-06 09:49:03 +0100 | [diff] [blame] | 3623 | end_that_request_last(req, uptodate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | } |
| 3625 | } |
| 3626 | |
| 3627 | EXPORT_SYMBOL(end_request); |
| 3628 | |
NeilBrown | 6684657 | 2007-08-16 13:31:28 +0200 | [diff] [blame] | 3629 | static void blk_rq_bio_prep(struct request_queue *q, struct request *rq, |
| 3630 | struct bio *bio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3631 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 3632 | /* first two bits are identical in rq->cmd_flags and bio->bi_rw */ |
| 3633 | rq->cmd_flags |= (bio->bi_rw & 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3634 | |
| 3635 | rq->nr_phys_segments = bio_phys_segments(q, bio); |
| 3636 | rq->nr_hw_segments = bio_hw_segments(q, bio); |
| 3637 | rq->current_nr_sectors = bio_cur_sectors(bio); |
| 3638 | rq->hard_cur_sectors = rq->current_nr_sectors; |
| 3639 | rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio); |
| 3640 | rq->buffer = bio_data(bio); |
Mike Christie | 0e75f90 | 2006-12-01 10:40:55 +0100 | [diff] [blame] | 3641 | rq->data_len = bio->bi_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | |
| 3643 | rq->bio = rq->biotail = bio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | |
NeilBrown | 6684657 | 2007-08-16 13:31:28 +0200 | [diff] [blame] | 3645 | if (bio->bi_bdev) |
| 3646 | rq->rq_disk = bio->bi_bdev->bd_disk; |
| 3647 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | |
| 3649 | int kblockd_schedule_work(struct work_struct *work) |
| 3650 | { |
| 3651 | return queue_work(kblockd_workqueue, work); |
| 3652 | } |
| 3653 | |
| 3654 | EXPORT_SYMBOL(kblockd_schedule_work); |
| 3655 | |
Andrew Morton | 19a75d8 | 2007-05-09 02:33:56 -0700 | [diff] [blame] | 3656 | void kblockd_flush_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | { |
Oleg Nesterov | 28e53bd | 2007-05-09 02:34:22 -0700 | [diff] [blame] | 3658 | cancel_work_sync(work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3659 | } |
Andrew Morton | 19a75d8 | 2007-05-09 02:33:56 -0700 | [diff] [blame] | 3660 | EXPORT_SYMBOL(kblockd_flush_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3661 | |
| 3662 | int __init blk_dev_init(void) |
| 3663 | { |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3664 | int i; |
| 3665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3666 | kblockd_workqueue = create_workqueue("kblockd"); |
| 3667 | if (!kblockd_workqueue) |
| 3668 | panic("Failed to create kblockd\n"); |
| 3669 | |
| 3670 | request_cachep = kmem_cache_create("blkdev_requests", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 3671 | sizeof(struct request), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | |
| 3673 | requestq_cachep = kmem_cache_create("blkdev_queue", |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 3674 | sizeof(struct request_queue), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3675 | |
| 3676 | iocontext_cachep = kmem_cache_create("blkdev_ioc", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 3677 | sizeof(struct io_context), 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 3679 | for_each_possible_cpu(i) |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3680 | INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i)); |
| 3681 | |
| 3682 | open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL); |
Chandra Seetharaman | 5a67e4c | 2006-06-27 02:54:11 -0700 | [diff] [blame] | 3683 | register_hotcpu_notifier(&blk_cpu_notifier); |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 3684 | |
Vasily Tarasov | f772b3d | 2007-03-27 08:52:47 +0200 | [diff] [blame] | 3685 | blk_max_low_pfn = max_low_pfn - 1; |
| 3686 | blk_max_pfn = max_pfn - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | |
| 3688 | return 0; |
| 3689 | } |
| 3690 | |
| 3691 | /* |
| 3692 | * IO Context helper functions |
| 3693 | */ |
| 3694 | void put_io_context(struct io_context *ioc) |
| 3695 | { |
| 3696 | if (ioc == NULL) |
| 3697 | return; |
| 3698 | |
| 3699 | BUG_ON(atomic_read(&ioc->refcount) == 0); |
| 3700 | |
| 3701 | if (atomic_dec_and_test(&ioc->refcount)) { |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3702 | struct cfq_io_context *cic; |
| 3703 | |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 3704 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3705 | if (ioc->aic && ioc->aic->dtor) |
| 3706 | ioc->aic->dtor(ioc->aic); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3707 | if (ioc->cic_root.rb_node != NULL) { |
Jens Axboe | 7143dd4 | 2006-03-28 09:00:28 +0200 | [diff] [blame] | 3708 | struct rb_node *n = rb_first(&ioc->cic_root); |
| 3709 | |
| 3710 | cic = rb_entry(n, struct cfq_io_context, rb_node); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3711 | cic->dtor(ioc); |
| 3712 | } |
Al Viro | 334e94d | 2006-03-18 15:05:53 -0500 | [diff] [blame] | 3713 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | |
| 3715 | kmem_cache_free(iocontext_cachep, ioc); |
| 3716 | } |
| 3717 | } |
| 3718 | EXPORT_SYMBOL(put_io_context); |
| 3719 | |
| 3720 | /* Called by the exitting task */ |
| 3721 | void exit_io_context(void) |
| 3722 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | struct io_context *ioc; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3724 | struct cfq_io_context *cic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3726 | task_lock(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | ioc = current->io_context; |
| 3728 | current->io_context = NULL; |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3729 | task_unlock(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | |
Oleg Nesterov | 25034d7 | 2006-08-29 09:15:14 +0200 | [diff] [blame] | 3731 | ioc->task = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | if (ioc->aic && ioc->aic->exit) |
| 3733 | ioc->aic->exit(ioc->aic); |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3734 | if (ioc->cic_root.rb_node != NULL) { |
| 3735 | cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node); |
| 3736 | cic->exit(ioc); |
| 3737 | } |
Oleg Nesterov | 25034d7 | 2006-08-29 09:15:14 +0200 | [diff] [blame] | 3738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | put_io_context(ioc); |
| 3740 | } |
| 3741 | |
| 3742 | /* |
| 3743 | * If the current task has no IO context then create one and initialise it. |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3744 | * Otherwise, return its existing IO context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | * |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3746 | * This returned IO context doesn't have a specifically elevated refcount, |
| 3747 | * but since the current task itself holds a reference, the context can be |
| 3748 | * used in general code, so long as it stays within `current` context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | */ |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 3750 | static struct io_context *current_io_context(gfp_t gfp_flags, int node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3751 | { |
| 3752 | struct task_struct *tsk = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3753 | struct io_context *ret; |
| 3754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | ret = tsk->io_context; |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3756 | if (likely(ret)) |
| 3757 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 3759 | ret = kmem_cache_alloc_node(iocontext_cachep, gfp_flags, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | if (ret) { |
| 3761 | atomic_set(&ret->refcount, 1); |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 3762 | ret->task = current; |
Jens Axboe | fc46379 | 2006-08-29 09:05:44 +0200 | [diff] [blame] | 3763 | ret->ioprio_changed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3764 | ret->last_waited = jiffies; /* doesn't matter... */ |
| 3765 | ret->nr_batch_requests = 0; /* because this is 0 */ |
| 3766 | ret->aic = NULL; |
Jens Axboe | e2d74ac | 2006-03-28 08:59:01 +0200 | [diff] [blame] | 3767 | ret->cic_root.rb_node = NULL; |
Jens Axboe | 4e521c2 | 2007-04-24 21:17:33 +0200 | [diff] [blame] | 3768 | ret->ioc_data = NULL; |
Oleg Nesterov | 9f83e45 | 2006-08-21 08:34:15 +0200 | [diff] [blame] | 3769 | /* make sure set_task_ioprio() sees the settings above */ |
| 3770 | smp_wmb(); |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3771 | tsk->io_context = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3772 | } |
| 3773 | |
| 3774 | return ret; |
| 3775 | } |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3776 | |
| 3777 | /* |
| 3778 | * If the current task has no IO context then create one and initialise it. |
| 3779 | * If it does have a context, take a ref on it. |
| 3780 | * |
| 3781 | * This is always called in the context of the task which submitted the I/O. |
| 3782 | */ |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 3783 | struct io_context *get_io_context(gfp_t gfp_flags, int node) |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3784 | { |
| 3785 | struct io_context *ret; |
Jens Axboe | b5deef9 | 2006-07-19 23:39:40 +0200 | [diff] [blame] | 3786 | ret = current_io_context(gfp_flags, node); |
Nick Piggin | fb3cc43 | 2005-06-28 20:45:15 -0700 | [diff] [blame] | 3787 | if (likely(ret)) |
| 3788 | atomic_inc(&ret->refcount); |
| 3789 | return ret; |
| 3790 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3791 | EXPORT_SYMBOL(get_io_context); |
| 3792 | |
| 3793 | void copy_io_context(struct io_context **pdst, struct io_context **psrc) |
| 3794 | { |
| 3795 | struct io_context *src = *psrc; |
| 3796 | struct io_context *dst = *pdst; |
| 3797 | |
| 3798 | if (src) { |
| 3799 | BUG_ON(atomic_read(&src->refcount) == 0); |
| 3800 | atomic_inc(&src->refcount); |
| 3801 | put_io_context(dst); |
| 3802 | *pdst = src; |
| 3803 | } |
| 3804 | } |
| 3805 | EXPORT_SYMBOL(copy_io_context); |
| 3806 | |
| 3807 | void swap_io_context(struct io_context **ioc1, struct io_context **ioc2) |
| 3808 | { |
| 3809 | struct io_context *temp; |
| 3810 | temp = *ioc1; |
| 3811 | *ioc1 = *ioc2; |
| 3812 | *ioc2 = temp; |
| 3813 | } |
| 3814 | EXPORT_SYMBOL(swap_io_context); |
| 3815 | |
| 3816 | /* |
| 3817 | * sysfs parts below |
| 3818 | */ |
| 3819 | struct queue_sysfs_entry { |
| 3820 | struct attribute attr; |
| 3821 | ssize_t (*show)(struct request_queue *, char *); |
| 3822 | ssize_t (*store)(struct request_queue *, const char *, size_t); |
| 3823 | }; |
| 3824 | |
| 3825 | static ssize_t |
| 3826 | queue_var_show(unsigned int var, char *page) |
| 3827 | { |
| 3828 | return sprintf(page, "%d\n", var); |
| 3829 | } |
| 3830 | |
| 3831 | static ssize_t |
| 3832 | queue_var_store(unsigned long *var, const char *page, size_t count) |
| 3833 | { |
| 3834 | char *p = (char *) page; |
| 3835 | |
| 3836 | *var = simple_strtoul(p, &p, 10); |
| 3837 | return count; |
| 3838 | } |
| 3839 | |
| 3840 | static ssize_t queue_requests_show(struct request_queue *q, char *page) |
| 3841 | { |
| 3842 | return queue_var_show(q->nr_requests, (page)); |
| 3843 | } |
| 3844 | |
| 3845 | static ssize_t |
| 3846 | queue_requests_store(struct request_queue *q, const char *page, size_t count) |
| 3847 | { |
| 3848 | struct request_list *rl = &q->rq; |
Al Viro | c981ff9 | 2006-03-18 13:51:29 -0500 | [diff] [blame] | 3849 | unsigned long nr; |
| 3850 | int ret = queue_var_store(&nr, page, count); |
| 3851 | if (nr < BLKDEV_MIN_RQ) |
| 3852 | nr = BLKDEV_MIN_RQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | |
Al Viro | c981ff9 | 2006-03-18 13:51:29 -0500 | [diff] [blame] | 3854 | spin_lock_irq(q->queue_lock); |
| 3855 | q->nr_requests = nr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | blk_queue_congestion_threshold(q); |
| 3857 | |
| 3858 | if (rl->count[READ] >= queue_congestion_on_threshold(q)) |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 3859 | blk_set_queue_congested(q, READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | else if (rl->count[READ] < queue_congestion_off_threshold(q)) |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 3861 | blk_clear_queue_congested(q, READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3862 | |
| 3863 | if (rl->count[WRITE] >= queue_congestion_on_threshold(q)) |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 3864 | blk_set_queue_congested(q, WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | else if (rl->count[WRITE] < queue_congestion_off_threshold(q)) |
Thomas Maier | 79e2de4 | 2006-10-19 23:28:15 -0700 | [diff] [blame] | 3866 | blk_clear_queue_congested(q, WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | |
| 3868 | if (rl->count[READ] >= q->nr_requests) { |
| 3869 | blk_set_queue_full(q, READ); |
| 3870 | } else if (rl->count[READ]+1 <= q->nr_requests) { |
| 3871 | blk_clear_queue_full(q, READ); |
| 3872 | wake_up(&rl->wait[READ]); |
| 3873 | } |
| 3874 | |
| 3875 | if (rl->count[WRITE] >= q->nr_requests) { |
| 3876 | blk_set_queue_full(q, WRITE); |
| 3877 | } else if (rl->count[WRITE]+1 <= q->nr_requests) { |
| 3878 | blk_clear_queue_full(q, WRITE); |
| 3879 | wake_up(&rl->wait[WRITE]); |
| 3880 | } |
Al Viro | c981ff9 | 2006-03-18 13:51:29 -0500 | [diff] [blame] | 3881 | spin_unlock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3882 | return ret; |
| 3883 | } |
| 3884 | |
| 3885 | static ssize_t queue_ra_show(struct request_queue *q, char *page) |
| 3886 | { |
| 3887 | int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10); |
| 3888 | |
| 3889 | return queue_var_show(ra_kb, (page)); |
| 3890 | } |
| 3891 | |
| 3892 | static ssize_t |
| 3893 | queue_ra_store(struct request_queue *q, const char *page, size_t count) |
| 3894 | { |
| 3895 | unsigned long ra_kb; |
| 3896 | ssize_t ret = queue_var_store(&ra_kb, page, count); |
| 3897 | |
| 3898 | spin_lock_irq(q->queue_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3899 | q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10); |
| 3900 | spin_unlock_irq(q->queue_lock); |
| 3901 | |
| 3902 | return ret; |
| 3903 | } |
| 3904 | |
| 3905 | static ssize_t queue_max_sectors_show(struct request_queue *q, char *page) |
| 3906 | { |
| 3907 | int max_sectors_kb = q->max_sectors >> 1; |
| 3908 | |
| 3909 | return queue_var_show(max_sectors_kb, (page)); |
| 3910 | } |
| 3911 | |
| 3912 | static ssize_t |
| 3913 | queue_max_sectors_store(struct request_queue *q, const char *page, size_t count) |
| 3914 | { |
| 3915 | unsigned long max_sectors_kb, |
| 3916 | max_hw_sectors_kb = q->max_hw_sectors >> 1, |
| 3917 | page_kb = 1 << (PAGE_CACHE_SHIFT - 10); |
| 3918 | ssize_t ret = queue_var_store(&max_sectors_kb, page, count); |
| 3919 | int ra_kb; |
| 3920 | |
| 3921 | if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb) |
| 3922 | return -EINVAL; |
| 3923 | /* |
| 3924 | * Take the queue lock to update the readahead and max_sectors |
| 3925 | * values synchronously: |
| 3926 | */ |
| 3927 | spin_lock_irq(q->queue_lock); |
| 3928 | /* |
| 3929 | * Trim readahead window as well, if necessary: |
| 3930 | */ |
| 3931 | ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10); |
| 3932 | if (ra_kb > max_sectors_kb) |
| 3933 | q->backing_dev_info.ra_pages = |
| 3934 | max_sectors_kb >> (PAGE_CACHE_SHIFT - 10); |
| 3935 | |
| 3936 | q->max_sectors = max_sectors_kb << 1; |
| 3937 | spin_unlock_irq(q->queue_lock); |
| 3938 | |
| 3939 | return ret; |
| 3940 | } |
| 3941 | |
| 3942 | static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page) |
| 3943 | { |
| 3944 | int max_hw_sectors_kb = q->max_hw_sectors >> 1; |
| 3945 | |
| 3946 | return queue_var_show(max_hw_sectors_kb, (page)); |
| 3947 | } |
| 3948 | |
| 3949 | |
| 3950 | static struct queue_sysfs_entry queue_requests_entry = { |
| 3951 | .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR }, |
| 3952 | .show = queue_requests_show, |
| 3953 | .store = queue_requests_store, |
| 3954 | }; |
| 3955 | |
| 3956 | static struct queue_sysfs_entry queue_ra_entry = { |
| 3957 | .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR }, |
| 3958 | .show = queue_ra_show, |
| 3959 | .store = queue_ra_store, |
| 3960 | }; |
| 3961 | |
| 3962 | static struct queue_sysfs_entry queue_max_sectors_entry = { |
| 3963 | .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR }, |
| 3964 | .show = queue_max_sectors_show, |
| 3965 | .store = queue_max_sectors_store, |
| 3966 | }; |
| 3967 | |
| 3968 | static struct queue_sysfs_entry queue_max_hw_sectors_entry = { |
| 3969 | .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO }, |
| 3970 | .show = queue_max_hw_sectors_show, |
| 3971 | }; |
| 3972 | |
| 3973 | static struct queue_sysfs_entry queue_iosched_entry = { |
| 3974 | .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR }, |
| 3975 | .show = elv_iosched_show, |
| 3976 | .store = elv_iosched_store, |
| 3977 | }; |
| 3978 | |
| 3979 | static struct attribute *default_attrs[] = { |
| 3980 | &queue_requests_entry.attr, |
| 3981 | &queue_ra_entry.attr, |
| 3982 | &queue_max_hw_sectors_entry.attr, |
| 3983 | &queue_max_sectors_entry.attr, |
| 3984 | &queue_iosched_entry.attr, |
| 3985 | NULL, |
| 3986 | }; |
| 3987 | |
| 3988 | #define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr) |
| 3989 | |
| 3990 | static ssize_t |
| 3991 | queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page) |
| 3992 | { |
| 3993 | struct queue_sysfs_entry *entry = to_queue(attr); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 3994 | struct request_queue *q = |
| 3995 | container_of(kobj, struct request_queue, kobj); |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 3996 | ssize_t res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3998 | if (!entry->show) |
Dmitry Torokhov | 6c1852a | 2005-04-29 01:26:06 -0500 | [diff] [blame] | 3999 | return -EIO; |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4000 | mutex_lock(&q->sysfs_lock); |
| 4001 | if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) { |
| 4002 | mutex_unlock(&q->sysfs_lock); |
| 4003 | return -ENOENT; |
| 4004 | } |
| 4005 | res = entry->show(q, page); |
| 4006 | mutex_unlock(&q->sysfs_lock); |
| 4007 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4008 | } |
| 4009 | |
| 4010 | static ssize_t |
| 4011 | queue_attr_store(struct kobject *kobj, struct attribute *attr, |
| 4012 | const char *page, size_t length) |
| 4013 | { |
| 4014 | struct queue_sysfs_entry *entry = to_queue(attr); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4015 | struct request_queue *q = container_of(kobj, struct request_queue, kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4016 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4017 | ssize_t res; |
| 4018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | if (!entry->store) |
Dmitry Torokhov | 6c1852a | 2005-04-29 01:26:06 -0500 | [diff] [blame] | 4020 | return -EIO; |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4021 | mutex_lock(&q->sysfs_lock); |
| 4022 | if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) { |
| 4023 | mutex_unlock(&q->sysfs_lock); |
| 4024 | return -ENOENT; |
| 4025 | } |
| 4026 | res = entry->store(q, page, length); |
| 4027 | mutex_unlock(&q->sysfs_lock); |
| 4028 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4029 | } |
| 4030 | |
| 4031 | static struct sysfs_ops queue_sysfs_ops = { |
| 4032 | .show = queue_attr_show, |
| 4033 | .store = queue_attr_store, |
| 4034 | }; |
| 4035 | |
Adrian Bunk | 93d17d3 | 2005-06-25 14:59:10 -0700 | [diff] [blame] | 4036 | static struct kobj_type queue_ktype = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4037 | .sysfs_ops = &queue_sysfs_ops, |
| 4038 | .default_attrs = default_attrs, |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4039 | .release = blk_release_queue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4040 | }; |
| 4041 | |
| 4042 | int blk_register_queue(struct gendisk *disk) |
| 4043 | { |
| 4044 | int ret; |
| 4045 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4046 | struct request_queue *q = disk->queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | |
| 4048 | if (!q || !q->request_fn) |
| 4049 | return -ENXIO; |
| 4050 | |
| 4051 | q->kobj.parent = kobject_get(&disk->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4053 | ret = kobject_add(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | if (ret < 0) |
| 4055 | return ret; |
| 4056 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4057 | kobject_uevent(&q->kobj, KOBJ_ADD); |
| 4058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | ret = elv_register_queue(q); |
| 4060 | if (ret) { |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4061 | kobject_uevent(&q->kobj, KOBJ_REMOVE); |
| 4062 | kobject_del(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4063 | return ret; |
| 4064 | } |
| 4065 | |
| 4066 | return 0; |
| 4067 | } |
| 4068 | |
| 4069 | void blk_unregister_queue(struct gendisk *disk) |
| 4070 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 4071 | struct request_queue *q = disk->queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | |
| 4073 | if (q && q->request_fn) { |
| 4074 | elv_unregister_queue(q); |
| 4075 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 4076 | kobject_uevent(&q->kobj, KOBJ_REMOVE); |
| 4077 | kobject_del(&q->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4078 | kobject_put(&disk->kobj); |
| 4079 | } |
| 4080 | } |