* [f2fs-dev] [PATCH v3] mkfs.f2fs: ensure zone size is a multiple of segment size
@ 2025-05-27 16:54 Daeho Jeong
2025-05-28 7:26 ` Chao Yu via Linux-f2fs-devel
0 siblings, 1 reply; 2+ messages in thread
From: Daeho Jeong @ 2025-05-27 16:54 UTC (permalink / raw)
To: linux-kernel, linux-f2fs-devel, kernel-team; +Cc: Daeho Jeong
From: Daeho Jeong <daehojeong@google.com>
Otherwise, it doesn't work with a crash.
Signed-off-by: Daeho Jeong <daehojeong@google.com>
---
v3: make the condition to be a multiple of segment size
v2: relocate the code
---
lib/libf2fs.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/lib/libf2fs.c b/lib/libf2fs.c
index d2579d7..7a9245e 100644
--- a/lib/libf2fs.c
+++ b/lib/libf2fs.c
@@ -1347,6 +1347,12 @@ int f2fs_get_f2fs_info(void)
}
c.zone_blocks = c.devices[i].zone_blocks;
}
+ if (!c.zone_blocks ||
+ (c.zone_blocks % DEFAULT_BLOCKS_PER_SEGMENT)) {
+ MSG(0, "\tError: zone size should be a multiple of "
+ "segment size\n");
+ return -1;
+ }
/*
* Align sections to the device zone size and align F2FS zones
--
2.49.0.1151.ga128411c76-goog
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [f2fs-dev] [PATCH v3] mkfs.f2fs: ensure zone size is a multiple of segment size
2025-05-27 16:54 [f2fs-dev] [PATCH v3] mkfs.f2fs: ensure zone size is a multiple of segment size Daeho Jeong
@ 2025-05-28 7:26 ` Chao Yu via Linux-f2fs-devel
0 siblings, 0 replies; 2+ messages in thread
From: Chao Yu via Linux-f2fs-devel @ 2025-05-28 7:26 UTC (permalink / raw)
To: Daeho Jeong, linux-kernel, linux-f2fs-devel, kernel-team; +Cc: Daeho Jeong
On 5/28/25 00:54, Daeho Jeong wrote:
> From: Daeho Jeong <daehojeong@google.com>
>
> Otherwise, it doesn't work with a crash.
>
> Signed-off-by: Daeho Jeong <daehojeong@google.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Thanks,
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-05-28 7:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-27 16:54 [f2fs-dev] [PATCH v3] mkfs.f2fs: ensure zone size is a multiple of segment size Daeho Jeong
2025-05-28 7:26 ` Chao Yu via Linux-f2fs-devel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).