1 // SPDX-License-Identifier: GPL-2.0
3 * Functions related to generic helpers functions
5 #include <linux/kernel.h>
6 #include <linux/module.h>
8 #include <linux/blkdev.h>
9 #include <linux/scatterlist.h>
13 static struct bio
*next_bio(struct bio
*bio
, unsigned int nr_pages
,
16 struct bio
*new = bio_alloc(gfp
, nr_pages
);
26 int __blkdev_issue_discard(struct block_device
*bdev
, sector_t sector
,
27 sector_t nr_sects
, gfp_t gfp_mask
, int flags
,
30 struct request_queue
*q
= bdev_get_queue(bdev
);
31 struct bio
*bio
= *biop
;
32 unsigned int granularity
;
40 if (bdev_read_only(bdev
))
43 if (flags
& BLKDEV_DISCARD_SECURE
) {
44 if (!blk_queue_secure_erase(q
))
46 op
= REQ_OP_SECURE_ERASE
;
48 if (!blk_queue_discard(q
))
53 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
54 if ((sector
| nr_sects
) & bs_mask
)
57 /* Zero-sector (unknown) and one-sector granularities are the same. */
58 granularity
= max(q
->limits
.discard_granularity
>> 9, 1U);
59 alignment
= (bdev_discard_alignment(bdev
) >> 9) % granularity
;
62 unsigned int req_sects
;
63 sector_t end_sect
, tmp
;
66 * Issue in chunks of the user defined max discard setting,
67 * ensuring that bi_size doesn't overflow
69 req_sects
= min_t(sector_t
, nr_sects
,
70 q
->limits
.max_discard_sectors
);
73 if (req_sects
> UINT_MAX
>> 9)
74 req_sects
= UINT_MAX
>> 9;
77 * If splitting a request, and the next starting sector would be
78 * misaligned, stop the discard at the previous aligned sector.
80 end_sect
= sector
+ req_sects
;
82 if (req_sects
< nr_sects
&&
83 sector_div(tmp
, granularity
) != alignment
) {
84 end_sect
= end_sect
- alignment
;
85 sector_div(end_sect
, granularity
);
86 end_sect
= end_sect
* granularity
+ alignment
;
87 req_sects
= end_sect
- sector
;
90 bio
= next_bio(bio
, 0, gfp_mask
);
91 bio
->bi_iter
.bi_sector
= sector
;
92 bio_set_dev(bio
, bdev
);
93 bio_set_op_attrs(bio
, op
, 0);
95 bio
->bi_iter
.bi_size
= req_sects
<< 9;
96 nr_sects
-= req_sects
;
100 * We can loop for a long time in here, if someone does
101 * full device discards (like mkfs). Be nice and allow
102 * us to schedule out to avoid softlocking if preempt
113 submit_bio_wait(bio
);
119 EXPORT_SYMBOL(__blkdev_issue_discard
);
122 * blkdev_issue_discard - queue a discard
123 * @bdev: blockdev to issue discard for
124 * @sector: start sector
125 * @nr_sects: number of sectors to discard
126 * @gfp_mask: memory allocation flags (for bio_alloc)
127 * @flags: BLKDEV_DISCARD_* flags to control behaviour
130 * Issue a discard request for the sectors in question.
132 int blkdev_issue_discard(struct block_device
*bdev
, sector_t sector
,
133 sector_t nr_sects
, gfp_t gfp_mask
, unsigned long flags
)
135 struct bio
*bio
= NULL
;
136 struct blk_plug plug
;
139 blk_start_plug(&plug
);
140 ret
= __blkdev_issue_discard(bdev
, sector
, nr_sects
, gfp_mask
, flags
,
143 ret
= submit_bio_wait(bio
);
144 if (ret
== -EOPNOTSUPP
)
148 blk_finish_plug(&plug
);
152 EXPORT_SYMBOL(blkdev_issue_discard
);
155 * __blkdev_issue_write_same - generate number of bios with same page
156 * @bdev: target blockdev
157 * @sector: start sector
158 * @nr_sects: number of sectors to write
159 * @gfp_mask: memory allocation flags (for bio_alloc)
160 * @page: page containing data to write
161 * @biop: pointer to anchor bio
164 * Generate and issue number of bios(REQ_OP_WRITE_SAME) with same page.
166 static int __blkdev_issue_write_same(struct block_device
*bdev
, sector_t sector
,
167 sector_t nr_sects
, gfp_t gfp_mask
, struct page
*page
,
170 struct request_queue
*q
= bdev_get_queue(bdev
);
171 unsigned int max_write_same_sectors
;
172 struct bio
*bio
= *biop
;
178 if (bdev_read_only(bdev
))
181 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
182 if ((sector
| nr_sects
) & bs_mask
)
185 if (!bdev_write_same(bdev
))
188 /* Ensure that max_write_same_sectors doesn't overflow bi_size */
189 max_write_same_sectors
= UINT_MAX
>> 9;
192 bio
= next_bio(bio
, 1, gfp_mask
);
193 bio
->bi_iter
.bi_sector
= sector
;
194 bio_set_dev(bio
, bdev
);
196 bio
->bi_io_vec
->bv_page
= page
;
197 bio
->bi_io_vec
->bv_offset
= 0;
198 bio
->bi_io_vec
->bv_len
= bdev_logical_block_size(bdev
);
199 bio_set_op_attrs(bio
, REQ_OP_WRITE_SAME
, 0);
201 if (nr_sects
> max_write_same_sectors
) {
202 bio
->bi_iter
.bi_size
= max_write_same_sectors
<< 9;
203 nr_sects
-= max_write_same_sectors
;
204 sector
+= max_write_same_sectors
;
206 bio
->bi_iter
.bi_size
= nr_sects
<< 9;
217 * blkdev_issue_write_same - queue a write same operation
218 * @bdev: target blockdev
219 * @sector: start sector
220 * @nr_sects: number of sectors to write
221 * @gfp_mask: memory allocation flags (for bio_alloc)
222 * @page: page containing data
225 * Issue a write same request for the sectors in question.
227 int blkdev_issue_write_same(struct block_device
*bdev
, sector_t sector
,
228 sector_t nr_sects
, gfp_t gfp_mask
,
231 struct bio
*bio
= NULL
;
232 struct blk_plug plug
;
235 blk_start_plug(&plug
);
236 ret
= __blkdev_issue_write_same(bdev
, sector
, nr_sects
, gfp_mask
, page
,
238 if (ret
== 0 && bio
) {
239 ret
= submit_bio_wait(bio
);
242 blk_finish_plug(&plug
);
245 EXPORT_SYMBOL(blkdev_issue_write_same
);
247 static int __blkdev_issue_write_zeroes(struct block_device
*bdev
,
248 sector_t sector
, sector_t nr_sects
, gfp_t gfp_mask
,
249 struct bio
**biop
, unsigned flags
)
251 struct bio
*bio
= *biop
;
252 unsigned int max_write_zeroes_sectors
;
253 struct request_queue
*q
= bdev_get_queue(bdev
);
258 if (bdev_read_only(bdev
))
261 /* Ensure that max_write_zeroes_sectors doesn't overflow bi_size */
262 max_write_zeroes_sectors
= bdev_write_zeroes_sectors(bdev
);
264 if (max_write_zeroes_sectors
== 0)
268 bio
= next_bio(bio
, 0, gfp_mask
);
269 bio
->bi_iter
.bi_sector
= sector
;
270 bio_set_dev(bio
, bdev
);
271 bio
->bi_opf
= REQ_OP_WRITE_ZEROES
;
272 if (flags
& BLKDEV_ZERO_NOUNMAP
)
273 bio
->bi_opf
|= REQ_NOUNMAP
;
275 if (nr_sects
> max_write_zeroes_sectors
) {
276 bio
->bi_iter
.bi_size
= max_write_zeroes_sectors
<< 9;
277 nr_sects
-= max_write_zeroes_sectors
;
278 sector
+= max_write_zeroes_sectors
;
280 bio
->bi_iter
.bi_size
= nr_sects
<< 9;
291 * Convert a number of 512B sectors to a number of pages.
292 * The result is limited to a number of pages that can fit into a BIO.
293 * Also make sure that the result is always at least 1 (page) for the cases
294 * where nr_sects is lower than the number of sectors in a page.
296 static unsigned int __blkdev_sectors_to_bio_pages(sector_t nr_sects
)
298 sector_t pages
= DIV_ROUND_UP_SECTOR_T(nr_sects
, PAGE_SIZE
/ 512);
300 return min(pages
, (sector_t
)BIO_MAX_PAGES
);
303 static int __blkdev_issue_zero_pages(struct block_device
*bdev
,
304 sector_t sector
, sector_t nr_sects
, gfp_t gfp_mask
,
307 struct request_queue
*q
= bdev_get_queue(bdev
);
308 struct bio
*bio
= *biop
;
315 if (bdev_read_only(bdev
))
318 while (nr_sects
!= 0) {
319 bio
= next_bio(bio
, __blkdev_sectors_to_bio_pages(nr_sects
),
321 bio
->bi_iter
.bi_sector
= sector
;
322 bio_set_dev(bio
, bdev
);
323 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
325 while (nr_sects
!= 0) {
326 sz
= min((sector_t
) PAGE_SIZE
, nr_sects
<< 9);
327 bi_size
= bio_add_page(bio
, ZERO_PAGE(0), sz
, 0);
328 nr_sects
-= bi_size
>> 9;
329 sector
+= bi_size
>> 9;
341 * __blkdev_issue_zeroout - generate number of zero filed write bios
342 * @bdev: blockdev to issue
343 * @sector: start sector
344 * @nr_sects: number of sectors to write
345 * @gfp_mask: memory allocation flags (for bio_alloc)
346 * @biop: pointer to anchor bio
347 * @flags: controls detailed behavior
350 * Zero-fill a block range, either using hardware offload or by explicitly
351 * writing zeroes to the device.
353 * If a device is using logical block provisioning, the underlying space will
354 * not be released if %flags contains BLKDEV_ZERO_NOUNMAP.
356 * If %flags contains BLKDEV_ZERO_NOFALLBACK, the function will return
357 * -EOPNOTSUPP if no explicit hardware offload for zeroing is provided.
359 int __blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
360 sector_t nr_sects
, gfp_t gfp_mask
, struct bio
**biop
,
366 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
367 if ((sector
| nr_sects
) & bs_mask
)
370 ret
= __blkdev_issue_write_zeroes(bdev
, sector
, nr_sects
, gfp_mask
,
372 if (ret
!= -EOPNOTSUPP
|| (flags
& BLKDEV_ZERO_NOFALLBACK
))
375 return __blkdev_issue_zero_pages(bdev
, sector
, nr_sects
, gfp_mask
,
378 EXPORT_SYMBOL(__blkdev_issue_zeroout
);
381 * blkdev_issue_zeroout - zero-fill a block range
382 * @bdev: blockdev to write
383 * @sector: start sector
384 * @nr_sects: number of sectors to write
385 * @gfp_mask: memory allocation flags (for bio_alloc)
386 * @flags: controls detailed behavior
389 * Zero-fill a block range, either using hardware offload or by explicitly
390 * writing zeroes to the device. See __blkdev_issue_zeroout() for the
391 * valid values for %flags.
393 int blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
394 sector_t nr_sects
, gfp_t gfp_mask
, unsigned flags
)
399 struct blk_plug plug
;
400 bool try_write_zeroes
= !!bdev_write_zeroes_sectors(bdev
);
402 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
403 if ((sector
| nr_sects
) & bs_mask
)
408 blk_start_plug(&plug
);
409 if (try_write_zeroes
) {
410 ret
= __blkdev_issue_write_zeroes(bdev
, sector
, nr_sects
,
411 gfp_mask
, &bio
, flags
);
412 } else if (!(flags
& BLKDEV_ZERO_NOFALLBACK
)) {
413 ret
= __blkdev_issue_zero_pages(bdev
, sector
, nr_sects
,
416 /* No zeroing offload support */
419 if (ret
== 0 && bio
) {
420 ret
= submit_bio_wait(bio
);
423 blk_finish_plug(&plug
);
424 if (ret
&& try_write_zeroes
) {
425 if (!(flags
& BLKDEV_ZERO_NOFALLBACK
)) {
426 try_write_zeroes
= false;
429 if (!bdev_write_zeroes_sectors(bdev
)) {
431 * Zeroing offload support was indicated, but the
432 * device reported ILLEGAL REQUEST (for some devices
433 * there is no non-destructive way to verify whether
434 * WRITE ZEROES is actually supported).
442 EXPORT_SYMBOL(blkdev_issue_zeroout
);