blob: 4df7d027eb06d934adc1493205d11d6c2f7ad203 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
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 Torvalds1da177e2005-04-16 15:20:36 -070013#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 Mortonfaccbd42006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Jens Axboeff856ba2006-01-09 16:02:34 +010029#include <linux/interrupt.h>
30#include <linux/cpu.h>
Jens Axboe2056a782006-03-23 20:00:26 +010031#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080032#include <linux/fault-inject.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * for max sense size
36 */
37#include <scsi/scsi_cmnd.h>
38
David Howells65f27f32006-11-22 14:55:48 +000039static void blk_unplug_work(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static void blk_unplug_timeout(unsigned long data);
Adrian Bunk93d17d32005-06-25 14:59:10 -070041static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io);
Tejun Heo52d9e672006-01-06 09:49:58 +010042static void init_request_from_bio(struct request *req, struct bio *bio);
Jens Axboe165125e2007-07-24 09:28:11 +020043static int __make_request(struct request_queue *q, struct bio *bio);
Jens Axboeb5deef92006-07-19 23:39:40 +020044static struct io_context *current_io_context(gfp_t gfp_flags, int node);
NeilBrown9dfa5282007-08-16 13:27:52 +020045static void blk_recalc_rq_segments(struct request *rq);
NeilBrown66846572007-08-16 13:31:28 +020046static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
47 struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * For the allocated request tables
51 */
Christoph Lametere18b8902006-12-06 20:33:20 -080052static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * For queue allocation
56 */
Christoph Lametere18b8902006-12-06 20:33:20 -080057static struct kmem_cache *requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
60 * For io context allocations
61 */
Christoph Lametere18b8902006-12-06 20:33:20 -080062static struct kmem_cache *iocontext_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Controlling structure to kblockd
66 */
Jens Axboeff856ba2006-01-09 16:02:34 +010067static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69unsigned long blk_max_low_pfn, blk_max_pfn;
70
71EXPORT_SYMBOL(blk_max_low_pfn);
72EXPORT_SYMBOL(blk_max_pfn);
73
Jens Axboeff856ba2006-01-09 16:02:34 +010074static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* 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 */
87static 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 */
95static inline int queue_congestion_off_threshold(struct request_queue *q)
96{
97 return q->nr_congestion_off;
98}
99
100static 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 Torvalds1da177e2005-04-16 15:20:36 -0700115/**
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 */
124struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
125{
126 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200127 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (q)
130 ret = &q->backing_dev_info;
131 return ret;
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133EXPORT_SYMBOL(blk_get_backing_dev_info);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**
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 Axboe165125e2007-07-24 09:28:11 +0200146void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 q->prep_rq_fn = pfn;
149}
150
151EXPORT_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 Axboe165125e2007-07-24 09:28:11 +0200169void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 q->merge_bvec_fn = mbfn;
172}
173
174EXPORT_SYMBOL(blk_queue_merge_bvec);
175
Jens Axboe165125e2007-07-24 09:28:11 +0200176void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn)
Jens Axboeff856ba2006-01-09 16:02:34 +0100177{
178 q->softirq_done_fn = fn;
179}
180
181EXPORT_SYMBOL(blk_queue_softirq_done);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/**
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 Axboe165125e2007-07-24 09:28:11 +0200205void blk_queue_make_request(struct request_queue * q, make_request_fn * mfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 /*
208 * set defaults
209 */
210 q->nr_requests = BLKDEV_MAX_RQ;
Stuart McLaren309c0a12005-09-06 15:17:47 -0700211 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
212 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 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 Christiedefd94b2005-12-05 02:37:06 -0600217 blk_queue_max_sectors(q, SAFE_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 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 Howells65f27f32006-11-22 14:55:48 +0000228 INIT_WORK(&q->unplug_work, blk_unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
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 Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239EXPORT_SYMBOL(blk_queue_make_request);
240
Jens Axboe165125e2007-07-24 09:28:11 +0200241static void rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100244 INIT_LIST_HEAD(&rq->donelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 rq->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 rq->bio = rq->biotail = NULL;
Jens Axboe2e662b62006-07-13 11:55:04 +0200248 INIT_HLIST_NODE(&rq->hash);
249 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe22e2c502005-06-27 10:55:12 +0200250 rq->ioprio = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 rq->buffer = NULL;
252 rq->ref_count = 1;
253 rq->q = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 rq->special = NULL;
255 rq->data_len = 0;
256 rq->data = NULL;
Mike Christie df46b9a2005-06-20 14:04:44 +0200257 rq->nr_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 rq->sense = NULL;
259 rq->end_io = NULL;
260 rq->end_io_data = NULL;
Jens Axboeff856ba2006-01-09 16:02:34 +0100261 rq->completion_data = NULL;
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200262 rq->next_rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
266 * blk_queue_ordered - does this queue support ordered writes
Tejun Heo797e7db2006-01-06 09:51:03 +0100267 * @q: the request queue
268 * @ordered: one of QUEUE_ORDERED_*
Jens Axboefddfdea2006-01-31 15:24:34 +0100269 * @prepare_flush_fn: rq setup helper for cache flush ordered writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
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 Axboe165125e2007-07-24 09:28:11 +0200278int blk_queue_ordered(struct request_queue *q, unsigned ordered,
Tejun Heo797e7db2006-01-06 09:51:03 +0100279 prepare_flush_fn *prepare_flush_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Tejun Heo797e7db2006-01-06 09:51:03 +0100281 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 Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100286
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 Takata60481b12006-01-24 10:34:36 +0100298 q->ordered = ordered;
Tejun Heo797e7db2006-01-06 09:51:03 +0100299 q->next_ordered = ordered;
300 q->prepare_flush_fn = prepare_flush_fn;
301
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305EXPORT_SYMBOL(blk_queue_ordered);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * Cache flushing for ordered writes handling
309 */
Jens Axboe165125e2007-07-24 09:28:11 +0200310inline unsigned blk_ordered_cur_seq(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Tejun Heo797e7db2006-01-06 09:51:03 +0100312 if (!q->ordseq)
313 return 0;
314 return 1 << ffz(q->ordseq);
315}
316
317unsigned blk_ordered_req_seq(struct request *rq)
318{
Jens Axboe165125e2007-07-24 09:28:11 +0200319 struct request_queue *q = rq->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Tejun Heo797e7db2006-01-06 09:51:03 +0100321 BUG_ON(q->ordseq == 0);
Tejun Heo8922e162005-10-20 16:23:44 +0200322
Tejun Heo797e7db2006-01-06 09:51:03 +0100323 if (rq == &q->pre_flush_rq)
324 return QUEUE_ORDSEQ_PREFLUSH;
325 if (rq == &q->bar_rq)
326 return QUEUE_ORDSEQ_BAR;
327 if (rq == &q->post_flush_rq)
328 return QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Tejun Heobc90ba02007-06-15 13:24:28 +0200330 /*
331 * !fs requests don't need to follow barrier ordering. Always
332 * put them at the front. This fixes the following deadlock.
333 *
334 * http://thread.gmane.org/gmane.linux.kernel/537473
335 */
336 if (!blk_fs_request(rq))
337 return QUEUE_ORDSEQ_DRAIN;
338
Jens Axboe4aff5e22006-08-10 08:44:47 +0200339 if ((rq->cmd_flags & REQ_ORDERED_COLOR) ==
340 (q->orig_bar_rq->cmd_flags & REQ_ORDERED_COLOR))
Tejun Heo797e7db2006-01-06 09:51:03 +0100341 return QUEUE_ORDSEQ_DRAIN;
342 else
343 return QUEUE_ORDSEQ_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Jens Axboe165125e2007-07-24 09:28:11 +0200346void blk_ordered_complete_seq(struct request_queue *q, unsigned seq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Tejun Heo797e7db2006-01-06 09:51:03 +0100348 struct request *rq;
349 int uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Tejun Heo797e7db2006-01-06 09:51:03 +0100351 if (error && !q->orderr)
352 q->orderr = error;
Tejun Heo8922e162005-10-20 16:23:44 +0200353
Tejun Heo797e7db2006-01-06 09:51:03 +0100354 BUG_ON(q->ordseq & seq);
355 q->ordseq |= seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Tejun Heo797e7db2006-01-06 09:51:03 +0100357 if (blk_ordered_cur_seq(q) != QUEUE_ORDSEQ_DONE)
358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100361 * Okay, sequence complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Jens Axboe4fa253f2007-07-18 13:13:10 +0200363 uptodate = 1;
364 if (q->orderr)
365 uptodate = q->orderr;
Tejun Heo797e7db2006-01-06 09:51:03 +0100366
367 q->ordseq = 0;
Jens Axboe4fa253f2007-07-18 13:13:10 +0200368 rq = q->orig_bar_rq;
Tejun Heo797e7db2006-01-06 09:51:03 +0100369
370 end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
371 end_that_request_last(rq, uptodate);
372}
373
374static void pre_flush_end_io(struct request *rq, int error)
375{
376 elv_completed_request(rq->q, rq);
377 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_PREFLUSH, error);
378}
379
380static void bar_end_io(struct request *rq, int error)
381{
382 elv_completed_request(rq->q, rq);
383 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_BAR, error);
384}
385
386static void post_flush_end_io(struct request *rq, int error)
387{
388 elv_completed_request(rq->q, rq);
389 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_POSTFLUSH, error);
390}
391
Jens Axboe165125e2007-07-24 09:28:11 +0200392static void queue_flush(struct request_queue *q, unsigned which)
Tejun Heo797e7db2006-01-06 09:51:03 +0100393{
394 struct request *rq;
395 rq_end_io_fn *end_io;
396
397 if (which == QUEUE_ORDERED_PREFLUSH) {
398 rq = &q->pre_flush_rq;
399 end_io = pre_flush_end_io;
400 } else {
401 rq = &q->post_flush_rq;
402 end_io = post_flush_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Jens Axboe4aff5e22006-08-10 08:44:47 +0200405 rq->cmd_flags = REQ_HARDBARRIER;
Tejun Heo797e7db2006-01-06 09:51:03 +0100406 rq_init(q, rq);
Tejun Heo797e7db2006-01-06 09:51:03 +0100407 rq->elevator_private = NULL;
Jens Axboec00895a2006-09-30 20:29:12 +0200408 rq->elevator_private2 = NULL;
Tejun Heo797e7db2006-01-06 09:51:03 +0100409 rq->rq_disk = q->bar_rq.rq_disk;
Tejun Heo797e7db2006-01-06 09:51:03 +0100410 rq->end_io = end_io;
411 q->prepare_flush_fn(q, rq);
412
Tejun Heo30e96562006-02-08 01:01:31 -0800413 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100414}
415
Jens Axboe165125e2007-07-24 09:28:11 +0200416static inline struct request *start_ordered(struct request_queue *q,
Tejun Heo797e7db2006-01-06 09:51:03 +0100417 struct request *rq)
418{
Tejun Heo797e7db2006-01-06 09:51:03 +0100419 q->orderr = 0;
420 q->ordered = q->next_ordered;
421 q->ordseq |= QUEUE_ORDSEQ_STARTED;
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100424 * Prep proxy barrier request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100426 blkdev_dequeue_request(rq);
427 q->orig_bar_rq = rq;
428 rq = &q->bar_rq;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200429 rq->cmd_flags = 0;
Tejun Heo797e7db2006-01-06 09:51:03 +0100430 rq_init(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200431 if (bio_data_dir(q->orig_bar_rq->bio) == WRITE)
432 rq->cmd_flags |= REQ_RW;
Jens Axboe4fa253f2007-07-18 13:13:10 +0200433 if (q->ordered & QUEUE_ORDERED_FUA)
434 rq->cmd_flags |= REQ_FUA;
Tejun Heo797e7db2006-01-06 09:51:03 +0100435 rq->elevator_private = NULL;
Jens Axboec00895a2006-09-30 20:29:12 +0200436 rq->elevator_private2 = NULL;
Tejun Heo797e7db2006-01-06 09:51:03 +0100437 init_request_from_bio(rq, q->orig_bar_rq->bio);
438 rq->end_io = bar_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Tejun Heo797e7db2006-01-06 09:51:03 +0100440 /*
441 * Queue ordered sequence. As we stack them at the head, we
442 * need to queue in reverse order. Note that we rely on that
443 * no fs request uses ELEVATOR_INSERT_FRONT and thus no fs
Jens Axboebf2de6f2007-09-27 13:01:25 +0200444 * request gets inbetween ordered sequence. If this request is
445 * an empty barrier, we don't need to do a postflush ever since
446 * there will be no data written between the pre and post flush.
447 * Hence a single flush will suffice.
Tejun Heo797e7db2006-01-06 09:51:03 +0100448 */
Jens Axboebf2de6f2007-09-27 13:01:25 +0200449 if ((q->ordered & QUEUE_ORDERED_POSTFLUSH) && !blk_empty_barrier(rq))
Tejun Heo797e7db2006-01-06 09:51:03 +0100450 queue_flush(q, QUEUE_ORDERED_POSTFLUSH);
451 else
452 q->ordseq |= QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Tejun Heo30e96562006-02-08 01:01:31 -0800454 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100455
456 if (q->ordered & QUEUE_ORDERED_PREFLUSH) {
457 queue_flush(q, QUEUE_ORDERED_PREFLUSH);
458 rq = &q->pre_flush_rq;
459 } else
460 q->ordseq |= QUEUE_ORDSEQ_PREFLUSH;
461
462 if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0)
463 q->ordseq |= QUEUE_ORDSEQ_DRAIN;
464 else
465 rq = NULL;
466
467 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
Jens Axboe165125e2007-07-24 09:28:11 +0200470int blk_do_ordered(struct request_queue *q, struct request **rqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800472 struct request *rq = *rqp;
Jens Axboebf2de6f2007-09-27 13:01:25 +0200473 const int is_barrier = blk_fs_request(rq) && blk_barrier_rq(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Tejun Heo797e7db2006-01-06 09:51:03 +0100475 if (!q->ordseq) {
476 if (!is_barrier)
477 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Tejun Heo797e7db2006-01-06 09:51:03 +0100479 if (q->next_ordered != QUEUE_ORDERED_NONE) {
480 *rqp = start_ordered(q, rq);
481 return 1;
482 } else {
483 /*
484 * This can happen when the queue switches to
485 * ORDERED_NONE while this request is on it.
486 */
487 blkdev_dequeue_request(rq);
488 end_that_request_first(rq, -EOPNOTSUPP,
489 rq->hard_nr_sectors);
490 end_that_request_last(rq, -EOPNOTSUPP);
491 *rqp = NULL;
492 return 0;
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800496 /*
497 * Ordered sequence in progress
498 */
499
500 /* Special requests are not subject to ordering rules. */
501 if (!blk_fs_request(rq) &&
502 rq != &q->pre_flush_rq && rq != &q->post_flush_rq)
503 return 1;
504
Tejun Heo797e7db2006-01-06 09:51:03 +0100505 if (q->ordered & QUEUE_ORDERED_TAG) {
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800506 /* Ordered by tag. Blocking the next barrier is enough. */
Tejun Heo797e7db2006-01-06 09:51:03 +0100507 if (is_barrier && rq != &q->bar_rq)
508 *rqp = NULL;
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800509 } else {
510 /* Ordered by draining. Wait for turn. */
511 WARN_ON(blk_ordered_req_seq(rq) < blk_ordered_cur_seq(q));
512 if (blk_ordered_req_seq(rq) > blk_ordered_cur_seq(q))
513 *rqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 return 1;
517}
518
NeilBrown5bb23a62007-09-27 12:46:13 +0200519static void req_bio_endio(struct request *rq, struct bio *bio,
520 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100521{
Jens Axboe165125e2007-07-24 09:28:11 +0200522 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100523
NeilBrown5bb23a62007-09-27 12:46:13 +0200524 if (&q->bar_rq != rq) {
525 if (error)
526 clear_bit(BIO_UPTODATE, &bio->bi_flags);
527 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
528 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100529
NeilBrown5bb23a62007-09-27 12:46:13 +0200530 if (unlikely(nbytes > bio->bi_size)) {
531 printk("%s: want %u bytes done, only %u left\n",
532 __FUNCTION__, nbytes, bio->bi_size);
533 nbytes = bio->bi_size;
534 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100535
NeilBrown5bb23a62007-09-27 12:46:13 +0200536 bio->bi_size -= nbytes;
537 bio->bi_sector += (nbytes >> 9);
538 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200539 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200540 } else {
541
542 /*
543 * Okay, this is the barrier request in progress, just
544 * record the error;
545 */
546 if (error && !q->orderr)
547 q->orderr = error;
548 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551/**
552 * blk_queue_bounce_limit - set bounce buffer limit for queue
553 * @q: the request queue for the device
554 * @dma_addr: bus address limit
555 *
556 * Description:
557 * Different hardware can have different requirements as to what pages
558 * it can do I/O directly to. A low level driver can call
559 * blk_queue_bounce_limit to have lower memory pages allocated as bounce
Andi Kleen5ee1af92006-03-08 17:57:26 -0800560 * buffers for doing I/O to pages residing above @page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200562void blk_queue_bounce_limit(struct request_queue *q, u64 dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800565 int dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Andi Kleen5ee1af92006-03-08 17:57:26 -0800567 q->bounce_gfp = GFP_NOIO;
568#if BITS_PER_LONG == 64
569 /* Assume anything <= 4GB can be handled by IOMMU.
570 Actually some IOMMUs can handle everything, but I don't
571 know of a way to test this here. */
Andi Kleen82697302006-06-21 14:48:09 +0200572 if (bounce_pfn < (min_t(u64,0xffffffff,BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
Andi Kleen5ee1af92006-03-08 17:57:26 -0800573 dma = 1;
574 q->bounce_pfn = max_low_pfn;
575#else
576 if (bounce_pfn < blk_max_low_pfn)
577 dma = 1;
578 q->bounce_pfn = bounce_pfn;
579#endif
580 if (dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 init_emergency_isa_pool();
582 q->bounce_gfp = GFP_NOIO | GFP_DMA;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800583 q->bounce_pfn = bounce_pfn;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587EXPORT_SYMBOL(blk_queue_bounce_limit);
588
589/**
590 * blk_queue_max_sectors - set max sectors for a request for this queue
591 * @q: the request queue for the device
592 * @max_sectors: max sectors in the usual 512b unit
593 *
594 * Description:
595 * Enables a low level driver to set an upper limit on the size of
596 * received requests.
597 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200598void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
601 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
602 printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors);
603 }
604
Mike Christiedefd94b2005-12-05 02:37:06 -0600605 if (BLK_DEF_MAX_SECTORS > max_sectors)
606 q->max_hw_sectors = q->max_sectors = max_sectors;
607 else {
608 q->max_sectors = BLK_DEF_MAX_SECTORS;
609 q->max_hw_sectors = max_sectors;
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613EXPORT_SYMBOL(blk_queue_max_sectors);
614
615/**
616 * blk_queue_max_phys_segments - set max phys segments for a request for this queue
617 * @q: the request queue for the device
618 * @max_segments: max number of segments
619 *
620 * Description:
621 * Enables a low level driver to set an upper limit on the number of
622 * physical data segments in a request. This would be the largest sized
623 * scatter list the driver could handle.
624 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200625void blk_queue_max_phys_segments(struct request_queue *q,
626 unsigned short max_segments)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 if (!max_segments) {
629 max_segments = 1;
630 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
631 }
632
633 q->max_phys_segments = max_segments;
634}
635
636EXPORT_SYMBOL(blk_queue_max_phys_segments);
637
638/**
639 * blk_queue_max_hw_segments - set max hw segments for a request for this queue
640 * @q: the request queue for the device
641 * @max_segments: max number of segments
642 *
643 * Description:
644 * Enables a low level driver to set an upper limit on the number of
645 * hw data segments in a request. This would be the largest number of
646 * address/length pairs the host adapter can actually give as once
647 * to the device.
648 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200649void blk_queue_max_hw_segments(struct request_queue *q,
650 unsigned short max_segments)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 if (!max_segments) {
653 max_segments = 1;
654 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
655 }
656
657 q->max_hw_segments = max_segments;
658}
659
660EXPORT_SYMBOL(blk_queue_max_hw_segments);
661
662/**
663 * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
664 * @q: the request queue for the device
665 * @max_size: max size of segment in bytes
666 *
667 * Description:
668 * Enables a low level driver to set an upper limit on the size of a
669 * coalesced segment
670 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200671void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 if (max_size < PAGE_CACHE_SIZE) {
674 max_size = PAGE_CACHE_SIZE;
675 printk("%s: set to minimum %d\n", __FUNCTION__, max_size);
676 }
677
678 q->max_segment_size = max_size;
679}
680
681EXPORT_SYMBOL(blk_queue_max_segment_size);
682
683/**
684 * blk_queue_hardsect_size - set hardware sector size for the queue
685 * @q: the request queue for the device
686 * @size: the hardware sector size, in bytes
687 *
688 * Description:
689 * This should typically be set to the lowest possible sector size
690 * that the hardware can operate on (possible without reverting to
691 * even internal read-modify-write operations). Usually the default
692 * of 512 covers most hardware.
693 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200694void blk_queue_hardsect_size(struct request_queue *q, unsigned short size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 q->hardsect_size = size;
697}
698
699EXPORT_SYMBOL(blk_queue_hardsect_size);
700
701/*
702 * Returns the minimum that is _not_ zero, unless both are zero.
703 */
704#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
705
706/**
707 * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
708 * @t: the stacking driver (top)
709 * @b: the underlying device (bottom)
710 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200711void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 /* zero is "infinity" */
Mike Christiedefd94b2005-12-05 02:37:06 -0600714 t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors);
715 t->max_hw_sectors = min_not_zero(t->max_hw_sectors,b->max_hw_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments);
718 t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments);
719 t->max_segment_size = min(t->max_segment_size,b->max_segment_size);
720 t->hardsect_size = max(t->hardsect_size,b->hardsect_size);
NeilBrown89e5c8b2006-03-27 01:18:02 -0800721 if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags))
722 clear_bit(QUEUE_FLAG_CLUSTER, &t->queue_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725EXPORT_SYMBOL(blk_queue_stack_limits);
726
727/**
728 * blk_queue_segment_boundary - set boundary rules for segment merging
729 * @q: the request queue for the device
730 * @mask: the memory boundary mask
731 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200732void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 if (mask < PAGE_CACHE_SIZE - 1) {
735 mask = PAGE_CACHE_SIZE - 1;
736 printk("%s: set to minimum %lx\n", __FUNCTION__, mask);
737 }
738
739 q->seg_boundary_mask = mask;
740}
741
742EXPORT_SYMBOL(blk_queue_segment_boundary);
743
744/**
745 * blk_queue_dma_alignment - set dma length and memory alignment
746 * @q: the request queue for the device
747 * @mask: alignment mask
748 *
749 * description:
750 * set required memory and length aligment for direct dma transactions.
751 * this is used when buiding direct io requests for the queue.
752 *
753 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200754void blk_queue_dma_alignment(struct request_queue *q, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 q->dma_alignment = mask;
757}
758
759EXPORT_SYMBOL(blk_queue_dma_alignment);
760
761/**
762 * blk_queue_find_tag - find a request by its tag and queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * @q: The request queue for the device
764 * @tag: The tag of the request
765 *
766 * Notes:
767 * Should be used when a device returns a tag and you want to match
768 * it with a request.
769 *
770 * no locks need be held.
771 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200772struct request *blk_queue_find_tag(struct request_queue *q, int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
David C Somayajuluf583f492006-10-04 08:27:25 +0200774 return blk_map_queue_find_tag(q->queue_tags, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
777EXPORT_SYMBOL(blk_queue_find_tag);
778
779/**
James Bottomley492dfb42006-08-30 15:48:45 -0400780 * __blk_free_tags - release a given set of tag maintenance info
781 * @bqt: the tag map to free
782 *
783 * Tries to free the specified @bqt@. Returns true if it was
784 * actually freed and false if there are still references using it
785 */
786static int __blk_free_tags(struct blk_queue_tag *bqt)
787{
788 int retval;
789
790 retval = atomic_dec_and_test(&bqt->refcnt);
791 if (retval) {
792 BUG_ON(bqt->busy);
793 BUG_ON(!list_empty(&bqt->busy_list));
794
795 kfree(bqt->tag_index);
796 bqt->tag_index = NULL;
797
798 kfree(bqt->tag_map);
799 bqt->tag_map = NULL;
800
801 kfree(bqt);
802
803 }
804
805 return retval;
806}
807
808/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * __blk_queue_free_tags - release tag maintenance info
810 * @q: the request queue for the device
811 *
812 * Notes:
813 * blk_cleanup_queue() will take care of calling this function, if tagging
814 * has been used. So there's no need to call this directly.
815 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200816static void __blk_queue_free_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 struct blk_queue_tag *bqt = q->queue_tags;
819
820 if (!bqt)
821 return;
822
James Bottomley492dfb42006-08-30 15:48:45 -0400823 __blk_free_tags(bqt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 q->queue_tags = NULL;
826 q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED);
827}
828
James Bottomley492dfb42006-08-30 15:48:45 -0400829
830/**
831 * blk_free_tags - release a given set of tag maintenance info
832 * @bqt: the tag map to free
833 *
834 * For externally managed @bqt@ frees the map. Callers of this
835 * function must guarantee to have released all the queues that
836 * might have been using this tag map.
837 */
838void blk_free_tags(struct blk_queue_tag *bqt)
839{
840 if (unlikely(!__blk_free_tags(bqt)))
841 BUG();
842}
843EXPORT_SYMBOL(blk_free_tags);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/**
846 * blk_queue_free_tags - release tag maintenance info
847 * @q: the request queue for the device
848 *
849 * Notes:
850 * This is used to disabled tagged queuing to a device, yet leave
851 * queue in function.
852 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200853void blk_queue_free_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 clear_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
856}
857
858EXPORT_SYMBOL(blk_queue_free_tags);
859
860static int
Jens Axboe165125e2007-07-24 09:28:11 +0200861init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct request **tag_index;
864 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -0700865 int nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
James Bottomley492dfb42006-08-30 15:48:45 -0400867 if (q && depth > q->nr_requests * 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 depth = q->nr_requests * 2;
869 printk(KERN_ERR "%s: adjusted depth to %d\n",
870 __FUNCTION__, depth);
871 }
872
Jens Axboef68110f2006-03-08 13:31:44 +0100873 tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!tag_index)
875 goto fail;
876
Tejun Heof7d37d02005-06-23 00:08:50 -0700877 nr_ulongs = ALIGN(depth, BITS_PER_LONG) / BITS_PER_LONG;
Jens Axboef68110f2006-03-08 13:31:44 +0100878 tag_map = kzalloc(nr_ulongs * sizeof(unsigned long), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!tag_map)
880 goto fail;
881
Tejun Heoba025082005-08-05 13:28:11 -0700882 tags->real_max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 tags->max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 tags->tag_index = tag_index;
885 tags->tag_map = tag_map;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return 0;
888fail:
889 kfree(tag_index);
890 return -ENOMEM;
891}
892
James Bottomley492dfb42006-08-30 15:48:45 -0400893static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q,
894 int depth)
895{
896 struct blk_queue_tag *tags;
897
898 tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC);
899 if (!tags)
900 goto fail;
901
902 if (init_tag_map(q, tags, depth))
903 goto fail;
904
905 INIT_LIST_HEAD(&tags->busy_list);
906 tags->busy = 0;
907 atomic_set(&tags->refcnt, 1);
908 return tags;
909fail:
910 kfree(tags);
911 return NULL;
912}
913
914/**
915 * blk_init_tags - initialize the tag info for an external tag map
916 * @depth: the maximum queue depth supported
917 * @tags: the tag to use
918 **/
919struct blk_queue_tag *blk_init_tags(int depth)
920{
921 return __blk_queue_init_tags(NULL, depth);
922}
923EXPORT_SYMBOL(blk_init_tags);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925/**
926 * blk_queue_init_tags - initialize the queue tag info
927 * @q: the request queue for the device
928 * @depth: the maximum queue depth supported
929 * @tags: the tag to use
930 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200931int blk_queue_init_tags(struct request_queue *q, int depth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 struct blk_queue_tag *tags)
933{
934 int rc;
935
936 BUG_ON(tags && q->queue_tags && tags != q->queue_tags);
937
938 if (!tags && !q->queue_tags) {
James Bottomley492dfb42006-08-30 15:48:45 -0400939 tags = __blk_queue_init_tags(q, depth);
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (!tags)
942 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 } else if (q->queue_tags) {
944 if ((rc = blk_queue_resize_tags(q, depth)))
945 return rc;
946 set_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
947 return 0;
948 } else
949 atomic_inc(&tags->refcnt);
950
951 /*
952 * assign it, all done
953 */
954 q->queue_tags = tags;
955 q->queue_flags |= (1 << QUEUE_FLAG_QUEUED);
956 return 0;
957fail:
958 kfree(tags);
959 return -ENOMEM;
960}
961
962EXPORT_SYMBOL(blk_queue_init_tags);
963
964/**
965 * blk_queue_resize_tags - change the queueing depth
966 * @q: the request queue for the device
967 * @new_depth: the new max command queueing depth
968 *
969 * Notes:
970 * Must be called with the queue lock held.
971 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200972int blk_queue_resize_tags(struct request_queue *q, int new_depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
974 struct blk_queue_tag *bqt = q->queue_tags;
975 struct request **tag_index;
976 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -0700977 int max_depth, nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (!bqt)
980 return -ENXIO;
981
982 /*
Tejun Heoba025082005-08-05 13:28:11 -0700983 * if we already have large enough real_max_depth. just
984 * adjust max_depth. *NOTE* as requests with tag value
985 * between new_depth and real_max_depth can be in-flight, tag
986 * map can not be shrunk blindly here.
987 */
988 if (new_depth <= bqt->real_max_depth) {
989 bqt->max_depth = new_depth;
990 return 0;
991 }
992
993 /*
James Bottomley492dfb42006-08-30 15:48:45 -0400994 * Currently cannot replace a shared tag map with a new
995 * one, so error out if this is the case
996 */
997 if (atomic_read(&bqt->refcnt) != 1)
998 return -EBUSY;
999
1000 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 * save the old state info, so we can copy it back
1002 */
1003 tag_index = bqt->tag_index;
1004 tag_map = bqt->tag_map;
Tejun Heoba025082005-08-05 13:28:11 -07001005 max_depth = bqt->real_max_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 if (init_tag_map(q, bqt, new_depth))
1008 return -ENOMEM;
1009
1010 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
Tejun Heof7d37d02005-06-23 00:08:50 -07001011 nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
Tejun Heofa72b902005-06-23 00:08:49 -07001012 memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 kfree(tag_index);
1015 kfree(tag_map);
1016 return 0;
1017}
1018
1019EXPORT_SYMBOL(blk_queue_resize_tags);
1020
1021/**
1022 * blk_queue_end_tag - end tag operations for a request
1023 * @q: the request queue for the device
1024 * @rq: the request that has completed
1025 *
1026 * Description:
1027 * Typically called when end_that_request_first() returns 0, meaning
1028 * all transfers have been done for a request. It's important to call
1029 * this function before end_that_request_last(), as that will put the
1030 * request back on the free list thus corrupting the internal tag list.
1031 *
1032 * Notes:
1033 * queue lock must be held.
1034 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001035void blk_queue_end_tag(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
1037 struct blk_queue_tag *bqt = q->queue_tags;
1038 int tag = rq->tag;
1039
1040 BUG_ON(tag == -1);
1041
Tejun Heoba025082005-08-05 13:28:11 -07001042 if (unlikely(tag >= bqt->real_max_depth))
Tejun Heo040c9282005-06-23 00:08:51 -07001043 /*
1044 * This can happen after tag depth has been reduced.
1045 * FIXME: how about a warning or info message here?
1046 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 list_del_init(&rq->queuelist);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001050 rq->cmd_flags &= ~REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 rq->tag = -1;
1052
1053 if (unlikely(bqt->tag_index[tag] == NULL))
Tejun Heo040c9282005-06-23 00:08:51 -07001054 printk(KERN_ERR "%s: tag %d is missing\n",
1055 __FUNCTION__, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 bqt->tag_index[tag] = NULL;
Jens Axboef3da54b2007-09-13 14:26:53 +02001058
Nick Piggindd941252007-09-14 08:41:12 +02001059 /*
1060 * We use test_and_clear_bit's memory ordering properties here.
1061 * The tag_map bit acts as a lock for tag_index[bit], so we need
1062 * a barrer before clearing the bit (precisely: release semantics).
1063 * Could use clear_bit_unlock when it is merged.
1064 */
Jens Axboef3da54b2007-09-13 14:26:53 +02001065 if (unlikely(!test_and_clear_bit(tag, bqt->tag_map))) {
1066 printk(KERN_ERR "%s: attempt to clear non-busy tag (%d)\n",
1067 __FUNCTION__, tag);
1068 return;
1069 }
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 bqt->busy--;
1072}
1073
1074EXPORT_SYMBOL(blk_queue_end_tag);
1075
1076/**
1077 * blk_queue_start_tag - find a free tag and assign it
1078 * @q: the request queue for the device
1079 * @rq: the block request that needs tagging
1080 *
1081 * Description:
1082 * This can either be used as a stand-alone helper, or possibly be
1083 * assigned as the queue &prep_rq_fn (in which case &struct request
1084 * automagically gets a tag assigned). Note that this function
1085 * assumes that any type of request can be queued! if this is not
1086 * true for your device, you must check the request type before
1087 * calling this function. The request will also be removed from
1088 * the request queue, so it's the drivers responsibility to readd
1089 * it if it should need to be restarted for some reason.
1090 *
1091 * Notes:
1092 * queue lock must be held.
1093 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001094int blk_queue_start_tag(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 struct blk_queue_tag *bqt = q->queue_tags;
Tejun Heo2bf0fda2005-06-23 00:08:48 -07001097 int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Jens Axboe4aff5e22006-08-10 08:44:47 +02001099 if (unlikely((rq->cmd_flags & REQ_QUEUED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 printk(KERN_ERR
Tejun Heo040c9282005-06-23 00:08:51 -07001101 "%s: request %p for device [%s] already tagged %d",
1102 __FUNCTION__, rq,
1103 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 BUG();
1105 }
1106
Jens Axboe059af492006-09-21 20:37:22 +02001107 /*
1108 * Protect against shared tag maps, as we may not have exclusive
1109 * access to the tag map.
1110 */
1111 do {
1112 tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth);
1113 if (tag >= bqt->max_depth)
1114 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Jens Axboe059af492006-09-21 20:37:22 +02001116 } while (test_and_set_bit(tag, bqt->tag_map));
Nick Piggindd941252007-09-14 08:41:12 +02001117 /*
1118 * We rely on test_and_set_bit providing lock memory ordering semantics
1119 * (could use test_and_set_bit_lock when it is merged).
1120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Jens Axboe4aff5e22006-08-10 08:44:47 +02001122 rq->cmd_flags |= REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 rq->tag = tag;
1124 bqt->tag_index[tag] = rq;
1125 blkdev_dequeue_request(rq);
1126 list_add(&rq->queuelist, &bqt->busy_list);
1127 bqt->busy++;
1128 return 0;
1129}
1130
1131EXPORT_SYMBOL(blk_queue_start_tag);
1132
1133/**
1134 * blk_queue_invalidate_tags - invalidate all pending tags
1135 * @q: the request queue for the device
1136 *
1137 * Description:
1138 * Hardware conditions may dictate a need to stop all pending requests.
1139 * In this case, we will safely clear the block side of the tag queue and
1140 * readd all requests to the request queue in the right order.
1141 *
1142 * Notes:
1143 * queue lock must be held.
1144 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001145void blk_queue_invalidate_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 struct blk_queue_tag *bqt = q->queue_tags;
1148 struct list_head *tmp, *n;
1149 struct request *rq;
1150
1151 list_for_each_safe(tmp, n, &bqt->busy_list) {
1152 rq = list_entry_rq(tmp);
1153
1154 if (rq->tag == -1) {
Tejun Heo040c9282005-06-23 00:08:51 -07001155 printk(KERN_ERR
1156 "%s: bad tag found on list\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 list_del_init(&rq->queuelist);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001158 rq->cmd_flags &= ~REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 } else
1160 blk_queue_end_tag(q, rq);
1161
Jens Axboe4aff5e22006-08-10 08:44:47 +02001162 rq->cmd_flags &= ~REQ_STARTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1164 }
1165}
1166
1167EXPORT_SYMBOL(blk_queue_invalidate_tags);
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169void blk_dump_rq_flags(struct request *rq, char *msg)
1170{
1171 int bit;
1172
Jens Axboe4aff5e22006-08-10 08:44:47 +02001173 printk("%s: dev %s: type=%x, flags=%x\n", msg,
1174 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
1175 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector,
1178 rq->nr_sectors,
1179 rq->current_nr_sectors);
1180 printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len);
1181
Jens Axboe4aff5e22006-08-10 08:44:47 +02001182 if (blk_pc_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 printk("cdb: ");
1184 for (bit = 0; bit < sizeof(rq->cmd); bit++)
1185 printk("%02x ", rq->cmd[bit]);
1186 printk("\n");
1187 }
1188}
1189
1190EXPORT_SYMBOL(blk_dump_rq_flags);
1191
Jens Axboe165125e2007-07-24 09:28:11 +02001192void blk_recount_segments(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
NeilBrown9dfa5282007-08-16 13:27:52 +02001194 struct request rq;
1195 struct bio *nxt = bio->bi_next;
1196 rq.q = q;
1197 rq.bio = rq.biotail = bio;
1198 bio->bi_next = NULL;
1199 blk_recalc_rq_segments(&rq);
1200 bio->bi_next = nxt;
1201 bio->bi_phys_segments = rq.nr_phys_segments;
1202 bio->bi_hw_segments = rq.nr_hw_segments;
1203 bio->bi_flags |= (1 << BIO_SEG_VALID);
1204}
1205EXPORT_SYMBOL(blk_recount_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
NeilBrown9dfa5282007-08-16 13:27:52 +02001207static void blk_recalc_rq_segments(struct request *rq)
1208{
1209 int nr_phys_segs;
1210 int nr_hw_segs;
1211 unsigned int phys_size;
1212 unsigned int hw_size;
1213 struct bio_vec *bv, *bvprv = NULL;
1214 int seg_size;
1215 int hw_seg_size;
1216 int cluster;
NeilBrown5705f702007-09-25 12:35:59 +02001217 struct req_iterator iter;
NeilBrown9dfa5282007-08-16 13:27:52 +02001218 int high, highprv = 1;
1219 struct request_queue *q = rq->q;
1220
1221 if (!rq->bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return;
1223
1224 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
NeilBrown9dfa5282007-08-16 13:27:52 +02001225 hw_seg_size = seg_size = 0;
1226 phys_size = hw_size = nr_phys_segs = nr_hw_segs = 0;
NeilBrown5705f702007-09-25 12:35:59 +02001227 rq_for_each_segment(bv, rq, iter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * the trick here is making sure that a high page is never
1230 * considered part of another segment, since that might
1231 * change with the bounce page.
1232 */
Vasily Tarasovf772b3d2007-03-27 08:52:47 +02001233 high = page_to_pfn(bv->bv_page) > q->bounce_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (high || highprv)
1235 goto new_hw_segment;
1236 if (cluster) {
1237 if (seg_size + bv->bv_len > q->max_segment_size)
1238 goto new_segment;
1239 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
1240 goto new_segment;
1241 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
1242 goto new_segment;
1243 if (BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
1244 goto new_hw_segment;
1245
1246 seg_size += bv->bv_len;
1247 hw_seg_size += bv->bv_len;
1248 bvprv = bv;
1249 continue;
1250 }
1251new_segment:
1252 if (BIOVEC_VIRT_MERGEABLE(bvprv, bv) &&
NeilBrown9dfa5282007-08-16 13:27:52 +02001253 !BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 hw_seg_size += bv->bv_len;
NeilBrown9dfa5282007-08-16 13:27:52 +02001255 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256new_hw_segment:
NeilBrown9dfa5282007-08-16 13:27:52 +02001257 if (nr_hw_segs == 1 &&
1258 hw_seg_size > rq->bio->bi_hw_front_size)
1259 rq->bio->bi_hw_front_size = hw_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 hw_seg_size = BIOVEC_VIRT_START_SIZE(bv) + bv->bv_len;
1261 nr_hw_segs++;
1262 }
1263
1264 nr_phys_segs++;
1265 bvprv = bv;
1266 seg_size = bv->bv_len;
1267 highprv = high;
1268 }
NeilBrown9dfa5282007-08-16 13:27:52 +02001269
1270 if (nr_hw_segs == 1 &&
1271 hw_seg_size > rq->bio->bi_hw_front_size)
1272 rq->bio->bi_hw_front_size = hw_seg_size;
1273 if (hw_seg_size > rq->biotail->bi_hw_back_size)
1274 rq->biotail->bi_hw_back_size = hw_seg_size;
1275 rq->nr_phys_segments = nr_phys_segs;
1276 rq->nr_hw_segments = nr_hw_segs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Jens Axboe165125e2007-07-24 09:28:11 +02001279static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct bio *nxt)
1281{
1282 if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
1283 return 0;
1284
1285 if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
1286 return 0;
1287 if (bio->bi_size + nxt->bi_size > q->max_segment_size)
1288 return 0;
1289
1290 /*
1291 * bio and nxt are contigous in memory, check if the queue allows
1292 * these two to be merged into one
1293 */
1294 if (BIO_SEG_BOUNDARY(q, bio, nxt))
1295 return 1;
1296
1297 return 0;
1298}
1299
Jens Axboe165125e2007-07-24 09:28:11 +02001300static int blk_hw_contig_segment(struct request_queue *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 struct bio *nxt)
1302{
1303 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1304 blk_recount_segments(q, bio);
1305 if (unlikely(!bio_flagged(nxt, BIO_SEG_VALID)))
1306 blk_recount_segments(q, nxt);
1307 if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)) ||
Jens Axboe32eef962007-06-19 09:09:27 +02001308 BIOVEC_VIRT_OVERSIZE(bio->bi_hw_back_size + nxt->bi_hw_front_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
Jens Axboe32eef962007-06-19 09:09:27 +02001310 if (bio->bi_hw_back_size + nxt->bi_hw_front_size > q->max_segment_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return 0;
1312
1313 return 1;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
1317 * map a request to scatterlist, return number of sg entries setup. Caller
1318 * must make sure sg can hold rq->nr_phys_segments entries
1319 */
Jens Axboe165125e2007-07-24 09:28:11 +02001320int blk_rq_map_sg(struct request_queue *q, struct request *rq,
1321 struct scatterlist *sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 struct bio_vec *bvec, *bvprv;
NeilBrown5705f702007-09-25 12:35:59 +02001324 struct req_iterator iter;
1325 int nsegs, cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 nsegs = 0;
1328 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
1329
1330 /*
1331 * for each bio in rq
1332 */
1333 bvprv = NULL;
NeilBrown5705f702007-09-25 12:35:59 +02001334 rq_for_each_segment(bvec, rq, iter) {
Jens Axboe6c92e692007-08-16 13:43:12 +02001335 int nbytes = bvec->bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Jens Axboe6c92e692007-08-16 13:43:12 +02001337 if (bvprv && cluster) {
1338 if (sg[nsegs - 1].length + nbytes > q->max_segment_size)
1339 goto new_segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Jens Axboe6c92e692007-08-16 13:43:12 +02001341 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
1342 goto new_segment;
1343 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
1344 goto new_segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Jens Axboe6c92e692007-08-16 13:43:12 +02001346 sg[nsegs - 1].length += nbytes;
1347 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348new_segment:
Jens Axboe6c92e692007-08-16 13:43:12 +02001349 memset(&sg[nsegs],0,sizeof(struct scatterlist));
1350 sg[nsegs].page = bvec->bv_page;
1351 sg[nsegs].length = nbytes;
1352 sg[nsegs].offset = bvec->bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Jens Axboe6c92e692007-08-16 13:43:12 +02001354 nsegs++;
1355 }
1356 bvprv = bvec;
NeilBrown5705f702007-09-25 12:35:59 +02001357 } /* segments in rq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 return nsegs;
1360}
1361
1362EXPORT_SYMBOL(blk_rq_map_sg);
1363
1364/*
1365 * the standard queue merge functions, can be overridden with device
1366 * specific ones if so desired
1367 */
1368
Jens Axboe165125e2007-07-24 09:28:11 +02001369static inline int ll_new_mergeable(struct request_queue *q,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 struct request *req,
1371 struct bio *bio)
1372{
1373 int nr_phys_segs = bio_phys_segments(q, bio);
1374
1375 if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001376 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (req == q->last_merge)
1378 q->last_merge = NULL;
1379 return 0;
1380 }
1381
1382 /*
1383 * A hw segment is just getting larger, bump just the phys
1384 * counter.
1385 */
1386 req->nr_phys_segments += nr_phys_segs;
1387 return 1;
1388}
1389
Jens Axboe165125e2007-07-24 09:28:11 +02001390static inline int ll_new_hw_segment(struct request_queue *q,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 struct request *req,
1392 struct bio *bio)
1393{
1394 int nr_hw_segs = bio_hw_segments(q, bio);
1395 int nr_phys_segs = bio_phys_segments(q, bio);
1396
1397 if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments
1398 || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001399 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (req == q->last_merge)
1401 q->last_merge = NULL;
1402 return 0;
1403 }
1404
1405 /*
1406 * This will form the start of a new hw segment. Bump both
1407 * counters.
1408 */
1409 req->nr_hw_segments += nr_hw_segs;
1410 req->nr_phys_segments += nr_phys_segs;
1411 return 1;
1412}
1413
NeilBrown3001ca72007-08-16 13:31:27 +02001414static int ll_back_merge_fn(struct request_queue *q, struct request *req,
1415 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Mike Christiedefd94b2005-12-05 02:37:06 -06001417 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int len;
1419
Mike Christiedefd94b2005-12-05 02:37:06 -06001420 if (unlikely(blk_pc_request(req)))
1421 max_sectors = q->max_hw_sectors;
1422 else
1423 max_sectors = q->max_sectors;
1424
1425 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001426 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (req == q->last_merge)
1428 q->last_merge = NULL;
1429 return 0;
1430 }
1431 if (unlikely(!bio_flagged(req->biotail, BIO_SEG_VALID)))
1432 blk_recount_segments(q, req->biotail);
1433 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1434 blk_recount_segments(q, bio);
1435 len = req->biotail->bi_hw_back_size + bio->bi_hw_front_size;
1436 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)) &&
1437 !BIOVEC_VIRT_OVERSIZE(len)) {
1438 int mergeable = ll_new_mergeable(q, req, bio);
1439
1440 if (mergeable) {
1441 if (req->nr_hw_segments == 1)
1442 req->bio->bi_hw_front_size = len;
1443 if (bio->bi_hw_segments == 1)
1444 bio->bi_hw_back_size = len;
1445 }
1446 return mergeable;
1447 }
1448
1449 return ll_new_hw_segment(q, req, bio);
1450}
1451
Jens Axboe165125e2007-07-24 09:28:11 +02001452static int ll_front_merge_fn(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 struct bio *bio)
1454{
Mike Christiedefd94b2005-12-05 02:37:06 -06001455 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 int len;
1457
Mike Christiedefd94b2005-12-05 02:37:06 -06001458 if (unlikely(blk_pc_request(req)))
1459 max_sectors = q->max_hw_sectors;
1460 else
1461 max_sectors = q->max_sectors;
1462
1463
1464 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001465 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (req == q->last_merge)
1467 q->last_merge = NULL;
1468 return 0;
1469 }
1470 len = bio->bi_hw_back_size + req->bio->bi_hw_front_size;
1471 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1472 blk_recount_segments(q, bio);
1473 if (unlikely(!bio_flagged(req->bio, BIO_SEG_VALID)))
1474 blk_recount_segments(q, req->bio);
1475 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)) &&
1476 !BIOVEC_VIRT_OVERSIZE(len)) {
1477 int mergeable = ll_new_mergeable(q, req, bio);
1478
1479 if (mergeable) {
1480 if (bio->bi_hw_segments == 1)
1481 bio->bi_hw_front_size = len;
1482 if (req->nr_hw_segments == 1)
1483 req->biotail->bi_hw_back_size = len;
1484 }
1485 return mergeable;
1486 }
1487
1488 return ll_new_hw_segment(q, req, bio);
1489}
1490
Jens Axboe165125e2007-07-24 09:28:11 +02001491static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 struct request *next)
1493{
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001494 int total_phys_segments;
1495 int total_hw_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 /*
1498 * First check if the either of the requests are re-queued
1499 * requests. Can't merge them if they are.
1500 */
1501 if (req->special || next->special)
1502 return 0;
1503
1504 /*
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001505 * Will it become too large?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 */
1507 if ((req->nr_sectors + next->nr_sectors) > q->max_sectors)
1508 return 0;
1509
1510 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
1511 if (blk_phys_contig_segment(q, req->biotail, next->bio))
1512 total_phys_segments--;
1513
1514 if (total_phys_segments > q->max_phys_segments)
1515 return 0;
1516
1517 total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
1518 if (blk_hw_contig_segment(q, req->biotail, next->bio)) {
1519 int len = req->biotail->bi_hw_back_size + next->bio->bi_hw_front_size;
1520 /*
1521 * propagate the combined length to the end of the requests
1522 */
1523 if (req->nr_hw_segments == 1)
1524 req->bio->bi_hw_front_size = len;
1525 if (next->nr_hw_segments == 1)
1526 next->biotail->bi_hw_back_size = len;
1527 total_hw_segments--;
1528 }
1529
1530 if (total_hw_segments > q->max_hw_segments)
1531 return 0;
1532
1533 /* Merge is OK... */
1534 req->nr_phys_segments = total_phys_segments;
1535 req->nr_hw_segments = total_hw_segments;
1536 return 1;
1537}
1538
1539/*
1540 * "plug" the device if there are no outstanding requests: this will
1541 * force the transfer to start only after we have put all the requests
1542 * on the list.
1543 *
1544 * This is called with interrupts off and no requests on the queue and
1545 * with the queue lock held.
1546 */
Jens Axboe165125e2007-07-24 09:28:11 +02001547void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 WARN_ON(!irqs_disabled());
1550
1551 /*
1552 * don't plug a stopped queue, it must be paired with blk_start_queue()
1553 * which will restart the queueing
1554 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001555 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return;
1557
Jens Axboe2056a782006-03-23 20:00:26 +01001558 if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +01001560 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
1564EXPORT_SYMBOL(blk_plug_device);
1565
1566/*
1567 * remove the queue from the plugged list, if present. called with
1568 * queue lock held and interrupts disabled.
1569 */
Jens Axboe165125e2007-07-24 09:28:11 +02001570int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 WARN_ON(!irqs_disabled());
1573
1574 if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
1575 return 0;
1576
1577 del_timer(&q->unplug_timer);
1578 return 1;
1579}
1580
1581EXPORT_SYMBOL(blk_remove_plug);
1582
1583/*
1584 * remove the plug and let it rip..
1585 */
Jens Axboe165125e2007-07-24 09:28:11 +02001586void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001588 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return;
1590
1591 if (!blk_remove_plug(q))
1592 return;
1593
Jens Axboe22e2c502005-06-27 10:55:12 +02001594 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596EXPORT_SYMBOL(__generic_unplug_device);
1597
1598/**
1599 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +02001600 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 *
1602 * Description:
1603 * Linux uses plugging to build bigger requests queues before letting
1604 * the device have at them. If a queue is plugged, the I/O scheduler
1605 * is still adding and merging requests on the queue. Once the queue
1606 * gets unplugged, the request_fn defined for the queue is invoked and
1607 * transfers started.
1608 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001609void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 spin_lock_irq(q->queue_lock);
1612 __generic_unplug_device(q);
1613 spin_unlock_irq(q->queue_lock);
1614}
1615EXPORT_SYMBOL(generic_unplug_device);
1616
1617static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
1618 struct page *page)
1619{
Jens Axboe165125e2007-07-24 09:28:11 +02001620 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 /*
1623 * devices don't necessarily have an ->unplug_fn defined
1624 */
Jens Axboe2056a782006-03-23 20:00:26 +01001625 if (q->unplug_fn) {
1626 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1627 q->rq.count[READ] + q->rq.count[WRITE]);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 q->unplug_fn(q);
Jens Axboe2056a782006-03-23 20:00:26 +01001630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
David Howells65f27f32006-11-22 14:55:48 +00001633static void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Jens Axboe165125e2007-07-24 09:28:11 +02001635 struct request_queue *q =
1636 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Jens Axboe2056a782006-03-23 20:00:26 +01001638 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1639 q->rq.count[READ] + q->rq.count[WRITE]);
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 q->unplug_fn(q);
1642}
1643
1644static void blk_unplug_timeout(unsigned long data)
1645{
Jens Axboe165125e2007-07-24 09:28:11 +02001646 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Jens Axboe2056a782006-03-23 20:00:26 +01001648 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
1649 q->rq.count[READ] + q->rq.count[WRITE]);
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 kblockd_schedule_work(&q->unplug_work);
1652}
1653
1654/**
1655 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +02001656 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 *
1658 * Description:
1659 * blk_start_queue() will clear the stop flag on the queue, and call
1660 * the request_fn for the queue if it was in a stopped state when
1661 * entered. Also see blk_stop_queue(). Queue lock must be held.
1662 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001663void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001665 WARN_ON(!irqs_disabled());
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1668
1669 /*
1670 * one level of recursion is ok and is much faster than kicking
1671 * the unplug handling
1672 */
1673 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1674 q->request_fn(q);
1675 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1676 } else {
1677 blk_plug_device(q);
1678 kblockd_schedule_work(&q->unplug_work);
1679 }
1680}
1681
1682EXPORT_SYMBOL(blk_start_queue);
1683
1684/**
1685 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +02001686 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 *
1688 * Description:
1689 * The Linux block layer assumes that a block driver will consume all
1690 * entries on the request queue when the request_fn strategy is called.
1691 * Often this will not happen, because of hardware limitations (queue
1692 * depth settings). If a device driver gets a 'queue full' response,
1693 * or if it simply chooses not to queue more I/O at one point, it can
1694 * call this function to prevent the request_fn from being called until
1695 * the driver has signalled it's ready to go again. This happens by calling
1696 * blk_start_queue() to restart queue operations. Queue lock must be held.
1697 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001698void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 blk_remove_plug(q);
1701 set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1702}
1703EXPORT_SYMBOL(blk_stop_queue);
1704
1705/**
1706 * blk_sync_queue - cancel any pending callbacks on a queue
1707 * @q: the queue
1708 *
1709 * Description:
1710 * The block layer may perform asynchronous callback activity
1711 * on a queue, such as calling the unplug function after a timeout.
1712 * A block device may call blk_sync_queue to ensure that any
1713 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +02001714 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 * that its ->make_request_fn will not re-add plugging prior to calling
1716 * this function.
1717 *
1718 */
1719void blk_sync_queue(struct request_queue *q)
1720{
1721 del_timer_sync(&q->unplug_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723EXPORT_SYMBOL(blk_sync_queue);
1724
1725/**
1726 * blk_run_queue - run a single device queue
1727 * @q: The queue to run
1728 */
1729void blk_run_queue(struct request_queue *q)
1730{
1731 unsigned long flags;
1732
1733 spin_lock_irqsave(q->queue_lock, flags);
1734 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +02001735
1736 /*
1737 * Only recurse once to avoid overrunning the stack, let the unplug
1738 * handling reinvoke the handler shortly if we already got there.
1739 */
1740 if (!elv_queue_empty(q)) {
1741 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1742 q->request_fn(q);
1743 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1744 } else {
1745 blk_plug_device(q);
1746 kblockd_schedule_work(&q->unplug_work);
1747 }
1748 }
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 spin_unlock_irqrestore(q->queue_lock, flags);
1751}
1752EXPORT_SYMBOL(blk_run_queue);
1753
1754/**
Jens Axboe165125e2007-07-24 09:28:11 +02001755 * blk_cleanup_queue: - release a &struct request_queue when it is no longer needed
Martin Waitza5802902006-04-02 13:59:55 +02001756 * @kobj: the kobj belonging of the request queue to be released
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 *
1758 * Description:
1759 * blk_cleanup_queue is the pair to blk_init_queue() or
1760 * blk_queue_make_request(). It should be called when a request queue is
1761 * being released; typically when a block device is being de-registered.
1762 * Currently, its primary task it to free all the &struct request
1763 * structures that were allocated to the queue and the queue itself.
1764 *
1765 * Caveat:
1766 * Hopefully the low level driver will have finished any
1767 * outstanding requests first...
1768 **/
Al Viro483f4af2006-03-18 18:34:37 -05001769static void blk_release_queue(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Jens Axboe165125e2007-07-24 09:28:11 +02001771 struct request_queue *q =
1772 container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 struct request_list *rl = &q->rq;
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 blk_sync_queue(q);
1776
1777 if (rl->rq_pool)
1778 mempool_destroy(rl->rq_pool);
1779
1780 if (q->queue_tags)
1781 __blk_queue_free_tags(q);
1782
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -07001783 blk_trace_shutdown(q);
Jens Axboe2056a782006-03-23 20:00:26 +01001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 kmem_cache_free(requestq_cachep, q);
1786}
1787
Jens Axboe165125e2007-07-24 09:28:11 +02001788void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -05001789{
1790 kobject_put(&q->kobj);
1791}
1792EXPORT_SYMBOL(blk_put_queue);
1793
Jens Axboe165125e2007-07-24 09:28:11 +02001794void blk_cleanup_queue(struct request_queue * q)
Al Viro483f4af2006-03-18 18:34:37 -05001795{
1796 mutex_lock(&q->sysfs_lock);
1797 set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
1798 mutex_unlock(&q->sysfs_lock);
1799
1800 if (q->elevator)
1801 elevator_exit(q->elevator);
1802
1803 blk_put_queue(q);
1804}
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806EXPORT_SYMBOL(blk_cleanup_queue);
1807
Jens Axboe165125e2007-07-24 09:28:11 +02001808static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 struct request_list *rl = &q->rq;
1811
1812 rl->count[READ] = rl->count[WRITE] = 0;
1813 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02001814 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 init_waitqueue_head(&rl->wait[READ]);
1816 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Christoph Lameter19460892005-06-23 00:08:19 -07001818 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
1819 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 if (!rl->rq_pool)
1822 return -ENOMEM;
1823
1824 return 0;
1825}
1826
Jens Axboe165125e2007-07-24 09:28:11 +02001827struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Christoph Lameter19460892005-06-23 00:08:19 -07001829 return blk_alloc_queue_node(gfp_mask, -1);
1830}
1831EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Al Viro483f4af2006-03-18 18:34:37 -05001833static struct kobj_type queue_ktype;
1834
Jens Axboe165125e2007-07-24 09:28:11 +02001835struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001836{
Jens Axboe165125e2007-07-24 09:28:11 +02001837 struct request_queue *q;
Christoph Lameter19460892005-06-23 00:08:19 -07001838
Christoph Lameter94f60302007-07-17 04:03:29 -07001839 q = kmem_cache_alloc_node(requestq_cachep,
1840 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (!q)
1842 return NULL;
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -05001845
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -07001846 kobject_set_name(&q->kobj, "%s", "queue");
Al Viro483f4af2006-03-18 18:34:37 -05001847 q->kobj.ktype = &queue_ktype;
1848 kobject_init(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
1851 q->backing_dev_info.unplug_io_data = q;
1852
Al Viro483f4af2006-03-18 18:34:37 -05001853 mutex_init(&q->sysfs_lock);
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return q;
1856}
Christoph Lameter19460892005-06-23 00:08:19 -07001857EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859/**
1860 * blk_init_queue - prepare a request queue for use with a block device
1861 * @rfn: The function to be called to process requests that have been
1862 * placed on the queue.
1863 * @lock: Request queue spin lock
1864 *
1865 * Description:
1866 * If a block device wishes to use the standard request handling procedures,
1867 * which sorts requests and coalesces adjacent requests, then it must
1868 * call blk_init_queue(). The function @rfn will be called when there
1869 * are requests on the queue that need to be processed. If the device
1870 * supports plugging, then @rfn may not be called immediately when requests
1871 * are available on the queue, but may be called at some time later instead.
1872 * Plugged queues are generally unplugged when a buffer belonging to one
1873 * of the requests on the queue is needed, or due to memory pressure.
1874 *
1875 * @rfn is not required, or even expected, to remove all requests off the
1876 * queue, but only as many as it can handle at a time. If it does leave
1877 * requests on the queue, it is responsible for arranging that the requests
1878 * get dealt with eventually.
1879 *
1880 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001881 * request queue; this lock will be taken also from interrupt context, so irq
1882 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 *
1884 * Function returns a pointer to the initialized request queue, or NULL if
1885 * it didn't succeed.
1886 *
1887 * Note:
1888 * blk_init_queue() must be paired with a blk_cleanup_queue() call
1889 * when the block device is deactivated (such as at module unload).
1890 **/
Christoph Lameter19460892005-06-23 00:08:19 -07001891
Jens Axboe165125e2007-07-24 09:28:11 +02001892struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Christoph Lameter19460892005-06-23 00:08:19 -07001894 return blk_init_queue_node(rfn, lock, -1);
1895}
1896EXPORT_SYMBOL(blk_init_queue);
1897
Jens Axboe165125e2007-07-24 09:28:11 +02001898struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -07001899blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
1900{
Jens Axboe165125e2007-07-24 09:28:11 +02001901 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 if (!q)
1904 return NULL;
1905
Christoph Lameter19460892005-06-23 00:08:19 -07001906 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -05001907 if (blk_init_free_list(q)) {
1908 kmem_cache_free(requestq_cachep, q);
1909 return NULL;
1910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
152587d2005-04-12 16:22:06 -05001912 /*
1913 * if caller didn't supply a lock, they get per-queue locking with
1914 * our embedded lock
1915 */
1916 if (!lock) {
1917 spin_lock_init(&q->__queue_lock);
1918 lock = &q->__queue_lock;
1919 }
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 q->prep_rq_fn = NULL;
1923 q->unplug_fn = generic_unplug_device;
1924 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
1925 q->queue_lock = lock;
1926
1927 blk_queue_segment_boundary(q, 0xffffffff);
1928
1929 blk_queue_make_request(q, __make_request);
1930 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
1931
1932 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
1933 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
1934
Alan Stern44ec9542007-02-20 11:01:57 -05001935 q->sg_reserved_size = INT_MAX;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 /*
1938 * all done
1939 */
1940 if (!elevator_init(q, NULL)) {
1941 blk_queue_congestion_threshold(q);
1942 return q;
1943 }
1944
Al Viro8669aaf2006-03-18 13:50:00 -05001945 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return NULL;
1947}
Christoph Lameter19460892005-06-23 00:08:19 -07001948EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Jens Axboe165125e2007-07-24 09:28:11 +02001950int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Nick Pigginfde6ad22005-06-23 00:08:53 -07001952 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -05001953 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return 0;
1955 }
1956
1957 return 1;
1958}
1959
1960EXPORT_SYMBOL(blk_get_queue);
1961
Jens Axboe165125e2007-07-24 09:28:11 +02001962static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001964 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +02001965 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 mempool_free(rq, q->rq.rq_pool);
1967}
1968
Jens Axboe1ea25ec2006-07-18 22:24:11 +02001969static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +02001970blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
1972 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
1973
1974 if (!rq)
1975 return NULL;
1976
1977 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +02001978 * first three bits are identical in rq->cmd_flags and bio->bi_rw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * see bio.h and blkdev.h
1980 */
Jens Axboe49171e52006-08-10 08:59:11 +02001981 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Tejun Heocb98fc82005-10-28 08:29:39 +02001983 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +02001984 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +02001985 mempool_free(rq, q->rq.rq_pool);
1986 return NULL;
1987 }
Jens Axboe4aff5e22006-08-10 08:44:47 +02001988 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +02001989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Tejun Heocb98fc82005-10-28 08:29:39 +02001991 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992}
1993
1994/*
1995 * ioc_batching returns true if the ioc is a valid batching request and
1996 * should be given priority access to a request.
1997 */
Jens Axboe165125e2007-07-24 09:28:11 +02001998static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 if (!ioc)
2001 return 0;
2002
2003 /*
2004 * Make sure the process is able to allocate at least 1 request
2005 * even if the batch times out, otherwise we could theoretically
2006 * lose wakeups.
2007 */
2008 return ioc->nr_batch_requests == q->nr_batching ||
2009 (ioc->nr_batch_requests > 0
2010 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
2011}
2012
2013/*
2014 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
2015 * will cause the process to be a "batcher" on all queues in the system. This
2016 * is the behaviour we want though - once it gets a wakeup it should be given
2017 * a nice run.
2018 */
Jens Axboe165125e2007-07-24 09:28:11 +02002019static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
2021 if (!ioc || ioc_batching(q, ioc))
2022 return;
2023
2024 ioc->nr_batch_requests = q->nr_batching;
2025 ioc->last_waited = jiffies;
2026}
2027
Jens Axboe165125e2007-07-24 09:28:11 +02002028static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
2030 struct request_list *rl = &q->rq;
2031
2032 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07002033 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (waitqueue_active(&rl->wait[rw]))
2037 wake_up(&rl->wait[rw]);
2038
2039 blk_clear_queue_full(q, rw);
2040 }
2041}
2042
2043/*
2044 * A request has just been released. Account for it, update the full and
2045 * congestion status, wake up any waiters. Called under q->queue_lock.
2046 */
Jens Axboe165125e2007-07-24 09:28:11 +02002047static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 struct request_list *rl = &q->rq;
2050
2051 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +02002052 if (priv)
2053 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 __freed_request(q, rw);
2056
2057 if (unlikely(rl->starved[rw ^ 1]))
2058 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
2061#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
2062/*
Nick Piggind6344532005-06-28 20:45:14 -07002063 * Get a free request, queue_lock must be held.
2064 * Returns NULL on failure, with queue_lock held.
2065 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 */
Jens Axboe165125e2007-07-24 09:28:11 +02002067static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +01002068 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069{
2070 struct request *rq = NULL;
2071 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002072 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +01002073 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002074 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Jens Axboe7749a8d2006-12-13 13:02:26 +01002076 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002077 if (may_queue == ELV_MQUEUE_NO)
2078 goto rq_starved;
2079
2080 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
2081 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +02002082 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002083 /*
2084 * The queue will fill after this allocation, so set
2085 * it as full, and mark this process as "batching".
2086 * This process will be allowed to complete a batch of
2087 * requests, others will be blocked.
2088 */
2089 if (!blk_queue_full(q, rw)) {
2090 ioc_set_batching(q, ioc);
2091 blk_set_queue_full(q, rw);
2092 } else {
2093 if (may_queue != ELV_MQUEUE_MUST
2094 && !ioc_batching(q, ioc)) {
2095 /*
2096 * The queue is full and the allocating
2097 * process is not a "batcher", and not
2098 * exempted by the IO scheduler
2099 */
2100 goto out;
2101 }
2102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Thomas Maier79e2de42006-10-19 23:28:15 -07002104 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
Jens Axboe082cf692005-06-28 16:35:11 +02002107 /*
2108 * Only allow batching queuers to allocate up to 50% over the defined
2109 * limit of requests, otherwise we could have thousands of requests
2110 * allocated with any setting of ->nr_requests
2111 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002112 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +02002113 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 rl->count[rw]++;
2116 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02002117
Jens Axboe64521d12005-10-28 08:30:39 +02002118 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +02002119 if (priv)
2120 rl->elvpriv++;
2121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 spin_unlock_irq(q->queue_lock);
2123
Jens Axboe7749a8d2006-12-13 13:02:26 +01002124 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002125 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /*
2127 * Allocation failed presumably due to memory. Undo anything
2128 * we might have messed up.
2129 *
2130 * Allocating task should really be put onto the front of the
2131 * wait queue, but this is pretty rare.
2132 */
2133 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +02002134 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /*
2137 * in the very unlikely event that allocation failed and no
2138 * requests for this direction was pending, mark us starved
2139 * so that freeing of a request in the other direction will
2140 * notice us. another possible fix would be to split the
2141 * rq mempool into READ and WRITE
2142 */
2143rq_starved:
2144 if (unlikely(rl->count[rw] == 0))
2145 rl->starved[rw] = 1;
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 goto out;
2148 }
2149
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002150 /*
2151 * ioc may be NULL here, and ioc_batching will be false. That's
2152 * OK, if the queue is under the request limit then requests need
2153 * not count toward the nr_batch_requests limit. There will always
2154 * be some limit enforced by BLK_BATCH_TIME.
2155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (ioc_batching(q, ioc))
2157 ioc->nr_batch_requests--;
2158
2159 rq_init(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01002160
2161 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return rq;
2164}
2165
2166/*
2167 * No available requests for this queue, unplug the device and wait for some
2168 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -07002169 *
2170 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 */
Jens Axboe165125e2007-07-24 09:28:11 +02002172static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +02002173 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Jens Axboe7749a8d2006-12-13 13:02:26 +01002175 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct request *rq;
2177
Jens Axboe7749a8d2006-12-13 13:02:26 +01002178 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -07002179 while (!rq) {
2180 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 struct request_list *rl = &q->rq;
2182
2183 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
2184 TASK_UNINTERRUPTIBLE);
2185
Jens Axboe7749a8d2006-12-13 13:02:26 +01002186 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 if (!rq) {
2189 struct io_context *ioc;
2190
Jens Axboe2056a782006-03-23 20:00:26 +01002191 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
2192
Nick Piggind6344532005-06-28 20:45:14 -07002193 __generic_unplug_device(q);
2194 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 io_schedule();
2196
2197 /*
2198 * After sleeping, we become a "batching" process and
2199 * will be able to allocate at least one request, and
2200 * up to a big batch of them for a small period time.
2201 * See ioc_batching, ioc_set_batching
2202 */
Jens Axboeb5deef92006-07-19 23:39:40 +02002203 ioc = current_io_context(GFP_NOIO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 ioc_set_batching(q, ioc);
Nick Piggind6344532005-06-28 20:45:14 -07002205
2206 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208 finish_wait(&rl->wait[rw], &wait);
Nick Piggin450991b2005-06-28 20:45:13 -07002209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211 return rq;
2212}
2213
Jens Axboe165125e2007-07-24 09:28:11 +02002214struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 struct request *rq;
2217
2218 BUG_ON(rw != READ && rw != WRITE);
2219
Nick Piggind6344532005-06-28 20:45:14 -07002220 spin_lock_irq(q->queue_lock);
2221 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002222 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -07002223 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +02002224 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -07002225 if (!rq)
2226 spin_unlock_irq(q->queue_lock);
2227 }
2228 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 return rq;
2231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232EXPORT_SYMBOL(blk_get_request);
2233
2234/**
Jens Axboedc72ef42006-07-20 14:54:05 +02002235 * blk_start_queueing - initiate dispatch of requests to device
2236 * @q: request queue to kick into gear
2237 *
2238 * This is basically a helper to remove the need to know whether a queue
2239 * is plugged or not if someone just wants to initiate dispatch of requests
2240 * for this queue.
2241 *
2242 * The queue lock must be held with interrupts disabled.
2243 */
Jens Axboe165125e2007-07-24 09:28:11 +02002244void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +02002245{
2246 if (!blk_queue_plugged(q))
2247 q->request_fn(q);
2248 else
2249 __generic_unplug_device(q);
2250}
2251EXPORT_SYMBOL(blk_start_queueing);
2252
2253/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 * blk_requeue_request - put a request back on queue
2255 * @q: request queue where request should be inserted
2256 * @rq: request to be inserted
2257 *
2258 * Description:
2259 * Drivers often keep queueing requests until the hardware cannot accept
2260 * more, when that condition happens we need to put the request back
2261 * on the queue. Must be called with queue lock held.
2262 */
Jens Axboe165125e2007-07-24 09:28:11 +02002263void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
Jens Axboe2056a782006-03-23 20:00:26 +01002265 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
2266
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (blk_rq_tagged(rq))
2268 blk_queue_end_tag(q, rq);
2269
2270 elv_requeue_request(q, rq);
2271}
2272
2273EXPORT_SYMBOL(blk_requeue_request);
2274
2275/**
2276 * blk_insert_request - insert a special request in to a request queue
2277 * @q: request queue where request should be inserted
2278 * @rq: request to be inserted
2279 * @at_head: insert request at head or tail of queue
2280 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 *
2282 * Description:
2283 * Many block devices need to execute commands asynchronously, so they don't
2284 * block the whole kernel from preemption during request execution. This is
2285 * accomplished normally by inserting aritficial requests tagged as
2286 * REQ_SPECIAL in to the corresponding request queue, and letting them be
2287 * scheduled for actual execution by the request queue.
2288 *
2289 * We have the option of inserting the head or the tail of the queue.
2290 * Typically we use the tail for new ioctls and so forth. We use the head
2291 * of the queue for things like a QUEUE_FULL message from a device, or a
2292 * host that is unable to accept a particular command.
2293 */
Jens Axboe165125e2007-07-24 09:28:11 +02002294void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05002295 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Tejun Heo 867d1192005-04-24 02:06:05 -05002297 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 unsigned long flags;
2299
2300 /*
2301 * tell I/O scheduler that this isn't a regular read/write (ie it
2302 * must not attempt merges on this) and that it acts as a soft
2303 * barrier
2304 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002305 rq->cmd_type = REQ_TYPE_SPECIAL;
2306 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 rq->special = data;
2309
2310 spin_lock_irqsave(q->queue_lock, flags);
2311
2312 /*
2313 * If command is tagged, release the tag
2314 */
Tejun Heo 867d1192005-04-24 02:06:05 -05002315 if (blk_rq_tagged(rq))
2316 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Tejun Heo 867d1192005-04-24 02:06:05 -05002318 drive_stat_acct(rq, rq->nr_sectors, 1);
2319 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +02002320 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 spin_unlock_irqrestore(q->queue_lock, flags);
2322}
2323
2324EXPORT_SYMBOL(blk_insert_request);
2325
Mike Christie0e75f902006-12-01 10:40:55 +01002326static int __blk_rq_unmap_user(struct bio *bio)
2327{
2328 int ret = 0;
2329
2330 if (bio) {
2331 if (bio_flagged(bio, BIO_USER_MAPPED))
2332 bio_unmap_user(bio);
2333 else
2334 ret = bio_uncopy_user(bio);
2335 }
2336
2337 return ret;
2338}
2339
NeilBrown3001ca72007-08-16 13:31:27 +02002340int blk_rq_append_bio(struct request_queue *q, struct request *rq,
2341 struct bio *bio)
2342{
2343 if (!rq->bio)
2344 blk_rq_bio_prep(q, rq, bio);
2345 else if (!ll_back_merge_fn(q, rq, bio))
2346 return -EINVAL;
2347 else {
2348 rq->biotail->bi_next = bio;
2349 rq->biotail = bio;
2350
2351 rq->data_len += bio->bi_size;
2352 }
2353 return 0;
2354}
2355EXPORT_SYMBOL(blk_rq_append_bio);
2356
Jens Axboe165125e2007-07-24 09:28:11 +02002357static int __blk_rq_map_user(struct request_queue *q, struct request *rq,
Mike Christie0e75f902006-12-01 10:40:55 +01002358 void __user *ubuf, unsigned int len)
2359{
2360 unsigned long uaddr;
2361 struct bio *bio, *orig_bio;
2362 int reading, ret;
2363
2364 reading = rq_data_dir(rq) == READ;
2365
2366 /*
2367 * if alignment requirement is satisfied, map in user pages for
2368 * direct dma. else, set up kernel bounce buffers
2369 */
2370 uaddr = (unsigned long) ubuf;
2371 if (!(uaddr & queue_dma_alignment(q)) && !(len & queue_dma_alignment(q)))
2372 bio = bio_map_user(q, NULL, uaddr, len, reading);
2373 else
2374 bio = bio_copy_user(q, uaddr, len, reading);
2375
Jens Axboe29852592006-12-19 08:27:31 +01002376 if (IS_ERR(bio))
Mike Christie0e75f902006-12-01 10:40:55 +01002377 return PTR_ERR(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002378
2379 orig_bio = bio;
2380 blk_queue_bounce(q, &bio);
Jens Axboe29852592006-12-19 08:27:31 +01002381
Mike Christie0e75f902006-12-01 10:40:55 +01002382 /*
2383 * We link the bounce buffer in and could have to traverse it
2384 * later so we have to get a ref to prevent it from being freed
2385 */
2386 bio_get(bio);
2387
NeilBrown3001ca72007-08-16 13:31:27 +02002388 ret = blk_rq_append_bio(q, rq, bio);
2389 if (!ret)
2390 return bio->bi_size;
Mike Christie0e75f902006-12-01 10:40:55 +01002391
Mike Christie0e75f902006-12-01 10:40:55 +01002392 /* if it was boucned we must call the end io function */
NeilBrown6712ecf2007-09-27 12:47:43 +02002393 bio_endio(bio, 0);
Mike Christie0e75f902006-12-01 10:40:55 +01002394 __blk_rq_unmap_user(orig_bio);
2395 bio_put(bio);
2396 return ret;
2397}
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399/**
2400 * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage
2401 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002402 * @rq: request structure to fill
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 * @ubuf: the user buffer
2404 * @len: length of user data
2405 *
2406 * Description:
2407 * Data will be mapped directly for zero copy io, if possible. Otherwise
2408 * a kernel bounce buffer is used.
2409 *
2410 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2411 * still in process context.
2412 *
2413 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2414 * before being submitted to the device, as pages mapped may be out of
2415 * reach. It's the callers responsibility to make sure this happens. The
2416 * original bio must be passed back in to blk_rq_unmap_user() for proper
2417 * unmapping.
2418 */
Jens Axboe165125e2007-07-24 09:28:11 +02002419int blk_rq_map_user(struct request_queue *q, struct request *rq,
2420 void __user *ubuf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Mike Christie0e75f902006-12-01 10:40:55 +01002422 unsigned long bytes_read = 0;
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002423 struct bio *bio = NULL;
Mike Christie0e75f902006-12-01 10:40:55 +01002424 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Mike Christiedefd94b2005-12-05 02:37:06 -06002426 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002427 return -EINVAL;
2428 if (!len || !ubuf)
2429 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Mike Christie0e75f902006-12-01 10:40:55 +01002431 while (bytes_read != len) {
2432 unsigned long map_len, end, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Mike Christie0e75f902006-12-01 10:40:55 +01002434 map_len = min_t(unsigned long, len - bytes_read, BIO_MAX_SIZE);
2435 end = ((unsigned long)ubuf + map_len + PAGE_SIZE - 1)
2436 >> PAGE_SHIFT;
2437 start = (unsigned long)ubuf >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Mike Christie0e75f902006-12-01 10:40:55 +01002439 /*
2440 * A bad offset could cause us to require BIO_MAX_PAGES + 1
2441 * pages. If this happens we just lower the requested
2442 * mapping len by a page so that we can fit
2443 */
2444 if (end - start > BIO_MAX_PAGES)
2445 map_len -= PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Mike Christie0e75f902006-12-01 10:40:55 +01002447 ret = __blk_rq_map_user(q, rq, ubuf, map_len);
2448 if (ret < 0)
2449 goto unmap_rq;
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002450 if (!bio)
2451 bio = rq->bio;
Mike Christie0e75f902006-12-01 10:40:55 +01002452 bytes_read += ret;
2453 ubuf += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455
Mike Christie0e75f902006-12-01 10:40:55 +01002456 rq->buffer = rq->data = NULL;
2457 return 0;
2458unmap_rq:
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002459 blk_rq_unmap_user(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002460 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
2463EXPORT_SYMBOL(blk_rq_map_user);
2464
2465/**
James Bottomley f1970ba2005-06-20 14:06:52 +02002466 * blk_rq_map_user_iov - map user data to a request, for REQ_BLOCK_PC usage
2467 * @q: request queue where request should be inserted
2468 * @rq: request to map data to
2469 * @iov: pointer to the iovec
2470 * @iov_count: number of elements in the iovec
Randy Dunlapaf9997e2006-12-22 01:06:52 -08002471 * @len: I/O byte count
James Bottomley f1970ba2005-06-20 14:06:52 +02002472 *
2473 * Description:
2474 * Data will be mapped directly for zero copy io, if possible. Otherwise
2475 * a kernel bounce buffer is used.
2476 *
2477 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2478 * still in process context.
2479 *
2480 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2481 * before being submitted to the device, as pages mapped may be out of
2482 * reach. It's the callers responsibility to make sure this happens. The
2483 * original bio must be passed back in to blk_rq_unmap_user() for proper
2484 * unmapping.
2485 */
Jens Axboe165125e2007-07-24 09:28:11 +02002486int blk_rq_map_user_iov(struct request_queue *q, struct request *rq,
Mike Christie0e75f902006-12-01 10:40:55 +01002487 struct sg_iovec *iov, int iov_count, unsigned int len)
James Bottomley f1970ba2005-06-20 14:06:52 +02002488{
2489 struct bio *bio;
2490
2491 if (!iov || iov_count <= 0)
2492 return -EINVAL;
2493
2494 /* we don't allow misaligned data like bio_map_user() does. If the
2495 * user is using sg, they're expected to know the alignment constraints
2496 * and respect them accordingly */
2497 bio = bio_map_user_iov(q, NULL, iov, iov_count, rq_data_dir(rq)== READ);
2498 if (IS_ERR(bio))
2499 return PTR_ERR(bio);
2500
Mike Christie0e75f902006-12-01 10:40:55 +01002501 if (bio->bi_size != len) {
NeilBrown6712ecf2007-09-27 12:47:43 +02002502 bio_endio(bio, 0);
Mike Christie0e75f902006-12-01 10:40:55 +01002503 bio_unmap_user(bio);
2504 return -EINVAL;
2505 }
2506
2507 bio_get(bio);
James Bottomley f1970ba2005-06-20 14:06:52 +02002508 blk_rq_bio_prep(q, rq, bio);
2509 rq->buffer = rq->data = NULL;
James Bottomley f1970ba2005-06-20 14:06:52 +02002510 return 0;
2511}
2512
2513EXPORT_SYMBOL(blk_rq_map_user_iov);
2514
2515/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * blk_rq_unmap_user - unmap a request with user data
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002517 * @bio: start of bio list
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 *
2519 * Description:
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002520 * Unmap a rq previously mapped by blk_rq_map_user(). The caller must
2521 * supply the original rq->bio from the blk_rq_map_user() return, since
2522 * the io completion may have changed rq->bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 */
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002524int blk_rq_unmap_user(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002526 struct bio *mapped_bio;
Jens Axboe48785bb2006-12-19 11:07:59 +01002527 int ret = 0, ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002529 while (bio) {
2530 mapped_bio = bio;
2531 if (unlikely(bio_flagged(bio, BIO_BOUNCED)))
Mike Christie0e75f902006-12-01 10:40:55 +01002532 mapped_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Jens Axboe48785bb2006-12-19 11:07:59 +01002534 ret2 = __blk_rq_unmap_user(mapped_bio);
2535 if (ret2 && !ret)
2536 ret = ret2;
2537
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002538 mapped_bio = bio;
2539 bio = bio->bi_next;
2540 bio_put(mapped_bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002541 }
Jens Axboe48785bb2006-12-19 11:07:59 +01002542
2543 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
2546EXPORT_SYMBOL(blk_rq_unmap_user);
2547
2548/**
Mike Christie df46b9a2005-06-20 14:04:44 +02002549 * blk_rq_map_kern - map kernel data to a request, for REQ_BLOCK_PC usage
2550 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002551 * @rq: request to fill
Mike Christie df46b9a2005-06-20 14:04:44 +02002552 * @kbuf: the kernel buffer
2553 * @len: length of user data
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002554 * @gfp_mask: memory allocation flags
Mike Christie df46b9a2005-06-20 14:04:44 +02002555 */
Jens Axboe165125e2007-07-24 09:28:11 +02002556int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf,
Al Viro8267e262005-10-21 03:20:53 -04002557 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02002558{
Mike Christie df46b9a2005-06-20 14:04:44 +02002559 struct bio *bio;
2560
Mike Christiedefd94b2005-12-05 02:37:06 -06002561 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002562 return -EINVAL;
2563 if (!len || !kbuf)
2564 return -EINVAL;
Mike Christie df46b9a2005-06-20 14:04:44 +02002565
2566 bio = bio_map_kern(q, kbuf, len, gfp_mask);
Jens Axboedd1cab92005-06-20 14:06:01 +02002567 if (IS_ERR(bio))
2568 return PTR_ERR(bio);
Mike Christie df46b9a2005-06-20 14:04:44 +02002569
Jens Axboedd1cab92005-06-20 14:06:01 +02002570 if (rq_data_dir(rq) == WRITE)
2571 bio->bi_rw |= (1 << BIO_RW);
Mike Christie df46b9a2005-06-20 14:04:44 +02002572
Jens Axboedd1cab92005-06-20 14:06:01 +02002573 blk_rq_bio_prep(q, rq, bio);
Mike Christie821de3a2007-05-08 19:12:23 +02002574 blk_queue_bounce(q, &rq->bio);
Jens Axboedd1cab92005-06-20 14:06:01 +02002575 rq->buffer = rq->data = NULL;
Jens Axboedd1cab92005-06-20 14:06:01 +02002576 return 0;
Mike Christie df46b9a2005-06-20 14:04:44 +02002577}
2578
2579EXPORT_SYMBOL(blk_rq_map_kern);
2580
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002581/**
2582 * blk_execute_rq_nowait - insert a request into queue for execution
2583 * @q: queue to insert the request in
2584 * @bd_disk: matching gendisk
2585 * @rq: request to insert
2586 * @at_head: insert request at head or tail of queue
2587 * @done: I/O completion handler
2588 *
2589 * Description:
2590 * Insert a fully prepared request at the back of the io scheduler queue
2591 * for execution. Don't wait for completion.
2592 */
Jens Axboe165125e2007-07-24 09:28:11 +02002593void blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk,
James Bottomley f1970ba2005-06-20 14:06:52 +02002594 struct request *rq, int at_head,
Tejun Heo8ffdc652006-01-06 09:49:03 +01002595 rq_end_io_fn *done)
James Bottomley f1970ba2005-06-20 14:06:52 +02002596{
2597 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
2598
2599 rq->rq_disk = bd_disk;
Jens Axboe4aff5e22006-08-10 08:44:47 +02002600 rq->cmd_flags |= REQ_NOMERGE;
James Bottomley f1970ba2005-06-20 14:06:52 +02002601 rq->end_io = done;
Andrew Morton4c5d0bb2006-03-22 08:08:01 +01002602 WARN_ON(irqs_disabled());
2603 spin_lock_irq(q->queue_lock);
2604 __elv_add_request(q, rq, where, 1);
2605 __generic_unplug_device(q);
2606 spin_unlock_irq(q->queue_lock);
James Bottomley f1970ba2005-06-20 14:06:52 +02002607}
Mike Christie6e39b692005-11-11 05:30:24 -06002608EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610/**
2611 * blk_execute_rq - insert a request into queue for execution
2612 * @q: queue to insert the request in
2613 * @bd_disk: matching gendisk
2614 * @rq: request to insert
James Bottomley 994ca9a2005-06-20 14:11:09 +02002615 * @at_head: insert request at head or tail of queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 *
2617 * Description:
2618 * Insert a fully prepared request at the back of the io scheduler queue
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002619 * for execution and wait for completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 */
Jens Axboe165125e2007-07-24 09:28:11 +02002621int blk_execute_rq(struct request_queue *q, struct gendisk *bd_disk,
James Bottomley 994ca9a2005-06-20 14:11:09 +02002622 struct request *rq, int at_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Ingo Molnar60be6b92006-07-03 00:25:26 -07002624 DECLARE_COMPLETION_ONSTACK(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 char sense[SCSI_SENSE_BUFFERSIZE];
2626 int err = 0;
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 /*
2629 * we need an extra reference to the request, so we can look at
2630 * it after io completion
2631 */
2632 rq->ref_count++;
2633
2634 if (!rq->sense) {
2635 memset(sense, 0, sizeof(sense));
2636 rq->sense = sense;
2637 rq->sense_len = 0;
2638 }
2639
Jens Axboec00895a2006-09-30 20:29:12 +02002640 rq->end_io_data = &wait;
James Bottomley 994ca9a2005-06-20 14:11:09 +02002641 blk_execute_rq_nowait(q, bd_disk, rq, at_head, blk_end_sync_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 wait_for_completion(&wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 if (rq->errors)
2645 err = -EIO;
2646
2647 return err;
2648}
2649
2650EXPORT_SYMBOL(blk_execute_rq);
2651
Jens Axboefd5d8062007-10-16 11:05:02 +02002652static void bio_end_empty_barrier(struct bio *bio, int err)
2653{
2654 if (err)
2655 clear_bit(BIO_UPTODATE, &bio->bi_flags);
2656
2657 complete(bio->bi_private);
2658}
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660/**
2661 * blkdev_issue_flush - queue a flush
2662 * @bdev: blockdev to issue flush for
2663 * @error_sector: error sector
2664 *
2665 * Description:
2666 * Issue a flush for the block device in question. Caller can supply
2667 * room for storing the error offset in case of a flush error, if they
2668 * wish to. Caller must run wait_for_completion() on its own.
2669 */
2670int blkdev_issue_flush(struct block_device *bdev, sector_t *error_sector)
2671{
Jens Axboefd5d8062007-10-16 11:05:02 +02002672 DECLARE_COMPLETION_ONSTACK(wait);
Jens Axboe165125e2007-07-24 09:28:11 +02002673 struct request_queue *q;
Jens Axboefd5d8062007-10-16 11:05:02 +02002674 struct bio *bio;
2675 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 if (bdev->bd_disk == NULL)
2678 return -ENXIO;
2679
2680 q = bdev_get_queue(bdev);
2681 if (!q)
2682 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Jens Axboefd5d8062007-10-16 11:05:02 +02002684 bio = bio_alloc(GFP_KERNEL, 0);
2685 if (!bio)
2686 return -ENOMEM;
2687
2688 bio->bi_end_io = bio_end_empty_barrier;
2689 bio->bi_private = &wait;
2690 bio->bi_bdev = bdev;
2691 submit_bio(1 << BIO_RW_BARRIER, bio);
2692
2693 wait_for_completion(&wait);
2694
2695 /*
2696 * The driver must store the error location in ->bi_sector, if
2697 * it supports it. For non-stacked drivers, this should be copied
2698 * from rq->sector.
2699 */
2700 if (error_sector)
2701 *error_sector = bio->bi_sector;
2702
2703 ret = 0;
2704 if (!bio_flagged(bio, BIO_UPTODATE))
2705 ret = -EIO;
2706
2707 bio_put(bio);
2708 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
2711EXPORT_SYMBOL(blkdev_issue_flush);
2712
Adrian Bunk93d17d32005-06-25 14:59:10 -07002713static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714{
2715 int rw = rq_data_dir(rq);
2716
2717 if (!blk_fs_request(rq) || !rq->rq_disk)
2718 return;
2719
Jens Axboed72d9042005-11-01 08:35:42 +01002720 if (!new_io) {
Jens Axboea3623572005-11-01 09:26:16 +01002721 __disk_stat_inc(rq->rq_disk, merges[rw]);
Jens Axboed72d9042005-11-01 08:35:42 +01002722 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 disk_round_stats(rq->rq_disk);
2724 rq->rq_disk->in_flight++;
2725 }
2726}
2727
2728/*
2729 * add-request adds a request to the linked list.
2730 * queue lock is held and interrupts disabled, as we muck with the
2731 * request queue list.
2732 */
Jens Axboe165125e2007-07-24 09:28:11 +02002733static inline void add_request(struct request_queue * q, struct request * req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
2735 drive_stat_acct(req, req->nr_sectors, 1);
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 /*
2738 * elevator indicated where it wants this request to be
2739 * inserted at elevator_merge time
2740 */
2741 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
2742}
2743
2744/*
2745 * disk_round_stats() - Round off the performance stats on a struct
2746 * disk_stats.
2747 *
2748 * The average IO queue length and utilisation statistics are maintained
2749 * by observing the current state of the queue length and the amount of
2750 * time it has been in this state for.
2751 *
2752 * Normally, that accounting is done on IO completion, but that can result
2753 * in more than a second's worth of IO being accounted for within any one
2754 * second, leading to >100% utilisation. To deal with that, we call this
2755 * function to do a round-off before returning the results when reading
2756 * /proc/diskstats. This accounts immediately for all queue usage up to
2757 * the current jiffies and restarts the counters again.
2758 */
2759void disk_round_stats(struct gendisk *disk)
2760{
2761 unsigned long now = jiffies;
2762
Chen, Kenneth Wb2982642005-10-13 21:49:29 +02002763 if (now == disk->stamp)
2764 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Chen, Kenneth W20e5c812005-10-13 21:48:42 +02002766 if (disk->in_flight) {
2767 __disk_stat_add(disk, time_in_queue,
2768 disk->in_flight * (now - disk->stamp));
2769 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
2770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08002774EXPORT_SYMBOL_GPL(disk_round_stats);
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776/*
2777 * queue lock must be held
2778 */
Jens Axboe165125e2007-07-24 09:28:11 +02002779void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (unlikely(!q))
2782 return;
2783 if (unlikely(--req->ref_count))
2784 return;
2785
Tejun Heo8922e162005-10-20 16:23:44 +02002786 elv_completed_request(q, req);
2787
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 /*
2789 * Request may not have originated from ll_rw_blk. if not,
2790 * it didn't come out of our reserved rq pools
2791 */
Jens Axboe49171e52006-08-10 08:59:11 +02002792 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002794 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02002797 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02002800 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 }
2802}
2803
Mike Christie6e39b692005-11-11 05:30:24 -06002804EXPORT_SYMBOL_GPL(__blk_put_request);
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806void blk_put_request(struct request *req)
2807{
Tejun Heo8922e162005-10-20 16:23:44 +02002808 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02002809 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Tejun Heo8922e162005-10-20 16:23:44 +02002811 /*
2812 * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
2813 * following if (q) test.
2814 */
2815 if (q) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 spin_lock_irqsave(q->queue_lock, flags);
2817 __blk_put_request(q, req);
2818 spin_unlock_irqrestore(q->queue_lock, flags);
2819 }
2820}
2821
2822EXPORT_SYMBOL(blk_put_request);
2823
2824/**
2825 * blk_end_sync_rq - executes a completion event on a request
2826 * @rq: request to complete
Jens Axboefddfdea2006-01-31 15:24:34 +01002827 * @error: end io status of the request
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01002829void blk_end_sync_rq(struct request *rq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Jens Axboec00895a2006-09-30 20:29:12 +02002831 struct completion *waiting = rq->end_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Jens Axboec00895a2006-09-30 20:29:12 +02002833 rq->end_io_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 __blk_put_request(rq->q, rq);
2835
2836 /*
2837 * complete last, if this is a stack request the process (and thus
2838 * the rq pointer) could be invalid right after this complete()
2839 */
2840 complete(waiting);
2841}
2842EXPORT_SYMBOL(blk_end_sync_rq);
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844/*
2845 * Has to be called with the request spinlock acquired
2846 */
Jens Axboe165125e2007-07-24 09:28:11 +02002847static int attempt_merge(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 struct request *next)
2849{
2850 if (!rq_mergeable(req) || !rq_mergeable(next))
2851 return 0;
2852
2853 /*
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02002854 * not contiguous
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 */
2856 if (req->sector + req->nr_sectors != next->sector)
2857 return 0;
2858
2859 if (rq_data_dir(req) != rq_data_dir(next)
2860 || req->rq_disk != next->rq_disk
Jens Axboec00895a2006-09-30 20:29:12 +02002861 || next->special)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 return 0;
2863
2864 /*
2865 * If we are allowed to merge, then append bio list
2866 * from next to rq and release next. merge_requests_fn
2867 * will have updated segment counts, update sector
2868 * counts here.
2869 */
Jens Axboe1aa4f242006-12-19 08:33:11 +01002870 if (!ll_merge_requests_fn(q, req, next))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 return 0;
2872
2873 /*
2874 * At this point we have either done a back merge
2875 * or front merge. We need the smaller start_time of
2876 * the merged requests to be the current request
2877 * for accounting purposes.
2878 */
2879 if (time_after(req->start_time, next->start_time))
2880 req->start_time = next->start_time;
2881
2882 req->biotail->bi_next = next->bio;
2883 req->biotail = next->biotail;
2884
2885 req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors;
2886
2887 elv_merge_requests(q, req, next);
2888
2889 if (req->rq_disk) {
2890 disk_round_stats(req->rq_disk);
2891 req->rq_disk->in_flight--;
2892 }
2893
Jens Axboe22e2c502005-06-27 10:55:12 +02002894 req->ioprio = ioprio_best(req->ioprio, next->ioprio);
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 __blk_put_request(q, next);
2897 return 1;
2898}
2899
Jens Axboe165125e2007-07-24 09:28:11 +02002900static inline int attempt_back_merge(struct request_queue *q,
2901 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
2903 struct request *next = elv_latter_request(q, rq);
2904
2905 if (next)
2906 return attempt_merge(q, rq, next);
2907
2908 return 0;
2909}
2910
Jens Axboe165125e2007-07-24 09:28:11 +02002911static inline int attempt_front_merge(struct request_queue *q,
2912 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
2914 struct request *prev = elv_former_request(q, rq);
2915
2916 if (prev)
2917 return attempt_merge(q, prev, rq);
2918
2919 return 0;
2920}
2921
Tejun Heo52d9e672006-01-06 09:49:58 +01002922static void init_request_from_bio(struct request *req, struct bio *bio)
2923{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002924 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01002925
2926 /*
2927 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
2928 */
2929 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002930 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01002931
2932 /*
2933 * REQ_BARRIER implies no merging, but lets make it explicit
2934 */
2935 if (unlikely(bio_barrier(bio)))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002936 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01002937
Jens Axboeb31dc662006-06-13 08:26:10 +02002938 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002939 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02002940 if (bio_rw_meta(bio))
2941 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02002942
Tejun Heo52d9e672006-01-06 09:49:58 +01002943 req->errors = 0;
2944 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01002945 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01002946 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02002947 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01002948}
2949
Jens Axboe165125e2007-07-24 09:28:11 +02002950static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
Nick Piggin450991b2005-06-28 20:45:13 -07002952 struct request *req;
Jens Axboe51da90f2006-07-18 04:14:45 +02002953 int el_ret, nr_sectors, barrier, err;
2954 const unsigned short prio = bio_prio(bio);
2955 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01002956 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 /*
2961 * low level driver can indicate that it wants pages above a
2962 * certain limit bounced to low memory (ie for highmem, or even
2963 * ISA dma in theory)
2964 */
2965 blk_queue_bounce(q, &bio);
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01002968 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 err = -EOPNOTSUPP;
2970 goto end_io;
2971 }
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 spin_lock_irq(q->queue_lock);
2974
Nick Piggin450991b2005-06-28 20:45:13 -07002975 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 goto get_rq;
2977
2978 el_ret = elv_merge(q, &req, bio);
2979 switch (el_ret) {
2980 case ELEVATOR_BACK_MERGE:
2981 BUG_ON(!rq_mergeable(req));
2982
Jens Axboe1aa4f242006-12-19 08:33:11 +01002983 if (!ll_back_merge_fn(q, req, bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 break;
2985
Jens Axboe2056a782006-03-23 20:00:26 +01002986 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 req->biotail->bi_next = bio;
2989 req->biotail = bio;
2990 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02002991 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 drive_stat_acct(req, nr_sectors, 0);
2993 if (!attempt_back_merge(q, req))
Jens Axboe2e662b62006-07-13 11:55:04 +02002994 elv_merged_request(q, req, el_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 goto out;
2996
2997 case ELEVATOR_FRONT_MERGE:
2998 BUG_ON(!rq_mergeable(req));
2999
Jens Axboe1aa4f242006-12-19 08:33:11 +01003000 if (!ll_front_merge_fn(q, req, bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 break;
3002
Jens Axboe2056a782006-03-23 20:00:26 +01003003 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 bio->bi_next = req->bio;
3006 req->bio = bio;
3007
3008 /*
3009 * may not be valid. if the low level driver said
3010 * it didn't need a bounce buffer then it better
3011 * not touch req->buffer either...
3012 */
3013 req->buffer = bio_data(bio);
Jens Axboe51da90f2006-07-18 04:14:45 +02003014 req->current_nr_sectors = bio_cur_sectors(bio);
3015 req->hard_cur_sectors = req->current_nr_sectors;
3016 req->sector = req->hard_sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02003018 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 drive_stat_acct(req, nr_sectors, 0);
3020 if (!attempt_front_merge(q, req))
Jens Axboe2e662b62006-07-13 11:55:04 +02003021 elv_merged_request(q, req, el_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 goto out;
3023
Nick Piggin450991b2005-06-28 20:45:13 -07003024 /* ELV_NO_MERGE: elevator says don't/can't merge. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 default:
Nick Piggin450991b2005-06-28 20:45:13 -07003026 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 }
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07003030 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01003031 * This sync check and mask will be re-done in init_request_from_bio(),
3032 * but we need to set it earlier to expose the sync flag to the
3033 * rq allocator and io schedulers.
3034 */
3035 rw_flags = bio_data_dir(bio);
3036 if (sync)
3037 rw_flags |= REQ_RW_SYNC;
3038
3039 /*
Nick Piggin450991b2005-06-28 20:45:13 -07003040 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07003041 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07003042 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01003043 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07003044
Nick Piggin450991b2005-06-28 20:45:13 -07003045 /*
3046 * After dropping the lock and possibly sleeping here, our request
3047 * may now be mergeable after it had proven unmergeable (above).
3048 * We don't worry about that case for efficiency. It won't happen
3049 * often, and the elevators are able to handle it.
3050 */
Tejun Heo52d9e672006-01-06 09:49:58 +01003051 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Nick Piggin450991b2005-06-28 20:45:13 -07003053 spin_lock_irq(q->queue_lock);
3054 if (elv_queue_empty(q))
3055 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 add_request(q, req);
3057out:
Jens Axboe4a534f92005-04-16 15:25:40 -07003058 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 __generic_unplug_device(q);
3060
3061 spin_unlock_irq(q->queue_lock);
3062 return 0;
3063
3064end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02003065 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 return 0;
3067}
3068
3069/*
3070 * If bio->bi_dev is a partition, remap the location
3071 */
3072static inline void blk_partition_remap(struct bio *bio)
3073{
3074 struct block_device *bdev = bio->bi_bdev;
3075
Jens Axboebf2de6f2007-09-27 13:01:25 +02003076 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01003078 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Jens Axboea3623572005-11-01 09:26:16 +01003080 p->sectors[rw] += bio_sectors(bio);
3081 p->ios[rw]++;
3082
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 bio->bi_sector += p->start_sect;
3084 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02003085
3086 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
3087 bdev->bd_dev, bio->bi_sector,
3088 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 }
3090}
3091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092static void handle_bad_sector(struct bio *bio)
3093{
3094 char b[BDEVNAME_SIZE];
3095
3096 printk(KERN_INFO "attempt to access beyond end of device\n");
3097 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
3098 bdevname(bio->bi_bdev, b),
3099 bio->bi_rw,
3100 (unsigned long long)bio->bi_sector + bio_sectors(bio),
3101 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
3102
3103 set_bit(BIO_EOF, &bio->bi_flags);
3104}
3105
Akinobu Mitac17bb492006-12-08 02:39:46 -08003106#ifdef CONFIG_FAIL_MAKE_REQUEST
3107
3108static DECLARE_FAULT_ATTR(fail_make_request);
3109
3110static int __init setup_fail_make_request(char *str)
3111{
3112 return setup_fault_attr(&fail_make_request, str);
3113}
3114__setup("fail_make_request=", setup_fail_make_request);
3115
3116static int should_fail_request(struct bio *bio)
3117{
3118 if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
3119 (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
3120 return should_fail(&fail_make_request, bio->bi_size);
3121
3122 return 0;
3123}
3124
3125static int __init fail_make_request_debugfs(void)
3126{
3127 return init_fault_attr_dentries(&fail_make_request,
3128 "fail_make_request");
3129}
3130
3131late_initcall(fail_make_request_debugfs);
3132
3133#else /* CONFIG_FAIL_MAKE_REQUEST */
3134
3135static inline int should_fail_request(struct bio *bio)
3136{
3137 return 0;
3138}
3139
3140#endif /* CONFIG_FAIL_MAKE_REQUEST */
3141
Jens Axboec07e2b42007-07-18 13:27:58 +02003142/*
3143 * Check whether this bio extends beyond the end of the device.
3144 */
3145static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
3146{
3147 sector_t maxsector;
3148
3149 if (!nr_sectors)
3150 return 0;
3151
3152 /* Test device or partition size, when known. */
3153 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
3154 if (maxsector) {
3155 sector_t sector = bio->bi_sector;
3156
3157 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
3158 /*
3159 * This may well happen - the kernel calls bread()
3160 * without checking the size of the device, e.g., when
3161 * mounting a device.
3162 */
3163 handle_bad_sector(bio);
3164 return 1;
3165 }
3166 }
3167
3168 return 0;
3169}
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171/**
3172 * generic_make_request: hand a buffer to its device driver for I/O
3173 * @bio: The bio describing the location in memory and on the device.
3174 *
3175 * generic_make_request() is used to make I/O requests of block
3176 * devices. It is passed a &struct bio, which describes the I/O that needs
3177 * to be done.
3178 *
3179 * generic_make_request() does not return any status. The
3180 * success/failure status of the request, along with notification of
3181 * completion, is delivered asynchronously through the bio->bi_end_io
3182 * function described (one day) else where.
3183 *
3184 * The caller of generic_make_request must make sure that bi_io_vec
3185 * are set to describe the memory buffer, and that bi_dev and bi_sector are
3186 * set to describe the device address, and the
3187 * bi_end_io and optionally bi_private are set to describe how
3188 * completion notification should be signaled.
3189 *
3190 * generic_make_request and the drivers it calls may use bi_next if this
3191 * bio happens to be merged with someone else, and may change bi_dev and
3192 * bi_sector for remaps as it sees fit. So the values of these fields
3193 * should NOT be depended on after the call to generic_make_request.
3194 */
Neil Brownd89d8792007-05-01 09:53:42 +02003195static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196{
Jens Axboe165125e2007-07-24 09:28:11 +02003197 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08003198 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01003200 dev_t old_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jens Axboec07e2b42007-07-18 13:27:58 +02003204 if (bio_check_eod(bio, nr_sectors))
3205 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207 /*
3208 * Resolve the mapping until finished. (drivers are
3209 * still free to implement/resolve their own stacking
3210 * by explicitly returning 0)
3211 *
3212 * NOTE: we don't repeat the blk_size check for each new device.
3213 * Stacking drivers are expected to know what they are doing.
3214 */
NeilBrown5ddfe962006-10-30 22:07:21 -08003215 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01003216 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 do {
3218 char b[BDEVNAME_SIZE];
3219
3220 q = bdev_get_queue(bio->bi_bdev);
3221 if (!q) {
3222 printk(KERN_ERR
3223 "generic_make_request: Trying to access "
3224 "nonexistent block-device %s (%Lu)\n",
3225 bdevname(bio->bi_bdev, b),
3226 (long long) bio->bi_sector);
3227end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02003228 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 break;
3230 }
3231
Jens Axboe4fa253f2007-07-18 13:13:10 +02003232 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 printk("bio too big device %s (%u > %u)\n",
3234 bdevname(bio->bi_bdev, b),
3235 bio_sectors(bio),
3236 q->max_hw_sectors);
3237 goto end_io;
3238 }
3239
Nick Pigginfde6ad22005-06-23 00:08:53 -07003240 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 goto end_io;
3242
Akinobu Mitac17bb492006-12-08 02:39:46 -08003243 if (should_fail_request(bio))
3244 goto end_io;
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 /*
3247 * If this device has partitions, remap block n
3248 * of partition p to block n+start(p) of the disk.
3249 */
3250 blk_partition_remap(bio);
3251
NeilBrown5ddfe962006-10-30 22:07:21 -08003252 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02003253 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08003254 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01003255
3256 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
3257
NeilBrown5ddfe962006-10-30 22:07:21 -08003258 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01003259 old_dev = bio->bi_bdev->bd_dev;
3260
Jens Axboec07e2b42007-07-18 13:27:58 +02003261 if (bio_check_eod(bio, nr_sectors))
3262 goto end_io;
NeilBrown5ddfe962006-10-30 22:07:21 -08003263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 ret = q->make_request_fn(q, bio);
3265 } while (ret);
3266}
3267
Neil Brownd89d8792007-05-01 09:53:42 +02003268/*
3269 * We only want one ->make_request_fn to be active at a time,
3270 * else stack usage with stacked devices could be a problem.
3271 * So use current->bio_{list,tail} to keep a list of requests
3272 * submited by a make_request_fn function.
3273 * current->bio_tail is also used as a flag to say if
3274 * generic_make_request is currently active in this task or not.
3275 * If it is NULL, then no make_request is active. If it is non-NULL,
3276 * then a make_request is active, and new requests should be added
3277 * at the tail
3278 */
3279void generic_make_request(struct bio *bio)
3280{
3281 if (current->bio_tail) {
3282 /* make_request is active */
3283 *(current->bio_tail) = bio;
3284 bio->bi_next = NULL;
3285 current->bio_tail = &bio->bi_next;
3286 return;
3287 }
3288 /* following loop may be a bit non-obvious, and so deserves some
3289 * explanation.
3290 * Before entering the loop, bio->bi_next is NULL (as all callers
3291 * ensure that) so we have a list with a single bio.
3292 * We pretend that we have just taken it off a longer list, so
3293 * we assign bio_list to the next (which is NULL) and bio_tail
3294 * to &bio_list, thus initialising the bio_list of new bios to be
3295 * added. __generic_make_request may indeed add some more bios
3296 * through a recursive call to generic_make_request. If it
3297 * did, we find a non-NULL value in bio_list and re-enter the loop
3298 * from the top. In this case we really did just take the bio
3299 * of the top of the list (no pretending) and so fixup bio_list and
3300 * bio_tail or bi_next, and call into __generic_make_request again.
3301 *
3302 * The loop was structured like this to make only one call to
3303 * __generic_make_request (which is important as it is large and
3304 * inlined) and to keep the structure simple.
3305 */
3306 BUG_ON(bio->bi_next);
3307 do {
3308 current->bio_list = bio->bi_next;
3309 if (bio->bi_next == NULL)
3310 current->bio_tail = &current->bio_list;
3311 else
3312 bio->bi_next = NULL;
3313 __generic_make_request(bio);
3314 bio = current->bio_list;
3315 } while (bio);
3316 current->bio_tail = NULL; /* deactivate */
3317}
3318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319EXPORT_SYMBOL(generic_make_request);
3320
3321/**
3322 * submit_bio: submit a bio to the block device layer for I/O
3323 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
3324 * @bio: The &struct bio which describes the I/O
3325 *
3326 * submit_bio() is very similar in purpose to generic_make_request(), and
3327 * uses that function to do most of the work. Both are fairly rough
3328 * interfaces, @bio must be presetup and ready for I/O.
3329 *
3330 */
3331void submit_bio(int rw, struct bio *bio)
3332{
3333 int count = bio_sectors(bio);
3334
Jens Axboe22e2c502005-06-27 10:55:12 +02003335 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Jens Axboebf2de6f2007-09-27 13:01:25 +02003337 /*
3338 * If it's a regular read/write or a barrier with data attached,
3339 * go through the normal accounting stuff before submission.
3340 */
3341 if (!bio_empty_barrier(bio)) {
3342
3343 BIO_BUG_ON(!bio->bi_size);
3344 BIO_BUG_ON(!bio->bi_io_vec);
3345
3346 if (rw & WRITE) {
3347 count_vm_events(PGPGOUT, count);
3348 } else {
3349 task_io_account_read(bio->bi_size);
3350 count_vm_events(PGPGIN, count);
3351 }
3352
3353 if (unlikely(block_dump)) {
3354 char b[BDEVNAME_SIZE];
3355 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
3356 current->comm, current->pid,
3357 (rw & WRITE) ? "WRITE" : "READ",
3358 (unsigned long long)bio->bi_sector,
3359 bdevname(bio->bi_bdev,b));
3360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 }
3362
3363 generic_make_request(bio);
3364}
3365
3366EXPORT_SYMBOL(submit_bio);
3367
Adrian Bunk93d17d32005-06-25 14:59:10 -07003368static void blk_recalc_rq_sectors(struct request *rq, int nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
3370 if (blk_fs_request(rq)) {
3371 rq->hard_sector += nsect;
3372 rq->hard_nr_sectors -= nsect;
3373
3374 /*
3375 * Move the I/O submission pointers ahead if required.
3376 */
3377 if ((rq->nr_sectors >= rq->hard_nr_sectors) &&
3378 (rq->sector <= rq->hard_sector)) {
3379 rq->sector = rq->hard_sector;
3380 rq->nr_sectors = rq->hard_nr_sectors;
3381 rq->hard_cur_sectors = bio_cur_sectors(rq->bio);
3382 rq->current_nr_sectors = rq->hard_cur_sectors;
3383 rq->buffer = bio_data(rq->bio);
3384 }
3385
3386 /*
3387 * if total number of sectors is less than the first segment
3388 * size, something has gone terribly wrong
3389 */
3390 if (rq->nr_sectors < rq->current_nr_sectors) {
3391 printk("blk: request botched\n");
3392 rq->nr_sectors = rq->current_nr_sectors;
3393 }
3394 }
3395}
3396
3397static int __end_that_request_first(struct request *req, int uptodate,
3398 int nr_bytes)
3399{
3400 int total_bytes, bio_nbytes, error, next_idx = 0;
3401 struct bio *bio;
3402
Jens Axboe2056a782006-03-23 20:00:26 +01003403 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 /*
3406 * extend uptodate bool to allow < 0 value to be direct io error
3407 */
3408 error = 0;
3409 if (end_io_error(uptodate))
3410 error = !uptodate ? -EIO : uptodate;
3411
3412 /*
3413 * for a REQ_BLOCK_PC request, we want to carry any eventual
3414 * sense key with us all the way through
3415 */
3416 if (!blk_pc_request(req))
3417 req->errors = 0;
3418
3419 if (!uptodate) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02003420 if (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 printk("end_request: I/O error, dev %s, sector %llu\n",
3422 req->rq_disk ? req->rq_disk->disk_name : "?",
3423 (unsigned long long)req->sector);
3424 }
3425
Jens Axboed72d9042005-11-01 08:35:42 +01003426 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01003427 const int rw = rq_data_dir(req);
3428
Jens Axboe53e86062006-01-17 11:09:27 +01003429 disk_stat_add(req->rq_disk, sectors[rw], nr_bytes >> 9);
Jens Axboed72d9042005-11-01 08:35:42 +01003430 }
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 total_bytes = bio_nbytes = 0;
3433 while ((bio = req->bio) != NULL) {
3434 int nbytes;
3435
Jens Axboebf2de6f2007-09-27 13:01:25 +02003436 /*
3437 * For an empty barrier request, the low level driver must
3438 * store a potential error location in ->sector. We pass
3439 * that back up in ->bi_sector.
3440 */
3441 if (blk_empty_barrier(req))
3442 bio->bi_sector = req->sector;
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 if (nr_bytes >= bio->bi_size) {
3445 req->bio = bio->bi_next;
3446 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02003447 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 next_idx = 0;
3449 bio_nbytes = 0;
3450 } else {
3451 int idx = bio->bi_idx + next_idx;
3452
3453 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
3454 blk_dump_rq_flags(req, "__end_that");
3455 printk("%s: bio idx %d >= vcnt %d\n",
3456 __FUNCTION__,
3457 bio->bi_idx, bio->bi_vcnt);
3458 break;
3459 }
3460
3461 nbytes = bio_iovec_idx(bio, idx)->bv_len;
3462 BIO_BUG_ON(nbytes > bio->bi_size);
3463
3464 /*
3465 * not a complete bvec done
3466 */
3467 if (unlikely(nbytes > nr_bytes)) {
3468 bio_nbytes += nr_bytes;
3469 total_bytes += nr_bytes;
3470 break;
3471 }
3472
3473 /*
3474 * advance to the next vector
3475 */
3476 next_idx++;
3477 bio_nbytes += nbytes;
3478 }
3479
3480 total_bytes += nbytes;
3481 nr_bytes -= nbytes;
3482
3483 if ((bio = req->bio)) {
3484 /*
3485 * end more in this run, or just return 'not-done'
3486 */
3487 if (unlikely(nr_bytes <= 0))
3488 break;
3489 }
3490 }
3491
3492 /*
3493 * completely done
3494 */
3495 if (!req->bio)
3496 return 0;
3497
3498 /*
3499 * if the request wasn't completed, update state
3500 */
3501 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02003502 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 bio->bi_idx += next_idx;
3504 bio_iovec(bio)->bv_offset += nr_bytes;
3505 bio_iovec(bio)->bv_len -= nr_bytes;
3506 }
3507
3508 blk_recalc_rq_sectors(req, total_bytes >> 9);
3509 blk_recalc_rq_segments(req);
3510 return 1;
3511}
3512
3513/**
3514 * end_that_request_first - end I/O on a request
3515 * @req: the request being processed
3516 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3517 * @nr_sectors: number of sectors to end I/O on
3518 *
3519 * Description:
3520 * Ends I/O on a number of sectors attached to @req, and sets it up
3521 * for the next range of segments (if any) in the cluster.
3522 *
3523 * Return:
3524 * 0 - we are done with this request, call end_that_request_last()
3525 * 1 - still buffers pending for this request
3526 **/
3527int end_that_request_first(struct request *req, int uptodate, int nr_sectors)
3528{
3529 return __end_that_request_first(req, uptodate, nr_sectors << 9);
3530}
3531
3532EXPORT_SYMBOL(end_that_request_first);
3533
3534/**
3535 * end_that_request_chunk - end I/O on a request
3536 * @req: the request being processed
3537 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3538 * @nr_bytes: number of bytes to complete
3539 *
3540 * Description:
3541 * Ends I/O on a number of bytes attached to @req, and sets it up
3542 * for the next range of segments (if any). Like end_that_request_first(),
3543 * but deals with bytes instead of sectors.
3544 *
3545 * Return:
3546 * 0 - we are done with this request, call end_that_request_last()
3547 * 1 - still buffers pending for this request
3548 **/
3549int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes)
3550{
3551 return __end_that_request_first(req, uptodate, nr_bytes);
3552}
3553
3554EXPORT_SYMBOL(end_that_request_chunk);
3555
3556/*
Jens Axboeff856ba2006-01-09 16:02:34 +01003557 * splice the completion data to a local structure and hand off to
3558 * process_completion_queue() to complete the requests
3559 */
3560static void blk_done_softirq(struct softirq_action *h)
3561{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003562 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01003563
3564 local_irq_disable();
3565 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003566 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01003567 local_irq_enable();
3568
3569 while (!list_empty(&local_list)) {
3570 struct request *rq = list_entry(local_list.next, struct request, donelist);
3571
3572 list_del_init(&rq->donelist);
3573 rq->q->softirq_done_fn(rq);
3574 }
3575}
3576
Satyam Sharmadb47d472007-08-23 09:29:40 +02003577static int __cpuinit blk_cpu_notify(struct notifier_block *self, unsigned long action,
Jens Axboeff856ba2006-01-09 16:02:34 +01003578 void *hcpu)
3579{
3580 /*
3581 * If a CPU goes away, splice its entries to the current CPU
3582 * and trigger a run of the softirq
3583 */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003584 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Jens Axboeff856ba2006-01-09 16:02:34 +01003585 int cpu = (unsigned long) hcpu;
3586
3587 local_irq_disable();
3588 list_splice_init(&per_cpu(blk_cpu_done, cpu),
3589 &__get_cpu_var(blk_cpu_done));
3590 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3591 local_irq_enable();
3592 }
3593
3594 return NOTIFY_OK;
3595}
3596
3597
Satyam Sharmadb47d472007-08-23 09:29:40 +02003598static struct notifier_block blk_cpu_notifier __cpuinitdata = {
Jens Axboeff856ba2006-01-09 16:02:34 +01003599 .notifier_call = blk_cpu_notify,
3600};
3601
Jens Axboeff856ba2006-01-09 16:02:34 +01003602/**
3603 * blk_complete_request - end I/O on a request
3604 * @req: the request being processed
3605 *
3606 * Description:
3607 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02003608 * unless the driver actually implements this in its completion callback
Jens Axboe4fa253f2007-07-18 13:13:10 +02003609 * through requeueing. The actual completion happens out-of-order,
Jens Axboeff856ba2006-01-09 16:02:34 +01003610 * through a softirq handler. The user must have registered a completion
3611 * callback through blk_queue_softirq_done().
3612 **/
3613
3614void blk_complete_request(struct request *req)
3615{
3616 struct list_head *cpu_list;
3617 unsigned long flags;
3618
3619 BUG_ON(!req->q->softirq_done_fn);
3620
3621 local_irq_save(flags);
3622
3623 cpu_list = &__get_cpu_var(blk_cpu_done);
3624 list_add_tail(&req->donelist, cpu_list);
3625 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3626
3627 local_irq_restore(flags);
3628}
3629
3630EXPORT_SYMBOL(blk_complete_request);
3631
3632/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 * queue lock must be held
3634 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01003635void end_that_request_last(struct request *req, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636{
3637 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01003638 int error;
3639
3640 /*
3641 * extend uptodate bool to allow < 0 value to be direct io error
3642 */
3643 error = 0;
3644 if (end_io_error(uptodate))
3645 error = !uptodate ? -EIO : uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 if (unlikely(laptop_mode) && blk_fs_request(req))
3648 laptop_io_completion();
3649
Jens Axboefd0ff8a2006-05-23 11:23:49 +02003650 /*
3651 * Account IO completion. bar_rq isn't accounted as a normal
3652 * IO on queueing nor completion. Accounting the containing
3653 * request is enough.
3654 */
3655 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01003657 const int rw = rq_data_dir(req);
3658
3659 __disk_stat_inc(disk, ios[rw]);
3660 __disk_stat_add(disk, ticks[rw], duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 disk_round_stats(disk);
3662 disk->in_flight--;
3663 }
3664 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01003665 req->end_io(req, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 else
3667 __blk_put_request(req->q, req);
3668}
3669
3670EXPORT_SYMBOL(end_that_request_last);
3671
Jens Axboea0cd1282007-09-21 10:41:07 +02003672static inline void __end_request(struct request *rq, int uptodate,
3673 unsigned int nr_bytes, int dequeue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674{
Jens Axboea0cd1282007-09-21 10:41:07 +02003675 if (!end_that_request_chunk(rq, uptodate, nr_bytes)) {
3676 if (dequeue)
3677 blkdev_dequeue_request(rq);
3678 add_disk_randomness(rq->rq_disk);
3679 end_that_request_last(rq, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 }
3681}
3682
Jens Axboea0cd1282007-09-21 10:41:07 +02003683static unsigned int rq_byte_size(struct request *rq)
3684{
3685 if (blk_fs_request(rq))
3686 return rq->hard_nr_sectors << 9;
3687
3688 return rq->data_len;
3689}
3690
3691/**
3692 * end_queued_request - end all I/O on a queued request
3693 * @rq: the request being processed
3694 * @uptodate: error value or 0/1 uptodate flag
3695 *
3696 * Description:
3697 * Ends all I/O on a request, and removes it from the block layer queues.
3698 * Not suitable for normal IO completion, unless the driver still has
3699 * the request attached to the block layer.
3700 *
3701 **/
3702void end_queued_request(struct request *rq, int uptodate)
3703{
3704 __end_request(rq, uptodate, rq_byte_size(rq), 1);
3705}
3706EXPORT_SYMBOL(end_queued_request);
3707
3708/**
3709 * end_dequeued_request - end all I/O on a dequeued request
3710 * @rq: the request being processed
3711 * @uptodate: error value or 0/1 uptodate flag
3712 *
3713 * Description:
3714 * Ends all I/O on a request. The request must already have been
3715 * dequeued using blkdev_dequeue_request(), as is normally the case
3716 * for most drivers.
3717 *
3718 **/
3719void end_dequeued_request(struct request *rq, int uptodate)
3720{
3721 __end_request(rq, uptodate, rq_byte_size(rq), 0);
3722}
3723EXPORT_SYMBOL(end_dequeued_request);
3724
3725
3726/**
3727 * end_request - end I/O on the current segment of the request
3728 * @rq: the request being processed
3729 * @uptodate: error value or 0/1 uptodate flag
3730 *
3731 * Description:
3732 * Ends I/O on the current segment of a request. If that is the only
3733 * remaining segment, the request is also completed and freed.
3734 *
3735 * This is a remnant of how older block drivers handled IO completions.
3736 * Modern drivers typically end IO on the full request in one go, unless
3737 * they have a residual value to account for. For that case this function
3738 * isn't really useful, unless the residual just happens to be the
3739 * full current segment. In other words, don't use this function in new
3740 * code. Either use end_request_completely(), or the
3741 * end_that_request_chunk() (along with end_that_request_last()) for
3742 * partial completions.
3743 *
3744 **/
3745void end_request(struct request *req, int uptodate)
3746{
3747 __end_request(req, uptodate, req->hard_cur_sectors << 9, 1);
3748}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749EXPORT_SYMBOL(end_request);
3750
NeilBrown66846572007-08-16 13:31:28 +02003751static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
3752 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753{
Jens Axboe4aff5e22006-08-10 08:44:47 +02003754 /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
3755 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
3757 rq->nr_phys_segments = bio_phys_segments(q, bio);
3758 rq->nr_hw_segments = bio_hw_segments(q, bio);
3759 rq->current_nr_sectors = bio_cur_sectors(bio);
3760 rq->hard_cur_sectors = rq->current_nr_sectors;
3761 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
3762 rq->buffer = bio_data(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01003763 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
NeilBrown66846572007-08-16 13:31:28 +02003767 if (bio->bi_bdev)
3768 rq->rq_disk = bio->bi_bdev->bd_disk;
3769}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771int kblockd_schedule_work(struct work_struct *work)
3772{
3773 return queue_work(kblockd_workqueue, work);
3774}
3775
3776EXPORT_SYMBOL(kblockd_schedule_work);
3777
Andrew Morton19a75d82007-05-09 02:33:56 -07003778void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07003780 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
Andrew Morton19a75d82007-05-09 02:33:56 -07003782EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784int __init blk_dev_init(void)
3785{
Jens Axboeff856ba2006-01-09 16:02:34 +01003786 int i;
3787
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 kblockd_workqueue = create_workqueue("kblockd");
3789 if (!kblockd_workqueue)
3790 panic("Failed to create kblockd\n");
3791
3792 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09003793 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
3795 requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02003796 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 iocontext_cachep = kmem_cache_create("blkdev_ioc",
Paul Mundt20c2df82007-07-20 10:11:58 +09003799 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003801 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01003802 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
3803
3804 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07003805 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01003806
Vasily Tarasovf772b3d2007-03-27 08:52:47 +02003807 blk_max_low_pfn = max_low_pfn - 1;
3808 blk_max_pfn = max_pfn - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810 return 0;
3811}
3812
3813/*
3814 * IO Context helper functions
3815 */
3816void put_io_context(struct io_context *ioc)
3817{
3818 if (ioc == NULL)
3819 return;
3820
3821 BUG_ON(atomic_read(&ioc->refcount) == 0);
3822
3823 if (atomic_dec_and_test(&ioc->refcount)) {
Jens Axboee2d74ac2006-03-28 08:59:01 +02003824 struct cfq_io_context *cic;
3825
Al Viro334e94d2006-03-18 15:05:53 -05003826 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 if (ioc->aic && ioc->aic->dtor)
3828 ioc->aic->dtor(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003829 if (ioc->cic_root.rb_node != NULL) {
Jens Axboe7143dd42006-03-28 09:00:28 +02003830 struct rb_node *n = rb_first(&ioc->cic_root);
3831
3832 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003833 cic->dtor(ioc);
3834 }
Al Viro334e94d2006-03-18 15:05:53 -05003835 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
3837 kmem_cache_free(iocontext_cachep, ioc);
3838 }
3839}
3840EXPORT_SYMBOL(put_io_context);
3841
3842/* Called by the exitting task */
3843void exit_io_context(void)
3844{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 struct io_context *ioc;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003846 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Jens Axboe22e2c502005-06-27 10:55:12 +02003848 task_lock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 ioc = current->io_context;
3850 current->io_context = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02003851 task_unlock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Oleg Nesterov25034d72006-08-29 09:15:14 +02003853 ioc->task = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 if (ioc->aic && ioc->aic->exit)
3855 ioc->aic->exit(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003856 if (ioc->cic_root.rb_node != NULL) {
3857 cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
3858 cic->exit(ioc);
3859 }
Oleg Nesterov25034d72006-08-29 09:15:14 +02003860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 put_io_context(ioc);
3862}
3863
3864/*
3865 * If the current task has no IO context then create one and initialise it.
Nick Pigginfb3cc432005-06-28 20:45:15 -07003866 * Otherwise, return its existing IO context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 *
Nick Pigginfb3cc432005-06-28 20:45:15 -07003868 * This returned IO context doesn't have a specifically elevated refcount,
3869 * but since the current task itself holds a reference, the context can be
3870 * used in general code, so long as it stays within `current` context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 */
Jens Axboeb5deef92006-07-19 23:39:40 +02003872static struct io_context *current_io_context(gfp_t gfp_flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
3874 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 struct io_context *ret;
3876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 ret = tsk->io_context;
Nick Pigginfb3cc432005-06-28 20:45:15 -07003878 if (likely(ret))
3879 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Jens Axboeb5deef92006-07-19 23:39:40 +02003881 ret = kmem_cache_alloc_node(iocontext_cachep, gfp_flags, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 if (ret) {
3883 atomic_set(&ret->refcount, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003884 ret->task = current;
Jens Axboefc463792006-08-29 09:05:44 +02003885 ret->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 ret->last_waited = jiffies; /* doesn't matter... */
3887 ret->nr_batch_requests = 0; /* because this is 0 */
3888 ret->aic = NULL;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003889 ret->cic_root.rb_node = NULL;
Jens Axboe4e521c22007-04-24 21:17:33 +02003890 ret->ioc_data = NULL;
Oleg Nesterov9f83e452006-08-21 08:34:15 +02003891 /* make sure set_task_ioprio() sees the settings above */
3892 smp_wmb();
Nick Pigginfb3cc432005-06-28 20:45:15 -07003893 tsk->io_context = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 }
3895
3896 return ret;
3897}
Nick Pigginfb3cc432005-06-28 20:45:15 -07003898
3899/*
3900 * If the current task has no IO context then create one and initialise it.
3901 * If it does have a context, take a ref on it.
3902 *
3903 * This is always called in the context of the task which submitted the I/O.
3904 */
Jens Axboeb5deef92006-07-19 23:39:40 +02003905struct io_context *get_io_context(gfp_t gfp_flags, int node)
Nick Pigginfb3cc432005-06-28 20:45:15 -07003906{
3907 struct io_context *ret;
Jens Axboeb5deef92006-07-19 23:39:40 +02003908 ret = current_io_context(gfp_flags, node);
Nick Pigginfb3cc432005-06-28 20:45:15 -07003909 if (likely(ret))
3910 atomic_inc(&ret->refcount);
3911 return ret;
3912}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913EXPORT_SYMBOL(get_io_context);
3914
3915void copy_io_context(struct io_context **pdst, struct io_context **psrc)
3916{
3917 struct io_context *src = *psrc;
3918 struct io_context *dst = *pdst;
3919
3920 if (src) {
3921 BUG_ON(atomic_read(&src->refcount) == 0);
3922 atomic_inc(&src->refcount);
3923 put_io_context(dst);
3924 *pdst = src;
3925 }
3926}
3927EXPORT_SYMBOL(copy_io_context);
3928
3929void swap_io_context(struct io_context **ioc1, struct io_context **ioc2)
3930{
3931 struct io_context *temp;
3932 temp = *ioc1;
3933 *ioc1 = *ioc2;
3934 *ioc2 = temp;
3935}
3936EXPORT_SYMBOL(swap_io_context);
3937
3938/*
3939 * sysfs parts below
3940 */
3941struct queue_sysfs_entry {
3942 struct attribute attr;
3943 ssize_t (*show)(struct request_queue *, char *);
3944 ssize_t (*store)(struct request_queue *, const char *, size_t);
3945};
3946
3947static ssize_t
3948queue_var_show(unsigned int var, char *page)
3949{
3950 return sprintf(page, "%d\n", var);
3951}
3952
3953static ssize_t
3954queue_var_store(unsigned long *var, const char *page, size_t count)
3955{
3956 char *p = (char *) page;
3957
3958 *var = simple_strtoul(p, &p, 10);
3959 return count;
3960}
3961
3962static ssize_t queue_requests_show(struct request_queue *q, char *page)
3963{
3964 return queue_var_show(q->nr_requests, (page));
3965}
3966
3967static ssize_t
3968queue_requests_store(struct request_queue *q, const char *page, size_t count)
3969{
3970 struct request_list *rl = &q->rq;
Al Viroc981ff92006-03-18 13:51:29 -05003971 unsigned long nr;
3972 int ret = queue_var_store(&nr, page, count);
3973 if (nr < BLKDEV_MIN_RQ)
3974 nr = BLKDEV_MIN_RQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Al Viroc981ff92006-03-18 13:51:29 -05003976 spin_lock_irq(q->queue_lock);
3977 q->nr_requests = nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 blk_queue_congestion_threshold(q);
3979
3980 if (rl->count[READ] >= queue_congestion_on_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003981 blk_set_queue_congested(q, READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 else if (rl->count[READ] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003983 blk_clear_queue_congested(q, READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
3985 if (rl->count[WRITE] >= queue_congestion_on_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003986 blk_set_queue_congested(q, WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 else if (rl->count[WRITE] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003988 blk_clear_queue_congested(q, WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
3990 if (rl->count[READ] >= q->nr_requests) {
3991 blk_set_queue_full(q, READ);
3992 } else if (rl->count[READ]+1 <= q->nr_requests) {
3993 blk_clear_queue_full(q, READ);
3994 wake_up(&rl->wait[READ]);
3995 }
3996
3997 if (rl->count[WRITE] >= q->nr_requests) {
3998 blk_set_queue_full(q, WRITE);
3999 } else if (rl->count[WRITE]+1 <= q->nr_requests) {
4000 blk_clear_queue_full(q, WRITE);
4001 wake_up(&rl->wait[WRITE]);
4002 }
Al Viroc981ff92006-03-18 13:51:29 -05004003 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 return ret;
4005}
4006
4007static ssize_t queue_ra_show(struct request_queue *q, char *page)
4008{
4009 int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
4010
4011 return queue_var_show(ra_kb, (page));
4012}
4013
4014static ssize_t
4015queue_ra_store(struct request_queue *q, const char *page, size_t count)
4016{
4017 unsigned long ra_kb;
4018 ssize_t ret = queue_var_store(&ra_kb, page, count);
4019
4020 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
4022 spin_unlock_irq(q->queue_lock);
4023
4024 return ret;
4025}
4026
4027static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
4028{
4029 int max_sectors_kb = q->max_sectors >> 1;
4030
4031 return queue_var_show(max_sectors_kb, (page));
4032}
4033
4034static ssize_t
4035queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
4036{
4037 unsigned long max_sectors_kb,
4038 max_hw_sectors_kb = q->max_hw_sectors >> 1,
4039 page_kb = 1 << (PAGE_CACHE_SHIFT - 10);
4040 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
4041 int ra_kb;
4042
4043 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
4044 return -EINVAL;
4045 /*
4046 * Take the queue lock to update the readahead and max_sectors
4047 * values synchronously:
4048 */
4049 spin_lock_irq(q->queue_lock);
4050 /*
4051 * Trim readahead window as well, if necessary:
4052 */
4053 ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
4054 if (ra_kb > max_sectors_kb)
4055 q->backing_dev_info.ra_pages =
4056 max_sectors_kb >> (PAGE_CACHE_SHIFT - 10);
4057
4058 q->max_sectors = max_sectors_kb << 1;
4059 spin_unlock_irq(q->queue_lock);
4060
4061 return ret;
4062}
4063
4064static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
4065{
4066 int max_hw_sectors_kb = q->max_hw_sectors >> 1;
4067
4068 return queue_var_show(max_hw_sectors_kb, (page));
4069}
4070
4071
4072static struct queue_sysfs_entry queue_requests_entry = {
4073 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
4074 .show = queue_requests_show,
4075 .store = queue_requests_store,
4076};
4077
4078static struct queue_sysfs_entry queue_ra_entry = {
4079 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
4080 .show = queue_ra_show,
4081 .store = queue_ra_store,
4082};
4083
4084static struct queue_sysfs_entry queue_max_sectors_entry = {
4085 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
4086 .show = queue_max_sectors_show,
4087 .store = queue_max_sectors_store,
4088};
4089
4090static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
4091 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
4092 .show = queue_max_hw_sectors_show,
4093};
4094
4095static struct queue_sysfs_entry queue_iosched_entry = {
4096 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
4097 .show = elv_iosched_show,
4098 .store = elv_iosched_store,
4099};
4100
4101static struct attribute *default_attrs[] = {
4102 &queue_requests_entry.attr,
4103 &queue_ra_entry.attr,
4104 &queue_max_hw_sectors_entry.attr,
4105 &queue_max_sectors_entry.attr,
4106 &queue_iosched_entry.attr,
4107 NULL,
4108};
4109
4110#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
4111
4112static ssize_t
4113queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
4114{
4115 struct queue_sysfs_entry *entry = to_queue(attr);
Jens Axboe165125e2007-07-24 09:28:11 +02004116 struct request_queue *q =
4117 container_of(kobj, struct request_queue, kobj);
Al Viro483f4af2006-03-18 18:34:37 -05004118 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 if (!entry->show)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05004121 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05004122 mutex_lock(&q->sysfs_lock);
4123 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
4124 mutex_unlock(&q->sysfs_lock);
4125 return -ENOENT;
4126 }
4127 res = entry->show(q, page);
4128 mutex_unlock(&q->sysfs_lock);
4129 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130}
4131
4132static ssize_t
4133queue_attr_store(struct kobject *kobj, struct attribute *attr,
4134 const char *page, size_t length)
4135{
4136 struct queue_sysfs_entry *entry = to_queue(attr);
Jens Axboe165125e2007-07-24 09:28:11 +02004137 struct request_queue *q = container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
Al Viro483f4af2006-03-18 18:34:37 -05004139 ssize_t res;
4140
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 if (!entry->store)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05004142 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05004143 mutex_lock(&q->sysfs_lock);
4144 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
4145 mutex_unlock(&q->sysfs_lock);
4146 return -ENOENT;
4147 }
4148 res = entry->store(q, page, length);
4149 mutex_unlock(&q->sysfs_lock);
4150 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151}
4152
4153static struct sysfs_ops queue_sysfs_ops = {
4154 .show = queue_attr_show,
4155 .store = queue_attr_store,
4156};
4157
Adrian Bunk93d17d32005-06-25 14:59:10 -07004158static struct kobj_type queue_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 .sysfs_ops = &queue_sysfs_ops,
4160 .default_attrs = default_attrs,
Al Viro483f4af2006-03-18 18:34:37 -05004161 .release = blk_release_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162};
4163
4164int blk_register_queue(struct gendisk *disk)
4165{
4166 int ret;
4167
Jens Axboe165125e2007-07-24 09:28:11 +02004168 struct request_queue *q = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
4170 if (!q || !q->request_fn)
4171 return -ENXIO;
4172
4173 q->kobj.parent = kobject_get(&disk->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
Al Viro483f4af2006-03-18 18:34:37 -05004175 ret = kobject_add(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 if (ret < 0)
4177 return ret;
4178
Al Viro483f4af2006-03-18 18:34:37 -05004179 kobject_uevent(&q->kobj, KOBJ_ADD);
4180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 ret = elv_register_queue(q);
4182 if (ret) {
Al Viro483f4af2006-03-18 18:34:37 -05004183 kobject_uevent(&q->kobj, KOBJ_REMOVE);
4184 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 return ret;
4186 }
4187
4188 return 0;
4189}
4190
4191void blk_unregister_queue(struct gendisk *disk)
4192{
Jens Axboe165125e2007-07-24 09:28:11 +02004193 struct request_queue *q = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
4195 if (q && q->request_fn) {
4196 elv_unregister_queue(q);
4197
Al Viro483f4af2006-03-18 18:34:37 -05004198 kobject_uevent(&q->kobj, KOBJ_REMOVE);
4199 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 kobject_put(&disk->kobj);
4201 }
4202}