patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / block / ll_rw_blk.c
1 /*
2  *  linux/drivers/block/ll_rw_blk.c
3  *
4  * Copyright (C) 1991, 1992 Linus Torvalds
5  * Copyright (C) 1994,      Karl Keyte: Added support for disk statistics
6  * Elevator latency, (C) 2000  Andrea Arcangeli <andrea@suse.de> SuSE
7  * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
8  * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au> -  July2000
9  * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
10  */
11
12 /*
13  * This handles all read/write requests to block devices
14  */
15 #include <linux/config.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/backing-dev.h>
19 #include <linux/bio.h>
20 #include <linux/blkdev.h>
21 #include <linux/highmem.h>
22 #include <linux/mm.h>
23 #include <linux/kernel_stat.h>
24 #include <linux/string.h>
25 #include <linux/init.h>
26 #include <linux/bootmem.h>      /* for max_pfn/max_low_pfn */
27 #include <linux/completion.h>
28 #include <linux/slab.h>
29 #include <linux/swap.h>
30 #include <linux/writeback.h>
31
32 /*
33  * for max sense size
34  */
35 #include <scsi/scsi_cmnd.h>
36
37 static void blk_unplug_work(void *data);
38 static void blk_unplug_timeout(unsigned long data);
39
40 /*
41  * For the allocated request tables
42  */
43 static kmem_cache_t *request_cachep;
44
45 /*
46  * For queue allocation
47  */
48 static kmem_cache_t *requestq_cachep;
49
50 /*
51  * For io context allocations
52  */
53 static kmem_cache_t *iocontext_cachep;
54
55 static wait_queue_head_t congestion_wqh[2] = {
56                 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
57                 __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
58         };
59
60 /*
61  * Controlling structure to kblockd
62  */
63 static struct workqueue_struct *kblockd_workqueue; 
64
65 unsigned long blk_max_low_pfn, blk_max_pfn;
66
67 EXPORT_SYMBOL(blk_max_low_pfn);
68 EXPORT_SYMBOL(blk_max_pfn);
69
70 /* Amount of time in which a process may batch requests */
71 #define BLK_BATCH_TIME  (HZ/50UL)
72
73 /* Number of requests a "batching" process may submit */
74 #define BLK_BATCH_REQ   32
75
76 /*
77  * Return the threshold (number of used requests) at which the queue is
78  * considered to be congested.  It include a little hysteresis to keep the
79  * context switch rate down.
80  */
81 static inline int queue_congestion_on_threshold(struct request_queue *q)
82 {
83         return q->nr_congestion_on;
84 }
85
86 /*
87  * The threshold at which a queue is considered to be uncongested
88  */
89 static inline int queue_congestion_off_threshold(struct request_queue *q)
90 {
91         return q->nr_congestion_off;
92 }
93
94 static void blk_queue_congestion_threshold(struct request_queue *q)
95 {
96         int nr;
97
98         nr = q->nr_requests - (q->nr_requests / 8) + 1;
99         if (nr > q->nr_requests)
100                 nr = q->nr_requests;
101         q->nr_congestion_on = nr;
102
103         nr = q->nr_requests - (q->nr_requests / 8) - 1;
104         if (nr < 1)
105                 nr = 1;
106         q->nr_congestion_off = nr;
107 }
108
109 /*
110  * A queue has just exitted congestion.  Note this in the global counter of
111  * congested queues, and wake up anyone who was waiting for requests to be
112  * put back.
113  */
114 static void clear_queue_congested(request_queue_t *q, int rw)
115 {
116         enum bdi_state bit;
117         wait_queue_head_t *wqh = &congestion_wqh[rw];
118
119         bit = (rw == WRITE) ? BDI_write_congested : BDI_read_congested;
120         clear_bit(bit, &q->backing_dev_info.state);
121         smp_mb__after_clear_bit();
122         if (waitqueue_active(wqh))
123                 wake_up(wqh);
124 }
125
126 /*
127  * A queue has just entered congestion.  Flag that in the queue's VM-visible
128  * state flags and increment the global gounter of congested queues.
129  */
130 static void set_queue_congested(request_queue_t *q, int rw)
131 {
132         enum bdi_state bit;
133
134         bit = (rw == WRITE) ? BDI_write_congested : BDI_read_congested;
135         set_bit(bit, &q->backing_dev_info.state);
136 }
137
138 /**
139  * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
140  * @bdev:       device
141  *
142  * Locates the passed device's request queue and returns the address of its
143  * backing_dev_info
144  *
145  * Will return NULL if the request queue cannot be located.
146  */
147 struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
148 {
149         struct backing_dev_info *ret = NULL;
150         request_queue_t *q = bdev_get_queue(bdev);
151
152         if (q)
153                 ret = &q->backing_dev_info;
154         return ret;
155 }
156
157 void blk_queue_activity_fn(request_queue_t *q, activity_fn *fn, void *data)
158 {
159         q->activity_fn = fn;
160         q->activity_data = data;
161 }
162
163 EXPORT_SYMBOL(blk_queue_activity_fn);
164
165 /**
166  * blk_queue_prep_rq - set a prepare_request function for queue
167  * @q:          queue
168  * @pfn:        prepare_request function
169  *
170  * It's possible for a queue to register a prepare_request callback which
171  * is invoked before the request is handed to the request_fn. The goal of
172  * the function is to prepare a request for I/O, it can be used to build a
173  * cdb from the request data for instance.
174  *
175  */
176 void blk_queue_prep_rq(request_queue_t *q, prep_rq_fn *pfn)
177 {
178         q->prep_rq_fn = pfn;
179 }
180
181 EXPORT_SYMBOL(blk_queue_prep_rq);
182
183 /**
184  * blk_queue_merge_bvec - set a merge_bvec function for queue
185  * @q:          queue
186  * @mbfn:       merge_bvec_fn
187  *
188  * Usually queues have static limitations on the max sectors or segments that
189  * we can put in a request. Stacking drivers may have some settings that
190  * are dynamic, and thus we have to query the queue whether it is ok to
191  * add a new bio_vec to a bio at a given offset or not. If the block device
192  * has such limitations, it needs to register a merge_bvec_fn to control
193  * the size of bio's sent to it. Note that a block device *must* allow a
194  * single page to be added to an empty bio. The block device driver may want
195  * to use the bio_split() function to deal with these bio's. By default
196  * no merge_bvec_fn is defined for a queue, and only the fixed limits are
197  * honored.
198  */
199 void blk_queue_merge_bvec(request_queue_t *q, merge_bvec_fn *mbfn)
200 {
201         q->merge_bvec_fn = mbfn;
202 }
203
204 EXPORT_SYMBOL(blk_queue_merge_bvec);
205
206 /**
207  * blk_queue_make_request - define an alternate make_request function for a device
208  * @q:  the request queue for the device to be affected
209  * @mfn: the alternate make_request function
210  *
211  * Description:
212  *    The normal way for &struct bios to be passed to a device
213  *    driver is for them to be collected into requests on a request
214  *    queue, and then to allow the device driver to select requests
215  *    off that queue when it is ready.  This works well for many block
216  *    devices. However some block devices (typically virtual devices
217  *    such as md or lvm) do not benefit from the processing on the
218  *    request queue, and are served best by having the requests passed
219  *    directly to them.  This can be achieved by providing a function
220  *    to blk_queue_make_request().
221  *
222  * Caveat:
223  *    The driver that does this *must* be able to deal appropriately
224  *    with buffers in "highmemory". This can be accomplished by either calling
225  *    __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
226  *    blk_queue_bounce() to create a buffer in normal memory.
227  **/
228 void blk_queue_make_request(request_queue_t * q, make_request_fn * mfn)
229 {
230         /*
231          * set defaults
232          */
233         q->nr_requests = BLKDEV_MAX_RQ;
234         q->max_phys_segments = MAX_PHYS_SEGMENTS;
235         q->max_hw_segments = MAX_HW_SEGMENTS;
236         q->make_request_fn = mfn;
237         q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
238         q->backing_dev_info.state = 0;
239         q->backing_dev_info.memory_backed = 0;
240         blk_queue_max_sectors(q, MAX_SECTORS);
241         blk_queue_hardsect_size(q, 512);
242         blk_queue_dma_alignment(q, 511);
243         blk_queue_congestion_threshold(q);
244
245         q->unplug_thresh = 4;           /* hmm */
246         q->unplug_delay = (3 * HZ) / 1000;      /* 3 milliseconds */
247         if (q->unplug_delay == 0)
248                 q->unplug_delay = 1;
249
250         INIT_WORK(&q->unplug_work, blk_unplug_work, q);
251
252         q->unplug_timer.function = blk_unplug_timeout;
253         q->unplug_timer.data = (unsigned long)q;
254
255         /*
256          * by default assume old behaviour and bounce for any highmem page
257          */
258         blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
259
260         blk_queue_activity_fn(q, NULL, NULL);
261 }
262
263 EXPORT_SYMBOL(blk_queue_make_request);
264
265 /**
266  * blk_queue_bounce_limit - set bounce buffer limit for queue
267  * @q:  the request queue for the device
268  * @dma_addr:   bus address limit
269  *
270  * Description:
271  *    Different hardware can have different requirements as to what pages
272  *    it can do I/O directly to. A low level driver can call
273  *    blk_queue_bounce_limit to have lower memory pages allocated as bounce
274  *    buffers for doing I/O to pages residing above @page. By default
275  *    the block layer sets this to the highest numbered "low" memory page.
276  **/
277 void blk_queue_bounce_limit(request_queue_t *q, u64 dma_addr)
278 {
279         unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT;
280
281         /*
282          * set appropriate bounce gfp mask -- unfortunately we don't have a
283          * full 4GB zone, so we have to resort to low memory for any bounces.
284          * ISA has its own < 16MB zone.
285          */
286         if (bounce_pfn < blk_max_low_pfn) {
287                 BUG_ON(dma_addr < BLK_BOUNCE_ISA);
288                 init_emergency_isa_pool();
289                 q->bounce_gfp = GFP_NOIO | GFP_DMA;
290         } else
291                 q->bounce_gfp = GFP_NOIO;
292
293         q->bounce_pfn = bounce_pfn;
294 }
295
296 EXPORT_SYMBOL(blk_queue_bounce_limit);
297
298 /**
299  * blk_queue_max_sectors - set max sectors for a request for this queue
300  * @q:  the request queue for the device
301  * @max_sectors:  max sectors in the usual 512b unit
302  *
303  * Description:
304  *    Enables a low level driver to set an upper limit on the size of
305  *    received requests.
306  **/
307 void blk_queue_max_sectors(request_queue_t *q, unsigned short max_sectors)
308 {
309         if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
310                 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
311                 printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors);
312         }
313
314         q->max_sectors = max_sectors;
315 }
316
317 EXPORT_SYMBOL(blk_queue_max_sectors);
318
319 /**
320  * blk_queue_max_phys_segments - set max phys segments for a request for this queue
321  * @q:  the request queue for the device
322  * @max_segments:  max number of segments
323  *
324  * Description:
325  *    Enables a low level driver to set an upper limit on the number of
326  *    physical data segments in a request.  This would be the largest sized
327  *    scatter list the driver could handle.
328  **/
329 void blk_queue_max_phys_segments(request_queue_t *q, unsigned short max_segments)
330 {
331         if (!max_segments) {
332                 max_segments = 1;
333                 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
334         }
335
336         q->max_phys_segments = max_segments;
337 }
338
339 EXPORT_SYMBOL(blk_queue_max_phys_segments);
340
341 /**
342  * blk_queue_max_hw_segments - set max hw segments for a request for this queue
343  * @q:  the request queue for the device
344  * @max_segments:  max number of segments
345  *
346  * Description:
347  *    Enables a low level driver to set an upper limit on the number of
348  *    hw data segments in a request.  This would be the largest number of
349  *    address/length pairs the host adapter can actually give as once
350  *    to the device.
351  **/
352 void blk_queue_max_hw_segments(request_queue_t *q, unsigned short max_segments)
353 {
354         if (!max_segments) {
355                 max_segments = 1;
356                 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
357         }
358
359         q->max_hw_segments = max_segments;
360 }
361
362 EXPORT_SYMBOL(blk_queue_max_hw_segments);
363
364 /**
365  * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
366  * @q:  the request queue for the device
367  * @max_size:  max size of segment in bytes
368  *
369  * Description:
370  *    Enables a low level driver to set an upper limit on the size of a
371  *    coalesced segment
372  **/
373 void blk_queue_max_segment_size(request_queue_t *q, unsigned int max_size)
374 {
375         if (max_size < PAGE_CACHE_SIZE) {
376                 max_size = PAGE_CACHE_SIZE;
377                 printk("%s: set to minimum %d\n", __FUNCTION__, max_size);
378         }
379
380         q->max_segment_size = max_size;
381 }
382
383 EXPORT_SYMBOL(blk_queue_max_segment_size);
384
385 /**
386  * blk_queue_hardsect_size - set hardware sector size for the queue
387  * @q:  the request queue for the device
388  * @size:  the hardware sector size, in bytes
389  *
390  * Description:
391  *   This should typically be set to the lowest possible sector size
392  *   that the hardware can operate on (possible without reverting to
393  *   even internal read-modify-write operations). Usually the default
394  *   of 512 covers most hardware.
395  **/
396 void blk_queue_hardsect_size(request_queue_t *q, unsigned short size)
397 {
398         q->hardsect_size = size;
399 }
400
401 EXPORT_SYMBOL(blk_queue_hardsect_size);
402
403 /*
404  * Returns the minimum that is _not_ zero, unless both are zero.
405  */
406 #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
407
408 /**
409  * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
410  * @t:  the stacking driver (top)
411  * @b:  the underlying device (bottom)
412  **/
413 void blk_queue_stack_limits(request_queue_t *t, request_queue_t *b)
414 {
415         /* zero is "infinity" */
416         t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors);
417
418         t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments);
419         t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments);
420         t->max_segment_size = min(t->max_segment_size,b->max_segment_size);
421         t->hardsect_size = max(t->hardsect_size,b->hardsect_size);
422 }
423
424 EXPORT_SYMBOL(blk_queue_stack_limits);
425
426 /**
427  * blk_queue_segment_boundary - set boundary rules for segment merging
428  * @q:  the request queue for the device
429  * @mask:  the memory boundary mask
430  **/
431 void blk_queue_segment_boundary(request_queue_t *q, unsigned long mask)
432 {
433         if (mask < PAGE_CACHE_SIZE - 1) {
434                 mask = PAGE_CACHE_SIZE - 1;
435                 printk("%s: set to minimum %lx\n", __FUNCTION__, mask);
436         }
437
438         q->seg_boundary_mask = mask;
439 }
440
441 EXPORT_SYMBOL(blk_queue_segment_boundary);
442
443 /**
444  * blk_queue_dma_alignment - set dma length and memory alignment
445  * @q:     the request queue for the device
446  * @mask:  alignment mask
447  *
448  * description:
449  *    set required memory and length aligment for direct dma transactions.
450  *    this is used when buiding direct io requests for the queue.
451  *
452  **/
453 void blk_queue_dma_alignment(request_queue_t *q, int mask)
454 {
455         q->dma_alignment = mask;
456 }
457
458 EXPORT_SYMBOL(blk_queue_dma_alignment);
459
460 /**
461  * blk_queue_find_tag - find a request by its tag and queue
462  *
463  * @q:   The request queue for the device
464  * @tag: The tag of the request
465  *
466  * Notes:
467  *    Should be used when a device returns a tag and you want to match
468  *    it with a request.
469  *
470  *    no locks need be held.
471  **/
472 struct request *blk_queue_find_tag(request_queue_t *q, int tag)
473 {
474         struct blk_queue_tag *bqt = q->queue_tags;
475
476         if (unlikely(bqt == NULL || tag >= bqt->real_max_depth))
477                 return NULL;
478
479         return bqt->tag_index[tag];
480 }
481
482 EXPORT_SYMBOL(blk_queue_find_tag);
483
484 /**
485  * blk_queue_free_tags - release tag maintenance info
486  * @q:  the request queue for the device
487  *
488  *  Notes:
489  *    blk_cleanup_queue() will take care of calling this function, if tagging
490  *    has been used. So there's usually no need to call this directly, unless
491  *    tagging is just being disabled but the queue remains in function.
492  **/
493 void blk_queue_free_tags(request_queue_t *q)
494 {
495         struct blk_queue_tag *bqt = q->queue_tags;
496
497         if (!bqt)
498                 return;
499
500         if (atomic_dec_and_test(&bqt->refcnt)) {
501                 BUG_ON(bqt->busy);
502                 BUG_ON(!list_empty(&bqt->busy_list));
503
504                 kfree(bqt->tag_index);
505                 bqt->tag_index = NULL;
506
507                 kfree(bqt->tag_map);
508                 bqt->tag_map = NULL;
509
510                 kfree(bqt);
511         }
512
513         q->queue_tags = NULL;
514         q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED);
515 }
516
517 EXPORT_SYMBOL(blk_queue_free_tags);
518
519 static int
520 init_tag_map(request_queue_t *q, struct blk_queue_tag *tags, int depth)
521 {
522         int bits, i;
523
524         if (depth > q->nr_requests * 2) {
525                 depth = q->nr_requests * 2;
526                 printk(KERN_ERR "%s: adjusted depth to %d\n",
527                                 __FUNCTION__, depth);
528         }
529
530         tags->tag_index = kmalloc(depth * sizeof(struct request *), GFP_ATOMIC);
531         if (!tags->tag_index)
532                 goto fail;
533
534         bits = (depth / BLK_TAGS_PER_LONG) + 1;
535         tags->tag_map = kmalloc(bits * sizeof(unsigned long), GFP_ATOMIC);
536         if (!tags->tag_map)
537                 goto fail;
538
539         memset(tags->tag_index, 0, depth * sizeof(struct request *));
540         memset(tags->tag_map, 0, bits * sizeof(unsigned long));
541         tags->max_depth = depth;
542         tags->real_max_depth = bits * BITS_PER_LONG;
543
544         /*
545          * set the upper bits if the depth isn't a multiple of the word size
546          */
547         for (i = depth; i < bits * BLK_TAGS_PER_LONG; i++)
548                 __set_bit(i, tags->tag_map);
549
550         INIT_LIST_HEAD(&tags->busy_list);
551         tags->busy = 0;
552         atomic_set(&tags->refcnt, 1);
553         return 0;
554 fail:
555         kfree(tags->tag_index);
556         return -ENOMEM;
557 }
558
559 /**
560  * blk_queue_init_tags - initialize the queue tag info
561  * @q:  the request queue for the device
562  * @depth:  the maximum queue depth supported
563  **/
564 int blk_queue_init_tags(request_queue_t *q, int depth,
565                         struct blk_queue_tag *tags)
566 {
567         if (!tags) {
568                 tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC);
569                 if (!tags)
570                         goto fail;
571
572                 if (init_tag_map(q, tags, depth))
573                         goto fail;
574         } else
575                 atomic_inc(&tags->refcnt);
576
577         /*
578          * assign it, all done
579          */
580         q->queue_tags = tags;
581         q->queue_flags |= (1 << QUEUE_FLAG_QUEUED);
582         return 0;
583 fail:
584         kfree(tags);
585         return -ENOMEM;
586 }
587
588 EXPORT_SYMBOL(blk_queue_init_tags);
589
590 /**
591  * blk_queue_resize_tags - change the queueing depth
592  * @q:  the request queue for the device
593  * @new_depth: the new max command queueing depth
594  *
595  *  Notes:
596  *    Must be called with the queue lock held.
597  **/
598 int blk_queue_resize_tags(request_queue_t *q, int new_depth)
599 {
600         struct blk_queue_tag *bqt = q->queue_tags;
601         struct request **tag_index;
602         unsigned long *tag_map;
603         int bits, max_depth;
604
605         if (!bqt)
606                 return -ENXIO;
607
608         /*
609          * don't bother sizing down
610          */
611         if (new_depth <= bqt->real_max_depth) {
612                 bqt->max_depth = new_depth;
613                 return 0;
614         }
615
616         /*
617          * save the old state info, so we can copy it back
618          */
619         tag_index = bqt->tag_index;
620         tag_map = bqt->tag_map;
621         max_depth = bqt->real_max_depth;
622
623         if (init_tag_map(q, bqt, new_depth))
624                 return -ENOMEM;
625
626         memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
627         bits = max_depth / BLK_TAGS_PER_LONG;
628         memcpy(bqt->tag_map, tag_map, bits * sizeof(unsigned long));
629
630         kfree(tag_index);
631         kfree(tag_map);
632         return 0;
633 }
634
635 /**
636  * blk_queue_end_tag - end tag operations for a request
637  * @q:  the request queue for the device
638  * @rq: the request that has completed
639  *
640  *  Description:
641  *    Typically called when end_that_request_first() returns 0, meaning
642  *    all transfers have been done for a request. It's important to call
643  *    this function before end_that_request_last(), as that will put the
644  *    request back on the free list thus corrupting the internal tag list.
645  *
646  *  Notes:
647  *   queue lock must be held.
648  **/
649 void blk_queue_end_tag(request_queue_t *q, struct request *rq)
650 {
651         struct blk_queue_tag *bqt = q->queue_tags;
652         int tag = rq->tag;
653
654         BUG_ON(tag == -1);
655
656         if (unlikely(tag >= bqt->real_max_depth))
657                 return;
658
659         if (unlikely(!__test_and_clear_bit(tag, bqt->tag_map))) {
660                 printk("attempt to clear non-busy tag (%d)\n", tag);
661                 return;
662         }
663
664         list_del_init(&rq->queuelist);
665         rq->flags &= ~REQ_QUEUED;
666         rq->tag = -1;
667
668         if (unlikely(bqt->tag_index[tag] == NULL))
669                 printk("tag %d is missing\n", tag);
670
671         bqt->tag_index[tag] = NULL;
672         bqt->busy--;
673 }
674
675 EXPORT_SYMBOL(blk_queue_end_tag);
676
677 /**
678  * blk_queue_start_tag - find a free tag and assign it
679  * @q:  the request queue for the device
680  * @rq:  the block request that needs tagging
681  *
682  *  Description:
683  *    This can either be used as a stand-alone helper, or possibly be
684  *    assigned as the queue &prep_rq_fn (in which case &struct request
685  *    automagically gets a tag assigned). Note that this function
686  *    assumes that any type of request can be queued! if this is not
687  *    true for your device, you must check the request type before
688  *    calling this function.  The request will also be removed from
689  *    the request queue, so it's the drivers responsibility to readd
690  *    it if it should need to be restarted for some reason.
691  *
692  *  Notes:
693  *   queue lock must be held.
694  **/
695 int blk_queue_start_tag(request_queue_t *q, struct request *rq)
696 {
697         struct blk_queue_tag *bqt = q->queue_tags;
698         unsigned long *map = bqt->tag_map;
699         int tag = 0;
700
701         if (unlikely((rq->flags & REQ_QUEUED))) {
702                 printk(KERN_ERR 
703                        "request %p for device [%s] already tagged %d",
704                        rq, rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag);
705                 BUG();
706         }
707
708         for (map = bqt->tag_map; *map == -1UL; map++) {
709                 tag += BLK_TAGS_PER_LONG;
710
711                 if (tag >= bqt->max_depth)
712                         return 1;
713         }
714
715         tag += ffz(*map);
716         __set_bit(tag, bqt->tag_map);
717
718         rq->flags |= REQ_QUEUED;
719         rq->tag = tag;
720         bqt->tag_index[tag] = rq;
721         blkdev_dequeue_request(rq);
722         list_add(&rq->queuelist, &bqt->busy_list);
723         bqt->busy++;
724         return 0;
725 }
726
727 EXPORT_SYMBOL(blk_queue_start_tag);
728
729 /**
730  * blk_queue_invalidate_tags - invalidate all pending tags
731  * @q:  the request queue for the device
732  *
733  *  Description:
734  *   Hardware conditions may dictate a need to stop all pending requests.
735  *   In this case, we will safely clear the block side of the tag queue and
736  *   readd all requests to the request queue in the right order.
737  *
738  *  Notes:
739  *   queue lock must be held.
740  **/
741 void blk_queue_invalidate_tags(request_queue_t *q)
742 {
743         struct blk_queue_tag *bqt = q->queue_tags;
744         struct list_head *tmp, *n;
745         struct request *rq;
746
747         list_for_each_safe(tmp, n, &bqt->busy_list) {
748                 rq = list_entry_rq(tmp);
749
750                 if (rq->tag == -1) {
751                         printk("bad tag found on list\n");
752                         list_del_init(&rq->queuelist);
753                         rq->flags &= ~REQ_QUEUED;
754                 } else
755                         blk_queue_end_tag(q, rq);
756
757                 rq->flags &= ~REQ_STARTED;
758                 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
759         }
760 }
761
762 EXPORT_SYMBOL(blk_queue_invalidate_tags);
763
764 static char *rq_flags[] = {
765         "REQ_RW",
766         "REQ_FAILFAST",
767         "REQ_SOFTBARRIER",
768         "REQ_HARDBARRIER",
769         "REQ_CMD",
770         "REQ_NOMERGE",
771         "REQ_STARTED",
772         "REQ_DONTPREP",
773         "REQ_QUEUED",
774         "REQ_PC",
775         "REQ_BLOCK_PC",
776         "REQ_SENSE",
777         "REQ_FAILED",
778         "REQ_QUIET",
779         "REQ_SPECIAL",
780         "REQ_DRIVE_CMD",
781         "REQ_DRIVE_TASK",
782         "REQ_DRIVE_TASKFILE",
783         "REQ_PREEMPT",
784         "REQ_PM_SUSPEND",
785         "REQ_PM_RESUME",
786         "REQ_PM_SHUTDOWN",
787 };
788
789 void blk_dump_rq_flags(struct request *rq, char *msg)
790 {
791         int bit;
792
793         printk("%s: dev %s: flags = ", msg,
794                 rq->rq_disk ? rq->rq_disk->disk_name : "?");
795         bit = 0;
796         do {
797                 if (rq->flags & (1 << bit))
798                         printk("%s ", rq_flags[bit]);
799                 bit++;
800         } while (bit < __REQ_NR_BITS);
801
802         printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector,
803                                                        rq->nr_sectors,
804                                                        rq->current_nr_sectors);
805         printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len);
806
807         if (rq->flags & (REQ_BLOCK_PC | REQ_PC)) {
808                 printk("cdb: ");
809                 for (bit = 0; bit < sizeof(rq->cmd); bit++)
810                         printk("%02x ", rq->cmd[bit]);
811                 printk("\n");
812         }
813 }
814
815 EXPORT_SYMBOL(blk_dump_rq_flags);
816
817 void blk_recount_segments(request_queue_t *q, struct bio *bio)
818 {
819         struct bio_vec *bv, *bvprv = NULL;
820         int i, nr_phys_segs, nr_hw_segs, seg_size, cluster;
821         int high, highprv = 1;
822
823         if (unlikely(!bio->bi_io_vec))
824                 return;
825
826         cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
827         seg_size = nr_phys_segs = nr_hw_segs = 0;
828         bio_for_each_segment(bv, bio, i) {
829                 /*
830                  * the trick here is making sure that a high page is never
831                  * considered part of another segment, since that might
832                  * change with the bounce page.
833                  */
834                 high = page_to_pfn(bv->bv_page) >= q->bounce_pfn;
835                 if (high || highprv)
836                         goto new_hw_segment;
837                 if (cluster) {
838                         if (seg_size + bv->bv_len > q->max_segment_size)
839                                 goto new_segment;
840                         if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
841                                 goto new_segment;
842                         if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
843                                 goto new_segment;
844
845                         seg_size += bv->bv_len;
846                         bvprv = bv;
847                         continue;
848                 }
849 new_segment:
850                 if (!BIOVEC_VIRT_MERGEABLE(bvprv, bv))
851 new_hw_segment:
852                         nr_hw_segs++;
853
854                 nr_phys_segs++;
855                 bvprv = bv;
856                 seg_size = bv->bv_len;
857                 highprv = high;
858         }
859
860         bio->bi_phys_segments = nr_phys_segs;
861         bio->bi_hw_segments = nr_hw_segs;
862         bio->bi_flags |= (1 << BIO_SEG_VALID);
863 }
864
865
866 int blk_phys_contig_segment(request_queue_t *q, struct bio *bio,
867                                    struct bio *nxt)
868 {
869         if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
870                 return 0;
871
872         if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
873                 return 0;
874         if (bio->bi_size + nxt->bi_size > q->max_segment_size)
875                 return 0;
876
877         /*
878          * bio and nxt are contigous in memory, check if the queue allows
879          * these two to be merged into one
880          */
881         if (BIO_SEG_BOUNDARY(q, bio, nxt))
882                 return 1;
883
884         return 0;
885 }
886
887 EXPORT_SYMBOL(blk_phys_contig_segment);
888
889 int blk_hw_contig_segment(request_queue_t *q, struct bio *bio,
890                                  struct bio *nxt)
891 {
892         if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
893                 return 0;
894
895         if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
896                 return 0;
897         if (bio->bi_size + nxt->bi_size > q->max_segment_size)
898                 return 0;
899
900         /*
901          * bio and nxt are contigous in memory, check if the queue allows
902          * these two to be merged into one
903          */
904         if (BIO_SEG_BOUNDARY(q, bio, nxt))
905                 return 1;
906
907         return 0;
908 }
909
910 EXPORT_SYMBOL(blk_hw_contig_segment);
911
912 /*
913  * map a request to scatterlist, return number of sg entries setup. Caller
914  * must make sure sg can hold rq->nr_phys_segments entries
915  */
916 int blk_rq_map_sg(request_queue_t *q, struct request *rq, struct scatterlist *sg)
917 {
918         struct bio_vec *bvec, *bvprv;
919         struct bio *bio;
920         int nsegs, i, cluster;
921
922         nsegs = 0;
923         cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
924
925         /*
926          * for each bio in rq
927          */
928         bvprv = NULL;
929         rq_for_each_bio(bio, rq) {
930                 /*
931                  * for each segment in bio
932                  */
933                 bio_for_each_segment(bvec, bio, i) {
934                         int nbytes = bvec->bv_len;
935
936                         if (bvprv && cluster) {
937                                 if (sg[nsegs - 1].length + nbytes > q->max_segment_size)
938                                         goto new_segment;
939
940                                 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
941                                         goto new_segment;
942                                 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
943                                         goto new_segment;
944
945                                 sg[nsegs - 1].length += nbytes;
946                         } else {
947 new_segment:
948                                 memset(&sg[nsegs],0,sizeof(struct scatterlist));
949                                 sg[nsegs].page = bvec->bv_page;
950                                 sg[nsegs].length = nbytes;
951                                 sg[nsegs].offset = bvec->bv_offset;
952
953                                 nsegs++;
954                         }
955                         bvprv = bvec;
956                 } /* segments in bio */
957         } /* bios in rq */
958
959         return nsegs;
960 }
961
962 EXPORT_SYMBOL(blk_rq_map_sg);
963
964 /*
965  * the standard queue merge functions, can be overridden with device
966  * specific ones if so desired
967  */
968
969 static inline int ll_new_mergeable(request_queue_t *q,
970                                    struct request *req,
971                                    struct bio *bio)
972 {
973         int nr_phys_segs = bio_phys_segments(q, bio);
974
975         if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
976                 req->flags |= REQ_NOMERGE;
977                 q->last_merge = NULL;
978                 return 0;
979         }
980
981         /*
982          * A hw segment is just getting larger, bump just the phys
983          * counter.
984          */
985         req->nr_phys_segments += nr_phys_segs;
986         return 1;
987 }
988
989 static inline int ll_new_hw_segment(request_queue_t *q,
990                                     struct request *req,
991                                     struct bio *bio)
992 {
993         int nr_hw_segs = bio_hw_segments(q, bio);
994         int nr_phys_segs = bio_phys_segments(q, bio);
995
996         if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments
997             || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
998                 req->flags |= REQ_NOMERGE;
999                 q->last_merge = NULL;
1000                 return 0;
1001         }
1002
1003         /*
1004          * This will form the start of a new hw segment.  Bump both
1005          * counters.
1006          */
1007         req->nr_hw_segments += nr_hw_segs;
1008         req->nr_phys_segments += nr_phys_segs;
1009         return 1;
1010 }
1011
1012 static int ll_back_merge_fn(request_queue_t *q, struct request *req, 
1013                             struct bio *bio)
1014 {
1015         if (req->nr_sectors + bio_sectors(bio) > q->max_sectors) {
1016                 req->flags |= REQ_NOMERGE;
1017                 q->last_merge = NULL;
1018                 return 0;
1019         }
1020
1021         if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)))
1022                 return ll_new_mergeable(q, req, bio);
1023
1024         return ll_new_hw_segment(q, req, bio);
1025 }
1026
1027 static int ll_front_merge_fn(request_queue_t *q, struct request *req, 
1028                              struct bio *bio)
1029 {
1030         if (req->nr_sectors + bio_sectors(bio) > q->max_sectors) {
1031                 req->flags |= REQ_NOMERGE;
1032                 q->last_merge = NULL;
1033                 return 0;
1034         }
1035
1036         if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)))
1037                 return ll_new_mergeable(q, req, bio);
1038
1039         return ll_new_hw_segment(q, req, bio);
1040 }
1041
1042 static int ll_merge_requests_fn(request_queue_t *q, struct request *req,
1043                                 struct request *next)
1044 {
1045         int total_phys_segments = req->nr_phys_segments +next->nr_phys_segments;
1046         int total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
1047
1048         /*
1049          * First check if the either of the requests are re-queued
1050          * requests.  Can't merge them if they are.
1051          */
1052         if (req->special || next->special)
1053                 return 0;
1054
1055         /*
1056          * Will it become to large?
1057          */
1058         if ((req->nr_sectors + next->nr_sectors) > q->max_sectors)
1059                 return 0;
1060
1061         total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
1062         if (blk_phys_contig_segment(q, req->biotail, next->bio))
1063                 total_phys_segments--;
1064
1065         if (total_phys_segments > q->max_phys_segments)
1066                 return 0;
1067
1068         total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
1069         if (blk_hw_contig_segment(q, req->biotail, next->bio))
1070                 total_hw_segments--;
1071
1072         if (total_hw_segments > q->max_hw_segments)
1073                 return 0;
1074
1075         /* Merge is OK... */
1076         req->nr_phys_segments = total_phys_segments;
1077         req->nr_hw_segments = total_hw_segments;
1078         return 1;
1079 }
1080
1081 /*
1082  * "plug" the device if there are no outstanding requests: this will
1083  * force the transfer to start only after we have put all the requests
1084  * on the list.
1085  *
1086  * This is called with interrupts off and no requests on the queue and
1087  * with the queue lock held.
1088  */
1089 void blk_plug_device(request_queue_t *q)
1090 {
1091         WARN_ON(!irqs_disabled());
1092
1093         /*
1094          * don't plug a stopped queue, it must be paired with blk_start_queue()
1095          * which will restart the queueing
1096          */
1097         if (test_bit(QUEUE_FLAG_STOPPED, &q->queue_flags))
1098                 return;
1099
1100         if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
1101                 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
1102 }
1103
1104 EXPORT_SYMBOL(blk_plug_device);
1105
1106 /*
1107  * remove the queue from the plugged list, if present. called with
1108  * queue lock held and interrupts disabled.
1109  */
1110 int blk_remove_plug(request_queue_t *q)
1111 {
1112         WARN_ON(!irqs_disabled());
1113
1114         if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
1115                 return 0;
1116
1117         del_timer(&q->unplug_timer);
1118         return 1;
1119 }
1120
1121 EXPORT_SYMBOL(blk_remove_plug);
1122
1123 /*
1124  * remove the plug and let it rip..
1125  */
1126 static inline void __generic_unplug_device(request_queue_t *q)
1127 {
1128         if (test_bit(QUEUE_FLAG_STOPPED, &q->queue_flags))
1129                 return;
1130
1131         if (!blk_remove_plug(q))
1132                 return;
1133
1134         /*
1135          * was plugged, fire request_fn if queue has stuff to do
1136          */
1137         if (elv_next_request(q))
1138                 q->request_fn(q);
1139 }
1140
1141 /**
1142  * generic_unplug_device - fire a request queue
1143  * @q:    The &request_queue_t in question
1144  *
1145  * Description:
1146  *   Linux uses plugging to build bigger requests queues before letting
1147  *   the device have at them. If a queue is plugged, the I/O scheduler
1148  *   is still adding and merging requests on the queue. Once the queue
1149  *   gets unplugged, the request_fn defined for the queue is invoked and
1150  *   transfers started.
1151  **/
1152 void generic_unplug_device(request_queue_t *q)
1153 {
1154         spin_lock_irq(q->queue_lock);
1155         __generic_unplug_device(q);
1156         spin_unlock_irq(q->queue_lock);
1157 }
1158 EXPORT_SYMBOL(generic_unplug_device);
1159
1160 static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
1161                                    struct page *page)
1162 {
1163         request_queue_t *q = bdi->unplug_io_data;
1164
1165         /*
1166          * devices don't necessarily have an ->unplug_fn defined
1167          */
1168         if (q->unplug_fn)
1169                 q->unplug_fn(q);
1170 }
1171
1172 static void blk_unplug_work(void *data)
1173 {
1174         request_queue_t *q = data;
1175
1176         q->unplug_fn(q);
1177 }
1178
1179 static void blk_unplug_timeout(unsigned long data)
1180 {
1181         request_queue_t *q = (request_queue_t *)data;
1182
1183         kblockd_schedule_work(&q->unplug_work);
1184 }
1185
1186 /**
1187  * blk_start_queue - restart a previously stopped queue
1188  * @q:    The &request_queue_t in question
1189  *
1190  * Description:
1191  *   blk_start_queue() will clear the stop flag on the queue, and call
1192  *   the request_fn for the queue if it was in a stopped state when
1193  *   entered. Also see blk_stop_queue(). Queue lock must be held.
1194  **/
1195 void blk_start_queue(request_queue_t *q)
1196 {
1197         clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1198
1199         /*
1200          * one level of recursion is ok and is much faster than kicking
1201          * the unplug handling
1202          */
1203         if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1204                 q->request_fn(q);
1205                 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1206         } else {
1207                 blk_plug_device(q);
1208                 kblockd_schedule_work(&q->unplug_work);
1209         }
1210 }
1211
1212 EXPORT_SYMBOL(blk_start_queue);
1213
1214 /**
1215  * blk_stop_queue - stop a queue
1216  * @q:    The &request_queue_t in question
1217  *
1218  * Description:
1219  *   The Linux block layer assumes that a block driver will consume all
1220  *   entries on the request queue when the request_fn strategy is called.
1221  *   Often this will not happen, because of hardware limitations (queue
1222  *   depth settings). If a device driver gets a 'queue full' response,
1223  *   or if it simply chooses not to queue more I/O at one point, it can
1224  *   call this function to prevent the request_fn from being called until
1225  *   the driver has signalled it's ready to go again. This happens by calling
1226  *   blk_start_queue() to restart queue operations. Queue lock must be held.
1227  **/
1228 void blk_stop_queue(request_queue_t *q)
1229 {
1230         blk_remove_plug(q);
1231         set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1232 }
1233
1234 EXPORT_SYMBOL(blk_stop_queue);
1235
1236 /**
1237  * blk_run_queue - run a single device queue
1238  * @q:  The queue to run
1239  */
1240 void blk_run_queue(struct request_queue *q)
1241 {
1242         unsigned long flags;
1243
1244         spin_lock_irqsave(q->queue_lock, flags);
1245         blk_remove_plug(q);
1246         q->request_fn(q);
1247         spin_unlock_irqrestore(q->queue_lock, flags);
1248 }
1249
1250 EXPORT_SYMBOL(blk_run_queue);
1251
1252 /**
1253  * blk_cleanup_queue: - release a &request_queue_t when it is no longer needed
1254  * @q:    the request queue to be released
1255  *
1256  * Description:
1257  *     blk_cleanup_queue is the pair to blk_init_queue() or
1258  *     blk_queue_make_request().  It should be called when a request queue is
1259  *     being released; typically when a block device is being de-registered.
1260  *     Currently, its primary task it to free all the &struct request
1261  *     structures that were allocated to the queue and the queue itself.
1262  *
1263  * Caveat:
1264  *     Hopefully the low level driver will have finished any
1265  *     outstanding requests first...
1266  **/
1267 void blk_cleanup_queue(request_queue_t * q)
1268 {
1269         struct request_list *rl = &q->rq;
1270
1271         if (!atomic_dec_and_test(&q->refcnt))
1272                 return;
1273
1274         elevator_exit(q);
1275
1276         del_timer_sync(&q->unplug_timer);
1277         kblockd_flush();
1278
1279         if (rl->rq_pool)
1280                 mempool_destroy(rl->rq_pool);
1281
1282         if (blk_queue_tagged(q))
1283                 blk_queue_free_tags(q);
1284
1285         kmem_cache_free(requestq_cachep, q);
1286 }
1287
1288 EXPORT_SYMBOL(blk_cleanup_queue);
1289
1290 static int blk_init_free_list(request_queue_t *q)
1291 {
1292         struct request_list *rl = &q->rq;
1293
1294         rl->count[READ] = rl->count[WRITE] = 0;
1295         init_waitqueue_head(&rl->wait[READ]);
1296         init_waitqueue_head(&rl->wait[WRITE]);
1297
1298         rl->rq_pool = mempool_create(BLKDEV_MIN_RQ, mempool_alloc_slab, mempool_free_slab, request_cachep);
1299
1300         if (!rl->rq_pool)
1301                 return -ENOMEM;
1302
1303         return 0;
1304 }
1305
1306 static int __make_request(request_queue_t *, struct bio *);
1307
1308 static elevator_t *chosen_elevator =
1309 #if defined(CONFIG_IOSCHED_AS)
1310         &iosched_as;
1311 #elif defined(CONFIG_IOSCHED_DEADLINE)
1312         &iosched_deadline;
1313 #elif defined(CONFIG_IOSCHED_CFQ)
1314         &iosched_cfq;
1315 #elif defined(CONFIG_IOSCHED_NOOP)
1316         &elevator_noop;
1317 #else
1318         NULL;
1319 #error "You must have at least 1 I/O scheduler selected"
1320 #endif
1321
1322 #if defined(CONFIG_IOSCHED_AS) || defined(CONFIG_IOSCHED_DEADLINE) || defined (CONFIG_IOSCHED_NOOP)
1323 static int __init elevator_setup(char *str)
1324 {
1325 #ifdef CONFIG_IOSCHED_DEADLINE
1326         if (!strcmp(str, "deadline"))
1327                 chosen_elevator = &iosched_deadline;
1328 #endif
1329 #ifdef CONFIG_IOSCHED_AS
1330         if (!strcmp(str, "as"))
1331                 chosen_elevator = &iosched_as;
1332 #endif
1333 #ifdef CONFIG_IOSCHED_CFQ
1334         if (!strcmp(str, "cfq"))
1335                 chosen_elevator = &iosched_cfq;
1336 #endif
1337 #ifdef CONFIG_IOSCHED_NOOP
1338         if (!strcmp(str, "noop"))
1339                 chosen_elevator = &elevator_noop;
1340 #endif
1341         return 1;
1342 }
1343
1344 __setup("elevator=", elevator_setup);
1345 #endif /* CONFIG_IOSCHED_AS || CONFIG_IOSCHED_DEADLINE || CONFIG_IOSCHED_NOOP */
1346
1347 request_queue_t *blk_alloc_queue(int gfp_mask)
1348 {
1349         request_queue_t *q = kmem_cache_alloc(requestq_cachep, gfp_mask);
1350
1351         if (!q)
1352                 return NULL;
1353
1354         memset(q, 0, sizeof(*q));
1355         init_timer(&q->unplug_timer);
1356         atomic_set(&q->refcnt, 1);
1357
1358         q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
1359         q->backing_dev_info.unplug_io_data = q;
1360
1361         return q;
1362 }
1363
1364 EXPORT_SYMBOL(blk_alloc_queue);
1365
1366 /**
1367  * blk_init_queue  - prepare a request queue for use with a block device
1368  * @rfn:  The function to be called to process requests that have been
1369  *        placed on the queue.
1370  * @lock: Request queue spin lock
1371  *
1372  * Description:
1373  *    If a block device wishes to use the standard request handling procedures,
1374  *    which sorts requests and coalesces adjacent requests, then it must
1375  *    call blk_init_queue().  The function @rfn will be called when there
1376  *    are requests on the queue that need to be processed.  If the device
1377  *    supports plugging, then @rfn may not be called immediately when requests
1378  *    are available on the queue, but may be called at some time later instead.
1379  *    Plugged queues are generally unplugged when a buffer belonging to one
1380  *    of the requests on the queue is needed, or due to memory pressure.
1381  *
1382  *    @rfn is not required, or even expected, to remove all requests off the
1383  *    queue, but only as many as it can handle at a time.  If it does leave
1384  *    requests on the queue, it is responsible for arranging that the requests
1385  *    get dealt with eventually.
1386  *
1387  *    The queue spin lock must be held while manipulating the requests on the
1388  *    request queue.
1389  *
1390  *    Function returns a pointer to the initialized request queue, or NULL if
1391  *    it didn't succeed.
1392  *
1393  * Note:
1394  *    blk_init_queue() must be paired with a blk_cleanup_queue() call
1395  *    when the block device is deactivated (such as at module unload).
1396  **/
1397 request_queue_t *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
1398 {
1399         request_queue_t *q;
1400         static int printed;
1401
1402         q = blk_alloc_queue(GFP_KERNEL);
1403         if (!q)
1404                 return NULL;
1405
1406         if (blk_init_free_list(q))
1407                 goto out_init;
1408
1409         if (!printed) {
1410                 printed = 1;
1411                 printk("Using %s io scheduler\n", chosen_elevator->elevator_name);
1412         }
1413
1414         if (elevator_init(q, chosen_elevator))
1415                 goto out_elv;
1416
1417         q->request_fn           = rfn;
1418         q->back_merge_fn        = ll_back_merge_fn;
1419         q->front_merge_fn       = ll_front_merge_fn;
1420         q->merge_requests_fn    = ll_merge_requests_fn;
1421         q->prep_rq_fn           = NULL;
1422         q->unplug_fn            = generic_unplug_device;
1423         q->queue_flags          = (1 << QUEUE_FLAG_CLUSTER);
1424         q->queue_lock           = lock;
1425
1426         blk_queue_segment_boundary(q, 0xffffffff);
1427
1428         blk_queue_make_request(q, __make_request);
1429         blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
1430
1431         blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
1432         blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
1433
1434         return q;
1435 out_elv:
1436         blk_cleanup_queue(q);
1437 out_init:
1438         kmem_cache_free(requestq_cachep, q);
1439         return NULL;
1440 }
1441
1442 EXPORT_SYMBOL(blk_init_queue);
1443
1444 int blk_get_queue(request_queue_t *q)
1445 {
1446         if (!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
1447                 atomic_inc(&q->refcnt);
1448                 return 0;
1449         }
1450
1451         return 1;
1452 }
1453
1454 EXPORT_SYMBOL(blk_get_queue);
1455
1456 static inline void blk_free_request(request_queue_t *q, struct request *rq)
1457 {
1458         elv_put_request(q, rq);
1459         mempool_free(rq, q->rq.rq_pool);
1460 }
1461
1462 static inline struct request *blk_alloc_request(request_queue_t *q,int gfp_mask)
1463 {
1464         struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
1465
1466         if (!rq)
1467                 return NULL;
1468
1469         if (!elv_set_request(q, rq, gfp_mask))
1470                 return rq;
1471
1472         mempool_free(rq, q->rq.rq_pool);
1473         return NULL;
1474 }
1475
1476 /*
1477  * ioc_batching returns true if the ioc is a valid batching request and
1478  * should be given priority access to a request.
1479  */
1480 static inline int ioc_batching(struct io_context *ioc)
1481 {
1482         if (!ioc)
1483                 return 0;
1484
1485         /*
1486          * Make sure the process is able to allocate at least 1 request
1487          * even if the batch times out, otherwise we could theoretically
1488          * lose wakeups.
1489          */
1490         return ioc->nr_batch_requests == BLK_BATCH_REQ ||
1491                 (ioc->nr_batch_requests > 0
1492                 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
1493 }
1494
1495 /*
1496  * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
1497  * will cause the process to be a "batcher" on all queues in the system. This
1498  * is the behaviour we want though - once it gets a wakeup it should be given
1499  * a nice run.
1500  */
1501 void ioc_set_batching(struct io_context *ioc)
1502 {
1503         if (!ioc || ioc_batching(ioc))
1504                 return;
1505
1506         ioc->nr_batch_requests = BLK_BATCH_REQ;
1507         ioc->last_waited = jiffies;
1508 }
1509
1510 /*
1511  * A request has just been released.  Account for it, update the full and
1512  * congestion status, wake up any waiters.   Called under q->queue_lock.
1513  */
1514 static void freed_request(request_queue_t *q, int rw)
1515 {
1516         struct request_list *rl = &q->rq;
1517
1518         rl->count[rw]--;
1519         if (rl->count[rw] < queue_congestion_off_threshold(q))
1520                 clear_queue_congested(q, rw);
1521         if (rl->count[rw]+1 <= q->nr_requests) {
1522                 if (waitqueue_active(&rl->wait[rw]))
1523                         wake_up(&rl->wait[rw]);
1524                 if (!waitqueue_active(&rl->wait[rw]))
1525                         blk_clear_queue_full(q, rw);
1526         }
1527 }
1528
1529 #define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
1530 /*
1531  * Get a free request, queue_lock must not be held
1532  */
1533 static struct request *get_request(request_queue_t *q, int rw, int gfp_mask)
1534 {
1535         struct request *rq = NULL;
1536         struct request_list *rl = &q->rq;
1537         struct io_context *ioc = get_io_context(gfp_mask);
1538
1539         spin_lock_irq(q->queue_lock);
1540         if (rl->count[rw]+1 >= q->nr_requests) {
1541                 /*
1542                  * The queue will fill after this allocation, so set it as
1543                  * full, and mark this process as "batching". This process
1544                  * will be allowed to complete a batch of requests, others
1545                  * will be blocked.
1546                  */
1547                 if (!blk_queue_full(q, rw)) {
1548                         ioc_set_batching(ioc);
1549                         blk_set_queue_full(q, rw);
1550                 }
1551         }
1552
1553         if (blk_queue_full(q, rw)
1554                         && !ioc_batching(ioc) && !elv_may_queue(q, rw)) {
1555                 /*
1556                  * The queue is full and the allocating process is not a
1557                  * "batcher", and not exempted by the IO scheduler
1558                  */
1559                 spin_unlock_irq(q->queue_lock);
1560                 goto out;
1561         }
1562
1563         rl->count[rw]++;
1564         if (rl->count[rw] >= queue_congestion_on_threshold(q))
1565                 set_queue_congested(q, rw);
1566         spin_unlock_irq(q->queue_lock);
1567
1568         rq = blk_alloc_request(q, gfp_mask);
1569         if (!rq) {
1570                 /*
1571                  * Allocation failed presumably due to memory. Undo anything
1572                  * we might have messed up.
1573                  *
1574                  * Allocating task should really be put onto the front of the
1575                  * wait queue, but this is pretty rare.
1576                  */
1577                 spin_lock_irq(q->queue_lock);
1578                 freed_request(q, rw);
1579                 spin_unlock_irq(q->queue_lock);
1580                 goto out;
1581         }
1582
1583         if (ioc_batching(ioc))
1584                 ioc->nr_batch_requests--;
1585         
1586         INIT_LIST_HEAD(&rq->queuelist);
1587
1588         /*
1589          * first three bits are identical in rq->flags and bio->bi_rw,
1590          * see bio.h and blkdev.h
1591          */
1592         rq->flags = rw;
1593
1594         rq->errors = 0;
1595         rq->rq_status = RQ_ACTIVE;
1596         rq->bio = rq->biotail = NULL;
1597         rq->buffer = NULL;
1598         rq->ref_count = 1;
1599         rq->q = q;
1600         rq->rl = rl;
1601         rq->waiting = NULL;
1602         rq->special = NULL;
1603         rq->data_len = 0;
1604         rq->data = NULL;
1605         rq->sense = NULL;
1606
1607 out:
1608         put_io_context(ioc);
1609         return rq;
1610 }
1611
1612 /*
1613  * No available requests for this queue, unplug the device and wait for some
1614  * requests to become available.
1615  */
1616 static struct request *get_request_wait(request_queue_t *q, int rw)
1617 {
1618         DEFINE_WAIT(wait);
1619         struct request *rq;
1620
1621         generic_unplug_device(q);
1622         do {
1623                 struct request_list *rl = &q->rq;
1624
1625                 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
1626                                 TASK_UNINTERRUPTIBLE);
1627
1628                 rq = get_request(q, rw, GFP_NOIO);
1629
1630                 if (!rq) {
1631                         struct io_context *ioc;
1632
1633                         io_schedule();
1634
1635                         /*
1636                          * After sleeping, we become a "batching" process and
1637                          * will be able to allocate at least one request, and
1638                          * up to a big batch of them for a small period time.
1639                          * See ioc_batching, ioc_set_batching
1640                          */
1641                         ioc = get_io_context(GFP_NOIO);
1642                         ioc_set_batching(ioc);
1643                         put_io_context(ioc);
1644                 }
1645                 finish_wait(&rl->wait[rw], &wait);
1646         } while (!rq);
1647
1648         return rq;
1649 }
1650
1651 struct request *blk_get_request(request_queue_t *q, int rw, int gfp_mask)
1652 {
1653         struct request *rq;
1654
1655         BUG_ON(rw != READ && rw != WRITE);
1656
1657         if (gfp_mask & __GFP_WAIT)
1658                 rq = get_request_wait(q, rw);
1659         else
1660                 rq = get_request(q, rw, gfp_mask);
1661
1662         return rq;
1663 }
1664
1665 EXPORT_SYMBOL(blk_get_request);
1666
1667 /**
1668  * blk_requeue_request - put a request back on queue
1669  * @q:          request queue where request should be inserted
1670  * @rq:         request to be inserted
1671  *
1672  * Description:
1673  *    Drivers often keep queueing requests until the hardware cannot accept
1674  *    more, when that condition happens we need to put the request back
1675  *    on the queue. Must be called with queue lock held.
1676  */
1677 void blk_requeue_request(request_queue_t *q, struct request *rq)
1678 {
1679         if (blk_rq_tagged(rq))
1680                 blk_queue_end_tag(q, rq);
1681
1682         elv_requeue_request(q, rq);
1683 }
1684
1685 EXPORT_SYMBOL(blk_requeue_request);
1686
1687 /**
1688  * blk_insert_request - insert a special request in to a request queue
1689  * @q:          request queue where request should be inserted
1690  * @rq:         request to be inserted
1691  * @at_head:    insert request at head or tail of queue
1692  * @data:       private data
1693  * @reinsert:   true if request it a reinsertion of previously processed one
1694  *
1695  * Description:
1696  *    Many block devices need to execute commands asynchronously, so they don't
1697  *    block the whole kernel from preemption during request execution.  This is
1698  *    accomplished normally by inserting aritficial requests tagged as
1699  *    REQ_SPECIAL in to the corresponding request queue, and letting them be
1700  *    scheduled for actual execution by the request queue.
1701  *
1702  *    We have the option of inserting the head or the tail of the queue.
1703  *    Typically we use the tail for new ioctls and so forth.  We use the head
1704  *    of the queue for things like a QUEUE_FULL message from a device, or a
1705  *    host that is unable to accept a particular command.
1706  */
1707 void blk_insert_request(request_queue_t *q, struct request *rq,
1708                         int at_head, void *data, int reinsert)
1709 {
1710         unsigned long flags;
1711
1712         /*
1713          * tell I/O scheduler that this isn't a regular read/write (ie it
1714          * must not attempt merges on this) and that it acts as a soft
1715          * barrier
1716          */
1717         rq->flags |= REQ_SPECIAL | REQ_SOFTBARRIER;
1718
1719         rq->special = data;
1720
1721         spin_lock_irqsave(q->queue_lock, flags);
1722
1723         /*
1724          * If command is tagged, release the tag
1725          */
1726         if (reinsert)
1727                 blk_requeue_request(q, rq);
1728         else {
1729                 int where = ELEVATOR_INSERT_BACK;
1730
1731                 if (at_head)
1732                         where = ELEVATOR_INSERT_FRONT;
1733
1734                 if (blk_rq_tagged(rq))
1735                         blk_queue_end_tag(q, rq);
1736
1737                 drive_stat_acct(rq, rq->nr_sectors, 1);
1738                 __elv_add_request(q, rq, where, 0);
1739         }
1740         if (blk_queue_plugged(q))
1741                 __generic_unplug_device(q);
1742         else
1743                 q->request_fn(q);
1744         spin_unlock_irqrestore(q->queue_lock, flags);
1745 }
1746
1747 EXPORT_SYMBOL(blk_insert_request);
1748
1749 /**
1750  * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage
1751  * @q:          request queue where request should be inserted
1752  * @rw:         READ or WRITE data
1753  * @ubuf:       the user buffer
1754  * @len:        length of user data
1755  *
1756  * Description:
1757  *    Data will be mapped directly for zero copy io, if possible. Otherwise
1758  *    a kernel bounce buffer is used.
1759  *
1760  *    A matching blk_rq_unmap_user() must be issued at the end of io, while
1761  *    still in process context.
1762  */
1763 struct request *blk_rq_map_user(request_queue_t *q, int rw, void __user *ubuf,
1764                                 unsigned int len)
1765 {
1766         struct request *rq = NULL;
1767         char *buf = NULL;
1768         struct bio *bio;
1769         int ret;
1770
1771         rq = blk_get_request(q, rw, __GFP_WAIT);
1772         if (!rq)
1773                 return ERR_PTR(-ENOMEM);
1774
1775         bio = bio_map_user(q, NULL, (unsigned long) ubuf, len, rw == READ);
1776         if (!bio) {
1777                 int bytes = (len + 511) & ~511;
1778
1779                 buf = kmalloc(bytes, q->bounce_gfp | GFP_USER);
1780                 if (!buf) {
1781                         ret = -ENOMEM;
1782                         goto fault;
1783                 }
1784
1785                 if (rw == WRITE) {
1786                         if (copy_from_user(buf, ubuf, len)) {
1787                                 ret = -EFAULT;
1788                                 goto fault;
1789                         }
1790                 } else
1791                         memset(buf, 0, len);
1792         }
1793
1794         rq->bio = rq->biotail = bio;
1795         if (rq->bio)
1796                 blk_rq_bio_prep(q, rq, bio);
1797
1798         rq->buffer = rq->data = buf;
1799         rq->data_len = len;
1800         return rq;
1801 fault:
1802         if (buf)
1803                 kfree(buf);
1804         if (bio)
1805                 bio_unmap_user(bio, 1);
1806         if (rq)
1807                 blk_put_request(rq);
1808
1809         return ERR_PTR(ret);
1810 }
1811
1812 EXPORT_SYMBOL(blk_rq_map_user);
1813
1814 /**
1815  * blk_rq_unmap_user - unmap a request with user data
1816  * @rq:         request to be unmapped
1817  * @ubuf:       user buffer
1818  * @ulen:       length of user buffer
1819  *
1820  * Description:
1821  *    Unmap a request previously mapped by blk_rq_map_user().
1822  */
1823 int blk_rq_unmap_user(struct request *rq, void __user *ubuf, struct bio *bio,
1824                       unsigned int ulen)
1825 {
1826         const int read = rq_data_dir(rq) == READ;
1827         int ret = 0;
1828
1829         if (bio)
1830                 bio_unmap_user(bio, read);
1831         if (rq->buffer) {
1832                 if (read && copy_to_user(ubuf, rq->buffer, ulen))
1833                         ret = -EFAULT;
1834                 kfree(rq->buffer);
1835         }
1836
1837         blk_put_request(rq);
1838         return ret;
1839 }
1840
1841 EXPORT_SYMBOL(blk_rq_unmap_user);
1842
1843 /**
1844  * blk_execute_rq - insert a request into queue for execution
1845  * @q:          queue to insert the request in
1846  * @bd_disk:    matching gendisk
1847  * @rq:         request to insert
1848  *
1849  * Description:
1850  *    Insert a fully prepared request at the back of the io scheduler queue
1851  *    for execution.
1852  */
1853 int blk_execute_rq(request_queue_t *q, struct gendisk *bd_disk,
1854                    struct request *rq)
1855 {
1856         DECLARE_COMPLETION(wait);
1857         char sense[SCSI_SENSE_BUFFERSIZE];
1858         int err = 0;
1859
1860         rq->rq_disk = bd_disk;
1861
1862         /*
1863          * we need an extra reference to the request, so we can look at
1864          * it after io completion
1865          */
1866         rq->ref_count++;
1867
1868         if (!rq->sense) {
1869                 memset(sense, 0, sizeof(sense));
1870                 rq->sense = sense;
1871                 rq->sense_len = 0;
1872         }
1873
1874         rq->flags |= REQ_NOMERGE;
1875         rq->waiting = &wait;
1876         elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 1);
1877         generic_unplug_device(q);
1878         wait_for_completion(&wait);
1879         rq->waiting = NULL;
1880
1881         if (rq->errors)
1882                 err = -EIO;
1883
1884         return err;
1885 }
1886
1887 EXPORT_SYMBOL(blk_execute_rq);
1888
1889 void drive_stat_acct(struct request *rq, int nr_sectors, int new_io)
1890 {
1891         int rw = rq_data_dir(rq);
1892
1893         if (!blk_fs_request(rq) || !rq->rq_disk)
1894                 return;
1895
1896         if (rw == READ) {
1897                 disk_stat_add(rq->rq_disk, read_sectors, nr_sectors);
1898                 if (!new_io)
1899                         disk_stat_inc(rq->rq_disk, read_merges);
1900         } else if (rw == WRITE) {
1901                 disk_stat_add(rq->rq_disk, write_sectors, nr_sectors);
1902                 if (!new_io)
1903                         disk_stat_inc(rq->rq_disk, write_merges);
1904         }
1905         if (new_io) {
1906                 disk_round_stats(rq->rq_disk);
1907                 rq->rq_disk->in_flight++;
1908         }
1909 }
1910
1911 /*
1912  * add-request adds a request to the linked list.
1913  * queue lock is held and interrupts disabled, as we muck with the
1914  * request queue list.
1915  */
1916 static inline void add_request(request_queue_t * q, struct request * req)
1917 {
1918         drive_stat_acct(req, req->nr_sectors, 1);
1919
1920         if (q->activity_fn)
1921                 q->activity_fn(q->activity_data, rq_data_dir(req));
1922
1923         /*
1924          * elevator indicated where it wants this request to be
1925          * inserted at elevator_merge time
1926          */
1927         __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
1928 }
1929  
1930 /*
1931  * disk_round_stats()   - Round off the performance stats on a struct
1932  * disk_stats.
1933  *
1934  * The average IO queue length and utilisation statistics are maintained
1935  * by observing the current state of the queue length and the amount of
1936  * time it has been in this state for.
1937  *
1938  * Normally, that accounting is done on IO completion, but that can result
1939  * in more than a second's worth of IO being accounted for within any one
1940  * second, leading to >100% utilisation.  To deal with that, we call this
1941  * function to do a round-off before returning the results when reading
1942  * /proc/diskstats.  This accounts immediately for all queue usage up to
1943  * the current jiffies and restarts the counters again.
1944  */
1945 void disk_round_stats(struct gendisk *disk)
1946 {
1947         unsigned long now = jiffies;
1948
1949         disk_stat_add(disk, time_in_queue, 
1950                         disk->in_flight * (now - disk->stamp));
1951         disk->stamp = now;
1952
1953         if (disk->in_flight)
1954                 disk_stat_add(disk, io_ticks, (now - disk->stamp_idle));
1955         disk->stamp_idle = now;
1956 }
1957
1958 /*
1959  * queue lock must be held
1960  */
1961 void __blk_put_request(request_queue_t *q, struct request *req)
1962 {
1963         struct request_list *rl = req->rl;
1964
1965         if (unlikely(!q))
1966                 return;
1967         if (unlikely(--req->ref_count))
1968                 return;
1969
1970         req->rq_status = RQ_INACTIVE;
1971         req->q = NULL;
1972         req->rl = NULL;
1973
1974         /*
1975          * Request may not have originated from ll_rw_blk. if not,
1976          * it didn't come out of our reserved rq pools
1977          */
1978         if (rl) {
1979                 int rw = rq_data_dir(req);
1980
1981                 elv_completed_request(q, req);
1982
1983                 BUG_ON(!list_empty(&req->queuelist));
1984
1985                 blk_free_request(q, req);
1986                 freed_request(q, rw);
1987         }
1988 }
1989
1990 void blk_put_request(struct request *req)
1991 {
1992         /*
1993          * if req->rl isn't set, this request didnt originate from the
1994          * block layer, so it's safe to just disregard it
1995          */
1996         if (req->rl) {
1997                 unsigned long flags;
1998                 request_queue_t *q = req->q;
1999
2000                 spin_lock_irqsave(q->queue_lock, flags);
2001                 __blk_put_request(q, req);
2002                 spin_unlock_irqrestore(q->queue_lock, flags);
2003         }
2004 }
2005
2006 EXPORT_SYMBOL(blk_put_request);
2007
2008 /**
2009  * blk_congestion_wait - wait for a queue to become uncongested
2010  * @rw: READ or WRITE
2011  * @timeout: timeout in jiffies
2012  *
2013  * Waits for up to @timeout jiffies for a queue (any queue) to exit congestion.
2014  * If no queues are congested then just wait for the next request to be
2015  * returned.
2016  */
2017 long blk_congestion_wait(int rw, long timeout)
2018 {
2019         long ret;
2020         DEFINE_WAIT(wait);
2021         wait_queue_head_t *wqh = &congestion_wqh[rw];
2022
2023         prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
2024         ret = io_schedule_timeout(timeout);
2025         finish_wait(wqh, &wait);
2026         return ret;
2027 }
2028
2029 EXPORT_SYMBOL(blk_congestion_wait);
2030
2031 /*
2032  * Has to be called with the request spinlock acquired
2033  */
2034 static int attempt_merge(request_queue_t *q, struct request *req,
2035                           struct request *next)
2036 {
2037         if (!rq_mergeable(req) || !rq_mergeable(next))
2038                 return 0;
2039
2040         /*
2041          * not contigious
2042          */
2043         if (req->sector + req->nr_sectors != next->sector)
2044                 return 0;
2045
2046         if (rq_data_dir(req) != rq_data_dir(next)
2047             || req->rq_disk != next->rq_disk
2048             || next->waiting || next->special)
2049                 return 0;
2050
2051         /*
2052          * If we are allowed to merge, then append bio list
2053          * from next to rq and release next. merge_requests_fn
2054          * will have updated segment counts, update sector
2055          * counts here.
2056          */
2057         if (!q->merge_requests_fn(q, req, next))
2058                 return 0;
2059
2060         /*
2061          * At this point we have either done a back merge
2062          * or front merge. We need the smaller start_time of
2063          * the merged requests to be the current request
2064          * for accounting purposes.
2065          */
2066         if (time_after(req->start_time, next->start_time))
2067                 req->start_time = next->start_time;
2068
2069         req->biotail->bi_next = next->bio;
2070         req->biotail = next->biotail;
2071
2072         req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors;
2073
2074         elv_merge_requests(q, req, next);
2075
2076         if (req->rq_disk) {
2077                 disk_round_stats(req->rq_disk);
2078                 req->rq_disk->in_flight--;
2079         }
2080
2081         __blk_put_request(q, next);
2082         return 1;
2083 }
2084
2085 static inline int attempt_back_merge(request_queue_t *q, struct request *rq)
2086 {
2087         struct request *next = elv_latter_request(q, rq);
2088
2089         if (next)
2090                 return attempt_merge(q, rq, next);
2091
2092         return 0;
2093 }
2094
2095 static inline int attempt_front_merge(request_queue_t *q, struct request *rq)
2096 {
2097         struct request *prev = elv_former_request(q, rq);
2098
2099         if (prev)
2100                 return attempt_merge(q, prev, rq);
2101
2102         return 0;
2103 }
2104
2105 /**
2106  * blk_attempt_remerge  - attempt to remerge active head with next request
2107  * @q:    The &request_queue_t belonging to the device
2108  * @rq:   The head request (usually)
2109  *
2110  * Description:
2111  *    For head-active devices, the queue can easily be unplugged so quickly
2112  *    that proper merging is not done on the front request. This may hurt
2113  *    performance greatly for some devices. The block layer cannot safely
2114  *    do merging on that first request for these queues, but the driver can
2115  *    call this function and make it happen any way. Only the driver knows
2116  *    when it is safe to do so.
2117  **/
2118 void blk_attempt_remerge(request_queue_t *q, struct request *rq)
2119 {
2120         unsigned long flags;
2121
2122         spin_lock_irqsave(q->queue_lock, flags);
2123         attempt_back_merge(q, rq);
2124         spin_unlock_irqrestore(q->queue_lock, flags);
2125 }
2126
2127 EXPORT_SYMBOL(blk_attempt_remerge);
2128
2129 /*
2130  * Non-locking blk_attempt_remerge variant.
2131  */
2132 void __blk_attempt_remerge(request_queue_t *q, struct request *rq)
2133 {
2134         attempt_back_merge(q, rq);
2135 }
2136
2137 EXPORT_SYMBOL(__blk_attempt_remerge);
2138
2139 static int __make_request(request_queue_t *q, struct bio *bio)
2140 {
2141         struct request *req, *freereq = NULL;
2142         int el_ret, rw, nr_sectors, cur_nr_sectors, barrier, ra;
2143         sector_t sector;
2144
2145         sector = bio->bi_sector;
2146         nr_sectors = bio_sectors(bio);
2147         cur_nr_sectors = bio_cur_sectors(bio);
2148
2149         rw = bio_data_dir(bio);
2150
2151         /*
2152          * low level driver can indicate that it wants pages above a
2153          * certain limit bounced to low memory (ie for highmem, or even
2154          * ISA dma in theory)
2155          */
2156         blk_queue_bounce(q, &bio);
2157
2158         spin_lock_prefetch(q->queue_lock);
2159
2160         barrier = test_bit(BIO_RW_BARRIER, &bio->bi_rw);
2161
2162         ra = bio->bi_rw & (1 << BIO_RW_AHEAD);
2163
2164 again:
2165         spin_lock_irq(q->queue_lock);
2166
2167         if (elv_queue_empty(q)) {
2168                 blk_plug_device(q);
2169                 goto get_rq;
2170         }
2171         if (barrier)
2172                 goto get_rq;
2173
2174         el_ret = elv_merge(q, &req, bio);
2175         switch (el_ret) {
2176                 case ELEVATOR_BACK_MERGE:
2177                         BUG_ON(!rq_mergeable(req));
2178
2179                         if (!q->back_merge_fn(q, req, bio))
2180                                 break;
2181
2182                         req->biotail->bi_next = bio;
2183                         req->biotail = bio;
2184                         req->nr_sectors = req->hard_nr_sectors += nr_sectors;
2185                         drive_stat_acct(req, nr_sectors, 0);
2186                         if (!attempt_back_merge(q, req))
2187                                 elv_merged_request(q, req);
2188                         goto out;
2189
2190                 case ELEVATOR_FRONT_MERGE:
2191                         BUG_ON(!rq_mergeable(req));
2192
2193                         if (!q->front_merge_fn(q, req, bio))
2194                                 break;
2195
2196                         bio->bi_next = req->bio;
2197                         req->cbio = req->bio = bio;
2198                         req->nr_cbio_segments = bio_segments(bio);
2199                         req->nr_cbio_sectors = bio_sectors(bio);
2200
2201                         /*
2202                          * may not be valid. if the low level driver said
2203                          * it didn't need a bounce buffer then it better
2204                          * not touch req->buffer either...
2205                          */
2206                         req->buffer = bio_data(bio);
2207                         req->current_nr_sectors = cur_nr_sectors;
2208                         req->hard_cur_sectors = cur_nr_sectors;
2209                         req->sector = req->hard_sector = sector;
2210                         req->nr_sectors = req->hard_nr_sectors += nr_sectors;
2211                         drive_stat_acct(req, nr_sectors, 0);
2212                         if (!attempt_front_merge(q, req))
2213                                 elv_merged_request(q, req);
2214                         goto out;
2215
2216                 /*
2217                  * elevator says don't/can't merge. get new request
2218                  */
2219                 case ELEVATOR_NO_MERGE:
2220                         break;
2221
2222                 default:
2223                         printk("elevator returned crap (%d)\n", el_ret);
2224                         BUG();
2225         }
2226
2227         /*
2228          * Grab a free request from the freelist - if that is empty, check
2229          * if we are doing read ahead and abort instead of blocking for
2230          * a free slot.
2231          */
2232 get_rq:
2233         if (freereq) {
2234                 req = freereq;
2235                 freereq = NULL;
2236         } else {
2237                 spin_unlock_irq(q->queue_lock);
2238                 if ((freereq = get_request(q, rw, GFP_ATOMIC)) == NULL) {
2239                         /*
2240                          * READA bit set
2241                          */
2242                         if (ra)
2243                                 goto end_io;
2244         
2245                         freereq = get_request_wait(q, rw);
2246                 }
2247                 goto again;
2248         }
2249
2250         req->flags |= REQ_CMD;
2251
2252         /*
2253          * inherit FAILFAST from bio and don't stack up
2254          * retries for read ahead
2255          */
2256         if (ra || test_bit(BIO_RW_FAILFAST, &bio->bi_rw))       
2257                 req->flags |= REQ_FAILFAST;
2258
2259         /*
2260          * REQ_BARRIER implies no merging, but lets make it explicit
2261          */
2262         if (barrier)
2263                 req->flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
2264
2265         req->errors = 0;
2266         req->hard_sector = req->sector = sector;
2267         req->hard_nr_sectors = req->nr_sectors = nr_sectors;
2268         req->current_nr_sectors = req->hard_cur_sectors = cur_nr_sectors;
2269         req->nr_phys_segments = bio_phys_segments(q, bio);
2270         req->nr_hw_segments = bio_hw_segments(q, bio);
2271         req->nr_cbio_segments = bio_segments(bio);
2272         req->nr_cbio_sectors = bio_sectors(bio);
2273         req->buffer = bio_data(bio);    /* see ->buffer comment above */
2274         req->waiting = NULL;
2275         req->cbio = req->bio = req->biotail = bio;
2276         req->rq_disk = bio->bi_bdev->bd_disk;
2277         req->start_time = jiffies;
2278
2279         add_request(q, req);
2280 out:
2281         if (freereq)
2282                 __blk_put_request(q, freereq);
2283
2284         if (blk_queue_plugged(q)) {
2285                 int nrq = q->rq.count[READ] + q->rq.count[WRITE] - q->in_flight;
2286
2287                 if (nrq == q->unplug_thresh || bio_sync(bio))
2288                         __generic_unplug_device(q);
2289         }
2290         spin_unlock_irq(q->queue_lock);
2291         return 0;
2292
2293 end_io:
2294         bio_endio(bio, nr_sectors << 9, -EWOULDBLOCK);
2295         return 0;
2296 }
2297
2298 /*
2299  * If bio->bi_dev is a partition, remap the location
2300  */
2301 static inline void blk_partition_remap(struct bio *bio)
2302 {
2303         struct block_device *bdev = bio->bi_bdev;
2304
2305         if (bdev != bdev->bd_contains) {
2306                 struct hd_struct *p = bdev->bd_part;
2307
2308                 switch (bio->bi_rw) {
2309                 case READ:
2310                         p->read_sectors += bio_sectors(bio);
2311                         p->reads++;
2312                         break;
2313                 case WRITE:
2314                         p->write_sectors += bio_sectors(bio);
2315                         p->writes++;
2316                         break;
2317                 }
2318                 bio->bi_sector += p->start_sect;
2319                 bio->bi_bdev = bdev->bd_contains;
2320         }
2321 }
2322
2323 /**
2324  * generic_make_request: hand a buffer to its device driver for I/O
2325  * @bio:  The bio describing the location in memory and on the device.
2326  *
2327  * generic_make_request() is used to make I/O requests of block
2328  * devices. It is passed a &struct bio, which describes the I/O that needs
2329  * to be done.
2330  *
2331  * generic_make_request() does not return any status.  The
2332  * success/failure status of the request, along with notification of
2333  * completion, is delivered asynchronously through the bio->bi_end_io
2334  * function described (one day) else where.
2335  *
2336  * The caller of generic_make_request must make sure that bi_io_vec
2337  * are set to describe the memory buffer, and that bi_dev and bi_sector are
2338  * set to describe the device address, and the
2339  * bi_end_io and optionally bi_private are set to describe how
2340  * completion notification should be signaled.
2341  *
2342  * generic_make_request and the drivers it calls may use bi_next if this
2343  * bio happens to be merged with someone else, and may change bi_dev and
2344  * bi_sector for remaps as it sees fit.  So the values of these fields
2345  * should NOT be depended on after the call to generic_make_request.
2346  */
2347 void generic_make_request(struct bio *bio)
2348 {
2349         request_queue_t *q;
2350         sector_t maxsector;
2351         int ret, nr_sectors = bio_sectors(bio);
2352
2353         /* Test device or partition size, when known. */
2354         maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
2355         if (maxsector) {
2356                 sector_t sector = bio->bi_sector;
2357
2358                 if (maxsector < nr_sectors ||
2359                     maxsector - nr_sectors < sector) {
2360                         char b[BDEVNAME_SIZE];
2361                         /* This may well happen - the kernel calls
2362                          * bread() without checking the size of the
2363                          * device, e.g., when mounting a device. */
2364                         printk(KERN_INFO
2365                                "attempt to access beyond end of device\n");
2366                         printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
2367                                bdevname(bio->bi_bdev, b),
2368                                bio->bi_rw,
2369                                (unsigned long long) sector + nr_sectors,
2370                                (long long) maxsector);
2371
2372                         set_bit(BIO_EOF, &bio->bi_flags);
2373                         goto end_io;
2374                 }
2375         }
2376
2377         /*
2378          * Resolve the mapping until finished. (drivers are
2379          * still free to implement/resolve their own stacking
2380          * by explicitly returning 0)
2381          *
2382          * NOTE: we don't repeat the blk_size check for each new device.
2383          * Stacking drivers are expected to know what they are doing.
2384          */
2385         do {
2386                 char b[BDEVNAME_SIZE];
2387
2388                 q = bdev_get_queue(bio->bi_bdev);
2389                 if (!q) {
2390                         printk(KERN_ERR
2391                                "generic_make_request: Trying to access "
2392                                 "nonexistent block-device %s (%Lu)\n",
2393                                 bdevname(bio->bi_bdev, b),
2394                                 (long long) bio->bi_sector);
2395 end_io:
2396                         bio_endio(bio, bio->bi_size, -EIO);
2397                         break;
2398                 }
2399
2400                 if (unlikely(bio_sectors(bio) > q->max_sectors)) {
2401                         printk("bio too big device %s (%u > %u)\n", 
2402                                 bdevname(bio->bi_bdev, b),
2403                                 bio_sectors(bio),
2404                                 q->max_sectors);
2405                         goto end_io;
2406                 }
2407
2408                 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))
2409                         goto end_io;
2410
2411                 /*
2412                  * If this device has partitions, remap block n
2413                  * of partition p to block n+start(p) of the disk.
2414                  */
2415                 blk_partition_remap(bio);
2416
2417                 ret = q->make_request_fn(q, bio);
2418         } while (ret);
2419 }
2420
2421 EXPORT_SYMBOL(generic_make_request);
2422
2423 /**
2424  * submit_bio: submit a bio to the block device layer for I/O
2425  * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
2426  * @bio: The &struct bio which describes the I/O
2427  *
2428  * submit_bio() is very similar in purpose to generic_make_request(), and
2429  * uses that function to do most of the work. Both are fairly rough
2430  * interfaces, @bio must be presetup and ready for I/O.
2431  *
2432  */
2433 void submit_bio(int rw, struct bio *bio)
2434 {
2435         int count = bio_sectors(bio);
2436
2437         BIO_BUG_ON(!bio->bi_size);
2438         BIO_BUG_ON(!bio->bi_io_vec);
2439         bio->bi_rw = rw;
2440         if (rw & WRITE)
2441                 mod_page_state(pgpgout, count);
2442         else
2443                 mod_page_state(pgpgin, count);
2444
2445         if (unlikely(block_dump)) {
2446                 char b[BDEVNAME_SIZE];
2447                 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
2448                         current->comm, current->pid,
2449                         (rw & WRITE) ? "WRITE" : "READ",
2450                         (unsigned long long)bio->bi_sector,
2451                         bdevname(bio->bi_bdev,b));
2452         }
2453
2454         generic_make_request(bio);
2455 }
2456
2457 EXPORT_SYMBOL(submit_bio);
2458
2459 /**
2460  * blk_rq_next_segment
2461  * @rq:         the request being processed
2462  *
2463  * Description:
2464  *      Points to the next segment in the request if the current segment
2465  *      is complete. Leaves things unchanged if this segment is not over
2466  *      or if no more segments are left in this request.
2467  *
2468  *      Meant to be used for bio traversal during I/O submission
2469  *      Does not affect any I/O completions or update completion state
2470  *      in the request, and does not modify any bio fields.
2471  *
2472  *      Decrementing rq->nr_sectors, rq->current_nr_sectors and
2473  *      rq->nr_cbio_sectors as data is transferred is the caller's
2474  *      responsibility and should be done before calling this routine.
2475  **/
2476 void blk_rq_next_segment(struct request *rq)
2477 {
2478         if (rq->current_nr_sectors > 0)
2479                 return;
2480
2481         if (rq->nr_cbio_sectors > 0) {
2482                 --rq->nr_cbio_segments;
2483                 rq->current_nr_sectors = blk_rq_vec(rq)->bv_len >> 9;
2484         } else {
2485                 if ((rq->cbio = rq->cbio->bi_next)) {
2486                         rq->nr_cbio_segments = bio_segments(rq->cbio);
2487                         rq->nr_cbio_sectors = bio_sectors(rq->cbio);
2488                         rq->current_nr_sectors = bio_cur_sectors(rq->cbio);
2489                 }
2490         }
2491
2492         /* remember the size of this segment before we start I/O */
2493         rq->hard_cur_sectors = rq->current_nr_sectors;
2494 }
2495
2496 /**
2497  * process_that_request_first   -       process partial request submission
2498  * @req:        the request being processed
2499  * @nr_sectors: number of sectors I/O has been submitted on
2500  *
2501  * Description:
2502  *      May be used for processing bio's while submitting I/O without
2503  *      signalling completion. Fails if more data is requested than is
2504  *      available in the request in which case it doesn't advance any
2505  *      pointers.
2506  *
2507  *      Assumes a request is correctly set up. No sanity checks.
2508  *
2509  * Return:
2510  *      0 - no more data left to submit (not processed)
2511  *      1 - data available to submit for this request (processed)
2512  **/
2513 int process_that_request_first(struct request *req, unsigned int nr_sectors)
2514 {
2515         unsigned int nsect;
2516
2517         if (req->nr_sectors < nr_sectors)
2518                 return 0;
2519
2520         req->nr_sectors -= nr_sectors;
2521         req->sector += nr_sectors;
2522         while (nr_sectors) {
2523                 nsect = min_t(unsigned, req->current_nr_sectors, nr_sectors);
2524                 req->current_nr_sectors -= nsect;
2525                 nr_sectors -= nsect;
2526                 if (req->cbio) {
2527                         req->nr_cbio_sectors -= nsect;
2528                         blk_rq_next_segment(req);
2529                 }
2530         }
2531         return 1;
2532 }
2533
2534 EXPORT_SYMBOL(process_that_request_first);
2535
2536 void blk_recalc_rq_segments(struct request *rq)
2537 {
2538         struct bio *bio;
2539         int nr_phys_segs, nr_hw_segs;
2540
2541         if (!rq->bio)
2542                 return;
2543
2544         nr_phys_segs = nr_hw_segs = 0;
2545         rq_for_each_bio(bio, rq) {
2546                 /* Force bio hw/phys segs to be recalculated. */
2547                 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
2548
2549                 nr_phys_segs += bio_phys_segments(rq->q, bio);
2550                 nr_hw_segs += bio_hw_segments(rq->q, bio);
2551         }
2552
2553         rq->nr_phys_segments = nr_phys_segs;
2554         rq->nr_hw_segments = nr_hw_segs;
2555 }
2556
2557 void blk_recalc_rq_sectors(struct request *rq, int nsect)
2558 {
2559         if (blk_fs_request(rq)) {
2560                 rq->hard_sector += nsect;
2561                 rq->hard_nr_sectors -= nsect;
2562
2563                 /*
2564                  * Move the I/O submission pointers ahead if required,
2565                  * i.e. for drivers not aware of rq->cbio.
2566                  */
2567                 if ((rq->nr_sectors >= rq->hard_nr_sectors) &&
2568                     (rq->sector <= rq->hard_sector)) {
2569                         rq->sector = rq->hard_sector;
2570                         rq->nr_sectors = rq->hard_nr_sectors;
2571                         rq->hard_cur_sectors = bio_cur_sectors(rq->bio);
2572                         rq->current_nr_sectors = rq->hard_cur_sectors;
2573                         rq->nr_cbio_segments = bio_segments(rq->bio);
2574                         rq->nr_cbio_sectors = bio_sectors(rq->bio);
2575                         rq->buffer = bio_data(rq->bio);
2576
2577                         rq->cbio = rq->bio;
2578                 }
2579
2580                 /*
2581                  * if total number of sectors is less than the first segment
2582                  * size, something has gone terribly wrong
2583                  */
2584                 if (rq->nr_sectors < rq->current_nr_sectors) {
2585                         printk("blk: request botched\n");
2586                         rq->nr_sectors = rq->current_nr_sectors;
2587                 }
2588         }
2589 }
2590
2591 static int __end_that_request_first(struct request *req, int uptodate,
2592                                     int nr_bytes)
2593 {
2594         int total_bytes, bio_nbytes, error = 0, next_idx = 0;
2595         struct bio *bio;
2596
2597         /*
2598          * for a REQ_BLOCK_PC request, we want to carry any eventual
2599          * sense key with us all the way through
2600          */
2601         if (!blk_pc_request(req))
2602                 req->errors = 0;
2603
2604         if (!uptodate) {
2605                 error = -EIO;
2606                 if (blk_fs_request(req) && !(req->flags & REQ_QUIET))
2607                         printk("end_request: I/O error, dev %s, sector %llu\n",
2608                                 req->rq_disk ? req->rq_disk->disk_name : "?",
2609                                 (unsigned long long)req->sector);
2610         }
2611
2612         total_bytes = bio_nbytes = 0;
2613         while ((bio = req->bio)) {
2614                 int nbytes;
2615
2616                 if (nr_bytes >= bio->bi_size) {
2617                         req->bio = bio->bi_next;
2618                         nbytes = bio->bi_size;
2619                         bio_endio(bio, nbytes, error);
2620                         next_idx = 0;
2621                         bio_nbytes = 0;
2622                 } else {
2623                         int idx = bio->bi_idx + next_idx;
2624
2625                         if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
2626                                 blk_dump_rq_flags(req, "__end_that");
2627                                 printk("%s: bio idx %d >= vcnt %d\n",
2628                                                 __FUNCTION__,
2629                                                 bio->bi_idx, bio->bi_vcnt);
2630                                 break;
2631                         }
2632
2633                         nbytes = bio_iovec_idx(bio, idx)->bv_len;
2634                         BIO_BUG_ON(nbytes > bio->bi_size);
2635
2636                         /*
2637                          * not a complete bvec done
2638                          */
2639                         if (unlikely(nbytes > nr_bytes)) {
2640                                 bio_nbytes += nr_bytes;
2641                                 total_bytes += nr_bytes;
2642                                 break;
2643                         }
2644
2645                         /*
2646                          * advance to the next vector
2647                          */
2648                         next_idx++;
2649                         bio_nbytes += nbytes;
2650                 }
2651
2652                 total_bytes += nbytes;
2653                 nr_bytes -= nbytes;
2654
2655                 if ((bio = req->bio)) {
2656                         /*
2657                          * end more in this run, or just return 'not-done'
2658                          */
2659                         if (unlikely(nr_bytes <= 0))
2660                                 break;
2661                 }
2662         }
2663
2664         /*
2665          * completely done
2666          */
2667         if (!req->bio)
2668                 return 0;
2669
2670         /*
2671          * if the request wasn't completed, update state
2672          */
2673         if (bio_nbytes) {
2674                 bio_endio(bio, bio_nbytes, error);
2675                 bio->bi_idx += next_idx;
2676                 bio_iovec(bio)->bv_offset += nr_bytes;
2677                 bio_iovec(bio)->bv_len -= nr_bytes;
2678         }
2679
2680         blk_recalc_rq_sectors(req, total_bytes >> 9);
2681         blk_recalc_rq_segments(req);
2682         return 1;
2683 }
2684
2685 /**
2686  * end_that_request_first - end I/O on a request
2687  * @req:      the request being processed
2688  * @uptodate: 0 for I/O error
2689  * @nr_sectors: number of sectors to end I/O on
2690  *
2691  * Description:
2692  *     Ends I/O on a number of sectors attached to @req, and sets it up
2693  *     for the next range of segments (if any) in the cluster.
2694  *
2695  * Return:
2696  *     0 - we are done with this request, call end_that_request_last()
2697  *     1 - still buffers pending for this request
2698  **/
2699 int end_that_request_first(struct request *req, int uptodate, int nr_sectors)
2700 {
2701         return __end_that_request_first(req, uptodate, nr_sectors << 9);
2702 }
2703
2704 EXPORT_SYMBOL(end_that_request_first);
2705
2706 /**
2707  * end_that_request_chunk - end I/O on a request
2708  * @req:      the request being processed
2709  * @uptodate: 0 for I/O error
2710  * @nr_bytes: number of bytes to complete
2711  *
2712  * Description:
2713  *     Ends I/O on a number of bytes attached to @req, and sets it up
2714  *     for the next range of segments (if any). Like end_that_request_first(),
2715  *     but deals with bytes instead of sectors.
2716  *
2717  * Return:
2718  *     0 - we are done with this request, call end_that_request_last()
2719  *     1 - still buffers pending for this request
2720  **/
2721 int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes)
2722 {
2723         return __end_that_request_first(req, uptodate, nr_bytes);
2724 }
2725
2726 EXPORT_SYMBOL(end_that_request_chunk);
2727
2728 /*
2729  * queue lock must be held
2730  */
2731 void end_that_request_last(struct request *req)
2732 {
2733         struct gendisk *disk = req->rq_disk;
2734         struct completion *waiting = req->waiting;
2735
2736         if (unlikely(laptop_mode) && blk_fs_request(req))
2737                 laptop_io_completion();
2738
2739         if (disk && blk_fs_request(req)) {
2740                 unsigned long duration = jiffies - req->start_time;
2741                 switch (rq_data_dir(req)) {
2742                     case WRITE:
2743                         disk_stat_inc(disk, writes);
2744                         disk_stat_add(disk, write_ticks, duration);
2745                         break;
2746                     case READ:
2747                         disk_stat_inc(disk, reads);
2748                         disk_stat_add(disk, read_ticks, duration);
2749                         break;
2750                 }
2751                 disk_round_stats(disk);
2752                 disk->in_flight--;
2753         }
2754         __blk_put_request(req->q, req);
2755         /* Do this LAST! The structure may be freed immediately afterwards */
2756         if (waiting)
2757                 complete(waiting);
2758 }
2759
2760 EXPORT_SYMBOL(end_that_request_last);
2761
2762 void end_request(struct request *req, int uptodate)
2763 {
2764         if (!end_that_request_first(req, uptodate, req->hard_cur_sectors)) {
2765                 add_disk_randomness(req->rq_disk);
2766                 blkdev_dequeue_request(req);
2767                 end_that_request_last(req);
2768         }
2769 }
2770
2771 EXPORT_SYMBOL(end_request);
2772
2773 void blk_rq_bio_prep(request_queue_t *q, struct request *rq, struct bio *bio)
2774 {
2775         /* first three bits are identical in rq->flags and bio->bi_rw */
2776         rq->flags |= (bio->bi_rw & 7);
2777
2778         rq->nr_phys_segments = bio_phys_segments(q, bio);
2779         rq->nr_hw_segments = bio_hw_segments(q, bio);
2780         rq->current_nr_sectors = bio_cur_sectors(bio);
2781         rq->hard_cur_sectors = rq->current_nr_sectors;
2782         rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
2783         rq->nr_cbio_segments = bio_segments(bio);
2784         rq->nr_cbio_sectors = bio_sectors(bio);
2785         rq->buffer = bio_data(bio);
2786
2787         rq->cbio = rq->bio = rq->biotail = bio;
2788 }
2789
2790 EXPORT_SYMBOL(blk_rq_bio_prep);
2791
2792 void blk_rq_prep_restart(struct request *rq)
2793 {
2794         struct bio *bio;
2795
2796         bio = rq->cbio = rq->bio;
2797         if (bio) {
2798                 rq->nr_cbio_segments = bio_segments(bio);
2799                 rq->nr_cbio_sectors = bio_sectors(bio);
2800                 rq->hard_cur_sectors = bio_cur_sectors(bio);
2801                 rq->buffer = bio_data(bio);
2802         }
2803         rq->sector = rq->hard_sector;
2804         rq->nr_sectors = rq->hard_nr_sectors;
2805         rq->current_nr_sectors = rq->hard_cur_sectors;
2806 }
2807
2808 EXPORT_SYMBOL(blk_rq_prep_restart);
2809
2810 int kblockd_schedule_work(struct work_struct *work)
2811 {
2812         return queue_work(kblockd_workqueue, work);
2813 }
2814
2815 void kblockd_flush(void)
2816 {
2817         flush_workqueue(kblockd_workqueue);
2818 }
2819
2820 int __init blk_dev_init(void)
2821 {
2822         kblockd_workqueue = create_workqueue("kblockd");
2823         if (!kblockd_workqueue)
2824                 panic("Failed to create kblockd\n");
2825
2826         request_cachep = kmem_cache_create("blkdev_requests",
2827                         sizeof(struct request), 0, SLAB_PANIC, NULL, NULL);
2828
2829         requestq_cachep = kmem_cache_create("blkdev_queue",
2830                         sizeof(request_queue_t), 0, SLAB_PANIC, NULL, NULL);
2831
2832         iocontext_cachep = kmem_cache_create("blkdev_ioc",
2833                         sizeof(struct io_context), 0, SLAB_PANIC, NULL, NULL);
2834
2835         blk_max_low_pfn = max_low_pfn;
2836         blk_max_pfn = max_pfn;
2837         return 0;
2838 }
2839
2840 /*
2841  * IO Context helper functions
2842  */
2843 void put_io_context(struct io_context *ioc)
2844 {
2845         if (ioc == NULL)
2846                 return;
2847
2848         BUG_ON(atomic_read(&ioc->refcount) == 0);
2849
2850         if (atomic_dec_and_test(&ioc->refcount)) {
2851                 if (ioc->aic && ioc->aic->dtor)
2852                         ioc->aic->dtor(ioc->aic);
2853                 kmem_cache_free(iocontext_cachep, ioc);
2854         }
2855 }
2856
2857 /* Called by the exitting task */
2858 void exit_io_context(void)
2859 {
2860         unsigned long flags;
2861         struct io_context *ioc;
2862
2863         local_irq_save(flags);
2864         ioc = current->io_context;
2865         if (ioc) {
2866                 if (ioc->aic && ioc->aic->exit)
2867                         ioc->aic->exit(ioc->aic);
2868                 put_io_context(ioc);
2869                 current->io_context = NULL;
2870         } else
2871                 WARN_ON(1);
2872         local_irq_restore(flags);
2873 }
2874
2875 /*
2876  * If the current task has no IO context then create one and initialise it.
2877  * If it does have a context, take a ref on it.
2878  *
2879  * This is always called in the context of the task which submitted the I/O.
2880  * But weird things happen, so we disable local interrupts to ensure exclusive
2881  * access to *current.
2882  */
2883 struct io_context *get_io_context(int gfp_flags)
2884 {
2885         struct task_struct *tsk = current;
2886         unsigned long flags;
2887         struct io_context *ret;
2888
2889         local_irq_save(flags);
2890         ret = tsk->io_context;
2891         if (ret == NULL) {
2892                 ret = kmem_cache_alloc(iocontext_cachep, GFP_ATOMIC);
2893                 if (ret) {
2894                         atomic_set(&ret->refcount, 1);
2895                         ret->pid = tsk->pid;
2896                         ret->last_waited = jiffies; /* doesn't matter... */
2897                         ret->nr_batch_requests = 0; /* because this is 0 */
2898                         ret->aic = NULL;
2899                         tsk->io_context = ret;
2900                 }
2901         }
2902         if (ret)
2903                 atomic_inc(&ret->refcount);
2904         local_irq_restore(flags);
2905         return ret;
2906 }
2907
2908 void copy_io_context(struct io_context **pdst, struct io_context **psrc)
2909 {
2910         struct io_context *src = *psrc;
2911         struct io_context *dst = *pdst;
2912
2913         if (src) {
2914                 BUG_ON(atomic_read(&src->refcount) == 0);
2915                 atomic_inc(&src->refcount);
2916                 put_io_context(dst);
2917                 *pdst = src;
2918         }
2919 }
2920
2921 void swap_io_context(struct io_context **ioc1, struct io_context **ioc2)
2922 {
2923         struct io_context *temp;
2924         temp = *ioc1;
2925         *ioc1 = *ioc2;
2926         *ioc2 = temp;
2927 }
2928
2929
2930 /*
2931  * sysfs parts below
2932  */
2933 struct queue_sysfs_entry {
2934         struct attribute attr;
2935         ssize_t (*show)(struct request_queue *, char *);
2936         ssize_t (*store)(struct request_queue *, const char *, size_t);
2937 };
2938
2939 static ssize_t
2940 queue_var_show(unsigned int var, char *page)
2941 {
2942         return sprintf(page, "%d\n", var);
2943 }
2944
2945 static ssize_t
2946 queue_var_store(unsigned long *var, const char *page, size_t count)
2947 {
2948         char *p = (char *) page;
2949
2950         *var = simple_strtoul(p, &p, 10);
2951         return count;
2952 }
2953
2954 static ssize_t queue_requests_show(struct request_queue *q, char *page)
2955 {
2956         return queue_var_show(q->nr_requests, (page));
2957 }
2958
2959 static ssize_t
2960 queue_requests_store(struct request_queue *q, const char *page, size_t count)
2961 {
2962         struct request_list *rl = &q->rq;
2963
2964         int ret = queue_var_store(&q->nr_requests, page, count);
2965         if (q->nr_requests < BLKDEV_MIN_RQ)
2966                 q->nr_requests = BLKDEV_MIN_RQ;
2967         blk_queue_congestion_threshold(q);
2968
2969         if (rl->count[READ] >= queue_congestion_on_threshold(q))
2970                 set_queue_congested(q, READ);
2971         else if (rl->count[READ] < queue_congestion_off_threshold(q))
2972                 clear_queue_congested(q, READ);
2973
2974         if (rl->count[WRITE] >= queue_congestion_on_threshold(q))
2975                 set_queue_congested(q, WRITE);
2976         else if (rl->count[WRITE] < queue_congestion_off_threshold(q))
2977                 clear_queue_congested(q, WRITE);
2978
2979         if (rl->count[READ] >= q->nr_requests) {
2980                 blk_set_queue_full(q, READ);
2981         } else if (rl->count[READ]+1 <= q->nr_requests) {
2982                 blk_clear_queue_full(q, READ);
2983                 wake_up(&rl->wait[READ]);
2984         }
2985
2986         if (rl->count[WRITE] >= q->nr_requests) {
2987                 blk_set_queue_full(q, WRITE);
2988         } else if (rl->count[WRITE]+1 <= q->nr_requests) {
2989                 blk_clear_queue_full(q, WRITE);
2990                 wake_up(&rl->wait[WRITE]);
2991         }
2992         return ret;
2993 }
2994
2995 static ssize_t queue_ra_show(struct request_queue *q, char *page)
2996 {
2997         int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
2998
2999         return queue_var_show(ra_kb, (page));
3000 }
3001
3002 static ssize_t
3003 queue_ra_store(struct request_queue *q, const char *page, size_t count)
3004 {
3005         unsigned long ra_kb;
3006         ssize_t ret = queue_var_store(&ra_kb, page, count);
3007
3008         if (ra_kb > (q->max_sectors >> 1))
3009                 ra_kb = (q->max_sectors >> 1);
3010
3011         q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
3012         return ret;
3013 }
3014
3015 static struct queue_sysfs_entry queue_requests_entry = {
3016         .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
3017         .show = queue_requests_show,
3018         .store = queue_requests_store,
3019 };
3020
3021 static struct queue_sysfs_entry queue_ra_entry = {
3022         .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
3023         .show = queue_ra_show,
3024         .store = queue_ra_store,
3025 };
3026
3027 static struct attribute *default_attrs[] = {
3028         &queue_requests_entry.attr,
3029         &queue_ra_entry.attr,
3030         NULL,
3031 };
3032
3033 #define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
3034
3035 static ssize_t
3036 queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
3037 {
3038         struct queue_sysfs_entry *entry = to_queue(attr);
3039         struct request_queue *q;
3040
3041         q = container_of(kobj, struct request_queue, kobj);
3042         if (!entry->show)
3043                 return 0;
3044
3045         return entry->show(q, page);
3046 }
3047
3048 static ssize_t
3049 queue_attr_store(struct kobject *kobj, struct attribute *attr,
3050                     const char *page, size_t length)
3051 {
3052         struct queue_sysfs_entry *entry = to_queue(attr);
3053         struct request_queue *q;
3054
3055         q = container_of(kobj, struct request_queue, kobj);
3056         if (!entry->store)
3057                 return -EINVAL;
3058
3059         return entry->store(q, page, length);
3060 }
3061
3062 static struct sysfs_ops queue_sysfs_ops = {
3063         .show   = queue_attr_show,
3064         .store  = queue_attr_store,
3065 };
3066
3067 struct kobj_type queue_ktype = {
3068         .sysfs_ops      = &queue_sysfs_ops,
3069         .default_attrs  = default_attrs,
3070 };
3071
3072 int blk_register_queue(struct gendisk *disk)
3073 {
3074         int ret;
3075
3076         request_queue_t *q = disk->queue;
3077
3078         if (!q || !q->request_fn)
3079                 return -ENXIO;
3080
3081         q->kobj.parent = kobject_get(&disk->kobj);
3082         if (!q->kobj.parent)
3083                 return -EBUSY;
3084
3085         snprintf(q->kobj.name, KOBJ_NAME_LEN, "%s", "queue");
3086         q->kobj.ktype = &queue_ktype;
3087
3088         ret = kobject_register(&q->kobj);
3089         if (ret < 0)
3090                 return ret;
3091
3092         ret = elv_register_queue(q);
3093         if (ret) {
3094                 kobject_unregister(&q->kobj);
3095                 return ret;
3096         }
3097
3098         return 0;
3099 }
3100
3101 void blk_unregister_queue(struct gendisk *disk)
3102 {
3103         request_queue_t *q = disk->queue;
3104
3105         if (q && q->request_fn) {
3106                 elv_unregister_queue(q);
3107
3108                 kobject_unregister(&q->kobj);
3109                 kobject_put(&disk->kobj);
3110         }
3111 }