block: remove per-queue plugging
[pandora-kernel.git] / block / blk-settings.c
1 /*
2  * Functions related to setting various queue properties from drivers
3  */
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/init.h>
7 #include <linux/bio.h>
8 #include <linux/blkdev.h>
9 #include <linux/bootmem.h>      /* for max_pfn/max_low_pfn */
10 #include <linux/gcd.h>
11 #include <linux/lcm.h>
12 #include <linux/jiffies.h>
13 #include <linux/gfp.h>
14
15 #include "blk.h"
16
17 unsigned long blk_max_low_pfn;
18 EXPORT_SYMBOL(blk_max_low_pfn);
19
20 unsigned long blk_max_pfn;
21
22 /**
23  * blk_queue_prep_rq - set a prepare_request function for queue
24  * @q:          queue
25  * @pfn:        prepare_request function
26  *
27  * It's possible for a queue to register a prepare_request callback which
28  * is invoked before the request is handed to the request_fn. The goal of
29  * the function is to prepare a request for I/O, it can be used to build a
30  * cdb from the request data for instance.
31  *
32  */
33 void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn)
34 {
35         q->prep_rq_fn = pfn;
36 }
37 EXPORT_SYMBOL(blk_queue_prep_rq);
38
39 /**
40  * blk_queue_unprep_rq - set an unprepare_request function for queue
41  * @q:          queue
42  * @ufn:        unprepare_request function
43  *
44  * It's possible for a queue to register an unprepare_request callback
45  * which is invoked before the request is finally completed. The goal
46  * of the function is to deallocate any data that was allocated in the
47  * prepare_request callback.
48  *
49  */
50 void blk_queue_unprep_rq(struct request_queue *q, unprep_rq_fn *ufn)
51 {
52         q->unprep_rq_fn = ufn;
53 }
54 EXPORT_SYMBOL(blk_queue_unprep_rq);
55
56 /**
57  * blk_queue_merge_bvec - set a merge_bvec function for queue
58  * @q:          queue
59  * @mbfn:       merge_bvec_fn
60  *
61  * Usually queues have static limitations on the max sectors or segments that
62  * we can put in a request. Stacking drivers may have some settings that
63  * are dynamic, and thus we have to query the queue whether it is ok to
64  * add a new bio_vec to a bio at a given offset or not. If the block device
65  * has such limitations, it needs to register a merge_bvec_fn to control
66  * the size of bio's sent to it. Note that a block device *must* allow a
67  * single page to be added to an empty bio. The block device driver may want
68  * to use the bio_split() function to deal with these bio's. By default
69  * no merge_bvec_fn is defined for a queue, and only the fixed limits are
70  * honored.
71  */
72 void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn)
73 {
74         q->merge_bvec_fn = mbfn;
75 }
76 EXPORT_SYMBOL(blk_queue_merge_bvec);
77
78 void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn)
79 {
80         q->softirq_done_fn = fn;
81 }
82 EXPORT_SYMBOL(blk_queue_softirq_done);
83
84 void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
85 {
86         q->rq_timeout = timeout;
87 }
88 EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
89
90 void blk_queue_rq_timed_out(struct request_queue *q, rq_timed_out_fn *fn)
91 {
92         q->rq_timed_out_fn = fn;
93 }
94 EXPORT_SYMBOL_GPL(blk_queue_rq_timed_out);
95
96 void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
97 {
98         q->lld_busy_fn = fn;
99 }
100 EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
101
102 /**
103  * blk_set_default_limits - reset limits to default values
104  * @lim:  the queue_limits structure to reset
105  *
106  * Description:
107  *   Returns a queue_limit struct to its default state.  Can be used by
108  *   stacking drivers like DM that stage table swaps and reuse an
109  *   existing device queue.
110  */
111 void blk_set_default_limits(struct queue_limits *lim)
112 {
113         lim->max_segments = BLK_MAX_SEGMENTS;
114         lim->max_integrity_segments = 0;
115         lim->seg_boundary_mask = BLK_SEG_BOUNDARY_MASK;
116         lim->max_segment_size = BLK_MAX_SEGMENT_SIZE;
117         lim->max_sectors = BLK_DEF_MAX_SECTORS;
118         lim->max_hw_sectors = INT_MAX;
119         lim->max_discard_sectors = 0;
120         lim->discard_granularity = 0;
121         lim->discard_alignment = 0;
122         lim->discard_misaligned = 0;
123         lim->discard_zeroes_data = -1;
124         lim->logical_block_size = lim->physical_block_size = lim->io_min = 512;
125         lim->bounce_pfn = (unsigned long)(BLK_BOUNCE_ANY >> PAGE_SHIFT);
126         lim->alignment_offset = 0;
127         lim->io_opt = 0;
128         lim->misaligned = 0;
129         lim->cluster = 1;
130 }
131 EXPORT_SYMBOL(blk_set_default_limits);
132
133 /**
134  * blk_queue_make_request - define an alternate make_request function for a device
135  * @q:  the request queue for the device to be affected
136  * @mfn: the alternate make_request function
137  *
138  * Description:
139  *    The normal way for &struct bios to be passed to a device
140  *    driver is for them to be collected into requests on a request
141  *    queue, and then to allow the device driver to select requests
142  *    off that queue when it is ready.  This works well for many block
143  *    devices. However some block devices (typically virtual devices
144  *    such as md or lvm) do not benefit from the processing on the
145  *    request queue, and are served best by having the requests passed
146  *    directly to them.  This can be achieved by providing a function
147  *    to blk_queue_make_request().
148  *
149  * Caveat:
150  *    The driver that does this *must* be able to deal appropriately
151  *    with buffers in "highmemory". This can be accomplished by either calling
152  *    __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
153  *    blk_queue_bounce() to create a buffer in normal memory.
154  **/
155 void blk_queue_make_request(struct request_queue *q, make_request_fn *mfn)
156 {
157         /*
158          * set defaults
159          */
160         q->nr_requests = BLKDEV_MAX_RQ;
161
162         q->make_request_fn = mfn;
163         blk_queue_dma_alignment(q, 511);
164         blk_queue_congestion_threshold(q);
165         q->nr_batching = BLK_BATCH_REQ;
166
167         blk_set_default_limits(&q->limits);
168         blk_queue_max_hw_sectors(q, BLK_SAFE_MAX_SECTORS);
169
170         /*
171          * If the caller didn't supply a lock, fall back to our embedded
172          * per-queue locks
173          */
174         if (!q->queue_lock)
175                 q->queue_lock = &q->__queue_lock;
176
177         /*
178          * by default assume old behaviour and bounce for any highmem page
179          */
180         blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
181 }
182 EXPORT_SYMBOL(blk_queue_make_request);
183
184 /**
185  * blk_queue_bounce_limit - set bounce buffer limit for queue
186  * @q: the request queue for the device
187  * @dma_mask: the maximum address the device can handle
188  *
189  * Description:
190  *    Different hardware can have different requirements as to what pages
191  *    it can do I/O directly to. A low level driver can call
192  *    blk_queue_bounce_limit to have lower memory pages allocated as bounce
193  *    buffers for doing I/O to pages residing above @dma_mask.
194  **/
195 void blk_queue_bounce_limit(struct request_queue *q, u64 dma_mask)
196 {
197         unsigned long b_pfn = dma_mask >> PAGE_SHIFT;
198         int dma = 0;
199
200         q->bounce_gfp = GFP_NOIO;
201 #if BITS_PER_LONG == 64
202         /*
203          * Assume anything <= 4GB can be handled by IOMMU.  Actually
204          * some IOMMUs can handle everything, but I don't know of a
205          * way to test this here.
206          */
207         if (b_pfn < (min_t(u64, 0xffffffffUL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
208                 dma = 1;
209         q->limits.bounce_pfn = max(max_low_pfn, b_pfn);
210 #else
211         if (b_pfn < blk_max_low_pfn)
212                 dma = 1;
213         q->limits.bounce_pfn = b_pfn;
214 #endif
215         if (dma) {
216                 init_emergency_isa_pool();
217                 q->bounce_gfp = GFP_NOIO | GFP_DMA;
218                 q->limits.bounce_pfn = b_pfn;
219         }
220 }
221 EXPORT_SYMBOL(blk_queue_bounce_limit);
222
223 /**
224  * blk_limits_max_hw_sectors - set hard and soft limit of max sectors for request
225  * @limits: the queue limits
226  * @max_hw_sectors:  max hardware sectors in the usual 512b unit
227  *
228  * Description:
229  *    Enables a low level driver to set a hard upper limit,
230  *    max_hw_sectors, on the size of requests.  max_hw_sectors is set by
231  *    the device driver based upon the combined capabilities of I/O
232  *    controller and storage device.
233  *
234  *    max_sectors is a soft limit imposed by the block layer for
235  *    filesystem type requests.  This value can be overridden on a
236  *    per-device basis in /sys/block/<device>/queue/max_sectors_kb.
237  *    The soft limit can not exceed max_hw_sectors.
238  **/
239 void blk_limits_max_hw_sectors(struct queue_limits *limits, unsigned int max_hw_sectors)
240 {
241         if ((max_hw_sectors << 9) < PAGE_CACHE_SIZE) {
242                 max_hw_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
243                 printk(KERN_INFO "%s: set to minimum %d\n",
244                        __func__, max_hw_sectors);
245         }
246
247         limits->max_hw_sectors = max_hw_sectors;
248         limits->max_sectors = min_t(unsigned int, max_hw_sectors,
249                                     BLK_DEF_MAX_SECTORS);
250 }
251 EXPORT_SYMBOL(blk_limits_max_hw_sectors);
252
253 /**
254  * blk_queue_max_hw_sectors - set max sectors for a request for this queue
255  * @q:  the request queue for the device
256  * @max_hw_sectors:  max hardware sectors in the usual 512b unit
257  *
258  * Description:
259  *    See description for blk_limits_max_hw_sectors().
260  **/
261 void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_hw_sectors)
262 {
263         blk_limits_max_hw_sectors(&q->limits, max_hw_sectors);
264 }
265 EXPORT_SYMBOL(blk_queue_max_hw_sectors);
266
267 /**
268  * blk_queue_max_discard_sectors - set max sectors for a single discard
269  * @q:  the request queue for the device
270  * @max_discard_sectors: maximum number of sectors to discard
271  **/
272 void blk_queue_max_discard_sectors(struct request_queue *q,
273                 unsigned int max_discard_sectors)
274 {
275         q->limits.max_discard_sectors = max_discard_sectors;
276 }
277 EXPORT_SYMBOL(blk_queue_max_discard_sectors);
278
279 /**
280  * blk_queue_max_segments - set max hw segments for a request for this queue
281  * @q:  the request queue for the device
282  * @max_segments:  max number of segments
283  *
284  * Description:
285  *    Enables a low level driver to set an upper limit on the number of
286  *    hw data segments in a request.
287  **/
288 void blk_queue_max_segments(struct request_queue *q, unsigned short max_segments)
289 {
290         if (!max_segments) {
291                 max_segments = 1;
292                 printk(KERN_INFO "%s: set to minimum %d\n",
293                        __func__, max_segments);
294         }
295
296         q->limits.max_segments = max_segments;
297 }
298 EXPORT_SYMBOL(blk_queue_max_segments);
299
300 /**
301  * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
302  * @q:  the request queue for the device
303  * @max_size:  max size of segment in bytes
304  *
305  * Description:
306  *    Enables a low level driver to set an upper limit on the size of a
307  *    coalesced segment
308  **/
309 void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
310 {
311         if (max_size < PAGE_CACHE_SIZE) {
312                 max_size = PAGE_CACHE_SIZE;
313                 printk(KERN_INFO "%s: set to minimum %d\n",
314                        __func__, max_size);
315         }
316
317         q->limits.max_segment_size = max_size;
318 }
319 EXPORT_SYMBOL(blk_queue_max_segment_size);
320
321 /**
322  * blk_queue_logical_block_size - set logical block size for the queue
323  * @q:  the request queue for the device
324  * @size:  the logical block size, in bytes
325  *
326  * Description:
327  *   This should be set to the lowest possible block size that the
328  *   storage device can address.  The default of 512 covers most
329  *   hardware.
330  **/
331 void blk_queue_logical_block_size(struct request_queue *q, unsigned short size)
332 {
333         q->limits.logical_block_size = size;
334
335         if (q->limits.physical_block_size < size)
336                 q->limits.physical_block_size = size;
337
338         if (q->limits.io_min < q->limits.physical_block_size)
339                 q->limits.io_min = q->limits.physical_block_size;
340 }
341 EXPORT_SYMBOL(blk_queue_logical_block_size);
342
343 /**
344  * blk_queue_physical_block_size - set physical block size for the queue
345  * @q:  the request queue for the device
346  * @size:  the physical block size, in bytes
347  *
348  * Description:
349  *   This should be set to the lowest possible sector size that the
350  *   hardware can operate on without reverting to read-modify-write
351  *   operations.
352  */
353 void blk_queue_physical_block_size(struct request_queue *q, unsigned int size)
354 {
355         q->limits.physical_block_size = size;
356
357         if (q->limits.physical_block_size < q->limits.logical_block_size)
358                 q->limits.physical_block_size = q->limits.logical_block_size;
359
360         if (q->limits.io_min < q->limits.physical_block_size)
361                 q->limits.io_min = q->limits.physical_block_size;
362 }
363 EXPORT_SYMBOL(blk_queue_physical_block_size);
364
365 /**
366  * blk_queue_alignment_offset - set physical block alignment offset
367  * @q:  the request queue for the device
368  * @offset: alignment offset in bytes
369  *
370  * Description:
371  *   Some devices are naturally misaligned to compensate for things like
372  *   the legacy DOS partition table 63-sector offset.  Low-level drivers
373  *   should call this function for devices whose first sector is not
374  *   naturally aligned.
375  */
376 void blk_queue_alignment_offset(struct request_queue *q, unsigned int offset)
377 {
378         q->limits.alignment_offset =
379                 offset & (q->limits.physical_block_size - 1);
380         q->limits.misaligned = 0;
381 }
382 EXPORT_SYMBOL(blk_queue_alignment_offset);
383
384 /**
385  * blk_limits_io_min - set minimum request size for a device
386  * @limits: the queue limits
387  * @min:  smallest I/O size in bytes
388  *
389  * Description:
390  *   Some devices have an internal block size bigger than the reported
391  *   hardware sector size.  This function can be used to signal the
392  *   smallest I/O the device can perform without incurring a performance
393  *   penalty.
394  */
395 void blk_limits_io_min(struct queue_limits *limits, unsigned int min)
396 {
397         limits->io_min = min;
398
399         if (limits->io_min < limits->logical_block_size)
400                 limits->io_min = limits->logical_block_size;
401
402         if (limits->io_min < limits->physical_block_size)
403                 limits->io_min = limits->physical_block_size;
404 }
405 EXPORT_SYMBOL(blk_limits_io_min);
406
407 /**
408  * blk_queue_io_min - set minimum request size for the queue
409  * @q:  the request queue for the device
410  * @min:  smallest I/O size in bytes
411  *
412  * Description:
413  *   Storage devices may report a granularity or preferred minimum I/O
414  *   size which is the smallest request the device can perform without
415  *   incurring a performance penalty.  For disk drives this is often the
416  *   physical block size.  For RAID arrays it is often the stripe chunk
417  *   size.  A properly aligned multiple of minimum_io_size is the
418  *   preferred request size for workloads where a high number of I/O
419  *   operations is desired.
420  */
421 void blk_queue_io_min(struct request_queue *q, unsigned int min)
422 {
423         blk_limits_io_min(&q->limits, min);
424 }
425 EXPORT_SYMBOL(blk_queue_io_min);
426
427 /**
428  * blk_limits_io_opt - set optimal request size for a device
429  * @limits: the queue limits
430  * @opt:  smallest I/O size in bytes
431  *
432  * Description:
433  *   Storage devices may report an optimal I/O size, which is the
434  *   device's preferred unit for sustained I/O.  This is rarely reported
435  *   for disk drives.  For RAID arrays it is usually the stripe width or
436  *   the internal track size.  A properly aligned multiple of
437  *   optimal_io_size is the preferred request size for workloads where
438  *   sustained throughput is desired.
439  */
440 void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt)
441 {
442         limits->io_opt = opt;
443 }
444 EXPORT_SYMBOL(blk_limits_io_opt);
445
446 /**
447  * blk_queue_io_opt - set optimal request size for the queue
448  * @q:  the request queue for the device
449  * @opt:  optimal request size in bytes
450  *
451  * Description:
452  *   Storage devices may report an optimal I/O size, which is the
453  *   device's preferred unit for sustained I/O.  This is rarely reported
454  *   for disk drives.  For RAID arrays it is usually the stripe width or
455  *   the internal track size.  A properly aligned multiple of
456  *   optimal_io_size is the preferred request size for workloads where
457  *   sustained throughput is desired.
458  */
459 void blk_queue_io_opt(struct request_queue *q, unsigned int opt)
460 {
461         blk_limits_io_opt(&q->limits, opt);
462 }
463 EXPORT_SYMBOL(blk_queue_io_opt);
464
465 /**
466  * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
467  * @t:  the stacking driver (top)
468  * @b:  the underlying device (bottom)
469  **/
470 void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
471 {
472         blk_stack_limits(&t->limits, &b->limits, 0);
473 }
474 EXPORT_SYMBOL(blk_queue_stack_limits);
475
476 /**
477  * blk_stack_limits - adjust queue_limits for stacked devices
478  * @t:  the stacking driver limits (top device)
479  * @b:  the underlying queue limits (bottom, component device)
480  * @start:  first data sector within component device
481  *
482  * Description:
483  *    This function is used by stacking drivers like MD and DM to ensure
484  *    that all component devices have compatible block sizes and
485  *    alignments.  The stacking driver must provide a queue_limits
486  *    struct (top) and then iteratively call the stacking function for
487  *    all component (bottom) devices.  The stacking function will
488  *    attempt to combine the values and ensure proper alignment.
489  *
490  *    Returns 0 if the top and bottom queue_limits are compatible.  The
491  *    top device's block sizes and alignment offsets may be adjusted to
492  *    ensure alignment with the bottom device. If no compatible sizes
493  *    and alignments exist, -1 is returned and the resulting top
494  *    queue_limits will have the misaligned flag set to indicate that
495  *    the alignment_offset is undefined.
496  */
497 int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
498                      sector_t start)
499 {
500         unsigned int top, bottom, alignment, ret = 0;
501
502         t->max_sectors = min_not_zero(t->max_sectors, b->max_sectors);
503         t->max_hw_sectors = min_not_zero(t->max_hw_sectors, b->max_hw_sectors);
504         t->bounce_pfn = min_not_zero(t->bounce_pfn, b->bounce_pfn);
505
506         t->seg_boundary_mask = min_not_zero(t->seg_boundary_mask,
507                                             b->seg_boundary_mask);
508
509         t->max_segments = min_not_zero(t->max_segments, b->max_segments);
510         t->max_integrity_segments = min_not_zero(t->max_integrity_segments,
511                                                  b->max_integrity_segments);
512
513         t->max_segment_size = min_not_zero(t->max_segment_size,
514                                            b->max_segment_size);
515
516         t->misaligned |= b->misaligned;
517
518         alignment = queue_limit_alignment_offset(b, start);
519
520         /* Bottom device has different alignment.  Check that it is
521          * compatible with the current top alignment.
522          */
523         if (t->alignment_offset != alignment) {
524
525                 top = max(t->physical_block_size, t->io_min)
526                         + t->alignment_offset;
527                 bottom = max(b->physical_block_size, b->io_min) + alignment;
528
529                 /* Verify that top and bottom intervals line up */
530                 if (max(top, bottom) & (min(top, bottom) - 1)) {
531                         t->misaligned = 1;
532                         ret = -1;
533                 }
534         }
535
536         t->logical_block_size = max(t->logical_block_size,
537                                     b->logical_block_size);
538
539         t->physical_block_size = max(t->physical_block_size,
540                                      b->physical_block_size);
541
542         t->io_min = max(t->io_min, b->io_min);
543         t->io_opt = lcm(t->io_opt, b->io_opt);
544
545         t->cluster &= b->cluster;
546         t->discard_zeroes_data &= b->discard_zeroes_data;
547
548         /* Physical block size a multiple of the logical block size? */
549         if (t->physical_block_size & (t->logical_block_size - 1)) {
550                 t->physical_block_size = t->logical_block_size;
551                 t->misaligned = 1;
552                 ret = -1;
553         }
554
555         /* Minimum I/O a multiple of the physical block size? */
556         if (t->io_min & (t->physical_block_size - 1)) {
557                 t->io_min = t->physical_block_size;
558                 t->misaligned = 1;
559                 ret = -1;
560         }
561
562         /* Optimal I/O a multiple of the physical block size? */
563         if (t->io_opt & (t->physical_block_size - 1)) {
564                 t->io_opt = 0;
565                 t->misaligned = 1;
566                 ret = -1;
567         }
568
569         /* Find lowest common alignment_offset */
570         t->alignment_offset = lcm(t->alignment_offset, alignment)
571                 & (max(t->physical_block_size, t->io_min) - 1);
572
573         /* Verify that new alignment_offset is on a logical block boundary */
574         if (t->alignment_offset & (t->logical_block_size - 1)) {
575                 t->misaligned = 1;
576                 ret = -1;
577         }
578
579         /* Discard alignment and granularity */
580         if (b->discard_granularity) {
581                 alignment = queue_limit_discard_alignment(b, start);
582
583                 if (t->discard_granularity != 0 &&
584                     t->discard_alignment != alignment) {
585                         top = t->discard_granularity + t->discard_alignment;
586                         bottom = b->discard_granularity + alignment;
587
588                         /* Verify that top and bottom intervals line up */
589                         if (max(top, bottom) & (min(top, bottom) - 1))
590                                 t->discard_misaligned = 1;
591                 }
592
593                 t->max_discard_sectors = min_not_zero(t->max_discard_sectors,
594                                                       b->max_discard_sectors);
595                 t->discard_granularity = max(t->discard_granularity,
596                                              b->discard_granularity);
597                 t->discard_alignment = lcm(t->discard_alignment, alignment) &
598                         (t->discard_granularity - 1);
599         }
600
601         return ret;
602 }
603 EXPORT_SYMBOL(blk_stack_limits);
604
605 /**
606  * bdev_stack_limits - adjust queue limits for stacked drivers
607  * @t:  the stacking driver limits (top device)
608  * @bdev:  the component block_device (bottom)
609  * @start:  first data sector within component device
610  *
611  * Description:
612  *    Merges queue limits for a top device and a block_device.  Returns
613  *    0 if alignment didn't change.  Returns -1 if adding the bottom
614  *    device caused misalignment.
615  */
616 int bdev_stack_limits(struct queue_limits *t, struct block_device *bdev,
617                       sector_t start)
618 {
619         struct request_queue *bq = bdev_get_queue(bdev);
620
621         start += get_start_sect(bdev);
622
623         return blk_stack_limits(t, &bq->limits, start);
624 }
625 EXPORT_SYMBOL(bdev_stack_limits);
626
627 /**
628  * disk_stack_limits - adjust queue limits for stacked drivers
629  * @disk:  MD/DM gendisk (top)
630  * @bdev:  the underlying block device (bottom)
631  * @offset:  offset to beginning of data within component device
632  *
633  * Description:
634  *    Merges the limits for a top level gendisk and a bottom level
635  *    block_device.
636  */
637 void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
638                        sector_t offset)
639 {
640         struct request_queue *t = disk->queue;
641
642         if (bdev_stack_limits(&t->limits, bdev, offset >> 9) < 0) {
643                 char top[BDEVNAME_SIZE], bottom[BDEVNAME_SIZE];
644
645                 disk_name(disk, 0, top);
646                 bdevname(bdev, bottom);
647
648                 printk(KERN_NOTICE "%s: Warning: Device %s is misaligned\n",
649                        top, bottom);
650         }
651 }
652 EXPORT_SYMBOL(disk_stack_limits);
653
654 /**
655  * blk_queue_dma_pad - set pad mask
656  * @q:     the request queue for the device
657  * @mask:  pad mask
658  *
659  * Set dma pad mask.
660  *
661  * Appending pad buffer to a request modifies the last entry of a
662  * scatter list such that it includes the pad buffer.
663  **/
664 void blk_queue_dma_pad(struct request_queue *q, unsigned int mask)
665 {
666         q->dma_pad_mask = mask;
667 }
668 EXPORT_SYMBOL(blk_queue_dma_pad);
669
670 /**
671  * blk_queue_update_dma_pad - update pad mask
672  * @q:     the request queue for the device
673  * @mask:  pad mask
674  *
675  * Update dma pad mask.
676  *
677  * Appending pad buffer to a request modifies the last entry of a
678  * scatter list such that it includes the pad buffer.
679  **/
680 void blk_queue_update_dma_pad(struct request_queue *q, unsigned int mask)
681 {
682         if (mask > q->dma_pad_mask)
683                 q->dma_pad_mask = mask;
684 }
685 EXPORT_SYMBOL(blk_queue_update_dma_pad);
686
687 /**
688  * blk_queue_dma_drain - Set up a drain buffer for excess dma.
689  * @q:  the request queue for the device
690  * @dma_drain_needed: fn which returns non-zero if drain is necessary
691  * @buf:        physically contiguous buffer
692  * @size:       size of the buffer in bytes
693  *
694  * Some devices have excess DMA problems and can't simply discard (or
695  * zero fill) the unwanted piece of the transfer.  They have to have a
696  * real area of memory to transfer it into.  The use case for this is
697  * ATAPI devices in DMA mode.  If the packet command causes a transfer
698  * bigger than the transfer size some HBAs will lock up if there
699  * aren't DMA elements to contain the excess transfer.  What this API
700  * does is adjust the queue so that the buf is always appended
701  * silently to the scatterlist.
702  *
703  * Note: This routine adjusts max_hw_segments to make room for appending
704  * the drain buffer.  If you call blk_queue_max_segments() after calling
705  * this routine, you must set the limit to one fewer than your device
706  * can support otherwise there won't be room for the drain buffer.
707  */
708 int blk_queue_dma_drain(struct request_queue *q,
709                                dma_drain_needed_fn *dma_drain_needed,
710                                void *buf, unsigned int size)
711 {
712         if (queue_max_segments(q) < 2)
713                 return -EINVAL;
714         /* make room for appending the drain */
715         blk_queue_max_segments(q, queue_max_segments(q) - 1);
716         q->dma_drain_needed = dma_drain_needed;
717         q->dma_drain_buffer = buf;
718         q->dma_drain_size = size;
719
720         return 0;
721 }
722 EXPORT_SYMBOL_GPL(blk_queue_dma_drain);
723
724 /**
725  * blk_queue_segment_boundary - set boundary rules for segment merging
726  * @q:  the request queue for the device
727  * @mask:  the memory boundary mask
728  **/
729 void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
730 {
731         if (mask < PAGE_CACHE_SIZE - 1) {
732                 mask = PAGE_CACHE_SIZE - 1;
733                 printk(KERN_INFO "%s: set to minimum %lx\n",
734                        __func__, mask);
735         }
736
737         q->limits.seg_boundary_mask = mask;
738 }
739 EXPORT_SYMBOL(blk_queue_segment_boundary);
740
741 /**
742  * blk_queue_dma_alignment - set dma length and memory alignment
743  * @q:     the request queue for the device
744  * @mask:  alignment mask
745  *
746  * description:
747  *    set required memory and length alignment for direct dma transactions.
748  *    this is used when building direct io requests for the queue.
749  *
750  **/
751 void blk_queue_dma_alignment(struct request_queue *q, int mask)
752 {
753         q->dma_alignment = mask;
754 }
755 EXPORT_SYMBOL(blk_queue_dma_alignment);
756
757 /**
758  * blk_queue_update_dma_alignment - update dma length and memory alignment
759  * @q:     the request queue for the device
760  * @mask:  alignment mask
761  *
762  * description:
763  *    update required memory and length alignment for direct dma transactions.
764  *    If the requested alignment is larger than the current alignment, then
765  *    the current queue alignment is updated to the new value, otherwise it
766  *    is left alone.  The design of this is to allow multiple objects
767  *    (driver, device, transport etc) to set their respective
768  *    alignments without having them interfere.
769  *
770  **/
771 void blk_queue_update_dma_alignment(struct request_queue *q, int mask)
772 {
773         BUG_ON(mask > PAGE_SIZE);
774
775         if (mask > q->dma_alignment)
776                 q->dma_alignment = mask;
777 }
778 EXPORT_SYMBOL(blk_queue_update_dma_alignment);
779
780 /**
781  * blk_queue_flush - configure queue's cache flush capability
782  * @q:          the request queue for the device
783  * @flush:      0, REQ_FLUSH or REQ_FLUSH | REQ_FUA
784  *
785  * Tell block layer cache flush capability of @q.  If it supports
786  * flushing, REQ_FLUSH should be set.  If it supports bypassing
787  * write cache for individual writes, REQ_FUA should be set.
788  */
789 void blk_queue_flush(struct request_queue *q, unsigned int flush)
790 {
791         WARN_ON_ONCE(flush & ~(REQ_FLUSH | REQ_FUA));
792
793         if (WARN_ON_ONCE(!(flush & REQ_FLUSH) && (flush & REQ_FUA)))
794                 flush &= ~REQ_FUA;
795
796         q->flush_flags = flush & (REQ_FLUSH | REQ_FUA);
797 }
798 EXPORT_SYMBOL_GPL(blk_queue_flush);
799
800 static int __init blk_settings_init(void)
801 {
802         blk_max_low_pfn = max_low_pfn - 1;
803         blk_max_pfn = max_pfn - 1;
804         return 0;
805 }
806 subsys_initcall(blk_settings_init);