block: Make blk_queue_stack_limits use the new stacking interface
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / block / blk-settings.c
CommitLineData
86db1e29
JA
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
11#include "blk.h"
12
6728cb0e 13unsigned long blk_max_low_pfn;
86db1e29 14EXPORT_SYMBOL(blk_max_low_pfn);
6728cb0e
JA
15
16unsigned long blk_max_pfn;
86db1e29
JA
17
18/**
19 * blk_queue_prep_rq - set a prepare_request function for queue
20 * @q: queue
21 * @pfn: prepare_request function
22 *
23 * It's possible for a queue to register a prepare_request callback which
24 * is invoked before the request is handed to the request_fn. The goal of
25 * the function is to prepare a request for I/O, it can be used to build a
26 * cdb from the request data for instance.
27 *
28 */
29void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn)
30{
31 q->prep_rq_fn = pfn;
32}
86db1e29
JA
33EXPORT_SYMBOL(blk_queue_prep_rq);
34
fb2dce86
DW
35/**
36 * blk_queue_set_discard - set a discard_sectors function for queue
37 * @q: queue
38 * @dfn: prepare_discard function
39 *
40 * It's possible for a queue to register a discard callback which is used
41 * to transform a discard request into the appropriate type for the
42 * hardware. If none is registered, then discard requests are failed
43 * with %EOPNOTSUPP.
44 *
45 */
46void blk_queue_set_discard(struct request_queue *q, prepare_discard_fn *dfn)
47{
48 q->prepare_discard_fn = dfn;
49}
50EXPORT_SYMBOL(blk_queue_set_discard);
51
86db1e29
JA
52/**
53 * blk_queue_merge_bvec - set a merge_bvec function for queue
54 * @q: queue
55 * @mbfn: merge_bvec_fn
56 *
57 * Usually queues have static limitations on the max sectors or segments that
58 * we can put in a request. Stacking drivers may have some settings that
59 * are dynamic, and thus we have to query the queue whether it is ok to
60 * add a new bio_vec to a bio at a given offset or not. If the block device
61 * has such limitations, it needs to register a merge_bvec_fn to control
62 * the size of bio's sent to it. Note that a block device *must* allow a
63 * single page to be added to an empty bio. The block device driver may want
64 * to use the bio_split() function to deal with these bio's. By default
65 * no merge_bvec_fn is defined for a queue, and only the fixed limits are
66 * honored.
67 */
68void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn)
69{
70 q->merge_bvec_fn = mbfn;
71}
86db1e29
JA
72EXPORT_SYMBOL(blk_queue_merge_bvec);
73
74void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn)
75{
76 q->softirq_done_fn = fn;
77}
86db1e29
JA
78EXPORT_SYMBOL(blk_queue_softirq_done);
79
242f9dcb
JA
80void blk_queue_rq_timeout(struct request_queue *q, unsigned int timeout)
81{
82 q->rq_timeout = timeout;
83}
84EXPORT_SYMBOL_GPL(blk_queue_rq_timeout);
85
86void blk_queue_rq_timed_out(struct request_queue *q, rq_timed_out_fn *fn)
87{
88 q->rq_timed_out_fn = fn;
89}
90EXPORT_SYMBOL_GPL(blk_queue_rq_timed_out);
91
ef9e3fac
KU
92void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn)
93{
94 q->lld_busy_fn = fn;
95}
96EXPORT_SYMBOL_GPL(blk_queue_lld_busy);
97
e475bba2
MP
98/**
99 * blk_set_default_limits - reset limits to default values
f740f5ca 100 * @lim: the queue_limits structure to reset
e475bba2
MP
101 *
102 * Description:
103 * Returns a queue_limit struct to its default state. Can be used by
104 * stacking drivers like DM that stage table swaps and reuse an
105 * existing device queue.
106 */
107void blk_set_default_limits(struct queue_limits *lim)
108{
109 lim->max_phys_segments = MAX_PHYS_SEGMENTS;
110 lim->max_hw_segments = MAX_HW_SEGMENTS;
111 lim->seg_boundary_mask = BLK_SEG_BOUNDARY_MASK;
112 lim->max_segment_size = MAX_SEGMENT_SIZE;
113 lim->max_sectors = lim->max_hw_sectors = SAFE_MAX_SECTORS;
114 lim->logical_block_size = lim->physical_block_size = lim->io_min = 512;
3a02c8e8 115 lim->bounce_pfn = (unsigned long)(BLK_BOUNCE_ANY >> PAGE_SHIFT);
e475bba2
MP
116 lim->alignment_offset = 0;
117 lim->io_opt = 0;
118 lim->misaligned = 0;
119 lim->no_cluster = 0;
120}
121EXPORT_SYMBOL(blk_set_default_limits);
122
86db1e29
JA
123/**
124 * blk_queue_make_request - define an alternate make_request function for a device
125 * @q: the request queue for the device to be affected
126 * @mfn: the alternate make_request function
127 *
128 * Description:
129 * The normal way for &struct bios to be passed to a device
130 * driver is for them to be collected into requests on a request
131 * queue, and then to allow the device driver to select requests
132 * off that queue when it is ready. This works well for many block
133 * devices. However some block devices (typically virtual devices
134 * such as md or lvm) do not benefit from the processing on the
135 * request queue, and are served best by having the requests passed
136 * directly to them. This can be achieved by providing a function
137 * to blk_queue_make_request().
138 *
139 * Caveat:
140 * The driver that does this *must* be able to deal appropriately
141 * with buffers in "highmemory". This can be accomplished by either calling
142 * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
143 * blk_queue_bounce() to create a buffer in normal memory.
144 **/
6728cb0e 145void blk_queue_make_request(struct request_queue *q, make_request_fn *mfn)
86db1e29
JA
146{
147 /*
148 * set defaults
149 */
150 q->nr_requests = BLKDEV_MAX_RQ;
0e435ac2 151
86db1e29 152 q->make_request_fn = mfn;
86db1e29
JA
153 blk_queue_dma_alignment(q, 511);
154 blk_queue_congestion_threshold(q);
155 q->nr_batching = BLK_BATCH_REQ;
156
157 q->unplug_thresh = 4; /* hmm */
158 q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */
159 if (q->unplug_delay == 0)
160 q->unplug_delay = 1;
161
86db1e29
JA
162 q->unplug_timer.function = blk_unplug_timeout;
163 q->unplug_timer.data = (unsigned long)q;
164
e475bba2
MP
165 blk_set_default_limits(&q->limits);
166
a4e7d464
JA
167 /*
168 * If the caller didn't supply a lock, fall back to our embedded
169 * per-queue locks
170 */
171 if (!q->queue_lock)
172 q->queue_lock = &q->__queue_lock;
173
86db1e29
JA
174 /*
175 * by default assume old behaviour and bounce for any highmem page
176 */
177 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
178}
86db1e29
JA
179EXPORT_SYMBOL(blk_queue_make_request);
180
181/**
182 * blk_queue_bounce_limit - set bounce buffer limit for queue
cd0aca2d
TH
183 * @q: the request queue for the device
184 * @dma_mask: the maximum address the device can handle
86db1e29
JA
185 *
186 * Description:
187 * Different hardware can have different requirements as to what pages
188 * it can do I/O directly to. A low level driver can call
189 * blk_queue_bounce_limit to have lower memory pages allocated as bounce
cd0aca2d 190 * buffers for doing I/O to pages residing above @dma_mask.
86db1e29 191 **/
cd0aca2d 192void blk_queue_bounce_limit(struct request_queue *q, u64 dma_mask)
86db1e29 193{
cd0aca2d 194 unsigned long b_pfn = dma_mask >> PAGE_SHIFT;
86db1e29
JA
195 int dma = 0;
196
197 q->bounce_gfp = GFP_NOIO;
198#if BITS_PER_LONG == 64
cd0aca2d
TH
199 /*
200 * Assume anything <= 4GB can be handled by IOMMU. Actually
201 * some IOMMUs can handle everything, but I don't know of a
202 * way to test this here.
203 */
204 if (b_pfn < (min_t(u64, 0xffffffffUL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
86db1e29 205 dma = 1;
025146e1 206 q->limits.bounce_pfn = max_low_pfn;
86db1e29 207#else
6728cb0e 208 if (b_pfn < blk_max_low_pfn)
86db1e29 209 dma = 1;
025146e1 210 q->limits.bounce_pfn = b_pfn;
86db1e29
JA
211#endif
212 if (dma) {
213 init_emergency_isa_pool();
214 q->bounce_gfp = GFP_NOIO | GFP_DMA;
025146e1 215 q->limits.bounce_pfn = b_pfn;
86db1e29
JA
216 }
217}
86db1e29
JA
218EXPORT_SYMBOL(blk_queue_bounce_limit);
219
220/**
221 * blk_queue_max_sectors - set max sectors for a request for this queue
222 * @q: the request queue for the device
223 * @max_sectors: max sectors in the usual 512b unit
224 *
225 * Description:
226 * Enables a low level driver to set an upper limit on the size of
227 * received requests.
228 **/
229void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors)
230{
231 if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
232 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
24c03d47
HH
233 printk(KERN_INFO "%s: set to minimum %d\n",
234 __func__, max_sectors);
86db1e29
JA
235 }
236
237 if (BLK_DEF_MAX_SECTORS > max_sectors)
025146e1 238 q->limits.max_hw_sectors = q->limits.max_sectors = max_sectors;
86db1e29 239 else {
025146e1
MP
240 q->limits.max_sectors = BLK_DEF_MAX_SECTORS;
241 q->limits.max_hw_sectors = max_sectors;
86db1e29
JA
242 }
243}
86db1e29
JA
244EXPORT_SYMBOL(blk_queue_max_sectors);
245
ae03bf63
MP
246void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_sectors)
247{
248 if (BLK_DEF_MAX_SECTORS > max_sectors)
025146e1 249 q->limits.max_hw_sectors = BLK_DEF_MAX_SECTORS;
ae03bf63 250 else
025146e1 251 q->limits.max_hw_sectors = max_sectors;
ae03bf63
MP
252}
253EXPORT_SYMBOL(blk_queue_max_hw_sectors);
254
86db1e29
JA
255/**
256 * blk_queue_max_phys_segments - set max phys segments for a request for this queue
257 * @q: the request queue for the device
258 * @max_segments: max number of segments
259 *
260 * Description:
261 * Enables a low level driver to set an upper limit on the number of
262 * physical data segments in a request. This would be the largest sized
263 * scatter list the driver could handle.
264 **/
265void blk_queue_max_phys_segments(struct request_queue *q,
266 unsigned short max_segments)
267{
268 if (!max_segments) {
269 max_segments = 1;
24c03d47
HH
270 printk(KERN_INFO "%s: set to minimum %d\n",
271 __func__, max_segments);
86db1e29
JA
272 }
273
025146e1 274 q->limits.max_phys_segments = max_segments;
86db1e29 275}
86db1e29
JA
276EXPORT_SYMBOL(blk_queue_max_phys_segments);
277
278/**
279 * blk_queue_max_hw_segments - set max hw segments for a request for this queue
280 * @q: the request queue for the device
281 * @max_segments: max number of segments
282 *
283 * Description:
284 * Enables a low level driver to set an upper limit on the number of
285 * hw data segments in a request. This would be the largest number of
710027a4 286 * address/length pairs the host adapter can actually give at once
86db1e29
JA
287 * to the device.
288 **/
289void blk_queue_max_hw_segments(struct request_queue *q,
290 unsigned short max_segments)
291{
292 if (!max_segments) {
293 max_segments = 1;
24c03d47
HH
294 printk(KERN_INFO "%s: set to minimum %d\n",
295 __func__, max_segments);
86db1e29
JA
296 }
297
025146e1 298 q->limits.max_hw_segments = max_segments;
86db1e29 299}
86db1e29
JA
300EXPORT_SYMBOL(blk_queue_max_hw_segments);
301
302/**
303 * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
304 * @q: the request queue for the device
305 * @max_size: max size of segment in bytes
306 *
307 * Description:
308 * Enables a low level driver to set an upper limit on the size of a
309 * coalesced segment
310 **/
311void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
312{
313 if (max_size < PAGE_CACHE_SIZE) {
314 max_size = PAGE_CACHE_SIZE;
24c03d47
HH
315 printk(KERN_INFO "%s: set to minimum %d\n",
316 __func__, max_size);
86db1e29
JA
317 }
318
025146e1 319 q->limits.max_segment_size = max_size;
86db1e29 320}
86db1e29
JA
321EXPORT_SYMBOL(blk_queue_max_segment_size);
322
323/**
e1defc4f 324 * blk_queue_logical_block_size - set logical block size for the queue
86db1e29 325 * @q: the request queue for the device
e1defc4f 326 * @size: the logical block size, in bytes
86db1e29
JA
327 *
328 * Description:
e1defc4f
MP
329 * This should be set to the lowest possible block size that the
330 * storage device can address. The default of 512 covers most
331 * hardware.
86db1e29 332 **/
e1defc4f 333void blk_queue_logical_block_size(struct request_queue *q, unsigned short size)
86db1e29 334{
025146e1 335 q->limits.logical_block_size = size;
c72758f3
MP
336
337 if (q->limits.physical_block_size < size)
338 q->limits.physical_block_size = size;
339
340 if (q->limits.io_min < q->limits.physical_block_size)
341 q->limits.io_min = q->limits.physical_block_size;
86db1e29 342}
e1defc4f 343EXPORT_SYMBOL(blk_queue_logical_block_size);
86db1e29 344
c72758f3
MP
345/**
346 * blk_queue_physical_block_size - set physical block size for the queue
347 * @q: the request queue for the device
348 * @size: the physical block size, in bytes
349 *
350 * Description:
351 * This should be set to the lowest possible sector size that the
352 * hardware can operate on without reverting to read-modify-write
353 * operations.
354 */
355void blk_queue_physical_block_size(struct request_queue *q, unsigned short size)
356{
357 q->limits.physical_block_size = size;
358
359 if (q->limits.physical_block_size < q->limits.logical_block_size)
360 q->limits.physical_block_size = q->limits.logical_block_size;
361
362 if (q->limits.io_min < q->limits.physical_block_size)
363 q->limits.io_min = q->limits.physical_block_size;
364}
365EXPORT_SYMBOL(blk_queue_physical_block_size);
366
367/**
368 * blk_queue_alignment_offset - set physical block alignment offset
369 * @q: the request queue for the device
8ebf9756 370 * @offset: alignment offset in bytes
c72758f3
MP
371 *
372 * Description:
373 * Some devices are naturally misaligned to compensate for things like
374 * the legacy DOS partition table 63-sector offset. Low-level drivers
375 * should call this function for devices whose first sector is not
376 * naturally aligned.
377 */
378void blk_queue_alignment_offset(struct request_queue *q, unsigned int offset)
379{
380 q->limits.alignment_offset =
381 offset & (q->limits.physical_block_size - 1);
382 q->limits.misaligned = 0;
383}
384EXPORT_SYMBOL(blk_queue_alignment_offset);
385
386/**
387 * blk_queue_io_min - set minimum request size for the queue
388 * @q: the request queue for the device
8ebf9756 389 * @min: smallest I/O size in bytes
c72758f3
MP
390 *
391 * Description:
392 * Some devices have an internal block size bigger than the reported
393 * hardware sector size. This function can be used to signal the
394 * smallest I/O the device can perform without incurring a performance
395 * penalty.
396 */
397void blk_queue_io_min(struct request_queue *q, unsigned int min)
398{
399 q->limits.io_min = min;
400
401 if (q->limits.io_min < q->limits.logical_block_size)
402 q->limits.io_min = q->limits.logical_block_size;
403
404 if (q->limits.io_min < q->limits.physical_block_size)
405 q->limits.io_min = q->limits.physical_block_size;
406}
407EXPORT_SYMBOL(blk_queue_io_min);
408
409/**
410 * blk_queue_io_opt - set optimal request size for the queue
411 * @q: the request queue for the device
8ebf9756 412 * @opt: optimal request size in bytes
c72758f3
MP
413 *
414 * Description:
415 * Drivers can call this function to set the preferred I/O request
416 * size for devices that report such a value.
417 */
418void blk_queue_io_opt(struct request_queue *q, unsigned int opt)
419{
420 q->limits.io_opt = opt;
421}
422EXPORT_SYMBOL(blk_queue_io_opt);
423
86db1e29
JA
424/*
425 * Returns the minimum that is _not_ zero, unless both are zero.
426 */
427#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
428
429/**
430 * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
431 * @t: the stacking driver (top)
432 * @b: the underlying device (bottom)
433 **/
434void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
435{
fef24667 436 blk_stack_limits(&t->limits, &b->limits, 0);
025146e1 437
e7e72bf6
NB
438 if (!t->queue_lock)
439 WARN_ON_ONCE(1);
440 else if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) {
441 unsigned long flags;
442 spin_lock_irqsave(t->queue_lock, flags);
75ad23bc 443 queue_flag_clear(QUEUE_FLAG_CLUSTER, t);
e7e72bf6
NB
444 spin_unlock_irqrestore(t->queue_lock, flags);
445 }
86db1e29 446}
86db1e29
JA
447EXPORT_SYMBOL(blk_queue_stack_limits);
448
c72758f3
MP
449/**
450 * blk_stack_limits - adjust queue_limits for stacked devices
451 * @t: the stacking driver limits (top)
77634f33 452 * @b: the underlying queue limits (bottom)
c72758f3
MP
453 * @offset: offset to beginning of data within component device
454 *
455 * Description:
456 * Merges two queue_limit structs. Returns 0 if alignment didn't
457 * change. Returns -1 if adding the bottom device caused
458 * misalignment.
459 */
460int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
461 sector_t offset)
462{
463 t->max_sectors = min_not_zero(t->max_sectors, b->max_sectors);
464 t->max_hw_sectors = min_not_zero(t->max_hw_sectors, b->max_hw_sectors);
77634f33 465 t->bounce_pfn = min_not_zero(t->bounce_pfn, b->bounce_pfn);
c72758f3
MP
466
467 t->seg_boundary_mask = min_not_zero(t->seg_boundary_mask,
468 b->seg_boundary_mask);
469
470 t->max_phys_segments = min_not_zero(t->max_phys_segments,
471 b->max_phys_segments);
472
473 t->max_hw_segments = min_not_zero(t->max_hw_segments,
474 b->max_hw_segments);
475
476 t->max_segment_size = min_not_zero(t->max_segment_size,
477 b->max_segment_size);
478
479 t->logical_block_size = max(t->logical_block_size,
480 b->logical_block_size);
481
482 t->physical_block_size = max(t->physical_block_size,
483 b->physical_block_size);
484
485 t->io_min = max(t->io_min, b->io_min);
486 t->no_cluster |= b->no_cluster;
487
488 /* Bottom device offset aligned? */
489 if (offset &&
490 (offset & (b->physical_block_size - 1)) != b->alignment_offset) {
491 t->misaligned = 1;
492 return -1;
493 }
494
495 /* If top has no alignment offset, inherit from bottom */
496 if (!t->alignment_offset)
497 t->alignment_offset =
498 b->alignment_offset & (b->physical_block_size - 1);
499
500 /* Top device aligned on logical block boundary? */
501 if (t->alignment_offset & (t->logical_block_size - 1)) {
502 t->misaligned = 1;
503 return -1;
504 }
505
506 return 0;
507}
5d85d324 508EXPORT_SYMBOL(blk_stack_limits);
c72758f3
MP
509
510/**
511 * disk_stack_limits - adjust queue limits for stacked drivers
77634f33 512 * @disk: MD/DM gendisk (top)
c72758f3
MP
513 * @bdev: the underlying block device (bottom)
514 * @offset: offset to beginning of data within component device
515 *
516 * Description:
517 * Merges the limits for two queues. Returns 0 if alignment
518 * didn't change. Returns -1 if adding the bottom device caused
519 * misalignment.
520 */
521void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
522 sector_t offset)
523{
524 struct request_queue *t = disk->queue;
525 struct request_queue *b = bdev_get_queue(bdev);
526
527 offset += get_start_sect(bdev) << 9;
528
529 if (blk_stack_limits(&t->limits, &b->limits, offset) < 0) {
530 char top[BDEVNAME_SIZE], bottom[BDEVNAME_SIZE];
531
532 disk_name(disk, 0, top);
533 bdevname(bdev, bottom);
534
535 printk(KERN_NOTICE "%s: Warning: Device %s is misaligned\n",
536 top, bottom);
537 }
538
539 if (!t->queue_lock)
540 WARN_ON_ONCE(1);
541 else if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) {
542 unsigned long flags;
543
544 spin_lock_irqsave(t->queue_lock, flags);
545 if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags))
546 queue_flag_clear(QUEUE_FLAG_CLUSTER, t);
547 spin_unlock_irqrestore(t->queue_lock, flags);
548 }
549}
550EXPORT_SYMBOL(disk_stack_limits);
551
e3790c7d
TH
552/**
553 * blk_queue_dma_pad - set pad mask
554 * @q: the request queue for the device
555 * @mask: pad mask
556 *
27f8221a 557 * Set dma pad mask.
e3790c7d 558 *
27f8221a
FT
559 * Appending pad buffer to a request modifies the last entry of a
560 * scatter list such that it includes the pad buffer.
e3790c7d
TH
561 **/
562void blk_queue_dma_pad(struct request_queue *q, unsigned int mask)
563{
564 q->dma_pad_mask = mask;
565}
566EXPORT_SYMBOL(blk_queue_dma_pad);
567
27f8221a
FT
568/**
569 * blk_queue_update_dma_pad - update pad mask
570 * @q: the request queue for the device
571 * @mask: pad mask
572 *
573 * Update dma pad mask.
574 *
575 * Appending pad buffer to a request modifies the last entry of a
576 * scatter list such that it includes the pad buffer.
577 **/
578void blk_queue_update_dma_pad(struct request_queue *q, unsigned int mask)
579{
580 if (mask > q->dma_pad_mask)
581 q->dma_pad_mask = mask;
582}
583EXPORT_SYMBOL(blk_queue_update_dma_pad);
584
86db1e29
JA
585/**
586 * blk_queue_dma_drain - Set up a drain buffer for excess dma.
86db1e29 587 * @q: the request queue for the device
2fb98e84 588 * @dma_drain_needed: fn which returns non-zero if drain is necessary
86db1e29
JA
589 * @buf: physically contiguous buffer
590 * @size: size of the buffer in bytes
591 *
592 * Some devices have excess DMA problems and can't simply discard (or
593 * zero fill) the unwanted piece of the transfer. They have to have a
594 * real area of memory to transfer it into. The use case for this is
595 * ATAPI devices in DMA mode. If the packet command causes a transfer
596 * bigger than the transfer size some HBAs will lock up if there
597 * aren't DMA elements to contain the excess transfer. What this API
598 * does is adjust the queue so that the buf is always appended
599 * silently to the scatterlist.
600 *
601 * Note: This routine adjusts max_hw_segments to make room for
602 * appending the drain buffer. If you call
603 * blk_queue_max_hw_segments() or blk_queue_max_phys_segments() after
604 * calling this routine, you must set the limit to one fewer than your
605 * device can support otherwise there won't be room for the drain
606 * buffer.
607 */
448da4d2 608int blk_queue_dma_drain(struct request_queue *q,
2fb98e84
TH
609 dma_drain_needed_fn *dma_drain_needed,
610 void *buf, unsigned int size)
86db1e29 611{
ae03bf63 612 if (queue_max_hw_segments(q) < 2 || queue_max_phys_segments(q) < 2)
86db1e29
JA
613 return -EINVAL;
614 /* make room for appending the drain */
ae03bf63
MP
615 blk_queue_max_hw_segments(q, queue_max_hw_segments(q) - 1);
616 blk_queue_max_phys_segments(q, queue_max_phys_segments(q) - 1);
2fb98e84 617 q->dma_drain_needed = dma_drain_needed;
86db1e29
JA
618 q->dma_drain_buffer = buf;
619 q->dma_drain_size = size;
620
621 return 0;
622}
86db1e29
JA
623EXPORT_SYMBOL_GPL(blk_queue_dma_drain);
624
625/**
626 * blk_queue_segment_boundary - set boundary rules for segment merging
627 * @q: the request queue for the device
628 * @mask: the memory boundary mask
629 **/
630void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
631{
632 if (mask < PAGE_CACHE_SIZE - 1) {
633 mask = PAGE_CACHE_SIZE - 1;
24c03d47
HH
634 printk(KERN_INFO "%s: set to minimum %lx\n",
635 __func__, mask);
86db1e29
JA
636 }
637
025146e1 638 q->limits.seg_boundary_mask = mask;
86db1e29 639}
86db1e29
JA
640EXPORT_SYMBOL(blk_queue_segment_boundary);
641
642/**
643 * blk_queue_dma_alignment - set dma length and memory alignment
644 * @q: the request queue for the device
645 * @mask: alignment mask
646 *
647 * description:
710027a4 648 * set required memory and length alignment for direct dma transactions.
8feb4d20 649 * this is used when building direct io requests for the queue.
86db1e29
JA
650 *
651 **/
652void blk_queue_dma_alignment(struct request_queue *q, int mask)
653{
654 q->dma_alignment = mask;
655}
86db1e29
JA
656EXPORT_SYMBOL(blk_queue_dma_alignment);
657
658/**
659 * blk_queue_update_dma_alignment - update dma length and memory alignment
660 * @q: the request queue for the device
661 * @mask: alignment mask
662 *
663 * description:
710027a4 664 * update required memory and length alignment for direct dma transactions.
86db1e29
JA
665 * If the requested alignment is larger than the current alignment, then
666 * the current queue alignment is updated to the new value, otherwise it
667 * is left alone. The design of this is to allow multiple objects
668 * (driver, device, transport etc) to set their respective
669 * alignments without having them interfere.
670 *
671 **/
672void blk_queue_update_dma_alignment(struct request_queue *q, int mask)
673{
674 BUG_ON(mask > PAGE_SIZE);
675
676 if (mask > q->dma_alignment)
677 q->dma_alignment = mask;
678}
86db1e29
JA
679EXPORT_SYMBOL(blk_queue_update_dma_alignment);
680
aeb3d3a8 681static int __init blk_settings_init(void)
86db1e29
JA
682{
683 blk_max_low_pfn = max_low_pfn - 1;
684 blk_max_pfn = max_pfn - 1;
685 return 0;
686}
687subsys_initcall(blk_settings_init);