Commit 5affe497 authored by Keith Busch's avatar Keith Busch Committed by Jens Axboe
Browse files

block: blkdev_issue_secure_erase loop style



Use consistent coding style in this file. All the other loops for the
same purpose use "while (nr_sects)", so they win.

Reviewed-by: default avatarMing Lei <ming.lei@redhat.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarKeith Busch <kbusch@kernel.org>
Reviewed-by: default avatarChaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20240223155910.3622666-2-kbusch@meta.com


Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 03f12122
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -322,7 +322,7 @@ int blkdev_issue_secure_erase(struct block_device *bdev, sector_t sector,
		return -EPERM;

	blk_start_plug(&plug);
	for (;;) {
	while (nr_sects) {
		unsigned int len = min_t(sector_t, nr_sects, max_sectors);

		bio = blk_next_bio(bio, bdev, 0, REQ_OP_SECURE_ERASE, gfp);
@@ -331,12 +331,11 @@ int blkdev_issue_secure_erase(struct block_device *bdev, sector_t sector,

		sector += len;
		nr_sects -= len;
		if (!nr_sects) {
		cond_resched();
	}
	if (bio) {
		ret = submit_bio_wait(bio);
		bio_put(bio);
			break;
		}
		cond_resched();
	}
	blk_finish_plug(&plug);