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>
15 struct completion *wait;
18 static void bio_batch_end_io(struct bio *bio, int err)
20 struct bio_batch *bb = bio->bi_private;
22 if (err && (err != -EOPNOTSUPP))
23 clear_bit(BIO_UPTODATE, &bb->flags);
24 if (atomic_dec_and_test(&bb->done))
30 * blkdev_issue_discard - queue a discard
31 * @bdev: blockdev to issue discard for
32 * @sector: start sector
33 * @nr_sects: number of sectors to discard
34 * @gfp_mask: memory allocation flags (for bio_alloc)
35 * @flags: BLKDEV_IFL_* flags to control behaviour
38 * Issue a discard request for the sectors in question.
40 int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
41 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags)
43 DECLARE_COMPLETION_ONSTACK(wait);
44 struct request_queue *q = bdev_get_queue(bdev);
45 int type = REQ_WRITE | REQ_DISCARD;
46 unsigned int max_discard_sectors;
54 if (!blk_queue_discard(q))
58 * Ensure that max_discard_sectors is of the proper
61 max_discard_sectors = min(q->limits.max_discard_sectors, UINT_MAX >> 9);
62 if (q->limits.discard_granularity) {
63 unsigned int disc_sects = q->limits.discard_granularity >> 9;
65 max_discard_sectors &= ~(disc_sects - 1);
68 if (flags & BLKDEV_DISCARD_SECURE) {
69 if (!blk_queue_secdiscard(q))
74 atomic_set(&bb.done, 1);
75 bb.flags = 1 << BIO_UPTODATE;
79 bio = bio_alloc(gfp_mask, 1);
85 bio->bi_sector = sector;
86 bio->bi_end_io = bio_batch_end_io;
88 bio->bi_private = &bb;
90 if (nr_sects > max_discard_sectors) {
91 bio->bi_size = max_discard_sectors << 9;
92 nr_sects -= max_discard_sectors;
93 sector += max_discard_sectors;
95 bio->bi_size = nr_sects << 9;
100 submit_bio(type, bio);
103 /* Wait for bios in-flight */
104 if (!atomic_dec_and_test(&bb.done))
105 wait_for_completion(&wait);
107 if (!test_bit(BIO_UPTODATE, &bb.flags))
112 EXPORT_SYMBOL(blkdev_issue_discard);
115 * blkdev_issue_zeroout - generate number of zero filed write bios
116 * @bdev: blockdev to issue
117 * @sector: start sector
118 * @nr_sects: number of sectors to write
119 * @gfp_mask: memory allocation flags (for bio_alloc)
122 * Generate and issue number of bios with zerofiled pages.
125 int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
126 sector_t nr_sects, gfp_t gfp_mask)
132 DECLARE_COMPLETION_ONSTACK(wait);
134 atomic_set(&bb.done, 1);
135 bb.flags = 1 << BIO_UPTODATE;
139 while (nr_sects != 0) {
140 bio = bio_alloc(gfp_mask,
141 min(nr_sects, (sector_t)BIO_MAX_PAGES));
147 bio->bi_sector = sector;
149 bio->bi_end_io = bio_batch_end_io;
150 bio->bi_private = &bb;
152 while (nr_sects != 0) {
153 sz = min((sector_t) PAGE_SIZE >> 9 , nr_sects);
154 ret = bio_add_page(bio, ZERO_PAGE(0), sz << 9, 0);
155 nr_sects -= ret >> 9;
161 atomic_inc(&bb.done);
162 submit_bio(WRITE, bio);
165 /* Wait for bios in-flight */
166 if (!atomic_dec_and_test(&bb.done))
167 wait_for_completion(&wait);
169 if (!test_bit(BIO_UPTODATE, &bb.flags))
170 /* One of bios in the batch was completed with error.*/
175 EXPORT_SYMBOL(blkdev_issue_zeroout);