2 * Functions related to generic helpers functions
4 #include <linux/kernel.h>
5 #include <linux/module.h>
7 #include <linux/blkdev.h>
8 #include <linux/scatterlist.h>
12 static struct bio
*next_bio(struct bio
*bio
, unsigned int nr_pages
,
15 struct bio
*new = bio_alloc(gfp
, nr_pages
);
25 int __blkdev_issue_discard(struct block_device
*bdev
, sector_t sector
,
26 sector_t nr_sects
, gfp_t gfp_mask
, int flags
,
29 struct request_queue
*q
= bdev_get_queue(bdev
);
30 struct bio
*bio
= *biop
;
31 unsigned int granularity
;
39 if (flags
& BLKDEV_DISCARD_SECURE
) {
40 if (flags
& BLKDEV_DISCARD_ZERO
)
42 if (!blk_queue_secure_erase(q
))
44 op
= REQ_OP_SECURE_ERASE
;
46 if (!blk_queue_discard(q
))
48 if ((flags
& BLKDEV_DISCARD_ZERO
) &&
49 !q
->limits
.discard_zeroes_data
)
54 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
55 if ((sector
| nr_sects
) & bs_mask
)
58 /* Zero-sector (unknown) and one-sector granularities are the same. */
59 granularity
= max(q
->limits
.discard_granularity
>> 9, 1U);
60 alignment
= (bdev_discard_alignment(bdev
) >> 9) % granularity
;
63 unsigned int req_sects
;
64 sector_t end_sect
, tmp
;
67 * Issue in chunks of the user defined max discard setting,
68 * ensuring that bi_size doesn't overflow
70 req_sects
= min_t(sector_t
, nr_sects
,
71 q
->limits
.max_discard_sectors
);
74 if (req_sects
> UINT_MAX
>> 9)
75 req_sects
= UINT_MAX
>> 9;
78 * If splitting a request, and the next starting sector would be
79 * misaligned, stop the discard at the previous aligned sector.
81 end_sect
= sector
+ req_sects
;
83 if (req_sects
< nr_sects
&&
84 sector_div(tmp
, granularity
) != alignment
) {
85 end_sect
= end_sect
- alignment
;
86 sector_div(end_sect
, granularity
);
87 end_sect
= end_sect
* granularity
+ alignment
;
88 req_sects
= end_sect
- sector
;
91 bio
= next_bio(bio
, 1, gfp_mask
);
92 bio
->bi_iter
.bi_sector
= sector
;
94 bio_set_op_attrs(bio
, op
, 0);
96 bio
->bi_iter
.bi_size
= req_sects
<< 9;
97 nr_sects
-= req_sects
;
101 * We can loop for a long time in here, if someone does
102 * full device discards (like mkfs). Be nice and allow
103 * us to schedule out to avoid softlocking if preempt
114 submit_bio_wait(bio
);
120 EXPORT_SYMBOL(__blkdev_issue_discard
);
123 * blkdev_issue_discard - queue a discard
124 * @bdev: blockdev to issue discard for
125 * @sector: start sector
126 * @nr_sects: number of sectors to discard
127 * @gfp_mask: memory allocation flags (for bio_alloc)
128 * @flags: BLKDEV_IFL_* flags to control behaviour
131 * Issue a discard request for the sectors in question.
133 int blkdev_issue_discard(struct block_device
*bdev
, sector_t sector
,
134 sector_t nr_sects
, gfp_t gfp_mask
, unsigned long flags
)
136 struct bio
*bio
= NULL
;
137 struct blk_plug plug
;
140 blk_start_plug(&plug
);
141 ret
= __blkdev_issue_discard(bdev
, sector
, nr_sects
, gfp_mask
, flags
,
144 ret
= submit_bio_wait(bio
);
145 if (ret
== -EOPNOTSUPP
&& !(flags
& BLKDEV_DISCARD_ZERO
))
149 blk_finish_plug(&plug
);
153 EXPORT_SYMBOL(blkdev_issue_discard
);
156 * blkdev_issue_write_same - queue a write same operation
157 * @bdev: target blockdev
158 * @sector: start sector
159 * @nr_sects: number of sectors to write
160 * @gfp_mask: memory allocation flags (for bio_alloc)
161 * @page: page containing data to write
164 * Issue a write same request for the sectors in question.
166 int blkdev_issue_write_same(struct block_device
*bdev
, sector_t sector
,
167 sector_t nr_sects
, gfp_t gfp_mask
,
170 struct request_queue
*q
= bdev_get_queue(bdev
);
171 unsigned int max_write_same_sectors
;
172 struct bio
*bio
= NULL
;
179 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
180 if ((sector
| nr_sects
) & bs_mask
)
183 /* Ensure that max_write_same_sectors doesn't overflow bi_size */
184 max_write_same_sectors
= UINT_MAX
>> 9;
187 bio
= next_bio(bio
, 1, gfp_mask
);
188 bio
->bi_iter
.bi_sector
= sector
;
191 bio
->bi_io_vec
->bv_page
= page
;
192 bio
->bi_io_vec
->bv_offset
= 0;
193 bio
->bi_io_vec
->bv_len
= bdev_logical_block_size(bdev
);
194 bio_set_op_attrs(bio
, REQ_OP_WRITE_SAME
, 0);
196 if (nr_sects
> max_write_same_sectors
) {
197 bio
->bi_iter
.bi_size
= max_write_same_sectors
<< 9;
198 nr_sects
-= max_write_same_sectors
;
199 sector
+= max_write_same_sectors
;
201 bio
->bi_iter
.bi_size
= nr_sects
<< 9;
207 ret
= submit_bio_wait(bio
);
212 EXPORT_SYMBOL(blkdev_issue_write_same
);
215 * blkdev_issue_zeroout - generate number of zero filed write bios
216 * @bdev: blockdev to issue
217 * @sector: start sector
218 * @nr_sects: number of sectors to write
219 * @gfp_mask: memory allocation flags (for bio_alloc)
222 * Generate and issue number of bios with zerofiled pages.
225 static int __blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
226 sector_t nr_sects
, gfp_t gfp_mask
)
229 struct bio
*bio
= NULL
;
233 bs_mask
= (bdev_logical_block_size(bdev
) >> 9) - 1;
234 if ((sector
| nr_sects
) & bs_mask
)
237 while (nr_sects
!= 0) {
238 bio
= next_bio(bio
, min(nr_sects
, (sector_t
)BIO_MAX_PAGES
),
240 bio
->bi_iter
.bi_sector
= sector
;
242 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
244 while (nr_sects
!= 0) {
245 sz
= min((sector_t
) PAGE_SIZE
>> 9 , nr_sects
);
246 ret
= bio_add_page(bio
, ZERO_PAGE(0), sz
<< 9, 0);
247 nr_sects
-= ret
>> 9;
255 ret
= submit_bio_wait(bio
);
263 * blkdev_issue_zeroout - zero-fill a block range
264 * @bdev: blockdev to write
265 * @sector: start sector
266 * @nr_sects: number of sectors to write
267 * @gfp_mask: memory allocation flags (for bio_alloc)
268 * @discard: whether to discard the block range
271 * Zero-fill a block range. If the discard flag is set and the block
272 * device guarantees that subsequent READ operations to the block range
273 * in question will return zeroes, the blocks will be discarded. Should
274 * the discard request fail, if the discard flag is not set, or if
275 * discard_zeroes_data is not supported, this function will resort to
276 * zeroing the blocks manually, thus provisioning (allocating,
277 * anchoring) them. If the block device supports the WRITE SAME command
278 * blkdev_issue_zeroout() will use it to optimize the process of
279 * clearing the block range. Otherwise the zeroing will be performed
280 * using regular WRITE calls.
283 int blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
284 sector_t nr_sects
, gfp_t gfp_mask
, bool discard
)
287 if (!blkdev_issue_discard(bdev
, sector
, nr_sects
, gfp_mask
,
288 BLKDEV_DISCARD_ZERO
))
292 if (bdev_write_same(bdev
) &&
293 blkdev_issue_write_same(bdev
, sector
, nr_sects
, gfp_mask
,
297 return __blkdev_issue_zeroout(bdev
, sector
, nr_sects
, gfp_mask
);
299 EXPORT_SYMBOL(blkdev_issue_zeroout
);