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
;
38 if (flags
& BLKDEV_DISCARD_SECURE
) {
39 if (flags
& BLKDEV_DISCARD_ZERO
)
41 if (!blk_queue_secure_erase(q
))
43 op
= REQ_OP_SECURE_ERASE
;
45 if (!blk_queue_discard(q
))
47 if ((flags
& BLKDEV_DISCARD_ZERO
) &&
48 !q
->limits
.discard_zeroes_data
)
53 /* Zero-sector (unknown) and one-sector granularities are the same. */
54 granularity
= max(q
->limits
.discard_granularity
>> 9, 1U);
55 alignment
= (bdev_discard_alignment(bdev
) >> 9) % granularity
;
58 unsigned int req_sects
;
59 sector_t end_sect
, tmp
;
61 /* Make sure bi_size doesn't overflow */
62 req_sects
= min_t(sector_t
, nr_sects
, UINT_MAX
>> 9);
65 * If splitting a request, and the next starting sector would be
66 * misaligned, stop the discard at the previous aligned sector.
68 end_sect
= sector
+ req_sects
;
70 if (req_sects
< nr_sects
&&
71 sector_div(tmp
, granularity
) != alignment
) {
72 end_sect
= end_sect
- alignment
;
73 sector_div(end_sect
, granularity
);
74 end_sect
= end_sect
* granularity
+ alignment
;
75 req_sects
= end_sect
- sector
;
78 bio
= next_bio(bio
, 1, gfp_mask
);
79 bio
->bi_iter
.bi_sector
= sector
;
81 bio_set_op_attrs(bio
, op
, 0);
83 bio
->bi_iter
.bi_size
= req_sects
<< 9;
84 nr_sects
-= req_sects
;
88 * We can loop for a long time in here, if someone does
89 * full device discards (like mkfs). Be nice and allow
90 * us to schedule out to avoid softlocking if preempt
99 EXPORT_SYMBOL(__blkdev_issue_discard
);
102 * blkdev_issue_discard - queue a discard
103 * @bdev: blockdev to issue discard for
104 * @sector: start sector
105 * @nr_sects: number of sectors to discard
106 * @gfp_mask: memory allocation flags (for bio_alloc)
107 * @flags: BLKDEV_IFL_* flags to control behaviour
110 * Issue a discard request for the sectors in question.
112 int blkdev_issue_discard(struct block_device
*bdev
, sector_t sector
,
113 sector_t nr_sects
, gfp_t gfp_mask
, unsigned long flags
)
115 struct bio
*bio
= NULL
;
116 struct blk_plug plug
;
119 blk_start_plug(&plug
);
120 ret
= __blkdev_issue_discard(bdev
, sector
, nr_sects
, gfp_mask
, flags
,
123 ret
= submit_bio_wait(bio
);
124 if (ret
== -EOPNOTSUPP
&& !(flags
& BLKDEV_DISCARD_ZERO
))
128 blk_finish_plug(&plug
);
132 EXPORT_SYMBOL(blkdev_issue_discard
);
135 * blkdev_issue_write_same - queue a write same operation
136 * @bdev: target blockdev
137 * @sector: start sector
138 * @nr_sects: number of sectors to write
139 * @gfp_mask: memory allocation flags (for bio_alloc)
140 * @page: page containing data to write
143 * Issue a write same request for the sectors in question.
145 int blkdev_issue_write_same(struct block_device
*bdev
, sector_t sector
,
146 sector_t nr_sects
, gfp_t gfp_mask
,
149 struct request_queue
*q
= bdev_get_queue(bdev
);
150 unsigned int max_write_same_sectors
;
151 struct bio
*bio
= NULL
;
157 /* Ensure that max_write_same_sectors doesn't overflow bi_size */
158 max_write_same_sectors
= UINT_MAX
>> 9;
161 bio
= next_bio(bio
, 1, gfp_mask
);
162 bio
->bi_iter
.bi_sector
= sector
;
165 bio
->bi_io_vec
->bv_page
= page
;
166 bio
->bi_io_vec
->bv_offset
= 0;
167 bio
->bi_io_vec
->bv_len
= bdev_logical_block_size(bdev
);
168 bio_set_op_attrs(bio
, REQ_OP_WRITE_SAME
, 0);
170 if (nr_sects
> max_write_same_sectors
) {
171 bio
->bi_iter
.bi_size
= max_write_same_sectors
<< 9;
172 nr_sects
-= max_write_same_sectors
;
173 sector
+= max_write_same_sectors
;
175 bio
->bi_iter
.bi_size
= nr_sects
<< 9;
181 ret
= submit_bio_wait(bio
);
186 EXPORT_SYMBOL(blkdev_issue_write_same
);
189 * blkdev_issue_zeroout - generate number of zero filed write bios
190 * @bdev: blockdev to issue
191 * @sector: start sector
192 * @nr_sects: number of sectors to write
193 * @gfp_mask: memory allocation flags (for bio_alloc)
196 * Generate and issue number of bios with zerofiled pages.
199 static int __blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
200 sector_t nr_sects
, gfp_t gfp_mask
)
203 struct bio
*bio
= NULL
;
206 while (nr_sects
!= 0) {
207 bio
= next_bio(bio
, min(nr_sects
, (sector_t
)BIO_MAX_PAGES
),
209 bio
->bi_iter
.bi_sector
= sector
;
211 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
213 while (nr_sects
!= 0) {
214 sz
= min((sector_t
) PAGE_SIZE
>> 9 , nr_sects
);
215 ret
= bio_add_page(bio
, ZERO_PAGE(0), sz
<< 9, 0);
216 nr_sects
-= ret
>> 9;
224 ret
= submit_bio_wait(bio
);
232 * blkdev_issue_zeroout - zero-fill a block range
233 * @bdev: blockdev to write
234 * @sector: start sector
235 * @nr_sects: number of sectors to write
236 * @gfp_mask: memory allocation flags (for bio_alloc)
237 * @discard: whether to discard the block range
240 * Zero-fill a block range. If the discard flag is set and the block
241 * device guarantees that subsequent READ operations to the block range
242 * in question will return zeroes, the blocks will be discarded. Should
243 * the discard request fail, if the discard flag is not set, or if
244 * discard_zeroes_data is not supported, this function will resort to
245 * zeroing the blocks manually, thus provisioning (allocating,
246 * anchoring) them. If the block device supports the WRITE SAME command
247 * blkdev_issue_zeroout() will use it to optimize the process of
248 * clearing the block range. Otherwise the zeroing will be performed
249 * using regular WRITE calls.
252 int blkdev_issue_zeroout(struct block_device
*bdev
, sector_t sector
,
253 sector_t nr_sects
, gfp_t gfp_mask
, bool discard
)
256 if (!blkdev_issue_discard(bdev
, sector
, nr_sects
, gfp_mask
,
257 BLKDEV_DISCARD_ZERO
))
261 if (bdev_write_same(bdev
) &&
262 blkdev_issue_write_same(bdev
, sector
, nr_sects
, gfp_mask
,
266 return __blkdev_issue_zeroout(bdev
, sector
, nr_sects
, gfp_mask
);
268 EXPORT_SYMBOL(blkdev_issue_zeroout
);