blob: 556a3d354eab51435601dbc614be1e6e4fac6155 [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>
Jens Axboeff856ba2006-01-09 16:02:34 +010028#include <linux/interrupt.h>
29#include <linux/cpu.h>
Jens Axboe2056a782006-03-23 20:00:26 +010030#include <linux/blktrace_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
33 * for max sense size
34 */
35#include <scsi/scsi_cmnd.h>
36
37static void blk_unplug_work(void *data);
38static void blk_unplug_timeout(unsigned long data);
Adrian Bunk93d17d32005-06-25 14:59:10 -070039static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io);
Tejun Heo52d9e672006-01-06 09:49:58 +010040static void init_request_from_bio(struct request *req, struct bio *bio);
41static int __make_request(request_queue_t *q, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * For the allocated request tables
45 */
46static kmem_cache_t *request_cachep;
47
48/*
49 * For queue allocation
50 */
51static kmem_cache_t *requestq_cachep;
52
53/*
54 * For io context allocations
55 */
56static kmem_cache_t *iocontext_cachep;
57
58static wait_queue_head_t congestion_wqh[2] = {
59 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
60 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
61 };
62
63/*
64 * Controlling structure to kblockd
65 */
Jens Axboeff856ba2006-01-09 16:02:34 +010066static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68unsigned long blk_max_low_pfn, blk_max_pfn;
69
70EXPORT_SYMBOL(blk_max_low_pfn);
71EXPORT_SYMBOL(blk_max_pfn);
72
Jens Axboeff856ba2006-01-09 16:02:34 +010073static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* Amount of time in which a process may batch requests */
76#define BLK_BATCH_TIME (HZ/50UL)
77
78/* Number of requests a "batching" process may submit */
79#define BLK_BATCH_REQ 32
80
81/*
82 * Return the threshold (number of used requests) at which the queue is
83 * considered to be congested. It include a little hysteresis to keep the
84 * context switch rate down.
85 */
86static inline int queue_congestion_on_threshold(struct request_queue *q)
87{
88 return q->nr_congestion_on;
89}
90
91/*
92 * The threshold at which a queue is considered to be uncongested
93 */
94static inline int queue_congestion_off_threshold(struct request_queue *q)
95{
96 return q->nr_congestion_off;
97}
98
99static void blk_queue_congestion_threshold(struct request_queue *q)
100{
101 int nr;
102
103 nr = q->nr_requests - (q->nr_requests / 8) + 1;
104 if (nr > q->nr_requests)
105 nr = q->nr_requests;
106 q->nr_congestion_on = nr;
107
108 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
109 if (nr < 1)
110 nr = 1;
111 q->nr_congestion_off = nr;
112}
113
114/*
115 * A queue has just exitted congestion. Note this in the global counter of
116 * congested queues, and wake up anyone who was waiting for requests to be
117 * put back.
118 */
119static void clear_queue_congested(request_queue_t *q, int rw)
120{
121 enum bdi_state bit;
122 wait_queue_head_t *wqh = &congestion_wqh[rw];
123
124 bit = (rw == WRITE) ? BDI_write_congested : BDI_read_congested;
125 clear_bit(bit, &q->backing_dev_info.state);
126 smp_mb__after_clear_bit();
127 if (waitqueue_active(wqh))
128 wake_up(wqh);
129}
130
131/*
132 * A queue has just entered congestion. Flag that in the queue's VM-visible
133 * state flags and increment the global gounter of congested queues.
134 */
135static void set_queue_congested(request_queue_t *q, int rw)
136{
137 enum bdi_state bit;
138
139 bit = (rw == WRITE) ? BDI_write_congested : BDI_read_congested;
140 set_bit(bit, &q->backing_dev_info.state);
141}
142
143/**
144 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
145 * @bdev: device
146 *
147 * Locates the passed device's request queue and returns the address of its
148 * backing_dev_info
149 *
150 * Will return NULL if the request queue cannot be located.
151 */
152struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
153{
154 struct backing_dev_info *ret = NULL;
155 request_queue_t *q = bdev_get_queue(bdev);
156
157 if (q)
158 ret = &q->backing_dev_info;
159 return ret;
160}
161
162EXPORT_SYMBOL(blk_get_backing_dev_info);
163
164void blk_queue_activity_fn(request_queue_t *q, activity_fn *fn, void *data)
165{
166 q->activity_fn = fn;
167 q->activity_data = data;
168}
169
170EXPORT_SYMBOL(blk_queue_activity_fn);
171
172/**
173 * blk_queue_prep_rq - set a prepare_request function for queue
174 * @q: queue
175 * @pfn: prepare_request function
176 *
177 * It's possible for a queue to register a prepare_request callback which
178 * is invoked before the request is handed to the request_fn. The goal of
179 * the function is to prepare a request for I/O, it can be used to build a
180 * cdb from the request data for instance.
181 *
182 */
183void blk_queue_prep_rq(request_queue_t *q, prep_rq_fn *pfn)
184{
185 q->prep_rq_fn = pfn;
186}
187
188EXPORT_SYMBOL(blk_queue_prep_rq);
189
190/**
191 * blk_queue_merge_bvec - set a merge_bvec function for queue
192 * @q: queue
193 * @mbfn: merge_bvec_fn
194 *
195 * Usually queues have static limitations on the max sectors or segments that
196 * we can put in a request. Stacking drivers may have some settings that
197 * are dynamic, and thus we have to query the queue whether it is ok to
198 * add a new bio_vec to a bio at a given offset or not. If the block device
199 * has such limitations, it needs to register a merge_bvec_fn to control
200 * the size of bio's sent to it. Note that a block device *must* allow a
201 * single page to be added to an empty bio. The block device driver may want
202 * to use the bio_split() function to deal with these bio's. By default
203 * no merge_bvec_fn is defined for a queue, and only the fixed limits are
204 * honored.
205 */
206void blk_queue_merge_bvec(request_queue_t *q, merge_bvec_fn *mbfn)
207{
208 q->merge_bvec_fn = mbfn;
209}
210
211EXPORT_SYMBOL(blk_queue_merge_bvec);
212
Jens Axboeff856ba2006-01-09 16:02:34 +0100213void blk_queue_softirq_done(request_queue_t *q, softirq_done_fn *fn)
214{
215 q->softirq_done_fn = fn;
216}
217
218EXPORT_SYMBOL(blk_queue_softirq_done);
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/**
221 * blk_queue_make_request - define an alternate make_request function for a device
222 * @q: the request queue for the device to be affected
223 * @mfn: the alternate make_request function
224 *
225 * Description:
226 * The normal way for &struct bios to be passed to a device
227 * driver is for them to be collected into requests on a request
228 * queue, and then to allow the device driver to select requests
229 * off that queue when it is ready. This works well for many block
230 * devices. However some block devices (typically virtual devices
231 * such as md or lvm) do not benefit from the processing on the
232 * request queue, and are served best by having the requests passed
233 * directly to them. This can be achieved by providing a function
234 * to blk_queue_make_request().
235 *
236 * Caveat:
237 * The driver that does this *must* be able to deal appropriately
238 * with buffers in "highmemory". This can be accomplished by either calling
239 * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
240 * blk_queue_bounce() to create a buffer in normal memory.
241 **/
242void blk_queue_make_request(request_queue_t * q, make_request_fn * mfn)
243{
244 /*
245 * set defaults
246 */
247 q->nr_requests = BLKDEV_MAX_RQ;
Stuart McLaren309c0a12005-09-06 15:17:47 -0700248 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
249 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 q->make_request_fn = mfn;
251 q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
252 q->backing_dev_info.state = 0;
253 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Mike Christiedefd94b2005-12-05 02:37:06 -0600254 blk_queue_max_sectors(q, SAFE_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 blk_queue_hardsect_size(q, 512);
256 blk_queue_dma_alignment(q, 511);
257 blk_queue_congestion_threshold(q);
258 q->nr_batching = BLK_BATCH_REQ;
259
260 q->unplug_thresh = 4; /* hmm */
261 q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */
262 if (q->unplug_delay == 0)
263 q->unplug_delay = 1;
264
265 INIT_WORK(&q->unplug_work, blk_unplug_work, q);
266
267 q->unplug_timer.function = blk_unplug_timeout;
268 q->unplug_timer.data = (unsigned long)q;
269
270 /*
271 * by default assume old behaviour and bounce for any highmem page
272 */
273 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
274
275 blk_queue_activity_fn(q, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278EXPORT_SYMBOL(blk_queue_make_request);
279
280static inline void rq_init(request_queue_t *q, struct request *rq)
281{
282 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100283 INIT_LIST_HEAD(&rq->donelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 rq->errors = 0;
286 rq->rq_status = RQ_ACTIVE;
287 rq->bio = rq->biotail = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +0200288 rq->ioprio = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 rq->buffer = NULL;
290 rq->ref_count = 1;
291 rq->q = q;
292 rq->waiting = NULL;
293 rq->special = NULL;
294 rq->data_len = 0;
295 rq->data = NULL;
Mike Christie df46b9a2005-06-20 14:04:44 +0200296 rq->nr_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 rq->sense = NULL;
298 rq->end_io = NULL;
299 rq->end_io_data = NULL;
Jens Axboeff856ba2006-01-09 16:02:34 +0100300 rq->completion_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/**
304 * blk_queue_ordered - does this queue support ordered writes
Tejun Heo797e7db2006-01-06 09:51:03 +0100305 * @q: the request queue
306 * @ordered: one of QUEUE_ORDERED_*
Jens Axboefddfdea2006-01-31 15:24:34 +0100307 * @prepare_flush_fn: rq setup helper for cache flush ordered writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 *
309 * Description:
310 * For journalled file systems, doing ordered writes on a commit
311 * block instead of explicitly doing wait_on_buffer (which is bad
312 * for performance) can be a big win. Block drivers supporting this
313 * feature should call this function and indicate so.
314 *
315 **/
Tejun Heo797e7db2006-01-06 09:51:03 +0100316int blk_queue_ordered(request_queue_t *q, unsigned ordered,
317 prepare_flush_fn *prepare_flush_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Tejun Heo797e7db2006-01-06 09:51:03 +0100319 if (ordered & (QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH) &&
320 prepare_flush_fn == NULL) {
321 printk(KERN_ERR "blk_queue_ordered: prepare_flush_fn required\n");
322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100324
325 if (ordered != QUEUE_ORDERED_NONE &&
326 ordered != QUEUE_ORDERED_DRAIN &&
327 ordered != QUEUE_ORDERED_DRAIN_FLUSH &&
328 ordered != QUEUE_ORDERED_DRAIN_FUA &&
329 ordered != QUEUE_ORDERED_TAG &&
330 ordered != QUEUE_ORDERED_TAG_FLUSH &&
331 ordered != QUEUE_ORDERED_TAG_FUA) {
332 printk(KERN_ERR "blk_queue_ordered: bad value %d\n", ordered);
333 return -EINVAL;
334 }
335
Tetsuo Takata60481b12006-01-24 10:34:36 +0100336 q->ordered = ordered;
Tejun Heo797e7db2006-01-06 09:51:03 +0100337 q->next_ordered = ordered;
338 q->prepare_flush_fn = prepare_flush_fn;
339
340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343EXPORT_SYMBOL(blk_queue_ordered);
344
345/**
346 * blk_queue_issue_flush_fn - set function for issuing a flush
347 * @q: the request queue
348 * @iff: the function to be called issuing the flush
349 *
350 * Description:
351 * If a driver supports issuing a flush command, the support is notified
352 * to the block layer by defining it through this call.
353 *
354 **/
355void blk_queue_issue_flush_fn(request_queue_t *q, issue_flush_fn *iff)
356{
357 q->issue_flush_fn = iff;
358}
359
360EXPORT_SYMBOL(blk_queue_issue_flush_fn);
361
362/*
363 * Cache flushing for ordered writes handling
364 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100365inline unsigned blk_ordered_cur_seq(request_queue_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Tejun Heo797e7db2006-01-06 09:51:03 +0100367 if (!q->ordseq)
368 return 0;
369 return 1 << ffz(q->ordseq);
370}
371
372unsigned blk_ordered_req_seq(struct request *rq)
373{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 request_queue_t *q = rq->q;
375
Tejun Heo797e7db2006-01-06 09:51:03 +0100376 BUG_ON(q->ordseq == 0);
Tejun Heo8922e162005-10-20 16:23:44 +0200377
Tejun Heo797e7db2006-01-06 09:51:03 +0100378 if (rq == &q->pre_flush_rq)
379 return QUEUE_ORDSEQ_PREFLUSH;
380 if (rq == &q->bar_rq)
381 return QUEUE_ORDSEQ_BAR;
382 if (rq == &q->post_flush_rq)
383 return QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Tejun Heo797e7db2006-01-06 09:51:03 +0100385 if ((rq->flags & REQ_ORDERED_COLOR) ==
386 (q->orig_bar_rq->flags & REQ_ORDERED_COLOR))
387 return QUEUE_ORDSEQ_DRAIN;
388 else
389 return QUEUE_ORDSEQ_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Tejun Heo797e7db2006-01-06 09:51:03 +0100392void blk_ordered_complete_seq(request_queue_t *q, unsigned seq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Tejun Heo797e7db2006-01-06 09:51:03 +0100394 struct request *rq;
395 int uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tejun Heo797e7db2006-01-06 09:51:03 +0100397 if (error && !q->orderr)
398 q->orderr = error;
Tejun Heo8922e162005-10-20 16:23:44 +0200399
Tejun Heo797e7db2006-01-06 09:51:03 +0100400 BUG_ON(q->ordseq & seq);
401 q->ordseq |= seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Tejun Heo797e7db2006-01-06 09:51:03 +0100403 if (blk_ordered_cur_seq(q) != QUEUE_ORDSEQ_DONE)
404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100407 * Okay, sequence complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100409 rq = q->orig_bar_rq;
410 uptodate = q->orderr ? q->orderr : 1;
411
412 q->ordseq = 0;
413
414 end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
415 end_that_request_last(rq, uptodate);
416}
417
418static void pre_flush_end_io(struct request *rq, int error)
419{
420 elv_completed_request(rq->q, rq);
421 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_PREFLUSH, error);
422}
423
424static void bar_end_io(struct request *rq, int error)
425{
426 elv_completed_request(rq->q, rq);
427 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_BAR, error);
428}
429
430static void post_flush_end_io(struct request *rq, int error)
431{
432 elv_completed_request(rq->q, rq);
433 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_POSTFLUSH, error);
434}
435
436static void queue_flush(request_queue_t *q, unsigned which)
437{
438 struct request *rq;
439 rq_end_io_fn *end_io;
440
441 if (which == QUEUE_ORDERED_PREFLUSH) {
442 rq = &q->pre_flush_rq;
443 end_io = pre_flush_end_io;
444 } else {
445 rq = &q->post_flush_rq;
446 end_io = post_flush_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
Tejun Heo797e7db2006-01-06 09:51:03 +0100449 rq_init(q, rq);
450 rq->flags = REQ_HARDBARRIER;
451 rq->elevator_private = NULL;
452 rq->rq_disk = q->bar_rq.rq_disk;
453 rq->rl = NULL;
454 rq->end_io = end_io;
455 q->prepare_flush_fn(q, rq);
456
Tejun Heo30e96562006-02-08 01:01:31 -0800457 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100458}
459
460static inline struct request *start_ordered(request_queue_t *q,
461 struct request *rq)
462{
463 q->bi_size = 0;
464 q->orderr = 0;
465 q->ordered = q->next_ordered;
466 q->ordseq |= QUEUE_ORDSEQ_STARTED;
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100469 * Prep proxy barrier request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100471 blkdev_dequeue_request(rq);
472 q->orig_bar_rq = rq;
473 rq = &q->bar_rq;
474 rq_init(q, rq);
475 rq->flags = bio_data_dir(q->orig_bar_rq->bio);
476 rq->flags |= q->ordered & QUEUE_ORDERED_FUA ? REQ_FUA : 0;
477 rq->elevator_private = NULL;
478 rq->rl = NULL;
479 init_request_from_bio(rq, q->orig_bar_rq->bio);
480 rq->end_io = bar_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Tejun Heo797e7db2006-01-06 09:51:03 +0100482 /*
483 * Queue ordered sequence. As we stack them at the head, we
484 * need to queue in reverse order. Note that we rely on that
485 * no fs request uses ELEVATOR_INSERT_FRONT and thus no fs
486 * request gets inbetween ordered sequence.
487 */
488 if (q->ordered & QUEUE_ORDERED_POSTFLUSH)
489 queue_flush(q, QUEUE_ORDERED_POSTFLUSH);
490 else
491 q->ordseq |= QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Tejun Heo30e96562006-02-08 01:01:31 -0800493 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100494
495 if (q->ordered & QUEUE_ORDERED_PREFLUSH) {
496 queue_flush(q, QUEUE_ORDERED_PREFLUSH);
497 rq = &q->pre_flush_rq;
498 } else
499 q->ordseq |= QUEUE_ORDSEQ_PREFLUSH;
500
501 if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0)
502 q->ordseq |= QUEUE_ORDSEQ_DRAIN;
503 else
504 rq = NULL;
505
506 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Tejun Heo797e7db2006-01-06 09:51:03 +0100509int blk_do_ordered(request_queue_t *q, struct request **rqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800511 struct request *rq = *rqp;
Tejun Heo797e7db2006-01-06 09:51:03 +0100512 int is_barrier = blk_fs_request(rq) && blk_barrier_rq(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Tejun Heo797e7db2006-01-06 09:51:03 +0100514 if (!q->ordseq) {
515 if (!is_barrier)
516 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Tejun Heo797e7db2006-01-06 09:51:03 +0100518 if (q->next_ordered != QUEUE_ORDERED_NONE) {
519 *rqp = start_ordered(q, rq);
520 return 1;
521 } else {
522 /*
523 * This can happen when the queue switches to
524 * ORDERED_NONE while this request is on it.
525 */
526 blkdev_dequeue_request(rq);
527 end_that_request_first(rq, -EOPNOTSUPP,
528 rq->hard_nr_sectors);
529 end_that_request_last(rq, -EOPNOTSUPP);
530 *rqp = NULL;
531 return 0;
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800535 /*
536 * Ordered sequence in progress
537 */
538
539 /* Special requests are not subject to ordering rules. */
540 if (!blk_fs_request(rq) &&
541 rq != &q->pre_flush_rq && rq != &q->post_flush_rq)
542 return 1;
543
Tejun Heo797e7db2006-01-06 09:51:03 +0100544 if (q->ordered & QUEUE_ORDERED_TAG) {
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800545 /* Ordered by tag. Blocking the next barrier is enough. */
Tejun Heo797e7db2006-01-06 09:51:03 +0100546 if (is_barrier && rq != &q->bar_rq)
547 *rqp = NULL;
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800548 } else {
549 /* Ordered by draining. Wait for turn. */
550 WARN_ON(blk_ordered_req_seq(rq) < blk_ordered_cur_seq(q));
551 if (blk_ordered_req_seq(rq) > blk_ordered_cur_seq(q))
552 *rqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
555 return 1;
556}
557
Tejun Heo797e7db2006-01-06 09:51:03 +0100558static int flush_dry_bio_endio(struct bio *bio, unsigned int bytes, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Tejun Heo797e7db2006-01-06 09:51:03 +0100560 request_queue_t *q = bio->bi_private;
561 struct bio_vec *bvec;
562 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Tejun Heo797e7db2006-01-06 09:51:03 +0100564 /*
565 * This is dry run, restore bio_sector and size. We'll finish
566 * this request again with the original bi_end_io after an
567 * error occurs or post flush is complete.
568 */
569 q->bi_size += bytes;
570
571 if (bio->bi_size)
572 return 1;
573
574 /* Rewind bvec's */
575 bio->bi_idx = 0;
576 bio_for_each_segment(bvec, bio, i) {
577 bvec->bv_len += bvec->bv_offset;
578 bvec->bv_offset = 0;
579 }
580
581 /* Reset bio */
582 set_bit(BIO_UPTODATE, &bio->bi_flags);
583 bio->bi_size = q->bi_size;
584 bio->bi_sector -= (q->bi_size >> 9);
585 q->bi_size = 0;
586
587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
Tejun Heo797e7db2006-01-06 09:51:03 +0100589
590static inline int ordered_bio_endio(struct request *rq, struct bio *bio,
591 unsigned int nbytes, int error)
592{
593 request_queue_t *q = rq->q;
594 bio_end_io_t *endio;
595 void *private;
596
597 if (&q->bar_rq != rq)
598 return 0;
599
600 /*
601 * Okay, this is the barrier request in progress, dry finish it.
602 */
603 if (error && !q->orderr)
604 q->orderr = error;
605
606 endio = bio->bi_end_io;
607 private = bio->bi_private;
608 bio->bi_end_io = flush_dry_bio_endio;
609 bio->bi_private = q;
610
611 bio_endio(bio, nbytes, error);
612
613 bio->bi_end_io = endio;
614 bio->bi_private = private;
615
616 return 1;
617}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619/**
620 * blk_queue_bounce_limit - set bounce buffer limit for queue
621 * @q: the request queue for the device
622 * @dma_addr: bus address limit
623 *
624 * Description:
625 * Different hardware can have different requirements as to what pages
626 * it can do I/O directly to. A low level driver can call
627 * blk_queue_bounce_limit to have lower memory pages allocated as bounce
Andi Kleen5ee1af92006-03-08 17:57:26 -0800628 * buffers for doing I/O to pages residing above @page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 **/
630void blk_queue_bounce_limit(request_queue_t *q, u64 dma_addr)
631{
632 unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800633 int dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Andi Kleen5ee1af92006-03-08 17:57:26 -0800635 q->bounce_gfp = GFP_NOIO;
636#if BITS_PER_LONG == 64
637 /* Assume anything <= 4GB can be handled by IOMMU.
638 Actually some IOMMUs can handle everything, but I don't
639 know of a way to test this here. */
Andi Kleen82697302006-06-21 14:48:09 +0200640 if (bounce_pfn < (min_t(u64,0xffffffff,BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
Andi Kleen5ee1af92006-03-08 17:57:26 -0800641 dma = 1;
642 q->bounce_pfn = max_low_pfn;
643#else
644 if (bounce_pfn < blk_max_low_pfn)
645 dma = 1;
646 q->bounce_pfn = bounce_pfn;
647#endif
648 if (dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 init_emergency_isa_pool();
650 q->bounce_gfp = GFP_NOIO | GFP_DMA;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800651 q->bounce_pfn = bounce_pfn;
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655EXPORT_SYMBOL(blk_queue_bounce_limit);
656
657/**
658 * blk_queue_max_sectors - set max sectors for a request for this queue
659 * @q: the request queue for the device
660 * @max_sectors: max sectors in the usual 512b unit
661 *
662 * Description:
663 * Enables a low level driver to set an upper limit on the size of
664 * received requests.
665 **/
Jens Axboe2cb2e142006-01-17 09:04:32 +0100666void blk_queue_max_sectors(request_queue_t *q, unsigned int max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
669 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
670 printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors);
671 }
672
Mike Christiedefd94b2005-12-05 02:37:06 -0600673 if (BLK_DEF_MAX_SECTORS > max_sectors)
674 q->max_hw_sectors = q->max_sectors = max_sectors;
675 else {
676 q->max_sectors = BLK_DEF_MAX_SECTORS;
677 q->max_hw_sectors = max_sectors;
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681EXPORT_SYMBOL(blk_queue_max_sectors);
682
683/**
684 * blk_queue_max_phys_segments - set max phys segments for a request for this queue
685 * @q: the request queue for the device
686 * @max_segments: max number of segments
687 *
688 * Description:
689 * Enables a low level driver to set an upper limit on the number of
690 * physical data segments in a request. This would be the largest sized
691 * scatter list the driver could handle.
692 **/
693void blk_queue_max_phys_segments(request_queue_t *q, unsigned short max_segments)
694{
695 if (!max_segments) {
696 max_segments = 1;
697 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
698 }
699
700 q->max_phys_segments = max_segments;
701}
702
703EXPORT_SYMBOL(blk_queue_max_phys_segments);
704
705/**
706 * blk_queue_max_hw_segments - set max hw segments for a request for this queue
707 * @q: the request queue for the device
708 * @max_segments: max number of segments
709 *
710 * Description:
711 * Enables a low level driver to set an upper limit on the number of
712 * hw data segments in a request. This would be the largest number of
713 * address/length pairs the host adapter can actually give as once
714 * to the device.
715 **/
716void blk_queue_max_hw_segments(request_queue_t *q, unsigned short max_segments)
717{
718 if (!max_segments) {
719 max_segments = 1;
720 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
721 }
722
723 q->max_hw_segments = max_segments;
724}
725
726EXPORT_SYMBOL(blk_queue_max_hw_segments);
727
728/**
729 * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
730 * @q: the request queue for the device
731 * @max_size: max size of segment in bytes
732 *
733 * Description:
734 * Enables a low level driver to set an upper limit on the size of a
735 * coalesced segment
736 **/
737void blk_queue_max_segment_size(request_queue_t *q, unsigned int max_size)
738{
739 if (max_size < PAGE_CACHE_SIZE) {
740 max_size = PAGE_CACHE_SIZE;
741 printk("%s: set to minimum %d\n", __FUNCTION__, max_size);
742 }
743
744 q->max_segment_size = max_size;
745}
746
747EXPORT_SYMBOL(blk_queue_max_segment_size);
748
749/**
750 * blk_queue_hardsect_size - set hardware sector size for the queue
751 * @q: the request queue for the device
752 * @size: the hardware sector size, in bytes
753 *
754 * Description:
755 * This should typically be set to the lowest possible sector size
756 * that the hardware can operate on (possible without reverting to
757 * even internal read-modify-write operations). Usually the default
758 * of 512 covers most hardware.
759 **/
760void blk_queue_hardsect_size(request_queue_t *q, unsigned short size)
761{
762 q->hardsect_size = size;
763}
764
765EXPORT_SYMBOL(blk_queue_hardsect_size);
766
767/*
768 * Returns the minimum that is _not_ zero, unless both are zero.
769 */
770#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
771
772/**
773 * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
774 * @t: the stacking driver (top)
775 * @b: the underlying device (bottom)
776 **/
777void blk_queue_stack_limits(request_queue_t *t, request_queue_t *b)
778{
779 /* zero is "infinity" */
Mike Christiedefd94b2005-12-05 02:37:06 -0600780 t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors);
781 t->max_hw_sectors = min_not_zero(t->max_hw_sectors,b->max_hw_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments);
784 t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments);
785 t->max_segment_size = min(t->max_segment_size,b->max_segment_size);
786 t->hardsect_size = max(t->hardsect_size,b->hardsect_size);
NeilBrown89e5c8b2006-03-27 01:18:02 -0800787 if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags))
788 clear_bit(QUEUE_FLAG_CLUSTER, &t->queue_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
791EXPORT_SYMBOL(blk_queue_stack_limits);
792
793/**
794 * blk_queue_segment_boundary - set boundary rules for segment merging
795 * @q: the request queue for the device
796 * @mask: the memory boundary mask
797 **/
798void blk_queue_segment_boundary(request_queue_t *q, unsigned long mask)
799{
800 if (mask < PAGE_CACHE_SIZE - 1) {
801 mask = PAGE_CACHE_SIZE - 1;
802 printk("%s: set to minimum %lx\n", __FUNCTION__, mask);
803 }
804
805 q->seg_boundary_mask = mask;
806}
807
808EXPORT_SYMBOL(blk_queue_segment_boundary);
809
810/**
811 * blk_queue_dma_alignment - set dma length and memory alignment
812 * @q: the request queue for the device
813 * @mask: alignment mask
814 *
815 * description:
816 * set required memory and length aligment for direct dma transactions.
817 * this is used when buiding direct io requests for the queue.
818 *
819 **/
820void blk_queue_dma_alignment(request_queue_t *q, int mask)
821{
822 q->dma_alignment = mask;
823}
824
825EXPORT_SYMBOL(blk_queue_dma_alignment);
826
827/**
828 * blk_queue_find_tag - find a request by its tag and queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 * @q: The request queue for the device
830 * @tag: The tag of the request
831 *
832 * Notes:
833 * Should be used when a device returns a tag and you want to match
834 * it with a request.
835 *
836 * no locks need be held.
837 **/
838struct request *blk_queue_find_tag(request_queue_t *q, int tag)
839{
840 struct blk_queue_tag *bqt = q->queue_tags;
841
Tejun Heoba025082005-08-05 13:28:11 -0700842 if (unlikely(bqt == NULL || tag >= bqt->real_max_depth))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return NULL;
844
845 return bqt->tag_index[tag];
846}
847
848EXPORT_SYMBOL(blk_queue_find_tag);
849
850/**
James Bottomley492dfb42006-08-30 15:48:45 -0400851 * __blk_free_tags - release a given set of tag maintenance info
852 * @bqt: the tag map to free
853 *
854 * Tries to free the specified @bqt@. Returns true if it was
855 * actually freed and false if there are still references using it
856 */
857static int __blk_free_tags(struct blk_queue_tag *bqt)
858{
859 int retval;
860
861 retval = atomic_dec_and_test(&bqt->refcnt);
862 if (retval) {
863 BUG_ON(bqt->busy);
864 BUG_ON(!list_empty(&bqt->busy_list));
865
866 kfree(bqt->tag_index);
867 bqt->tag_index = NULL;
868
869 kfree(bqt->tag_map);
870 bqt->tag_map = NULL;
871
872 kfree(bqt);
873
874 }
875
876 return retval;
877}
878
879/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * __blk_queue_free_tags - release tag maintenance info
881 * @q: the request queue for the device
882 *
883 * Notes:
884 * blk_cleanup_queue() will take care of calling this function, if tagging
885 * has been used. So there's no need to call this directly.
886 **/
887static void __blk_queue_free_tags(request_queue_t *q)
888{
889 struct blk_queue_tag *bqt = q->queue_tags;
890
891 if (!bqt)
892 return;
893
James Bottomley492dfb42006-08-30 15:48:45 -0400894 __blk_free_tags(bqt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 q->queue_tags = NULL;
897 q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED);
898}
899
James Bottomley492dfb42006-08-30 15:48:45 -0400900
901/**
902 * blk_free_tags - release a given set of tag maintenance info
903 * @bqt: the tag map to free
904 *
905 * For externally managed @bqt@ frees the map. Callers of this
906 * function must guarantee to have released all the queues that
907 * might have been using this tag map.
908 */
909void blk_free_tags(struct blk_queue_tag *bqt)
910{
911 if (unlikely(!__blk_free_tags(bqt)))
912 BUG();
913}
914EXPORT_SYMBOL(blk_free_tags);
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/**
917 * blk_queue_free_tags - release tag maintenance info
918 * @q: the request queue for the device
919 *
920 * Notes:
921 * This is used to disabled tagged queuing to a device, yet leave
922 * queue in function.
923 **/
924void blk_queue_free_tags(request_queue_t *q)
925{
926 clear_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
927}
928
929EXPORT_SYMBOL(blk_queue_free_tags);
930
931static int
932init_tag_map(request_queue_t *q, struct blk_queue_tag *tags, int depth)
933{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 struct request **tag_index;
935 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -0700936 int nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
James Bottomley492dfb42006-08-30 15:48:45 -0400938 if (q && depth > q->nr_requests * 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 depth = q->nr_requests * 2;
940 printk(KERN_ERR "%s: adjusted depth to %d\n",
941 __FUNCTION__, depth);
942 }
943
Jens Axboef68110f2006-03-08 13:31:44 +0100944 tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (!tag_index)
946 goto fail;
947
Tejun Heof7d37d02005-06-23 00:08:50 -0700948 nr_ulongs = ALIGN(depth, BITS_PER_LONG) / BITS_PER_LONG;
Jens Axboef68110f2006-03-08 13:31:44 +0100949 tag_map = kzalloc(nr_ulongs * sizeof(unsigned long), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (!tag_map)
951 goto fail;
952
Tejun Heoba025082005-08-05 13:28:11 -0700953 tags->real_max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 tags->max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 tags->tag_index = tag_index;
956 tags->tag_map = tag_map;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return 0;
959fail:
960 kfree(tag_index);
961 return -ENOMEM;
962}
963
James Bottomley492dfb42006-08-30 15:48:45 -0400964static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q,
965 int depth)
966{
967 struct blk_queue_tag *tags;
968
969 tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC);
970 if (!tags)
971 goto fail;
972
973 if (init_tag_map(q, tags, depth))
974 goto fail;
975
976 INIT_LIST_HEAD(&tags->busy_list);
977 tags->busy = 0;
978 atomic_set(&tags->refcnt, 1);
979 return tags;
980fail:
981 kfree(tags);
982 return NULL;
983}
984
985/**
986 * blk_init_tags - initialize the tag info for an external tag map
987 * @depth: the maximum queue depth supported
988 * @tags: the tag to use
989 **/
990struct blk_queue_tag *blk_init_tags(int depth)
991{
992 return __blk_queue_init_tags(NULL, depth);
993}
994EXPORT_SYMBOL(blk_init_tags);
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/**
997 * blk_queue_init_tags - initialize the queue tag info
998 * @q: the request queue for the device
999 * @depth: the maximum queue depth supported
1000 * @tags: the tag to use
1001 **/
1002int blk_queue_init_tags(request_queue_t *q, int depth,
1003 struct blk_queue_tag *tags)
1004{
1005 int rc;
1006
1007 BUG_ON(tags && q->queue_tags && tags != q->queue_tags);
1008
1009 if (!tags && !q->queue_tags) {
James Bottomley492dfb42006-08-30 15:48:45 -04001010 tags = __blk_queue_init_tags(q, depth);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (!tags)
1013 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 } else if (q->queue_tags) {
1015 if ((rc = blk_queue_resize_tags(q, depth)))
1016 return rc;
1017 set_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
1018 return 0;
1019 } else
1020 atomic_inc(&tags->refcnt);
1021
1022 /*
1023 * assign it, all done
1024 */
1025 q->queue_tags = tags;
1026 q->queue_flags |= (1 << QUEUE_FLAG_QUEUED);
1027 return 0;
1028fail:
1029 kfree(tags);
1030 return -ENOMEM;
1031}
1032
1033EXPORT_SYMBOL(blk_queue_init_tags);
1034
1035/**
1036 * blk_queue_resize_tags - change the queueing depth
1037 * @q: the request queue for the device
1038 * @new_depth: the new max command queueing depth
1039 *
1040 * Notes:
1041 * Must be called with the queue lock held.
1042 **/
1043int blk_queue_resize_tags(request_queue_t *q, int new_depth)
1044{
1045 struct blk_queue_tag *bqt = q->queue_tags;
1046 struct request **tag_index;
1047 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -07001048 int max_depth, nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (!bqt)
1051 return -ENXIO;
1052
1053 /*
Tejun Heoba025082005-08-05 13:28:11 -07001054 * if we already have large enough real_max_depth. just
1055 * adjust max_depth. *NOTE* as requests with tag value
1056 * between new_depth and real_max_depth can be in-flight, tag
1057 * map can not be shrunk blindly here.
1058 */
1059 if (new_depth <= bqt->real_max_depth) {
1060 bqt->max_depth = new_depth;
1061 return 0;
1062 }
1063
1064 /*
James Bottomley492dfb42006-08-30 15:48:45 -04001065 * Currently cannot replace a shared tag map with a new
1066 * one, so error out if this is the case
1067 */
1068 if (atomic_read(&bqt->refcnt) != 1)
1069 return -EBUSY;
1070
1071 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 * save the old state info, so we can copy it back
1073 */
1074 tag_index = bqt->tag_index;
1075 tag_map = bqt->tag_map;
Tejun Heoba025082005-08-05 13:28:11 -07001076 max_depth = bqt->real_max_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 if (init_tag_map(q, bqt, new_depth))
1079 return -ENOMEM;
1080
1081 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
Tejun Heof7d37d02005-06-23 00:08:50 -07001082 nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
Tejun Heofa72b902005-06-23 00:08:49 -07001083 memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 kfree(tag_index);
1086 kfree(tag_map);
1087 return 0;
1088}
1089
1090EXPORT_SYMBOL(blk_queue_resize_tags);
1091
1092/**
1093 * blk_queue_end_tag - end tag operations for a request
1094 * @q: the request queue for the device
1095 * @rq: the request that has completed
1096 *
1097 * Description:
1098 * Typically called when end_that_request_first() returns 0, meaning
1099 * all transfers have been done for a request. It's important to call
1100 * this function before end_that_request_last(), as that will put the
1101 * request back on the free list thus corrupting the internal tag list.
1102 *
1103 * Notes:
1104 * queue lock must be held.
1105 **/
1106void blk_queue_end_tag(request_queue_t *q, struct request *rq)
1107{
1108 struct blk_queue_tag *bqt = q->queue_tags;
1109 int tag = rq->tag;
1110
1111 BUG_ON(tag == -1);
1112
Tejun Heoba025082005-08-05 13:28:11 -07001113 if (unlikely(tag >= bqt->real_max_depth))
Tejun Heo040c9282005-06-23 00:08:51 -07001114 /*
1115 * This can happen after tag depth has been reduced.
1116 * FIXME: how about a warning or info message here?
1117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return;
1119
1120 if (unlikely(!__test_and_clear_bit(tag, bqt->tag_map))) {
Tejun Heo040c9282005-06-23 00:08:51 -07001121 printk(KERN_ERR "%s: attempt to clear non-busy tag (%d)\n",
1122 __FUNCTION__, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return;
1124 }
1125
1126 list_del_init(&rq->queuelist);
1127 rq->flags &= ~REQ_QUEUED;
1128 rq->tag = -1;
1129
1130 if (unlikely(bqt->tag_index[tag] == NULL))
Tejun Heo040c9282005-06-23 00:08:51 -07001131 printk(KERN_ERR "%s: tag %d is missing\n",
1132 __FUNCTION__, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 bqt->tag_index[tag] = NULL;
1135 bqt->busy--;
1136}
1137
1138EXPORT_SYMBOL(blk_queue_end_tag);
1139
1140/**
1141 * blk_queue_start_tag - find a free tag and assign it
1142 * @q: the request queue for the device
1143 * @rq: the block request that needs tagging
1144 *
1145 * Description:
1146 * This can either be used as a stand-alone helper, or possibly be
1147 * assigned as the queue &prep_rq_fn (in which case &struct request
1148 * automagically gets a tag assigned). Note that this function
1149 * assumes that any type of request can be queued! if this is not
1150 * true for your device, you must check the request type before
1151 * calling this function. The request will also be removed from
1152 * the request queue, so it's the drivers responsibility to readd
1153 * it if it should need to be restarted for some reason.
1154 *
1155 * Notes:
1156 * queue lock must be held.
1157 **/
1158int blk_queue_start_tag(request_queue_t *q, struct request *rq)
1159{
1160 struct blk_queue_tag *bqt = q->queue_tags;
Tejun Heo2bf0fda2005-06-23 00:08:48 -07001161 int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 if (unlikely((rq->flags & REQ_QUEUED))) {
1164 printk(KERN_ERR
Tejun Heo040c9282005-06-23 00:08:51 -07001165 "%s: request %p for device [%s] already tagged %d",
1166 __FUNCTION__, rq,
1167 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 BUG();
1169 }
1170
Tejun Heo2bf0fda2005-06-23 00:08:48 -07001171 tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth);
1172 if (tag >= bqt->max_depth)
1173 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 __set_bit(tag, bqt->tag_map);
1176
1177 rq->flags |= REQ_QUEUED;
1178 rq->tag = tag;
1179 bqt->tag_index[tag] = rq;
1180 blkdev_dequeue_request(rq);
1181 list_add(&rq->queuelist, &bqt->busy_list);
1182 bqt->busy++;
1183 return 0;
1184}
1185
1186EXPORT_SYMBOL(blk_queue_start_tag);
1187
1188/**
1189 * blk_queue_invalidate_tags - invalidate all pending tags
1190 * @q: the request queue for the device
1191 *
1192 * Description:
1193 * Hardware conditions may dictate a need to stop all pending requests.
1194 * In this case, we will safely clear the block side of the tag queue and
1195 * readd all requests to the request queue in the right order.
1196 *
1197 * Notes:
1198 * queue lock must be held.
1199 **/
1200void blk_queue_invalidate_tags(request_queue_t *q)
1201{
1202 struct blk_queue_tag *bqt = q->queue_tags;
1203 struct list_head *tmp, *n;
1204 struct request *rq;
1205
1206 list_for_each_safe(tmp, n, &bqt->busy_list) {
1207 rq = list_entry_rq(tmp);
1208
1209 if (rq->tag == -1) {
Tejun Heo040c9282005-06-23 00:08:51 -07001210 printk(KERN_ERR
1211 "%s: bad tag found on list\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 list_del_init(&rq->queuelist);
1213 rq->flags &= ~REQ_QUEUED;
1214 } else
1215 blk_queue_end_tag(q, rq);
1216
1217 rq->flags &= ~REQ_STARTED;
1218 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1219 }
1220}
1221
1222EXPORT_SYMBOL(blk_queue_invalidate_tags);
1223
Arjan van de Ven64100092006-01-06 09:46:02 +01001224static const char * const rq_flags[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 "REQ_RW",
1226 "REQ_FAILFAST",
Tejun Heo8922e162005-10-20 16:23:44 +02001227 "REQ_SORTED",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 "REQ_SOFTBARRIER",
1229 "REQ_HARDBARRIER",
Tejun Heo797e7db2006-01-06 09:51:03 +01001230 "REQ_FUA",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 "REQ_CMD",
1232 "REQ_NOMERGE",
1233 "REQ_STARTED",
1234 "REQ_DONTPREP",
1235 "REQ_QUEUED",
Tejun Heocb98fc82005-10-28 08:29:39 +02001236 "REQ_ELVPRIV",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 "REQ_PC",
1238 "REQ_BLOCK_PC",
1239 "REQ_SENSE",
1240 "REQ_FAILED",
1241 "REQ_QUIET",
1242 "REQ_SPECIAL",
1243 "REQ_DRIVE_CMD",
1244 "REQ_DRIVE_TASK",
1245 "REQ_DRIVE_TASKFILE",
1246 "REQ_PREEMPT",
1247 "REQ_PM_SUSPEND",
1248 "REQ_PM_RESUME",
1249 "REQ_PM_SHUTDOWN",
Tejun Heo797e7db2006-01-06 09:51:03 +01001250 "REQ_ORDERED_COLOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251};
1252
1253void blk_dump_rq_flags(struct request *rq, char *msg)
1254{
1255 int bit;
1256
1257 printk("%s: dev %s: flags = ", msg,
1258 rq->rq_disk ? rq->rq_disk->disk_name : "?");
1259 bit = 0;
1260 do {
1261 if (rq->flags & (1 << bit))
1262 printk("%s ", rq_flags[bit]);
1263 bit++;
1264 } while (bit < __REQ_NR_BITS);
1265
1266 printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector,
1267 rq->nr_sectors,
1268 rq->current_nr_sectors);
1269 printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len);
1270
1271 if (rq->flags & (REQ_BLOCK_PC | REQ_PC)) {
1272 printk("cdb: ");
1273 for (bit = 0; bit < sizeof(rq->cmd); bit++)
1274 printk("%02x ", rq->cmd[bit]);
1275 printk("\n");
1276 }
1277}
1278
1279EXPORT_SYMBOL(blk_dump_rq_flags);
1280
1281void blk_recount_segments(request_queue_t *q, struct bio *bio)
1282{
1283 struct bio_vec *bv, *bvprv = NULL;
1284 int i, nr_phys_segs, nr_hw_segs, seg_size, hw_seg_size, cluster;
1285 int high, highprv = 1;
1286
1287 if (unlikely(!bio->bi_io_vec))
1288 return;
1289
1290 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
1291 hw_seg_size = seg_size = nr_phys_segs = nr_hw_segs = 0;
1292 bio_for_each_segment(bv, bio, i) {
1293 /*
1294 * the trick here is making sure that a high page is never
1295 * considered part of another segment, since that might
1296 * change with the bounce page.
1297 */
1298 high = page_to_pfn(bv->bv_page) >= q->bounce_pfn;
1299 if (high || highprv)
1300 goto new_hw_segment;
1301 if (cluster) {
1302 if (seg_size + bv->bv_len > q->max_segment_size)
1303 goto new_segment;
1304 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
1305 goto new_segment;
1306 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
1307 goto new_segment;
1308 if (BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
1309 goto new_hw_segment;
1310
1311 seg_size += bv->bv_len;
1312 hw_seg_size += bv->bv_len;
1313 bvprv = bv;
1314 continue;
1315 }
1316new_segment:
1317 if (BIOVEC_VIRT_MERGEABLE(bvprv, bv) &&
1318 !BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len)) {
1319 hw_seg_size += bv->bv_len;
1320 } else {
1321new_hw_segment:
1322 if (hw_seg_size > bio->bi_hw_front_size)
1323 bio->bi_hw_front_size = hw_seg_size;
1324 hw_seg_size = BIOVEC_VIRT_START_SIZE(bv) + bv->bv_len;
1325 nr_hw_segs++;
1326 }
1327
1328 nr_phys_segs++;
1329 bvprv = bv;
1330 seg_size = bv->bv_len;
1331 highprv = high;
1332 }
1333 if (hw_seg_size > bio->bi_hw_back_size)
1334 bio->bi_hw_back_size = hw_seg_size;
1335 if (nr_hw_segs == 1 && hw_seg_size > bio->bi_hw_front_size)
1336 bio->bi_hw_front_size = hw_seg_size;
1337 bio->bi_phys_segments = nr_phys_segs;
1338 bio->bi_hw_segments = nr_hw_segs;
1339 bio->bi_flags |= (1 << BIO_SEG_VALID);
1340}
1341
1342
Adrian Bunk93d17d32005-06-25 14:59:10 -07001343static int blk_phys_contig_segment(request_queue_t *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 struct bio *nxt)
1345{
1346 if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
1347 return 0;
1348
1349 if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
1350 return 0;
1351 if (bio->bi_size + nxt->bi_size > q->max_segment_size)
1352 return 0;
1353
1354 /*
1355 * bio and nxt are contigous in memory, check if the queue allows
1356 * these two to be merged into one
1357 */
1358 if (BIO_SEG_BOUNDARY(q, bio, nxt))
1359 return 1;
1360
1361 return 0;
1362}
1363
Adrian Bunk93d17d32005-06-25 14:59:10 -07001364static int blk_hw_contig_segment(request_queue_t *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 struct bio *nxt)
1366{
1367 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1368 blk_recount_segments(q, bio);
1369 if (unlikely(!bio_flagged(nxt, BIO_SEG_VALID)))
1370 blk_recount_segments(q, nxt);
1371 if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)) ||
1372 BIOVEC_VIRT_OVERSIZE(bio->bi_hw_front_size + bio->bi_hw_back_size))
1373 return 0;
1374 if (bio->bi_size + nxt->bi_size > q->max_segment_size)
1375 return 0;
1376
1377 return 1;
1378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/*
1381 * map a request to scatterlist, return number of sg entries setup. Caller
1382 * must make sure sg can hold rq->nr_phys_segments entries
1383 */
1384int blk_rq_map_sg(request_queue_t *q, struct request *rq, struct scatterlist *sg)
1385{
1386 struct bio_vec *bvec, *bvprv;
1387 struct bio *bio;
1388 int nsegs, i, cluster;
1389
1390 nsegs = 0;
1391 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
1392
1393 /*
1394 * for each bio in rq
1395 */
1396 bvprv = NULL;
1397 rq_for_each_bio(bio, rq) {
1398 /*
1399 * for each segment in bio
1400 */
1401 bio_for_each_segment(bvec, bio, i) {
1402 int nbytes = bvec->bv_len;
1403
1404 if (bvprv && cluster) {
1405 if (sg[nsegs - 1].length + nbytes > q->max_segment_size)
1406 goto new_segment;
1407
1408 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
1409 goto new_segment;
1410 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
1411 goto new_segment;
1412
1413 sg[nsegs - 1].length += nbytes;
1414 } else {
1415new_segment:
1416 memset(&sg[nsegs],0,sizeof(struct scatterlist));
1417 sg[nsegs].page = bvec->bv_page;
1418 sg[nsegs].length = nbytes;
1419 sg[nsegs].offset = bvec->bv_offset;
1420
1421 nsegs++;
1422 }
1423 bvprv = bvec;
1424 } /* segments in bio */
1425 } /* bios in rq */
1426
1427 return nsegs;
1428}
1429
1430EXPORT_SYMBOL(blk_rq_map_sg);
1431
1432/*
1433 * the standard queue merge functions, can be overridden with device
1434 * specific ones if so desired
1435 */
1436
1437static inline int ll_new_mergeable(request_queue_t *q,
1438 struct request *req,
1439 struct bio *bio)
1440{
1441 int nr_phys_segs = bio_phys_segments(q, bio);
1442
1443 if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
1444 req->flags |= REQ_NOMERGE;
1445 if (req == q->last_merge)
1446 q->last_merge = NULL;
1447 return 0;
1448 }
1449
1450 /*
1451 * A hw segment is just getting larger, bump just the phys
1452 * counter.
1453 */
1454 req->nr_phys_segments += nr_phys_segs;
1455 return 1;
1456}
1457
1458static inline int ll_new_hw_segment(request_queue_t *q,
1459 struct request *req,
1460 struct bio *bio)
1461{
1462 int nr_hw_segs = bio_hw_segments(q, bio);
1463 int nr_phys_segs = bio_phys_segments(q, bio);
1464
1465 if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments
1466 || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
1467 req->flags |= REQ_NOMERGE;
1468 if (req == q->last_merge)
1469 q->last_merge = NULL;
1470 return 0;
1471 }
1472
1473 /*
1474 * This will form the start of a new hw segment. Bump both
1475 * counters.
1476 */
1477 req->nr_hw_segments += nr_hw_segs;
1478 req->nr_phys_segments += nr_phys_segs;
1479 return 1;
1480}
1481
1482static int ll_back_merge_fn(request_queue_t *q, struct request *req,
1483 struct bio *bio)
1484{
Mike Christiedefd94b2005-12-05 02:37:06 -06001485 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 int len;
1487
Mike Christiedefd94b2005-12-05 02:37:06 -06001488 if (unlikely(blk_pc_request(req)))
1489 max_sectors = q->max_hw_sectors;
1490 else
1491 max_sectors = q->max_sectors;
1492
1493 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 req->flags |= REQ_NOMERGE;
1495 if (req == q->last_merge)
1496 q->last_merge = NULL;
1497 return 0;
1498 }
1499 if (unlikely(!bio_flagged(req->biotail, BIO_SEG_VALID)))
1500 blk_recount_segments(q, req->biotail);
1501 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1502 blk_recount_segments(q, bio);
1503 len = req->biotail->bi_hw_back_size + bio->bi_hw_front_size;
1504 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)) &&
1505 !BIOVEC_VIRT_OVERSIZE(len)) {
1506 int mergeable = ll_new_mergeable(q, req, bio);
1507
1508 if (mergeable) {
1509 if (req->nr_hw_segments == 1)
1510 req->bio->bi_hw_front_size = len;
1511 if (bio->bi_hw_segments == 1)
1512 bio->bi_hw_back_size = len;
1513 }
1514 return mergeable;
1515 }
1516
1517 return ll_new_hw_segment(q, req, bio);
1518}
1519
1520static int ll_front_merge_fn(request_queue_t *q, struct request *req,
1521 struct bio *bio)
1522{
Mike Christiedefd94b2005-12-05 02:37:06 -06001523 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 int len;
1525
Mike Christiedefd94b2005-12-05 02:37:06 -06001526 if (unlikely(blk_pc_request(req)))
1527 max_sectors = q->max_hw_sectors;
1528 else
1529 max_sectors = q->max_sectors;
1530
1531
1532 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 req->flags |= REQ_NOMERGE;
1534 if (req == q->last_merge)
1535 q->last_merge = NULL;
1536 return 0;
1537 }
1538 len = bio->bi_hw_back_size + req->bio->bi_hw_front_size;
1539 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1540 blk_recount_segments(q, bio);
1541 if (unlikely(!bio_flagged(req->bio, BIO_SEG_VALID)))
1542 blk_recount_segments(q, req->bio);
1543 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)) &&
1544 !BIOVEC_VIRT_OVERSIZE(len)) {
1545 int mergeable = ll_new_mergeable(q, req, bio);
1546
1547 if (mergeable) {
1548 if (bio->bi_hw_segments == 1)
1549 bio->bi_hw_front_size = len;
1550 if (req->nr_hw_segments == 1)
1551 req->biotail->bi_hw_back_size = len;
1552 }
1553 return mergeable;
1554 }
1555
1556 return ll_new_hw_segment(q, req, bio);
1557}
1558
1559static int ll_merge_requests_fn(request_queue_t *q, struct request *req,
1560 struct request *next)
1561{
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001562 int total_phys_segments;
1563 int total_hw_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 /*
1566 * First check if the either of the requests are re-queued
1567 * requests. Can't merge them if they are.
1568 */
1569 if (req->special || next->special)
1570 return 0;
1571
1572 /*
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001573 * Will it become too large?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
1575 if ((req->nr_sectors + next->nr_sectors) > q->max_sectors)
1576 return 0;
1577
1578 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
1579 if (blk_phys_contig_segment(q, req->biotail, next->bio))
1580 total_phys_segments--;
1581
1582 if (total_phys_segments > q->max_phys_segments)
1583 return 0;
1584
1585 total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
1586 if (blk_hw_contig_segment(q, req->biotail, next->bio)) {
1587 int len = req->biotail->bi_hw_back_size + next->bio->bi_hw_front_size;
1588 /*
1589 * propagate the combined length to the end of the requests
1590 */
1591 if (req->nr_hw_segments == 1)
1592 req->bio->bi_hw_front_size = len;
1593 if (next->nr_hw_segments == 1)
1594 next->biotail->bi_hw_back_size = len;
1595 total_hw_segments--;
1596 }
1597
1598 if (total_hw_segments > q->max_hw_segments)
1599 return 0;
1600
1601 /* Merge is OK... */
1602 req->nr_phys_segments = total_phys_segments;
1603 req->nr_hw_segments = total_hw_segments;
1604 return 1;
1605}
1606
1607/*
1608 * "plug" the device if there are no outstanding requests: this will
1609 * force the transfer to start only after we have put all the requests
1610 * on the list.
1611 *
1612 * This is called with interrupts off and no requests on the queue and
1613 * with the queue lock held.
1614 */
1615void blk_plug_device(request_queue_t *q)
1616{
1617 WARN_ON(!irqs_disabled());
1618
1619 /*
1620 * don't plug a stopped queue, it must be paired with blk_start_queue()
1621 * which will restart the queueing
1622 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001623 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return;
1625
Jens Axboe2056a782006-03-23 20:00:26 +01001626 if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +01001628 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
1629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
1632EXPORT_SYMBOL(blk_plug_device);
1633
1634/*
1635 * remove the queue from the plugged list, if present. called with
1636 * queue lock held and interrupts disabled.
1637 */
1638int blk_remove_plug(request_queue_t *q)
1639{
1640 WARN_ON(!irqs_disabled());
1641
1642 if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
1643 return 0;
1644
1645 del_timer(&q->unplug_timer);
1646 return 1;
1647}
1648
1649EXPORT_SYMBOL(blk_remove_plug);
1650
1651/*
1652 * remove the plug and let it rip..
1653 */
1654void __generic_unplug_device(request_queue_t *q)
1655{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001656 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 return;
1658
1659 if (!blk_remove_plug(q))
1660 return;
1661
Jens Axboe22e2c502005-06-27 10:55:12 +02001662 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664EXPORT_SYMBOL(__generic_unplug_device);
1665
1666/**
1667 * generic_unplug_device - fire a request queue
1668 * @q: The &request_queue_t in question
1669 *
1670 * Description:
1671 * Linux uses plugging to build bigger requests queues before letting
1672 * the device have at them. If a queue is plugged, the I/O scheduler
1673 * is still adding and merging requests on the queue. Once the queue
1674 * gets unplugged, the request_fn defined for the queue is invoked and
1675 * transfers started.
1676 **/
1677void generic_unplug_device(request_queue_t *q)
1678{
1679 spin_lock_irq(q->queue_lock);
1680 __generic_unplug_device(q);
1681 spin_unlock_irq(q->queue_lock);
1682}
1683EXPORT_SYMBOL(generic_unplug_device);
1684
1685static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
1686 struct page *page)
1687{
1688 request_queue_t *q = bdi->unplug_io_data;
1689
1690 /*
1691 * devices don't necessarily have an ->unplug_fn defined
1692 */
Jens Axboe2056a782006-03-23 20:00:26 +01001693 if (q->unplug_fn) {
1694 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1695 q->rq.count[READ] + q->rq.count[WRITE]);
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 q->unplug_fn(q);
Jens Axboe2056a782006-03-23 20:00:26 +01001698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
1701static void blk_unplug_work(void *data)
1702{
1703 request_queue_t *q = data;
1704
Jens Axboe2056a782006-03-23 20:00:26 +01001705 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1706 q->rq.count[READ] + q->rq.count[WRITE]);
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 q->unplug_fn(q);
1709}
1710
1711static void blk_unplug_timeout(unsigned long data)
1712{
1713 request_queue_t *q = (request_queue_t *)data;
1714
Jens Axboe2056a782006-03-23 20:00:26 +01001715 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
1716 q->rq.count[READ] + q->rq.count[WRITE]);
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 kblockd_schedule_work(&q->unplug_work);
1719}
1720
1721/**
1722 * blk_start_queue - restart a previously stopped queue
1723 * @q: The &request_queue_t in question
1724 *
1725 * Description:
1726 * blk_start_queue() will clear the stop flag on the queue, and call
1727 * the request_fn for the queue if it was in a stopped state when
1728 * entered. Also see blk_stop_queue(). Queue lock must be held.
1729 **/
1730void blk_start_queue(request_queue_t *q)
1731{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001732 WARN_ON(!irqs_disabled());
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1735
1736 /*
1737 * one level of recursion is ok and is much faster than kicking
1738 * the unplug handling
1739 */
1740 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1741 q->request_fn(q);
1742 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1743 } else {
1744 blk_plug_device(q);
1745 kblockd_schedule_work(&q->unplug_work);
1746 }
1747}
1748
1749EXPORT_SYMBOL(blk_start_queue);
1750
1751/**
1752 * blk_stop_queue - stop a queue
1753 * @q: The &request_queue_t in question
1754 *
1755 * Description:
1756 * The Linux block layer assumes that a block driver will consume all
1757 * entries on the request queue when the request_fn strategy is called.
1758 * Often this will not happen, because of hardware limitations (queue
1759 * depth settings). If a device driver gets a 'queue full' response,
1760 * or if it simply chooses not to queue more I/O at one point, it can
1761 * call this function to prevent the request_fn from being called until
1762 * the driver has signalled it's ready to go again. This happens by calling
1763 * blk_start_queue() to restart queue operations. Queue lock must be held.
1764 **/
1765void blk_stop_queue(request_queue_t *q)
1766{
1767 blk_remove_plug(q);
1768 set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1769}
1770EXPORT_SYMBOL(blk_stop_queue);
1771
1772/**
1773 * blk_sync_queue - cancel any pending callbacks on a queue
1774 * @q: the queue
1775 *
1776 * Description:
1777 * The block layer may perform asynchronous callback activity
1778 * on a queue, such as calling the unplug function after a timeout.
1779 * A block device may call blk_sync_queue to ensure that any
1780 * such activity is cancelled, thus allowing it to release resources
1781 * the the callbacks might use. The caller must already have made sure
1782 * that its ->make_request_fn will not re-add plugging prior to calling
1783 * this function.
1784 *
1785 */
1786void blk_sync_queue(struct request_queue *q)
1787{
1788 del_timer_sync(&q->unplug_timer);
1789 kblockd_flush();
1790}
1791EXPORT_SYMBOL(blk_sync_queue);
1792
1793/**
1794 * blk_run_queue - run a single device queue
1795 * @q: The queue to run
1796 */
1797void blk_run_queue(struct request_queue *q)
1798{
1799 unsigned long flags;
1800
1801 spin_lock_irqsave(q->queue_lock, flags);
1802 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +02001803
1804 /*
1805 * Only recurse once to avoid overrunning the stack, let the unplug
1806 * handling reinvoke the handler shortly if we already got there.
1807 */
1808 if (!elv_queue_empty(q)) {
1809 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1810 q->request_fn(q);
1811 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1812 } else {
1813 blk_plug_device(q);
1814 kblockd_schedule_work(&q->unplug_work);
1815 }
1816 }
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 spin_unlock_irqrestore(q->queue_lock, flags);
1819}
1820EXPORT_SYMBOL(blk_run_queue);
1821
1822/**
1823 * blk_cleanup_queue: - release a &request_queue_t when it is no longer needed
Martin Waitza5802902006-04-02 13:59:55 +02001824 * @kobj: the kobj belonging of the request queue to be released
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 *
1826 * Description:
1827 * blk_cleanup_queue is the pair to blk_init_queue() or
1828 * blk_queue_make_request(). It should be called when a request queue is
1829 * being released; typically when a block device is being de-registered.
1830 * Currently, its primary task it to free all the &struct request
1831 * structures that were allocated to the queue and the queue itself.
1832 *
1833 * Caveat:
1834 * Hopefully the low level driver will have finished any
1835 * outstanding requests first...
1836 **/
Al Viro483f4af2006-03-18 18:34:37 -05001837static void blk_release_queue(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
Al Viro483f4af2006-03-18 18:34:37 -05001839 request_queue_t *q = container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 struct request_list *rl = &q->rq;
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 blk_sync_queue(q);
1843
1844 if (rl->rq_pool)
1845 mempool_destroy(rl->rq_pool);
1846
1847 if (q->queue_tags)
1848 __blk_queue_free_tags(q);
1849
Jens Axboe2056a782006-03-23 20:00:26 +01001850 if (q->blk_trace)
1851 blk_trace_shutdown(q);
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 kmem_cache_free(requestq_cachep, q);
1854}
1855
Al Viro483f4af2006-03-18 18:34:37 -05001856void blk_put_queue(request_queue_t *q)
1857{
1858 kobject_put(&q->kobj);
1859}
1860EXPORT_SYMBOL(blk_put_queue);
1861
1862void blk_cleanup_queue(request_queue_t * q)
1863{
1864 mutex_lock(&q->sysfs_lock);
1865 set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
1866 mutex_unlock(&q->sysfs_lock);
1867
1868 if (q->elevator)
1869 elevator_exit(q->elevator);
1870
1871 blk_put_queue(q);
1872}
1873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874EXPORT_SYMBOL(blk_cleanup_queue);
1875
1876static int blk_init_free_list(request_queue_t *q)
1877{
1878 struct request_list *rl = &q->rq;
1879
1880 rl->count[READ] = rl->count[WRITE] = 0;
1881 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02001882 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 init_waitqueue_head(&rl->wait[READ]);
1884 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Christoph Lameter19460892005-06-23 00:08:19 -07001886 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
1887 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 if (!rl->rq_pool)
1890 return -ENOMEM;
1891
1892 return 0;
1893}
1894
Al Viro8267e262005-10-21 03:20:53 -04001895request_queue_t *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Christoph Lameter19460892005-06-23 00:08:19 -07001897 return blk_alloc_queue_node(gfp_mask, -1);
1898}
1899EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Al Viro483f4af2006-03-18 18:34:37 -05001901static struct kobj_type queue_ktype;
1902
Al Viro8267e262005-10-21 03:20:53 -04001903request_queue_t *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001904{
1905 request_queue_t *q;
1906
1907 q = kmem_cache_alloc_node(requestq_cachep, gfp_mask, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (!q)
1909 return NULL;
1910
1911 memset(q, 0, sizeof(*q));
1912 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -05001913
1914 snprintf(q->kobj.name, KOBJ_NAME_LEN, "%s", "queue");
1915 q->kobj.ktype = &queue_ktype;
1916 kobject_init(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
1919 q->backing_dev_info.unplug_io_data = q;
1920
Al Viro483f4af2006-03-18 18:34:37 -05001921 mutex_init(&q->sysfs_lock);
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return q;
1924}
Christoph Lameter19460892005-06-23 00:08:19 -07001925EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927/**
1928 * blk_init_queue - prepare a request queue for use with a block device
1929 * @rfn: The function to be called to process requests that have been
1930 * placed on the queue.
1931 * @lock: Request queue spin lock
1932 *
1933 * Description:
1934 * If a block device wishes to use the standard request handling procedures,
1935 * which sorts requests and coalesces adjacent requests, then it must
1936 * call blk_init_queue(). The function @rfn will be called when there
1937 * are requests on the queue that need to be processed. If the device
1938 * supports plugging, then @rfn may not be called immediately when requests
1939 * are available on the queue, but may be called at some time later instead.
1940 * Plugged queues are generally unplugged when a buffer belonging to one
1941 * of the requests on the queue is needed, or due to memory pressure.
1942 *
1943 * @rfn is not required, or even expected, to remove all requests off the
1944 * queue, but only as many as it can handle at a time. If it does leave
1945 * requests on the queue, it is responsible for arranging that the requests
1946 * get dealt with eventually.
1947 *
1948 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001949 * request queue; this lock will be taken also from interrupt context, so irq
1950 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 *
1952 * Function returns a pointer to the initialized request queue, or NULL if
1953 * it didn't succeed.
1954 *
1955 * Note:
1956 * blk_init_queue() must be paired with a blk_cleanup_queue() call
1957 * when the block device is deactivated (such as at module unload).
1958 **/
Christoph Lameter19460892005-06-23 00:08:19 -07001959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960request_queue_t *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
1961{
Christoph Lameter19460892005-06-23 00:08:19 -07001962 return blk_init_queue_node(rfn, lock, -1);
1963}
1964EXPORT_SYMBOL(blk_init_queue);
1965
1966request_queue_t *
1967blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
1968{
1969 request_queue_t *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 if (!q)
1972 return NULL;
1973
Christoph Lameter19460892005-06-23 00:08:19 -07001974 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -05001975 if (blk_init_free_list(q)) {
1976 kmem_cache_free(requestq_cachep, q);
1977 return NULL;
1978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
152587d2005-04-12 16:22:06 -05001980 /*
1981 * if caller didn't supply a lock, they get per-queue locking with
1982 * our embedded lock
1983 */
1984 if (!lock) {
1985 spin_lock_init(&q->__queue_lock);
1986 lock = &q->__queue_lock;
1987 }
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 q->request_fn = rfn;
1990 q->back_merge_fn = ll_back_merge_fn;
1991 q->front_merge_fn = ll_front_merge_fn;
1992 q->merge_requests_fn = ll_merge_requests_fn;
1993 q->prep_rq_fn = NULL;
1994 q->unplug_fn = generic_unplug_device;
1995 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
1996 q->queue_lock = lock;
1997
1998 blk_queue_segment_boundary(q, 0xffffffff);
1999
2000 blk_queue_make_request(q, __make_request);
2001 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
2002
2003 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
2004 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
2005
2006 /*
2007 * all done
2008 */
2009 if (!elevator_init(q, NULL)) {
2010 blk_queue_congestion_threshold(q);
2011 return q;
2012 }
2013
Al Viro8669aaf2006-03-18 13:50:00 -05002014 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return NULL;
2016}
Christoph Lameter19460892005-06-23 00:08:19 -07002017EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019int blk_get_queue(request_queue_t *q)
2020{
Nick Pigginfde6ad22005-06-23 00:08:53 -07002021 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -05002022 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 0;
2024 }
2025
2026 return 1;
2027}
2028
2029EXPORT_SYMBOL(blk_get_queue);
2030
2031static inline void blk_free_request(request_queue_t *q, struct request *rq)
2032{
Tejun Heocb98fc82005-10-28 08:29:39 +02002033 if (rq->flags & REQ_ELVPRIV)
2034 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 mempool_free(rq, q->rq.rq_pool);
2036}
2037
Jens Axboe22e2c502005-06-27 10:55:12 +02002038static inline struct request *
Tejun Heocb98fc82005-10-28 08:29:39 +02002039blk_alloc_request(request_queue_t *q, int rw, struct bio *bio,
Linus Torvalds5dd96242005-10-28 08:56:34 -07002040 int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
2043
2044 if (!rq)
2045 return NULL;
2046
2047 /*
2048 * first three bits are identical in rq->flags and bio->bi_rw,
2049 * see bio.h and blkdev.h
2050 */
2051 rq->flags = rw;
2052
Tejun Heocb98fc82005-10-28 08:29:39 +02002053 if (priv) {
2054 if (unlikely(elv_set_request(q, rq, bio, gfp_mask))) {
2055 mempool_free(rq, q->rq.rq_pool);
2056 return NULL;
2057 }
2058 rq->flags |= REQ_ELVPRIV;
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Tejun Heocb98fc82005-10-28 08:29:39 +02002061 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
2064/*
2065 * ioc_batching returns true if the ioc is a valid batching request and
2066 * should be given priority access to a request.
2067 */
2068static inline int ioc_batching(request_queue_t *q, struct io_context *ioc)
2069{
2070 if (!ioc)
2071 return 0;
2072
2073 /*
2074 * Make sure the process is able to allocate at least 1 request
2075 * even if the batch times out, otherwise we could theoretically
2076 * lose wakeups.
2077 */
2078 return ioc->nr_batch_requests == q->nr_batching ||
2079 (ioc->nr_batch_requests > 0
2080 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
2081}
2082
2083/*
2084 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
2085 * will cause the process to be a "batcher" on all queues in the system. This
2086 * is the behaviour we want though - once it gets a wakeup it should be given
2087 * a nice run.
2088 */
Adrian Bunk93d17d32005-06-25 14:59:10 -07002089static void ioc_set_batching(request_queue_t *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 if (!ioc || ioc_batching(q, ioc))
2092 return;
2093
2094 ioc->nr_batch_requests = q->nr_batching;
2095 ioc->last_waited = jiffies;
2096}
2097
2098static void __freed_request(request_queue_t *q, int rw)
2099{
2100 struct request_list *rl = &q->rq;
2101
2102 if (rl->count[rw] < queue_congestion_off_threshold(q))
2103 clear_queue_congested(q, rw);
2104
2105 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (waitqueue_active(&rl->wait[rw]))
2107 wake_up(&rl->wait[rw]);
2108
2109 blk_clear_queue_full(q, rw);
2110 }
2111}
2112
2113/*
2114 * A request has just been released. Account for it, update the full and
2115 * congestion status, wake up any waiters. Called under q->queue_lock.
2116 */
Tejun Heocb98fc82005-10-28 08:29:39 +02002117static void freed_request(request_queue_t *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 struct request_list *rl = &q->rq;
2120
2121 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +02002122 if (priv)
2123 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 __freed_request(q, rw);
2126
2127 if (unlikely(rl->starved[rw ^ 1]))
2128 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
2131#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
2132/*
Nick Piggind6344532005-06-28 20:45:14 -07002133 * Get a free request, queue_lock must be held.
2134 * Returns NULL on failure, with queue_lock held.
2135 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 */
Jens Axboe22e2c502005-06-27 10:55:12 +02002137static struct request *get_request(request_queue_t *q, int rw, struct bio *bio,
Al Viro8267e262005-10-21 03:20:53 -04002138 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 struct request *rq = NULL;
2141 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002142 struct io_context *ioc = NULL;
2143 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002145 may_queue = elv_may_queue(q, rw, bio);
2146 if (may_queue == ELV_MQUEUE_NO)
2147 goto rq_starved;
2148
2149 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
2150 if (rl->count[rw]+1 >= q->nr_requests) {
2151 ioc = current_io_context(GFP_ATOMIC);
2152 /*
2153 * The queue will fill after this allocation, so set
2154 * it as full, and mark this process as "batching".
2155 * This process will be allowed to complete a batch of
2156 * requests, others will be blocked.
2157 */
2158 if (!blk_queue_full(q, rw)) {
2159 ioc_set_batching(q, ioc);
2160 blk_set_queue_full(q, rw);
2161 } else {
2162 if (may_queue != ELV_MQUEUE_MUST
2163 && !ioc_batching(q, ioc)) {
2164 /*
2165 * The queue is full and the allocating
2166 * process is not a "batcher", and not
2167 * exempted by the IO scheduler
2168 */
2169 goto out;
2170 }
2171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002173 set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175
Jens Axboe082cf692005-06-28 16:35:11 +02002176 /*
2177 * Only allow batching queuers to allocate up to 50% over the defined
2178 * limit of requests, otherwise we could have thousands of requests
2179 * allocated with any setting of ->nr_requests
2180 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002181 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +02002182 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 rl->count[rw]++;
2185 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02002186
Jens Axboe64521d12005-10-28 08:30:39 +02002187 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +02002188 if (priv)
2189 rl->elvpriv++;
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 spin_unlock_irq(q->queue_lock);
2192
Tejun Heocb98fc82005-10-28 08:29:39 +02002193 rq = blk_alloc_request(q, rw, bio, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002194 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 /*
2196 * Allocation failed presumably due to memory. Undo anything
2197 * we might have messed up.
2198 *
2199 * Allocating task should really be put onto the front of the
2200 * wait queue, but this is pretty rare.
2201 */
2202 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +02002203 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 /*
2206 * in the very unlikely event that allocation failed and no
2207 * requests for this direction was pending, mark us starved
2208 * so that freeing of a request in the other direction will
2209 * notice us. another possible fix would be to split the
2210 * rq mempool into READ and WRITE
2211 */
2212rq_starved:
2213 if (unlikely(rl->count[rw] == 0))
2214 rl->starved[rw] = 1;
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 goto out;
2217 }
2218
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002219 /*
2220 * ioc may be NULL here, and ioc_batching will be false. That's
2221 * OK, if the queue is under the request limit then requests need
2222 * not count toward the nr_batch_requests limit. There will always
2223 * be some limit enforced by BLK_BATCH_TIME.
2224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (ioc_batching(q, ioc))
2226 ioc->nr_batch_requests--;
2227
2228 rq_init(q, rq);
2229 rq->rl = rl;
Jens Axboe2056a782006-03-23 20:00:26 +01002230
2231 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return rq;
2234}
2235
2236/*
2237 * No available requests for this queue, unplug the device and wait for some
2238 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -07002239 *
2240 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 */
Jens Axboe22e2c502005-06-27 10:55:12 +02002242static struct request *get_request_wait(request_queue_t *q, int rw,
2243 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 struct request *rq;
2246
Nick Piggin450991b2005-06-28 20:45:13 -07002247 rq = get_request(q, rw, bio, GFP_NOIO);
2248 while (!rq) {
2249 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 struct request_list *rl = &q->rq;
2251
2252 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
2253 TASK_UNINTERRUPTIBLE);
2254
Jens Axboe22e2c502005-06-27 10:55:12 +02002255 rq = get_request(q, rw, bio, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 if (!rq) {
2258 struct io_context *ioc;
2259
Jens Axboe2056a782006-03-23 20:00:26 +01002260 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
2261
Nick Piggind6344532005-06-28 20:45:14 -07002262 __generic_unplug_device(q);
2263 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 io_schedule();
2265
2266 /*
2267 * After sleeping, we become a "batching" process and
2268 * will be able to allocate at least one request, and
2269 * up to a big batch of them for a small period time.
2270 * See ioc_batching, ioc_set_batching
2271 */
Nick Pigginfb3cc432005-06-28 20:45:15 -07002272 ioc = current_io_context(GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 ioc_set_batching(q, ioc);
Nick Piggind6344532005-06-28 20:45:14 -07002274
2275 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
2277 finish_wait(&rl->wait[rw], &wait);
Nick Piggin450991b2005-06-28 20:45:13 -07002278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
2280 return rq;
2281}
2282
Al Viro8267e262005-10-21 03:20:53 -04002283struct request *blk_get_request(request_queue_t *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
2285 struct request *rq;
2286
2287 BUG_ON(rw != READ && rw != WRITE);
2288
Nick Piggind6344532005-06-28 20:45:14 -07002289 spin_lock_irq(q->queue_lock);
2290 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002291 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -07002292 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +02002293 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -07002294 if (!rq)
2295 spin_unlock_irq(q->queue_lock);
2296 }
2297 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 return rq;
2300}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301EXPORT_SYMBOL(blk_get_request);
2302
2303/**
2304 * blk_requeue_request - put a request back on queue
2305 * @q: request queue where request should be inserted
2306 * @rq: request to be inserted
2307 *
2308 * Description:
2309 * Drivers often keep queueing requests until the hardware cannot accept
2310 * more, when that condition happens we need to put the request back
2311 * on the queue. Must be called with queue lock held.
2312 */
2313void blk_requeue_request(request_queue_t *q, struct request *rq)
2314{
Jens Axboe2056a782006-03-23 20:00:26 +01002315 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (blk_rq_tagged(rq))
2318 blk_queue_end_tag(q, rq);
2319
2320 elv_requeue_request(q, rq);
2321}
2322
2323EXPORT_SYMBOL(blk_requeue_request);
2324
2325/**
2326 * blk_insert_request - insert a special request in to a request queue
2327 * @q: request queue where request should be inserted
2328 * @rq: request to be inserted
2329 * @at_head: insert request at head or tail of queue
2330 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 *
2332 * Description:
2333 * Many block devices need to execute commands asynchronously, so they don't
2334 * block the whole kernel from preemption during request execution. This is
2335 * accomplished normally by inserting aritficial requests tagged as
2336 * REQ_SPECIAL in to the corresponding request queue, and letting them be
2337 * scheduled for actual execution by the request queue.
2338 *
2339 * We have the option of inserting the head or the tail of the queue.
2340 * Typically we use the tail for new ioctls and so forth. We use the head
2341 * of the queue for things like a QUEUE_FULL message from a device, or a
2342 * host that is unable to accept a particular command.
2343 */
2344void blk_insert_request(request_queue_t *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05002345 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Tejun Heo 867d1192005-04-24 02:06:05 -05002347 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 unsigned long flags;
2349
2350 /*
2351 * tell I/O scheduler that this isn't a regular read/write (ie it
2352 * must not attempt merges on this) and that it acts as a soft
2353 * barrier
2354 */
2355 rq->flags |= REQ_SPECIAL | REQ_SOFTBARRIER;
2356
2357 rq->special = data;
2358
2359 spin_lock_irqsave(q->queue_lock, flags);
2360
2361 /*
2362 * If command is tagged, release the tag
2363 */
Tejun Heo 867d1192005-04-24 02:06:05 -05002364 if (blk_rq_tagged(rq))
2365 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Tejun Heo 867d1192005-04-24 02:06:05 -05002367 drive_stat_acct(rq, rq->nr_sectors, 1);
2368 __elv_add_request(q, rq, where, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (blk_queue_plugged(q))
2371 __generic_unplug_device(q);
2372 else
2373 q->request_fn(q);
2374 spin_unlock_irqrestore(q->queue_lock, flags);
2375}
2376
2377EXPORT_SYMBOL(blk_insert_request);
2378
2379/**
2380 * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage
2381 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002382 * @rq: request structure to fill
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 * @ubuf: the user buffer
2384 * @len: length of user data
2385 *
2386 * Description:
2387 * Data will be mapped directly for zero copy io, if possible. Otherwise
2388 * a kernel bounce buffer is used.
2389 *
2390 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2391 * still in process context.
2392 *
2393 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2394 * before being submitted to the device, as pages mapped may be out of
2395 * reach. It's the callers responsibility to make sure this happens. The
2396 * original bio must be passed back in to blk_rq_unmap_user() for proper
2397 * unmapping.
2398 */
Jens Axboedd1cab92005-06-20 14:06:01 +02002399int blk_rq_map_user(request_queue_t *q, struct request *rq, void __user *ubuf,
2400 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
2402 unsigned long uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 struct bio *bio;
Jens Axboedd1cab92005-06-20 14:06:01 +02002404 int reading;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Mike Christiedefd94b2005-12-05 02:37:06 -06002406 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002407 return -EINVAL;
2408 if (!len || !ubuf)
2409 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Jens Axboedd1cab92005-06-20 14:06:01 +02002411 reading = rq_data_dir(rq) == READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 /*
2414 * if alignment requirement is satisfied, map in user pages for
2415 * direct dma. else, set up kernel bounce buffers
2416 */
2417 uaddr = (unsigned long) ubuf;
2418 if (!(uaddr & queue_dma_alignment(q)) && !(len & queue_dma_alignment(q)))
Jens Axboedd1cab92005-06-20 14:06:01 +02002419 bio = bio_map_user(q, NULL, uaddr, len, reading);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 else
Jens Axboedd1cab92005-06-20 14:06:01 +02002421 bio = bio_copy_user(q, uaddr, len, reading);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (!IS_ERR(bio)) {
2424 rq->bio = rq->biotail = bio;
2425 blk_rq_bio_prep(q, rq, bio);
2426
2427 rq->buffer = rq->data = NULL;
2428 rq->data_len = len;
Jens Axboedd1cab92005-06-20 14:06:01 +02002429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 }
2431
2432 /*
2433 * bio is the err-ptr
2434 */
Jens Axboedd1cab92005-06-20 14:06:01 +02002435 return PTR_ERR(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
2438EXPORT_SYMBOL(blk_rq_map_user);
2439
2440/**
James Bottomley f1970ba2005-06-20 14:06:52 +02002441 * blk_rq_map_user_iov - map user data to a request, for REQ_BLOCK_PC usage
2442 * @q: request queue where request should be inserted
2443 * @rq: request to map data to
2444 * @iov: pointer to the iovec
2445 * @iov_count: number of elements in the iovec
2446 *
2447 * Description:
2448 * Data will be mapped directly for zero copy io, if possible. Otherwise
2449 * a kernel bounce buffer is used.
2450 *
2451 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2452 * still in process context.
2453 *
2454 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2455 * before being submitted to the device, as pages mapped may be out of
2456 * reach. It's the callers responsibility to make sure this happens. The
2457 * original bio must be passed back in to blk_rq_unmap_user() for proper
2458 * unmapping.
2459 */
2460int blk_rq_map_user_iov(request_queue_t *q, struct request *rq,
2461 struct sg_iovec *iov, int iov_count)
2462{
2463 struct bio *bio;
2464
2465 if (!iov || iov_count <= 0)
2466 return -EINVAL;
2467
2468 /* we don't allow misaligned data like bio_map_user() does. If the
2469 * user is using sg, they're expected to know the alignment constraints
2470 * and respect them accordingly */
2471 bio = bio_map_user_iov(q, NULL, iov, iov_count, rq_data_dir(rq)== READ);
2472 if (IS_ERR(bio))
2473 return PTR_ERR(bio);
2474
2475 rq->bio = rq->biotail = bio;
2476 blk_rq_bio_prep(q, rq, bio);
2477 rq->buffer = rq->data = NULL;
2478 rq->data_len = bio->bi_size;
2479 return 0;
2480}
2481
2482EXPORT_SYMBOL(blk_rq_map_user_iov);
2483
2484/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 * blk_rq_unmap_user - unmap a request with user data
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002486 * @bio: bio to be unmapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 * @ulen: length of user buffer
2488 *
2489 * Description:
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002490 * Unmap a bio previously mapped by blk_rq_map_user().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 */
Jens Axboedd1cab92005-06-20 14:06:01 +02002492int blk_rq_unmap_user(struct bio *bio, unsigned int ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
2494 int ret = 0;
2495
2496 if (bio) {
2497 if (bio_flagged(bio, BIO_USER_MAPPED))
2498 bio_unmap_user(bio);
2499 else
2500 ret = bio_uncopy_user(bio);
2501 }
2502
Jens Axboedd1cab92005-06-20 14:06:01 +02002503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
2506EXPORT_SYMBOL(blk_rq_unmap_user);
2507
2508/**
Mike Christie df46b9a2005-06-20 14:04:44 +02002509 * blk_rq_map_kern - map kernel data to a request, for REQ_BLOCK_PC usage
2510 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002511 * @rq: request to fill
Mike Christie df46b9a2005-06-20 14:04:44 +02002512 * @kbuf: the kernel buffer
2513 * @len: length of user data
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002514 * @gfp_mask: memory allocation flags
Mike Christie df46b9a2005-06-20 14:04:44 +02002515 */
Jens Axboedd1cab92005-06-20 14:06:01 +02002516int blk_rq_map_kern(request_queue_t *q, struct request *rq, void *kbuf,
Al Viro8267e262005-10-21 03:20:53 -04002517 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02002518{
Mike Christie df46b9a2005-06-20 14:04:44 +02002519 struct bio *bio;
2520
Mike Christiedefd94b2005-12-05 02:37:06 -06002521 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002522 return -EINVAL;
2523 if (!len || !kbuf)
2524 return -EINVAL;
Mike Christie df46b9a2005-06-20 14:04:44 +02002525
2526 bio = bio_map_kern(q, kbuf, len, gfp_mask);
Jens Axboedd1cab92005-06-20 14:06:01 +02002527 if (IS_ERR(bio))
2528 return PTR_ERR(bio);
Mike Christie df46b9a2005-06-20 14:04:44 +02002529
Jens Axboedd1cab92005-06-20 14:06:01 +02002530 if (rq_data_dir(rq) == WRITE)
2531 bio->bi_rw |= (1 << BIO_RW);
Mike Christie df46b9a2005-06-20 14:04:44 +02002532
Jens Axboedd1cab92005-06-20 14:06:01 +02002533 rq->bio = rq->biotail = bio;
2534 blk_rq_bio_prep(q, rq, bio);
Mike Christie df46b9a2005-06-20 14:04:44 +02002535
Jens Axboedd1cab92005-06-20 14:06:01 +02002536 rq->buffer = rq->data = NULL;
2537 rq->data_len = len;
2538 return 0;
Mike Christie df46b9a2005-06-20 14:04:44 +02002539}
2540
2541EXPORT_SYMBOL(blk_rq_map_kern);
2542
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002543/**
2544 * blk_execute_rq_nowait - insert a request into queue for execution
2545 * @q: queue to insert the request in
2546 * @bd_disk: matching gendisk
2547 * @rq: request to insert
2548 * @at_head: insert request at head or tail of queue
2549 * @done: I/O completion handler
2550 *
2551 * Description:
2552 * Insert a fully prepared request at the back of the io scheduler queue
2553 * for execution. Don't wait for completion.
2554 */
James Bottomley f1970ba2005-06-20 14:06:52 +02002555void blk_execute_rq_nowait(request_queue_t *q, struct gendisk *bd_disk,
2556 struct request *rq, int at_head,
Tejun Heo8ffdc652006-01-06 09:49:03 +01002557 rq_end_io_fn *done)
James Bottomley f1970ba2005-06-20 14:06:52 +02002558{
2559 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
2560
2561 rq->rq_disk = bd_disk;
2562 rq->flags |= REQ_NOMERGE;
2563 rq->end_io = done;
Andrew Morton4c5d0bb2006-03-22 08:08:01 +01002564 WARN_ON(irqs_disabled());
2565 spin_lock_irq(q->queue_lock);
2566 __elv_add_request(q, rq, where, 1);
2567 __generic_unplug_device(q);
2568 spin_unlock_irq(q->queue_lock);
James Bottomley f1970ba2005-06-20 14:06:52 +02002569}
Mike Christie6e39b692005-11-11 05:30:24 -06002570EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572/**
2573 * blk_execute_rq - insert a request into queue for execution
2574 * @q: queue to insert the request in
2575 * @bd_disk: matching gendisk
2576 * @rq: request to insert
James Bottomley 994ca9a2005-06-20 14:11:09 +02002577 * @at_head: insert request at head or tail of queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 *
2579 * Description:
2580 * Insert a fully prepared request at the back of the io scheduler queue
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002581 * for execution and wait for completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 */
2583int blk_execute_rq(request_queue_t *q, struct gendisk *bd_disk,
James Bottomley 994ca9a2005-06-20 14:11:09 +02002584 struct request *rq, int at_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Ingo Molnar60be6b92006-07-03 00:25:26 -07002586 DECLARE_COMPLETION_ONSTACK(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 char sense[SCSI_SENSE_BUFFERSIZE];
2588 int err = 0;
2589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 /*
2591 * we need an extra reference to the request, so we can look at
2592 * it after io completion
2593 */
2594 rq->ref_count++;
2595
2596 if (!rq->sense) {
2597 memset(sense, 0, sizeof(sense));
2598 rq->sense = sense;
2599 rq->sense_len = 0;
2600 }
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 rq->waiting = &wait;
James Bottomley 994ca9a2005-06-20 14:11:09 +02002603 blk_execute_rq_nowait(q, bd_disk, rq, at_head, blk_end_sync_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 wait_for_completion(&wait);
2605 rq->waiting = NULL;
2606
2607 if (rq->errors)
2608 err = -EIO;
2609
2610 return err;
2611}
2612
2613EXPORT_SYMBOL(blk_execute_rq);
2614
2615/**
2616 * blkdev_issue_flush - queue a flush
2617 * @bdev: blockdev to issue flush for
2618 * @error_sector: error sector
2619 *
2620 * Description:
2621 * Issue a flush for the block device in question. Caller can supply
2622 * room for storing the error offset in case of a flush error, if they
2623 * wish to. Caller must run wait_for_completion() on its own.
2624 */
2625int blkdev_issue_flush(struct block_device *bdev, sector_t *error_sector)
2626{
2627 request_queue_t *q;
2628
2629 if (bdev->bd_disk == NULL)
2630 return -ENXIO;
2631
2632 q = bdev_get_queue(bdev);
2633 if (!q)
2634 return -ENXIO;
2635 if (!q->issue_flush_fn)
2636 return -EOPNOTSUPP;
2637
2638 return q->issue_flush_fn(q, bdev->bd_disk, error_sector);
2639}
2640
2641EXPORT_SYMBOL(blkdev_issue_flush);
2642
Adrian Bunk93d17d32005-06-25 14:59:10 -07002643static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
2645 int rw = rq_data_dir(rq);
2646
2647 if (!blk_fs_request(rq) || !rq->rq_disk)
2648 return;
2649
Jens Axboed72d9042005-11-01 08:35:42 +01002650 if (!new_io) {
Jens Axboea3623572005-11-01 09:26:16 +01002651 __disk_stat_inc(rq->rq_disk, merges[rw]);
Jens Axboed72d9042005-11-01 08:35:42 +01002652 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 disk_round_stats(rq->rq_disk);
2654 rq->rq_disk->in_flight++;
2655 }
2656}
2657
2658/*
2659 * add-request adds a request to the linked list.
2660 * queue lock is held and interrupts disabled, as we muck with the
2661 * request queue list.
2662 */
2663static inline void add_request(request_queue_t * q, struct request * req)
2664{
2665 drive_stat_acct(req, req->nr_sectors, 1);
2666
2667 if (q->activity_fn)
2668 q->activity_fn(q->activity_data, rq_data_dir(req));
2669
2670 /*
2671 * elevator indicated where it wants this request to be
2672 * inserted at elevator_merge time
2673 */
2674 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
2675}
2676
2677/*
2678 * disk_round_stats() - Round off the performance stats on a struct
2679 * disk_stats.
2680 *
2681 * The average IO queue length and utilisation statistics are maintained
2682 * by observing the current state of the queue length and the amount of
2683 * time it has been in this state for.
2684 *
2685 * Normally, that accounting is done on IO completion, but that can result
2686 * in more than a second's worth of IO being accounted for within any one
2687 * second, leading to >100% utilisation. To deal with that, we call this
2688 * function to do a round-off before returning the results when reading
2689 * /proc/diskstats. This accounts immediately for all queue usage up to
2690 * the current jiffies and restarts the counters again.
2691 */
2692void disk_round_stats(struct gendisk *disk)
2693{
2694 unsigned long now = jiffies;
2695
Chen, Kenneth Wb2982642005-10-13 21:49:29 +02002696 if (now == disk->stamp)
2697 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Chen, Kenneth W20e5c812005-10-13 21:48:42 +02002699 if (disk->in_flight) {
2700 __disk_stat_add(disk, time_in_queue,
2701 disk->in_flight * (now - disk->stamp));
2702 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08002707EXPORT_SYMBOL_GPL(disk_round_stats);
2708
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709/*
2710 * queue lock must be held
2711 */
Mike Christie6e39b692005-11-11 05:30:24 -06002712void __blk_put_request(request_queue_t *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713{
2714 struct request_list *rl = req->rl;
2715
2716 if (unlikely(!q))
2717 return;
2718 if (unlikely(--req->ref_count))
2719 return;
2720
Tejun Heo8922e162005-10-20 16:23:44 +02002721 elv_completed_request(q, req);
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 req->rq_status = RQ_INACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 req->rl = NULL;
2725
2726 /*
2727 * Request may not have originated from ll_rw_blk. if not,
2728 * it didn't come out of our reserved rq pools
2729 */
2730 if (rl) {
2731 int rw = rq_data_dir(req);
Tejun Heocb98fc82005-10-28 08:29:39 +02002732 int priv = req->flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 BUG_ON(!list_empty(&req->queuelist));
2735
2736 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02002737 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
2739}
2740
Mike Christie6e39b692005-11-11 05:30:24 -06002741EXPORT_SYMBOL_GPL(__blk_put_request);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743void blk_put_request(struct request *req)
2744{
Tejun Heo8922e162005-10-20 16:23:44 +02002745 unsigned long flags;
2746 request_queue_t *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Tejun Heo8922e162005-10-20 16:23:44 +02002748 /*
2749 * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
2750 * following if (q) test.
2751 */
2752 if (q) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 spin_lock_irqsave(q->queue_lock, flags);
2754 __blk_put_request(q, req);
2755 spin_unlock_irqrestore(q->queue_lock, flags);
2756 }
2757}
2758
2759EXPORT_SYMBOL(blk_put_request);
2760
2761/**
2762 * blk_end_sync_rq - executes a completion event on a request
2763 * @rq: request to complete
Jens Axboefddfdea2006-01-31 15:24:34 +01002764 * @error: end io status of the request
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01002766void blk_end_sync_rq(struct request *rq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
2768 struct completion *waiting = rq->waiting;
2769
2770 rq->waiting = NULL;
2771 __blk_put_request(rq->q, rq);
2772
2773 /*
2774 * complete last, if this is a stack request the process (and thus
2775 * the rq pointer) could be invalid right after this complete()
2776 */
2777 complete(waiting);
2778}
2779EXPORT_SYMBOL(blk_end_sync_rq);
2780
2781/**
2782 * blk_congestion_wait - wait for a queue to become uncongested
2783 * @rw: READ or WRITE
2784 * @timeout: timeout in jiffies
2785 *
2786 * Waits for up to @timeout jiffies for a queue (any queue) to exit congestion.
2787 * If no queues are congested then just wait for the next request to be
2788 * returned.
2789 */
2790long blk_congestion_wait(int rw, long timeout)
2791{
2792 long ret;
2793 DEFINE_WAIT(wait);
2794 wait_queue_head_t *wqh = &congestion_wqh[rw];
2795
2796 prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
2797 ret = io_schedule_timeout(timeout);
2798 finish_wait(wqh, &wait);
2799 return ret;
2800}
2801
2802EXPORT_SYMBOL(blk_congestion_wait);
2803
2804/*
2805 * Has to be called with the request spinlock acquired
2806 */
2807static int attempt_merge(request_queue_t *q, struct request *req,
2808 struct request *next)
2809{
2810 if (!rq_mergeable(req) || !rq_mergeable(next))
2811 return 0;
2812
2813 /*
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02002814 * not contiguous
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 */
2816 if (req->sector + req->nr_sectors != next->sector)
2817 return 0;
2818
2819 if (rq_data_dir(req) != rq_data_dir(next)
2820 || req->rq_disk != next->rq_disk
2821 || next->waiting || next->special)
2822 return 0;
2823
2824 /*
2825 * If we are allowed to merge, then append bio list
2826 * from next to rq and release next. merge_requests_fn
2827 * will have updated segment counts, update sector
2828 * counts here.
2829 */
2830 if (!q->merge_requests_fn(q, req, next))
2831 return 0;
2832
2833 /*
2834 * At this point we have either done a back merge
2835 * or front merge. We need the smaller start_time of
2836 * the merged requests to be the current request
2837 * for accounting purposes.
2838 */
2839 if (time_after(req->start_time, next->start_time))
2840 req->start_time = next->start_time;
2841
2842 req->biotail->bi_next = next->bio;
2843 req->biotail = next->biotail;
2844
2845 req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors;
2846
2847 elv_merge_requests(q, req, next);
2848
2849 if (req->rq_disk) {
2850 disk_round_stats(req->rq_disk);
2851 req->rq_disk->in_flight--;
2852 }
2853
Jens Axboe22e2c502005-06-27 10:55:12 +02002854 req->ioprio = ioprio_best(req->ioprio, next->ioprio);
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 __blk_put_request(q, next);
2857 return 1;
2858}
2859
2860static inline int attempt_back_merge(request_queue_t *q, struct request *rq)
2861{
2862 struct request *next = elv_latter_request(q, rq);
2863
2864 if (next)
2865 return attempt_merge(q, rq, next);
2866
2867 return 0;
2868}
2869
2870static inline int attempt_front_merge(request_queue_t *q, struct request *rq)
2871{
2872 struct request *prev = elv_former_request(q, rq);
2873
2874 if (prev)
2875 return attempt_merge(q, prev, rq);
2876
2877 return 0;
2878}
2879
Tejun Heo52d9e672006-01-06 09:49:58 +01002880static void init_request_from_bio(struct request *req, struct bio *bio)
2881{
2882 req->flags |= REQ_CMD;
2883
2884 /*
2885 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
2886 */
2887 if (bio_rw_ahead(bio) || bio_failfast(bio))
2888 req->flags |= REQ_FAILFAST;
2889
2890 /*
2891 * REQ_BARRIER implies no merging, but lets make it explicit
2892 */
2893 if (unlikely(bio_barrier(bio)))
2894 req->flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
2895
Jens Axboeb31dc662006-06-13 08:26:10 +02002896 if (bio_sync(bio))
2897 req->flags |= REQ_RW_SYNC;
2898
Tejun Heo52d9e672006-01-06 09:49:58 +01002899 req->errors = 0;
2900 req->hard_sector = req->sector = bio->bi_sector;
2901 req->hard_nr_sectors = req->nr_sectors = bio_sectors(bio);
2902 req->current_nr_sectors = req->hard_cur_sectors = bio_cur_sectors(bio);
2903 req->nr_phys_segments = bio_phys_segments(req->q, bio);
2904 req->nr_hw_segments = bio_hw_segments(req->q, bio);
2905 req->buffer = bio_data(bio); /* see ->buffer comment above */
2906 req->waiting = NULL;
2907 req->bio = req->biotail = bio;
2908 req->ioprio = bio_prio(bio);
2909 req->rq_disk = bio->bi_bdev->bd_disk;
2910 req->start_time = jiffies;
2911}
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913static int __make_request(request_queue_t *q, struct bio *bio)
2914{
Nick Piggin450991b2005-06-28 20:45:13 -07002915 struct request *req;
Jens Axboe4a534f92005-04-16 15:25:40 -07002916 int el_ret, rw, nr_sectors, cur_nr_sectors, barrier, err, sync;
Jens Axboe22e2c502005-06-27 10:55:12 +02002917 unsigned short prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 sector_t sector;
2919
2920 sector = bio->bi_sector;
2921 nr_sectors = bio_sectors(bio);
2922 cur_nr_sectors = bio_cur_sectors(bio);
Jens Axboe22e2c502005-06-27 10:55:12 +02002923 prio = bio_prio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
2925 rw = bio_data_dir(bio);
Jens Axboe4a534f92005-04-16 15:25:40 -07002926 sync = bio_sync(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
2928 /*
2929 * low level driver can indicate that it wants pages above a
2930 * certain limit bounced to low memory (ie for highmem, or even
2931 * ISA dma in theory)
2932 */
2933 blk_queue_bounce(q, &bio);
2934
2935 spin_lock_prefetch(q->queue_lock);
2936
2937 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01002938 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 err = -EOPNOTSUPP;
2940 goto end_io;
2941 }
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 spin_lock_irq(q->queue_lock);
2944
Nick Piggin450991b2005-06-28 20:45:13 -07002945 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 goto get_rq;
2947
2948 el_ret = elv_merge(q, &req, bio);
2949 switch (el_ret) {
2950 case ELEVATOR_BACK_MERGE:
2951 BUG_ON(!rq_mergeable(req));
2952
2953 if (!q->back_merge_fn(q, req, bio))
2954 break;
2955
Jens Axboe2056a782006-03-23 20:00:26 +01002956 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 req->biotail->bi_next = bio;
2959 req->biotail = bio;
2960 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02002961 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 drive_stat_acct(req, nr_sectors, 0);
2963 if (!attempt_back_merge(q, req))
2964 elv_merged_request(q, req);
2965 goto out;
2966
2967 case ELEVATOR_FRONT_MERGE:
2968 BUG_ON(!rq_mergeable(req));
2969
2970 if (!q->front_merge_fn(q, req, bio))
2971 break;
2972
Jens Axboe2056a782006-03-23 20:00:26 +01002973 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
2974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 bio->bi_next = req->bio;
2976 req->bio = bio;
2977
2978 /*
2979 * may not be valid. if the low level driver said
2980 * it didn't need a bounce buffer then it better
2981 * not touch req->buffer either...
2982 */
2983 req->buffer = bio_data(bio);
2984 req->current_nr_sectors = cur_nr_sectors;
2985 req->hard_cur_sectors = cur_nr_sectors;
2986 req->sector = req->hard_sector = sector;
2987 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02002988 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 drive_stat_acct(req, nr_sectors, 0);
2990 if (!attempt_front_merge(q, req))
2991 elv_merged_request(q, req);
2992 goto out;
2993
Nick Piggin450991b2005-06-28 20:45:13 -07002994 /* ELV_NO_MERGE: elevator says don't/can't merge. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 default:
Nick Piggin450991b2005-06-28 20:45:13 -07002996 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 }
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07003000 /*
3001 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07003002 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07003003 */
Nick Piggin450991b2005-06-28 20:45:13 -07003004 req = get_request_wait(q, rw, bio);
Nick Piggind6344532005-06-28 20:45:14 -07003005
Nick Piggin450991b2005-06-28 20:45:13 -07003006 /*
3007 * After dropping the lock and possibly sleeping here, our request
3008 * may now be mergeable after it had proven unmergeable (above).
3009 * We don't worry about that case for efficiency. It won't happen
3010 * often, and the elevators are able to handle it.
3011 */
Tejun Heo52d9e672006-01-06 09:49:58 +01003012 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Nick Piggin450991b2005-06-28 20:45:13 -07003014 spin_lock_irq(q->queue_lock);
3015 if (elv_queue_empty(q))
3016 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 add_request(q, req);
3018out:
Jens Axboe4a534f92005-04-16 15:25:40 -07003019 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 __generic_unplug_device(q);
3021
3022 spin_unlock_irq(q->queue_lock);
3023 return 0;
3024
3025end_io:
3026 bio_endio(bio, nr_sectors << 9, err);
3027 return 0;
3028}
3029
3030/*
3031 * If bio->bi_dev is a partition, remap the location
3032 */
3033static inline void blk_partition_remap(struct bio *bio)
3034{
3035 struct block_device *bdev = bio->bi_bdev;
3036
3037 if (bdev != bdev->bd_contains) {
3038 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01003039 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Jens Axboea3623572005-11-01 09:26:16 +01003041 p->sectors[rw] += bio_sectors(bio);
3042 p->ios[rw]++;
3043
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 bio->bi_sector += p->start_sect;
3045 bio->bi_bdev = bdev->bd_contains;
3046 }
3047}
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049static void handle_bad_sector(struct bio *bio)
3050{
3051 char b[BDEVNAME_SIZE];
3052
3053 printk(KERN_INFO "attempt to access beyond end of device\n");
3054 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
3055 bdevname(bio->bi_bdev, b),
3056 bio->bi_rw,
3057 (unsigned long long)bio->bi_sector + bio_sectors(bio),
3058 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
3059
3060 set_bit(BIO_EOF, &bio->bi_flags);
3061}
3062
3063/**
3064 * generic_make_request: hand a buffer to its device driver for I/O
3065 * @bio: The bio describing the location in memory and on the device.
3066 *
3067 * generic_make_request() is used to make I/O requests of block
3068 * devices. It is passed a &struct bio, which describes the I/O that needs
3069 * to be done.
3070 *
3071 * generic_make_request() does not return any status. The
3072 * success/failure status of the request, along with notification of
3073 * completion, is delivered asynchronously through the bio->bi_end_io
3074 * function described (one day) else where.
3075 *
3076 * The caller of generic_make_request must make sure that bi_io_vec
3077 * are set to describe the memory buffer, and that bi_dev and bi_sector are
3078 * set to describe the device address, and the
3079 * bi_end_io and optionally bi_private are set to describe how
3080 * completion notification should be signaled.
3081 *
3082 * generic_make_request and the drivers it calls may use bi_next if this
3083 * bio happens to be merged with someone else, and may change bi_dev and
3084 * bi_sector for remaps as it sees fit. So the values of these fields
3085 * should NOT be depended on after the call to generic_make_request.
3086 */
3087void generic_make_request(struct bio *bio)
3088{
3089 request_queue_t *q;
3090 sector_t maxsector;
3091 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01003092 dev_t old_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 might_sleep();
3095 /* Test device or partition size, when known. */
3096 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
3097 if (maxsector) {
3098 sector_t sector = bio->bi_sector;
3099
3100 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
3101 /*
3102 * This may well happen - the kernel calls bread()
3103 * without checking the size of the device, e.g., when
3104 * mounting a device.
3105 */
3106 handle_bad_sector(bio);
3107 goto end_io;
3108 }
3109 }
3110
3111 /*
3112 * Resolve the mapping until finished. (drivers are
3113 * still free to implement/resolve their own stacking
3114 * by explicitly returning 0)
3115 *
3116 * NOTE: we don't repeat the blk_size check for each new device.
3117 * Stacking drivers are expected to know what they are doing.
3118 */
Jens Axboe2056a782006-03-23 20:00:26 +01003119 maxsector = -1;
3120 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 do {
3122 char b[BDEVNAME_SIZE];
3123
3124 q = bdev_get_queue(bio->bi_bdev);
3125 if (!q) {
3126 printk(KERN_ERR
3127 "generic_make_request: Trying to access "
3128 "nonexistent block-device %s (%Lu)\n",
3129 bdevname(bio->bi_bdev, b),
3130 (long long) bio->bi_sector);
3131end_io:
3132 bio_endio(bio, bio->bi_size, -EIO);
3133 break;
3134 }
3135
3136 if (unlikely(bio_sectors(bio) > q->max_hw_sectors)) {
3137 printk("bio too big device %s (%u > %u)\n",
3138 bdevname(bio->bi_bdev, b),
3139 bio_sectors(bio),
3140 q->max_hw_sectors);
3141 goto end_io;
3142 }
3143
Nick Pigginfde6ad22005-06-23 00:08:53 -07003144 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 goto end_io;
3146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 /*
3148 * If this device has partitions, remap block n
3149 * of partition p to block n+start(p) of the disk.
3150 */
3151 blk_partition_remap(bio);
3152
Jens Axboe2056a782006-03-23 20:00:26 +01003153 if (maxsector != -1)
3154 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
3155 maxsector);
3156
3157 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
3158
3159 maxsector = bio->bi_sector;
3160 old_dev = bio->bi_bdev->bd_dev;
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 ret = q->make_request_fn(q, bio);
3163 } while (ret);
3164}
3165
3166EXPORT_SYMBOL(generic_make_request);
3167
3168/**
3169 * submit_bio: submit a bio to the block device layer for I/O
3170 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
3171 * @bio: The &struct bio which describes the I/O
3172 *
3173 * submit_bio() is very similar in purpose to generic_make_request(), and
3174 * uses that function to do most of the work. Both are fairly rough
3175 * interfaces, @bio must be presetup and ready for I/O.
3176 *
3177 */
3178void submit_bio(int rw, struct bio *bio)
3179{
3180 int count = bio_sectors(bio);
3181
3182 BIO_BUG_ON(!bio->bi_size);
3183 BIO_BUG_ON(!bio->bi_io_vec);
Jens Axboe22e2c502005-06-27 10:55:12 +02003184 bio->bi_rw |= rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 if (rw & WRITE)
Christoph Lameterf8891e52006-06-30 01:55:45 -07003186 count_vm_events(PGPGOUT, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 else
Christoph Lameterf8891e52006-06-30 01:55:45 -07003188 count_vm_events(PGPGIN, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190 if (unlikely(block_dump)) {
3191 char b[BDEVNAME_SIZE];
3192 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
3193 current->comm, current->pid,
3194 (rw & WRITE) ? "WRITE" : "READ",
3195 (unsigned long long)bio->bi_sector,
3196 bdevname(bio->bi_bdev,b));
3197 }
3198
3199 generic_make_request(bio);
3200}
3201
3202EXPORT_SYMBOL(submit_bio);
3203
Adrian Bunk93d17d32005-06-25 14:59:10 -07003204static void blk_recalc_rq_segments(struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
3206 struct bio *bio, *prevbio = NULL;
3207 int nr_phys_segs, nr_hw_segs;
3208 unsigned int phys_size, hw_size;
3209 request_queue_t *q = rq->q;
3210
3211 if (!rq->bio)
3212 return;
3213
3214 phys_size = hw_size = nr_phys_segs = nr_hw_segs = 0;
3215 rq_for_each_bio(bio, rq) {
3216 /* Force bio hw/phys segs to be recalculated. */
3217 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
3218
3219 nr_phys_segs += bio_phys_segments(q, bio);
3220 nr_hw_segs += bio_hw_segments(q, bio);
3221 if (prevbio) {
3222 int pseg = phys_size + prevbio->bi_size + bio->bi_size;
3223 int hseg = hw_size + prevbio->bi_size + bio->bi_size;
3224
3225 if (blk_phys_contig_segment(q, prevbio, bio) &&
3226 pseg <= q->max_segment_size) {
3227 nr_phys_segs--;
3228 phys_size += prevbio->bi_size + bio->bi_size;
3229 } else
3230 phys_size = 0;
3231
3232 if (blk_hw_contig_segment(q, prevbio, bio) &&
3233 hseg <= q->max_segment_size) {
3234 nr_hw_segs--;
3235 hw_size += prevbio->bi_size + bio->bi_size;
3236 } else
3237 hw_size = 0;
3238 }
3239 prevbio = bio;
3240 }
3241
3242 rq->nr_phys_segments = nr_phys_segs;
3243 rq->nr_hw_segments = nr_hw_segs;
3244}
3245
Adrian Bunk93d17d32005-06-25 14:59:10 -07003246static void blk_recalc_rq_sectors(struct request *rq, int nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
3248 if (blk_fs_request(rq)) {
3249 rq->hard_sector += nsect;
3250 rq->hard_nr_sectors -= nsect;
3251
3252 /*
3253 * Move the I/O submission pointers ahead if required.
3254 */
3255 if ((rq->nr_sectors >= rq->hard_nr_sectors) &&
3256 (rq->sector <= rq->hard_sector)) {
3257 rq->sector = rq->hard_sector;
3258 rq->nr_sectors = rq->hard_nr_sectors;
3259 rq->hard_cur_sectors = bio_cur_sectors(rq->bio);
3260 rq->current_nr_sectors = rq->hard_cur_sectors;
3261 rq->buffer = bio_data(rq->bio);
3262 }
3263
3264 /*
3265 * if total number of sectors is less than the first segment
3266 * size, something has gone terribly wrong
3267 */
3268 if (rq->nr_sectors < rq->current_nr_sectors) {
3269 printk("blk: request botched\n");
3270 rq->nr_sectors = rq->current_nr_sectors;
3271 }
3272 }
3273}
3274
3275static int __end_that_request_first(struct request *req, int uptodate,
3276 int nr_bytes)
3277{
3278 int total_bytes, bio_nbytes, error, next_idx = 0;
3279 struct bio *bio;
3280
Jens Axboe2056a782006-03-23 20:00:26 +01003281 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
3282
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 /*
3284 * extend uptodate bool to allow < 0 value to be direct io error
3285 */
3286 error = 0;
3287 if (end_io_error(uptodate))
3288 error = !uptodate ? -EIO : uptodate;
3289
3290 /*
3291 * for a REQ_BLOCK_PC request, we want to carry any eventual
3292 * sense key with us all the way through
3293 */
3294 if (!blk_pc_request(req))
3295 req->errors = 0;
3296
3297 if (!uptodate) {
3298 if (blk_fs_request(req) && !(req->flags & REQ_QUIET))
3299 printk("end_request: I/O error, dev %s, sector %llu\n",
3300 req->rq_disk ? req->rq_disk->disk_name : "?",
3301 (unsigned long long)req->sector);
3302 }
3303
Jens Axboed72d9042005-11-01 08:35:42 +01003304 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01003305 const int rw = rq_data_dir(req);
3306
Jens Axboe53e86062006-01-17 11:09:27 +01003307 disk_stat_add(req->rq_disk, sectors[rw], nr_bytes >> 9);
Jens Axboed72d9042005-11-01 08:35:42 +01003308 }
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 total_bytes = bio_nbytes = 0;
3311 while ((bio = req->bio) != NULL) {
3312 int nbytes;
3313
3314 if (nr_bytes >= bio->bi_size) {
3315 req->bio = bio->bi_next;
3316 nbytes = bio->bi_size;
Tejun Heo797e7db2006-01-06 09:51:03 +01003317 if (!ordered_bio_endio(req, bio, nbytes, error))
3318 bio_endio(bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 next_idx = 0;
3320 bio_nbytes = 0;
3321 } else {
3322 int idx = bio->bi_idx + next_idx;
3323
3324 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
3325 blk_dump_rq_flags(req, "__end_that");
3326 printk("%s: bio idx %d >= vcnt %d\n",
3327 __FUNCTION__,
3328 bio->bi_idx, bio->bi_vcnt);
3329 break;
3330 }
3331
3332 nbytes = bio_iovec_idx(bio, idx)->bv_len;
3333 BIO_BUG_ON(nbytes > bio->bi_size);
3334
3335 /*
3336 * not a complete bvec done
3337 */
3338 if (unlikely(nbytes > nr_bytes)) {
3339 bio_nbytes += nr_bytes;
3340 total_bytes += nr_bytes;
3341 break;
3342 }
3343
3344 /*
3345 * advance to the next vector
3346 */
3347 next_idx++;
3348 bio_nbytes += nbytes;
3349 }
3350
3351 total_bytes += nbytes;
3352 nr_bytes -= nbytes;
3353
3354 if ((bio = req->bio)) {
3355 /*
3356 * end more in this run, or just return 'not-done'
3357 */
3358 if (unlikely(nr_bytes <= 0))
3359 break;
3360 }
3361 }
3362
3363 /*
3364 * completely done
3365 */
3366 if (!req->bio)
3367 return 0;
3368
3369 /*
3370 * if the request wasn't completed, update state
3371 */
3372 if (bio_nbytes) {
Tejun Heo797e7db2006-01-06 09:51:03 +01003373 if (!ordered_bio_endio(req, bio, bio_nbytes, error))
3374 bio_endio(bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 bio->bi_idx += next_idx;
3376 bio_iovec(bio)->bv_offset += nr_bytes;
3377 bio_iovec(bio)->bv_len -= nr_bytes;
3378 }
3379
3380 blk_recalc_rq_sectors(req, total_bytes >> 9);
3381 blk_recalc_rq_segments(req);
3382 return 1;
3383}
3384
3385/**
3386 * end_that_request_first - end I/O on a request
3387 * @req: the request being processed
3388 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3389 * @nr_sectors: number of sectors to end I/O on
3390 *
3391 * Description:
3392 * Ends I/O on a number of sectors attached to @req, and sets it up
3393 * for the next range of segments (if any) in the cluster.
3394 *
3395 * Return:
3396 * 0 - we are done with this request, call end_that_request_last()
3397 * 1 - still buffers pending for this request
3398 **/
3399int end_that_request_first(struct request *req, int uptodate, int nr_sectors)
3400{
3401 return __end_that_request_first(req, uptodate, nr_sectors << 9);
3402}
3403
3404EXPORT_SYMBOL(end_that_request_first);
3405
3406/**
3407 * end_that_request_chunk - end I/O on a request
3408 * @req: the request being processed
3409 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3410 * @nr_bytes: number of bytes to complete
3411 *
3412 * Description:
3413 * Ends I/O on a number of bytes attached to @req, and sets it up
3414 * for the next range of segments (if any). Like end_that_request_first(),
3415 * but deals with bytes instead of sectors.
3416 *
3417 * Return:
3418 * 0 - we are done with this request, call end_that_request_last()
3419 * 1 - still buffers pending for this request
3420 **/
3421int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes)
3422{
3423 return __end_that_request_first(req, uptodate, nr_bytes);
3424}
3425
3426EXPORT_SYMBOL(end_that_request_chunk);
3427
3428/*
Jens Axboeff856ba2006-01-09 16:02:34 +01003429 * splice the completion data to a local structure and hand off to
3430 * process_completion_queue() to complete the requests
3431 */
3432static void blk_done_softirq(struct softirq_action *h)
3433{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003434 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01003435
3436 local_irq_disable();
3437 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003438 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01003439 local_irq_enable();
3440
3441 while (!list_empty(&local_list)) {
3442 struct request *rq = list_entry(local_list.next, struct request, donelist);
3443
3444 list_del_init(&rq->donelist);
3445 rq->q->softirq_done_fn(rq);
3446 }
3447}
3448
3449#ifdef CONFIG_HOTPLUG_CPU
3450
3451static int blk_cpu_notify(struct notifier_block *self, unsigned long action,
3452 void *hcpu)
3453{
3454 /*
3455 * If a CPU goes away, splice its entries to the current CPU
3456 * and trigger a run of the softirq
3457 */
3458 if (action == CPU_DEAD) {
3459 int cpu = (unsigned long) hcpu;
3460
3461 local_irq_disable();
3462 list_splice_init(&per_cpu(blk_cpu_done, cpu),
3463 &__get_cpu_var(blk_cpu_done));
3464 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3465 local_irq_enable();
3466 }
3467
3468 return NOTIFY_OK;
3469}
3470
3471
Chandra Seetharaman054cc8a2006-06-27 02:54:07 -07003472static struct notifier_block __devinitdata blk_cpu_notifier = {
Jens Axboeff856ba2006-01-09 16:02:34 +01003473 .notifier_call = blk_cpu_notify,
3474};
3475
3476#endif /* CONFIG_HOTPLUG_CPU */
3477
3478/**
3479 * blk_complete_request - end I/O on a request
3480 * @req: the request being processed
3481 *
3482 * Description:
3483 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02003484 * unless the driver actually implements this in its completion callback
Jens Axboeff856ba2006-01-09 16:02:34 +01003485 * through requeueing. Theh actual completion happens out-of-order,
3486 * through a softirq handler. The user must have registered a completion
3487 * callback through blk_queue_softirq_done().
3488 **/
3489
3490void blk_complete_request(struct request *req)
3491{
3492 struct list_head *cpu_list;
3493 unsigned long flags;
3494
3495 BUG_ON(!req->q->softirq_done_fn);
3496
3497 local_irq_save(flags);
3498
3499 cpu_list = &__get_cpu_var(blk_cpu_done);
3500 list_add_tail(&req->donelist, cpu_list);
3501 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3502
3503 local_irq_restore(flags);
3504}
3505
3506EXPORT_SYMBOL(blk_complete_request);
3507
3508/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 * queue lock must be held
3510 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01003511void end_that_request_last(struct request *req, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512{
3513 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01003514 int error;
3515
3516 /*
3517 * extend uptodate bool to allow < 0 value to be direct io error
3518 */
3519 error = 0;
3520 if (end_io_error(uptodate))
3521 error = !uptodate ? -EIO : uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 if (unlikely(laptop_mode) && blk_fs_request(req))
3524 laptop_io_completion();
3525
Jens Axboefd0ff8a2006-05-23 11:23:49 +02003526 /*
3527 * Account IO completion. bar_rq isn't accounted as a normal
3528 * IO on queueing nor completion. Accounting the containing
3529 * request is enough.
3530 */
3531 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01003533 const int rw = rq_data_dir(req);
3534
3535 __disk_stat_inc(disk, ios[rw]);
3536 __disk_stat_add(disk, ticks[rw], duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 disk_round_stats(disk);
3538 disk->in_flight--;
3539 }
3540 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01003541 req->end_io(req, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 else
3543 __blk_put_request(req->q, req);
3544}
3545
3546EXPORT_SYMBOL(end_that_request_last);
3547
3548void end_request(struct request *req, int uptodate)
3549{
3550 if (!end_that_request_first(req, uptodate, req->hard_cur_sectors)) {
3551 add_disk_randomness(req->rq_disk);
3552 blkdev_dequeue_request(req);
Tejun Heo8ffdc652006-01-06 09:49:03 +01003553 end_that_request_last(req, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 }
3555}
3556
3557EXPORT_SYMBOL(end_request);
3558
3559void blk_rq_bio_prep(request_queue_t *q, struct request *rq, struct bio *bio)
3560{
Jens Axboe1959d212006-07-06 10:18:05 +02003561 /* first two bits are identical in rq->flags and bio->bi_rw */
3562 rq->flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
3564 rq->nr_phys_segments = bio_phys_segments(q, bio);
3565 rq->nr_hw_segments = bio_hw_segments(q, bio);
3566 rq->current_nr_sectors = bio_cur_sectors(bio);
3567 rq->hard_cur_sectors = rq->current_nr_sectors;
3568 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
3569 rq->buffer = bio_data(bio);
3570
3571 rq->bio = rq->biotail = bio;
3572}
3573
3574EXPORT_SYMBOL(blk_rq_bio_prep);
3575
3576int kblockd_schedule_work(struct work_struct *work)
3577{
3578 return queue_work(kblockd_workqueue, work);
3579}
3580
3581EXPORT_SYMBOL(kblockd_schedule_work);
3582
3583void kblockd_flush(void)
3584{
3585 flush_workqueue(kblockd_workqueue);
3586}
3587EXPORT_SYMBOL(kblockd_flush);
3588
3589int __init blk_dev_init(void)
3590{
Jens Axboeff856ba2006-01-09 16:02:34 +01003591 int i;
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 kblockd_workqueue = create_workqueue("kblockd");
3594 if (!kblockd_workqueue)
3595 panic("Failed to create kblockd\n");
3596
3597 request_cachep = kmem_cache_create("blkdev_requests",
3598 sizeof(struct request), 0, SLAB_PANIC, NULL, NULL);
3599
3600 requestq_cachep = kmem_cache_create("blkdev_queue",
3601 sizeof(request_queue_t), 0, SLAB_PANIC, NULL, NULL);
3602
3603 iocontext_cachep = kmem_cache_create("blkdev_ioc",
3604 sizeof(struct io_context), 0, SLAB_PANIC, NULL, NULL);
3605
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003606 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01003607 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
3608
3609 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07003610 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01003611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 blk_max_low_pfn = max_low_pfn;
3613 blk_max_pfn = max_pfn;
3614
3615 return 0;
3616}
3617
3618/*
3619 * IO Context helper functions
3620 */
3621void put_io_context(struct io_context *ioc)
3622{
3623 if (ioc == NULL)
3624 return;
3625
3626 BUG_ON(atomic_read(&ioc->refcount) == 0);
3627
3628 if (atomic_dec_and_test(&ioc->refcount)) {
Jens Axboee2d74ac2006-03-28 08:59:01 +02003629 struct cfq_io_context *cic;
3630
Al Viro334e94d2006-03-18 15:05:53 -05003631 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 if (ioc->aic && ioc->aic->dtor)
3633 ioc->aic->dtor(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003634 if (ioc->cic_root.rb_node != NULL) {
Jens Axboe7143dd42006-03-28 09:00:28 +02003635 struct rb_node *n = rb_first(&ioc->cic_root);
3636
3637 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003638 cic->dtor(ioc);
3639 }
Al Viro334e94d2006-03-18 15:05:53 -05003640 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
3642 kmem_cache_free(iocontext_cachep, ioc);
3643 }
3644}
3645EXPORT_SYMBOL(put_io_context);
3646
3647/* Called by the exitting task */
3648void exit_io_context(void)
3649{
3650 unsigned long flags;
3651 struct io_context *ioc;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003652 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
3654 local_irq_save(flags);
Jens Axboe22e2c502005-06-27 10:55:12 +02003655 task_lock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 ioc = current->io_context;
3657 current->io_context = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02003658 ioc->task = NULL;
3659 task_unlock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 local_irq_restore(flags);
3661
3662 if (ioc->aic && ioc->aic->exit)
3663 ioc->aic->exit(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003664 if (ioc->cic_root.rb_node != NULL) {
3665 cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
3666 cic->exit(ioc);
3667 }
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 put_io_context(ioc);
3670}
3671
3672/*
3673 * If the current task has no IO context then create one and initialise it.
Nick Pigginfb3cc432005-06-28 20:45:15 -07003674 * Otherwise, return its existing IO context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 *
Nick Pigginfb3cc432005-06-28 20:45:15 -07003676 * This returned IO context doesn't have a specifically elevated refcount,
3677 * but since the current task itself holds a reference, the context can be
3678 * used in general code, so long as it stays within `current` context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 */
Al Viro8267e262005-10-21 03:20:53 -04003680struct io_context *current_io_context(gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
3682 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 struct io_context *ret;
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 ret = tsk->io_context;
Nick Pigginfb3cc432005-06-28 20:45:15 -07003686 if (likely(ret))
3687 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689 ret = kmem_cache_alloc(iocontext_cachep, gfp_flags);
3690 if (ret) {
3691 atomic_set(&ret->refcount, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003692 ret->task = current;
3693 ret->set_ioprio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 ret->last_waited = jiffies; /* doesn't matter... */
3695 ret->nr_batch_requests = 0; /* because this is 0 */
3696 ret->aic = NULL;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003697 ret->cic_root.rb_node = NULL;
Oleg Nesterov9f83e452006-08-21 08:34:15 +02003698 /* make sure set_task_ioprio() sees the settings above */
3699 smp_wmb();
Nick Pigginfb3cc432005-06-28 20:45:15 -07003700 tsk->io_context = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 }
3702
3703 return ret;
3704}
Nick Pigginfb3cc432005-06-28 20:45:15 -07003705EXPORT_SYMBOL(current_io_context);
3706
3707/*
3708 * If the current task has no IO context then create one and initialise it.
3709 * If it does have a context, take a ref on it.
3710 *
3711 * This is always called in the context of the task which submitted the I/O.
3712 */
Al Viro8267e262005-10-21 03:20:53 -04003713struct io_context *get_io_context(gfp_t gfp_flags)
Nick Pigginfb3cc432005-06-28 20:45:15 -07003714{
3715 struct io_context *ret;
3716 ret = current_io_context(gfp_flags);
3717 if (likely(ret))
3718 atomic_inc(&ret->refcount);
3719 return ret;
3720}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721EXPORT_SYMBOL(get_io_context);
3722
3723void copy_io_context(struct io_context **pdst, struct io_context **psrc)
3724{
3725 struct io_context *src = *psrc;
3726 struct io_context *dst = *pdst;
3727
3728 if (src) {
3729 BUG_ON(atomic_read(&src->refcount) == 0);
3730 atomic_inc(&src->refcount);
3731 put_io_context(dst);
3732 *pdst = src;
3733 }
3734}
3735EXPORT_SYMBOL(copy_io_context);
3736
3737void swap_io_context(struct io_context **ioc1, struct io_context **ioc2)
3738{
3739 struct io_context *temp;
3740 temp = *ioc1;
3741 *ioc1 = *ioc2;
3742 *ioc2 = temp;
3743}
3744EXPORT_SYMBOL(swap_io_context);
3745
3746/*
3747 * sysfs parts below
3748 */
3749struct queue_sysfs_entry {
3750 struct attribute attr;
3751 ssize_t (*show)(struct request_queue *, char *);
3752 ssize_t (*store)(struct request_queue *, const char *, size_t);
3753};
3754
3755static ssize_t
3756queue_var_show(unsigned int var, char *page)
3757{
3758 return sprintf(page, "%d\n", var);
3759}
3760
3761static ssize_t
3762queue_var_store(unsigned long *var, const char *page, size_t count)
3763{
3764 char *p = (char *) page;
3765
3766 *var = simple_strtoul(p, &p, 10);
3767 return count;
3768}
3769
3770static ssize_t queue_requests_show(struct request_queue *q, char *page)
3771{
3772 return queue_var_show(q->nr_requests, (page));
3773}
3774
3775static ssize_t
3776queue_requests_store(struct request_queue *q, const char *page, size_t count)
3777{
3778 struct request_list *rl = &q->rq;
Al Viroc981ff92006-03-18 13:51:29 -05003779 unsigned long nr;
3780 int ret = queue_var_store(&nr, page, count);
3781 if (nr < BLKDEV_MIN_RQ)
3782 nr = BLKDEV_MIN_RQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Al Viroc981ff92006-03-18 13:51:29 -05003784 spin_lock_irq(q->queue_lock);
3785 q->nr_requests = nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 blk_queue_congestion_threshold(q);
3787
3788 if (rl->count[READ] >= queue_congestion_on_threshold(q))
3789 set_queue_congested(q, READ);
3790 else if (rl->count[READ] < queue_congestion_off_threshold(q))
3791 clear_queue_congested(q, READ);
3792
3793 if (rl->count[WRITE] >= queue_congestion_on_threshold(q))
3794 set_queue_congested(q, WRITE);
3795 else if (rl->count[WRITE] < queue_congestion_off_threshold(q))
3796 clear_queue_congested(q, WRITE);
3797
3798 if (rl->count[READ] >= q->nr_requests) {
3799 blk_set_queue_full(q, READ);
3800 } else if (rl->count[READ]+1 <= q->nr_requests) {
3801 blk_clear_queue_full(q, READ);
3802 wake_up(&rl->wait[READ]);
3803 }
3804
3805 if (rl->count[WRITE] >= q->nr_requests) {
3806 blk_set_queue_full(q, WRITE);
3807 } else if (rl->count[WRITE]+1 <= q->nr_requests) {
3808 blk_clear_queue_full(q, WRITE);
3809 wake_up(&rl->wait[WRITE]);
3810 }
Al Viroc981ff92006-03-18 13:51:29 -05003811 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 return ret;
3813}
3814
3815static ssize_t queue_ra_show(struct request_queue *q, char *page)
3816{
3817 int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
3818
3819 return queue_var_show(ra_kb, (page));
3820}
3821
3822static ssize_t
3823queue_ra_store(struct request_queue *q, const char *page, size_t count)
3824{
3825 unsigned long ra_kb;
3826 ssize_t ret = queue_var_store(&ra_kb, page, count);
3827
3828 spin_lock_irq(q->queue_lock);
3829 if (ra_kb > (q->max_sectors >> 1))
3830 ra_kb = (q->max_sectors >> 1);
3831
3832 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
3833 spin_unlock_irq(q->queue_lock);
3834
3835 return ret;
3836}
3837
3838static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
3839{
3840 int max_sectors_kb = q->max_sectors >> 1;
3841
3842 return queue_var_show(max_sectors_kb, (page));
3843}
3844
3845static ssize_t
3846queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
3847{
3848 unsigned long max_sectors_kb,
3849 max_hw_sectors_kb = q->max_hw_sectors >> 1,
3850 page_kb = 1 << (PAGE_CACHE_SHIFT - 10);
3851 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
3852 int ra_kb;
3853
3854 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
3855 return -EINVAL;
3856 /*
3857 * Take the queue lock to update the readahead and max_sectors
3858 * values synchronously:
3859 */
3860 spin_lock_irq(q->queue_lock);
3861 /*
3862 * Trim readahead window as well, if necessary:
3863 */
3864 ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
3865 if (ra_kb > max_sectors_kb)
3866 q->backing_dev_info.ra_pages =
3867 max_sectors_kb >> (PAGE_CACHE_SHIFT - 10);
3868
3869 q->max_sectors = max_sectors_kb << 1;
3870 spin_unlock_irq(q->queue_lock);
3871
3872 return ret;
3873}
3874
3875static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
3876{
3877 int max_hw_sectors_kb = q->max_hw_sectors >> 1;
3878
3879 return queue_var_show(max_hw_sectors_kb, (page));
3880}
3881
3882
3883static struct queue_sysfs_entry queue_requests_entry = {
3884 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
3885 .show = queue_requests_show,
3886 .store = queue_requests_store,
3887};
3888
3889static struct queue_sysfs_entry queue_ra_entry = {
3890 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
3891 .show = queue_ra_show,
3892 .store = queue_ra_store,
3893};
3894
3895static struct queue_sysfs_entry queue_max_sectors_entry = {
3896 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
3897 .show = queue_max_sectors_show,
3898 .store = queue_max_sectors_store,
3899};
3900
3901static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
3902 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
3903 .show = queue_max_hw_sectors_show,
3904};
3905
3906static struct queue_sysfs_entry queue_iosched_entry = {
3907 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
3908 .show = elv_iosched_show,
3909 .store = elv_iosched_store,
3910};
3911
3912static struct attribute *default_attrs[] = {
3913 &queue_requests_entry.attr,
3914 &queue_ra_entry.attr,
3915 &queue_max_hw_sectors_entry.attr,
3916 &queue_max_sectors_entry.attr,
3917 &queue_iosched_entry.attr,
3918 NULL,
3919};
3920
3921#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
3922
3923static ssize_t
3924queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
3925{
3926 struct queue_sysfs_entry *entry = to_queue(attr);
Al Viro483f4af2006-03-18 18:34:37 -05003927 request_queue_t *q = container_of(kobj, struct request_queue, kobj);
3928 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 if (!entry->show)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05003931 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05003932 mutex_lock(&q->sysfs_lock);
3933 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
3934 mutex_unlock(&q->sysfs_lock);
3935 return -ENOENT;
3936 }
3937 res = entry->show(q, page);
3938 mutex_unlock(&q->sysfs_lock);
3939 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941
3942static ssize_t
3943queue_attr_store(struct kobject *kobj, struct attribute *attr,
3944 const char *page, size_t length)
3945{
3946 struct queue_sysfs_entry *entry = to_queue(attr);
Al Viro483f4af2006-03-18 18:34:37 -05003947 request_queue_t *q = container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Al Viro483f4af2006-03-18 18:34:37 -05003949 ssize_t res;
3950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 if (!entry->store)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05003952 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05003953 mutex_lock(&q->sysfs_lock);
3954 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
3955 mutex_unlock(&q->sysfs_lock);
3956 return -ENOENT;
3957 }
3958 res = entry->store(q, page, length);
3959 mutex_unlock(&q->sysfs_lock);
3960 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961}
3962
3963static struct sysfs_ops queue_sysfs_ops = {
3964 .show = queue_attr_show,
3965 .store = queue_attr_store,
3966};
3967
Adrian Bunk93d17d32005-06-25 14:59:10 -07003968static struct kobj_type queue_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 .sysfs_ops = &queue_sysfs_ops,
3970 .default_attrs = default_attrs,
Al Viro483f4af2006-03-18 18:34:37 -05003971 .release = blk_release_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972};
3973
3974int blk_register_queue(struct gendisk *disk)
3975{
3976 int ret;
3977
3978 request_queue_t *q = disk->queue;
3979
3980 if (!q || !q->request_fn)
3981 return -ENXIO;
3982
3983 q->kobj.parent = kobject_get(&disk->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Al Viro483f4af2006-03-18 18:34:37 -05003985 ret = kobject_add(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 if (ret < 0)
3987 return ret;
3988
Al Viro483f4af2006-03-18 18:34:37 -05003989 kobject_uevent(&q->kobj, KOBJ_ADD);
3990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 ret = elv_register_queue(q);
3992 if (ret) {
Al Viro483f4af2006-03-18 18:34:37 -05003993 kobject_uevent(&q->kobj, KOBJ_REMOVE);
3994 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 return ret;
3996 }
3997
3998 return 0;
3999}
4000
4001void blk_unregister_queue(struct gendisk *disk)
4002{
4003 request_queue_t *q = disk->queue;
4004
4005 if (q && q->request_fn) {
4006 elv_unregister_queue(q);
4007
Al Viro483f4af2006-03-18 18:34:37 -05004008 kobject_uevent(&q->kobj, KOBJ_REMOVE);
4009 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 kobject_put(&disk->kobj);
4011 }
4012}