]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/blk-settings.c
block: Use accessor functions for queue limits
[mirror_ubuntu-bionic-kernel.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
86db1e29
JA
98/**
99 * blk_queue_make_request - define an alternate make_request function for a device
100 * @q: the request queue for the device to be affected
101 * @mfn: the alternate make_request function
102 *
103 * Description:
104 * The normal way for &struct bios to be passed to a device
105 * driver is for them to be collected into requests on a request
106 * queue, and then to allow the device driver to select requests
107 * off that queue when it is ready. This works well for many block
108 * devices. However some block devices (typically virtual devices
109 * such as md or lvm) do not benefit from the processing on the
110 * request queue, and are served best by having the requests passed
111 * directly to them. This can be achieved by providing a function
112 * to blk_queue_make_request().
113 *
114 * Caveat:
115 * The driver that does this *must* be able to deal appropriately
116 * with buffers in "highmemory". This can be accomplished by either calling
117 * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
118 * blk_queue_bounce() to create a buffer in normal memory.
119 **/
6728cb0e 120void blk_queue_make_request(struct request_queue *q, make_request_fn *mfn)
86db1e29
JA
121{
122 /*
123 * set defaults
124 */
125 q->nr_requests = BLKDEV_MAX_RQ;
126 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
127 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
0e435ac2
MB
128 blk_queue_segment_boundary(q, BLK_SEG_BOUNDARY_MASK);
129 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
130
86db1e29 131 q->make_request_fn = mfn;
6728cb0e
JA
132 q->backing_dev_info.ra_pages =
133 (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
86db1e29
JA
134 q->backing_dev_info.state = 0;
135 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
136 blk_queue_max_sectors(q, SAFE_MAX_SECTORS);
e1defc4f 137 blk_queue_logical_block_size(q, 512);
86db1e29
JA
138 blk_queue_dma_alignment(q, 511);
139 blk_queue_congestion_threshold(q);
140 q->nr_batching = BLK_BATCH_REQ;
141
142 q->unplug_thresh = 4; /* hmm */
143 q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */
144 if (q->unplug_delay == 0)
145 q->unplug_delay = 1;
146
86db1e29
JA
147 q->unplug_timer.function = blk_unplug_timeout;
148 q->unplug_timer.data = (unsigned long)q;
149
150 /*
151 * by default assume old behaviour and bounce for any highmem page
152 */
153 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
154}
86db1e29
JA
155EXPORT_SYMBOL(blk_queue_make_request);
156
157/**
158 * blk_queue_bounce_limit - set bounce buffer limit for queue
cd0aca2d
TH
159 * @q: the request queue for the device
160 * @dma_mask: the maximum address the device can handle
86db1e29
JA
161 *
162 * Description:
163 * Different hardware can have different requirements as to what pages
164 * it can do I/O directly to. A low level driver can call
165 * blk_queue_bounce_limit to have lower memory pages allocated as bounce
cd0aca2d 166 * buffers for doing I/O to pages residing above @dma_mask.
86db1e29 167 **/
cd0aca2d 168void blk_queue_bounce_limit(struct request_queue *q, u64 dma_mask)
86db1e29 169{
cd0aca2d 170 unsigned long b_pfn = dma_mask >> PAGE_SHIFT;
86db1e29
JA
171 int dma = 0;
172
173 q->bounce_gfp = GFP_NOIO;
174#if BITS_PER_LONG == 64
cd0aca2d
TH
175 /*
176 * Assume anything <= 4GB can be handled by IOMMU. Actually
177 * some IOMMUs can handle everything, but I don't know of a
178 * way to test this here.
179 */
180 if (b_pfn < (min_t(u64, 0xffffffffUL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
86db1e29
JA
181 dma = 1;
182 q->bounce_pfn = max_low_pfn;
183#else
6728cb0e 184 if (b_pfn < blk_max_low_pfn)
86db1e29 185 dma = 1;
6728cb0e 186 q->bounce_pfn = b_pfn;
86db1e29
JA
187#endif
188 if (dma) {
189 init_emergency_isa_pool();
190 q->bounce_gfp = GFP_NOIO | GFP_DMA;
6728cb0e 191 q->bounce_pfn = b_pfn;
86db1e29
JA
192 }
193}
86db1e29
JA
194EXPORT_SYMBOL(blk_queue_bounce_limit);
195
196/**
197 * blk_queue_max_sectors - set max sectors for a request for this queue
198 * @q: the request queue for the device
199 * @max_sectors: max sectors in the usual 512b unit
200 *
201 * Description:
202 * Enables a low level driver to set an upper limit on the size of
203 * received requests.
204 **/
205void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors)
206{
207 if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
208 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
24c03d47
HH
209 printk(KERN_INFO "%s: set to minimum %d\n",
210 __func__, max_sectors);
86db1e29
JA
211 }
212
213 if (BLK_DEF_MAX_SECTORS > max_sectors)
214 q->max_hw_sectors = q->max_sectors = max_sectors;
215 else {
216 q->max_sectors = BLK_DEF_MAX_SECTORS;
217 q->max_hw_sectors = max_sectors;
218 }
219}
86db1e29
JA
220EXPORT_SYMBOL(blk_queue_max_sectors);
221
ae03bf63
MP
222void blk_queue_max_hw_sectors(struct request_queue *q, unsigned int max_sectors)
223{
224 if (BLK_DEF_MAX_SECTORS > max_sectors)
225 q->max_hw_sectors = BLK_DEF_MAX_SECTORS;
226 else
227 q->max_hw_sectors = max_sectors;
228}
229EXPORT_SYMBOL(blk_queue_max_hw_sectors);
230
86db1e29
JA
231/**
232 * blk_queue_max_phys_segments - set max phys segments for a request for this queue
233 * @q: the request queue for the device
234 * @max_segments: max number of segments
235 *
236 * Description:
237 * Enables a low level driver to set an upper limit on the number of
238 * physical data segments in a request. This would be the largest sized
239 * scatter list the driver could handle.
240 **/
241void blk_queue_max_phys_segments(struct request_queue *q,
242 unsigned short max_segments)
243{
244 if (!max_segments) {
245 max_segments = 1;
24c03d47
HH
246 printk(KERN_INFO "%s: set to minimum %d\n",
247 __func__, max_segments);
86db1e29
JA
248 }
249
250 q->max_phys_segments = max_segments;
251}
86db1e29
JA
252EXPORT_SYMBOL(blk_queue_max_phys_segments);
253
254/**
255 * blk_queue_max_hw_segments - set max hw segments for a request for this queue
256 * @q: the request queue for the device
257 * @max_segments: max number of segments
258 *
259 * Description:
260 * Enables a low level driver to set an upper limit on the number of
261 * hw data segments in a request. This would be the largest number of
710027a4 262 * address/length pairs the host adapter can actually give at once
86db1e29
JA
263 * to the device.
264 **/
265void blk_queue_max_hw_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
274 q->max_hw_segments = max_segments;
275}
86db1e29
JA
276EXPORT_SYMBOL(blk_queue_max_hw_segments);
277
278/**
279 * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
280 * @q: the request queue for the device
281 * @max_size: max size of segment in bytes
282 *
283 * Description:
284 * Enables a low level driver to set an upper limit on the size of a
285 * coalesced segment
286 **/
287void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
288{
289 if (max_size < PAGE_CACHE_SIZE) {
290 max_size = PAGE_CACHE_SIZE;
24c03d47
HH
291 printk(KERN_INFO "%s: set to minimum %d\n",
292 __func__, max_size);
86db1e29
JA
293 }
294
295 q->max_segment_size = max_size;
296}
86db1e29
JA
297EXPORT_SYMBOL(blk_queue_max_segment_size);
298
299/**
e1defc4f 300 * blk_queue_logical_block_size - set logical block size for the queue
86db1e29 301 * @q: the request queue for the device
e1defc4f 302 * @size: the logical block size, in bytes
86db1e29
JA
303 *
304 * Description:
e1defc4f
MP
305 * This should be set to the lowest possible block size that the
306 * storage device can address. The default of 512 covers most
307 * hardware.
86db1e29 308 **/
e1defc4f 309void blk_queue_logical_block_size(struct request_queue *q, unsigned short size)
86db1e29 310{
e1defc4f 311 q->logical_block_size = size;
86db1e29 312}
e1defc4f 313EXPORT_SYMBOL(blk_queue_logical_block_size);
86db1e29
JA
314
315/*
316 * Returns the minimum that is _not_ zero, unless both are zero.
317 */
318#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
319
320/**
321 * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
322 * @t: the stacking driver (top)
323 * @b: the underlying device (bottom)
324 **/
325void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
326{
327 /* zero is "infinity" */
6728cb0e
JA
328 t->max_sectors = min_not_zero(t->max_sectors, b->max_sectors);
329 t->max_hw_sectors = min_not_zero(t->max_hw_sectors, b->max_hw_sectors);
0e435ac2 330 t->seg_boundary_mask = min_not_zero(t->seg_boundary_mask, b->seg_boundary_mask);
86db1e29 331
18af8b2c
FT
332 t->max_phys_segments = min_not_zero(t->max_phys_segments, b->max_phys_segments);
333 t->max_hw_segments = min_not_zero(t->max_hw_segments, b->max_hw_segments);
334 t->max_segment_size = min_not_zero(t->max_segment_size, b->max_segment_size);
e1defc4f 335 t->logical_block_size = max(t->logical_block_size, b->logical_block_size);
e7e72bf6
NB
336 if (!t->queue_lock)
337 WARN_ON_ONCE(1);
338 else if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) {
339 unsigned long flags;
340 spin_lock_irqsave(t->queue_lock, flags);
75ad23bc 341 queue_flag_clear(QUEUE_FLAG_CLUSTER, t);
e7e72bf6
NB
342 spin_unlock_irqrestore(t->queue_lock, flags);
343 }
86db1e29 344}
86db1e29
JA
345EXPORT_SYMBOL(blk_queue_stack_limits);
346
e3790c7d
TH
347/**
348 * blk_queue_dma_pad - set pad mask
349 * @q: the request queue for the device
350 * @mask: pad mask
351 *
27f8221a 352 * Set dma pad mask.
e3790c7d 353 *
27f8221a
FT
354 * Appending pad buffer to a request modifies the last entry of a
355 * scatter list such that it includes the pad buffer.
e3790c7d
TH
356 **/
357void blk_queue_dma_pad(struct request_queue *q, unsigned int mask)
358{
359 q->dma_pad_mask = mask;
360}
361EXPORT_SYMBOL(blk_queue_dma_pad);
362
27f8221a
FT
363/**
364 * blk_queue_update_dma_pad - update pad mask
365 * @q: the request queue for the device
366 * @mask: pad mask
367 *
368 * Update dma pad mask.
369 *
370 * Appending pad buffer to a request modifies the last entry of a
371 * scatter list such that it includes the pad buffer.
372 **/
373void blk_queue_update_dma_pad(struct request_queue *q, unsigned int mask)
374{
375 if (mask > q->dma_pad_mask)
376 q->dma_pad_mask = mask;
377}
378EXPORT_SYMBOL(blk_queue_update_dma_pad);
379
86db1e29
JA
380/**
381 * blk_queue_dma_drain - Set up a drain buffer for excess dma.
86db1e29 382 * @q: the request queue for the device
2fb98e84 383 * @dma_drain_needed: fn which returns non-zero if drain is necessary
86db1e29
JA
384 * @buf: physically contiguous buffer
385 * @size: size of the buffer in bytes
386 *
387 * Some devices have excess DMA problems and can't simply discard (or
388 * zero fill) the unwanted piece of the transfer. They have to have a
389 * real area of memory to transfer it into. The use case for this is
390 * ATAPI devices in DMA mode. If the packet command causes a transfer
391 * bigger than the transfer size some HBAs will lock up if there
392 * aren't DMA elements to contain the excess transfer. What this API
393 * does is adjust the queue so that the buf is always appended
394 * silently to the scatterlist.
395 *
396 * Note: This routine adjusts max_hw_segments to make room for
397 * appending the drain buffer. If you call
398 * blk_queue_max_hw_segments() or blk_queue_max_phys_segments() after
399 * calling this routine, you must set the limit to one fewer than your
400 * device can support otherwise there won't be room for the drain
401 * buffer.
402 */
448da4d2 403int blk_queue_dma_drain(struct request_queue *q,
2fb98e84
TH
404 dma_drain_needed_fn *dma_drain_needed,
405 void *buf, unsigned int size)
86db1e29 406{
ae03bf63 407 if (queue_max_hw_segments(q) < 2 || queue_max_phys_segments(q) < 2)
86db1e29
JA
408 return -EINVAL;
409 /* make room for appending the drain */
ae03bf63
MP
410 blk_queue_max_hw_segments(q, queue_max_hw_segments(q) - 1);
411 blk_queue_max_phys_segments(q, queue_max_phys_segments(q) - 1);
2fb98e84 412 q->dma_drain_needed = dma_drain_needed;
86db1e29
JA
413 q->dma_drain_buffer = buf;
414 q->dma_drain_size = size;
415
416 return 0;
417}
86db1e29
JA
418EXPORT_SYMBOL_GPL(blk_queue_dma_drain);
419
420/**
421 * blk_queue_segment_boundary - set boundary rules for segment merging
422 * @q: the request queue for the device
423 * @mask: the memory boundary mask
424 **/
425void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
426{
427 if (mask < PAGE_CACHE_SIZE - 1) {
428 mask = PAGE_CACHE_SIZE - 1;
24c03d47
HH
429 printk(KERN_INFO "%s: set to minimum %lx\n",
430 __func__, mask);
86db1e29
JA
431 }
432
433 q->seg_boundary_mask = mask;
434}
86db1e29
JA
435EXPORT_SYMBOL(blk_queue_segment_boundary);
436
437/**
438 * blk_queue_dma_alignment - set dma length and memory alignment
439 * @q: the request queue for the device
440 * @mask: alignment mask
441 *
442 * description:
710027a4 443 * set required memory and length alignment for direct dma transactions.
8feb4d20 444 * this is used when building direct io requests for the queue.
86db1e29
JA
445 *
446 **/
447void blk_queue_dma_alignment(struct request_queue *q, int mask)
448{
449 q->dma_alignment = mask;
450}
86db1e29
JA
451EXPORT_SYMBOL(blk_queue_dma_alignment);
452
453/**
454 * blk_queue_update_dma_alignment - update dma length and memory alignment
455 * @q: the request queue for the device
456 * @mask: alignment mask
457 *
458 * description:
710027a4 459 * update required memory and length alignment for direct dma transactions.
86db1e29
JA
460 * If the requested alignment is larger than the current alignment, then
461 * the current queue alignment is updated to the new value, otherwise it
462 * is left alone. The design of this is to allow multiple objects
463 * (driver, device, transport etc) to set their respective
464 * alignments without having them interfere.
465 *
466 **/
467void blk_queue_update_dma_alignment(struct request_queue *q, int mask)
468{
469 BUG_ON(mask > PAGE_SIZE);
470
471 if (mask > q->dma_alignment)
472 q->dma_alignment = mask;
473}
86db1e29
JA
474EXPORT_SYMBOL(blk_queue_update_dma_alignment);
475
aeb3d3a8 476static int __init blk_settings_init(void)
86db1e29
JA
477{
478 blk_max_low_pfn = max_low_pfn - 1;
479 blk_max_pfn = max_pfn - 1;
480 return 0;
481}
482subsys_initcall(blk_settings_init);