From ca912d644612e8b86070505c946b9976d5ff46cc Mon Sep 17 00:00:00 2001 From: Jaegeuk Kim Date: Wed, 8 Feb 2023 11:24:41 -0800 Subject: [PATCH] mkfs.f2fs: trim all the devices except the first one We need to check the first disk only, and trim the other disks. Signed-off-by: Jaegeuk Kim --- mkfs/f2fs_format_utils.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mkfs/f2fs_format_utils.c b/mkfs/f2fs_format_utils.c index 597c2b3..448fbaa 100644 --- a/mkfs/f2fs_format_utils.c +++ b/mkfs/f2fs_format_utils.c @@ -129,6 +129,10 @@ static bool is_wiped_device(int i) int nblocks = 4096; /* 16MB size */ int j; + /* let's trim the other devices except the first device */ + if (i > 0) + return false; + buf = malloc(F2FS_BLKSIZE); if (buf == NULL) { MSG(1, "\tError: Malloc Failed for buf!!!\n");