linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
* [f2fs-dev] [PATCH] f2fs-tools: relax zone size of power of 2
@ 2023-03-02 19:46 Jaegeuk Kim
  0 siblings, 0 replies; only message in thread
From: Jaegeuk Kim @ 2023-03-02 19:46 UTC (permalink / raw)
  To: linux-f2fs-devel; +Cc: Jaegeuk Kim

Let's relax this for Android support.

Change-Id: Ic46593ef429e23b5d85977da374a95015ee72154
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
 lib/libf2fs.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/lib/libf2fs.c b/lib/libf2fs.c
index f63307a42a08..118e12592394 100644
--- a/lib/libf2fs.c
+++ b/lib/libf2fs.c
@@ -1045,12 +1045,9 @@ int get_device_info(int i)
 			return -1;
 		}
 
-		if (!is_power_of_2(dev->zone_size)) {
-			MSG(0, "\tError: zoned: illegal zone size %" PRIu64 "u (not a power of 2)\n",
+		if (!is_power_of_2(dev->zone_size))
+			MSG(0, "\tInfo: zoned: zone size %" PRIu64 "u (not a power of 2)\n",
 					dev->zone_size);
-			free(stat_buf);
-			return -1;
-		}
 
 		/*
 		 * Check zone configuration: for the first disk of a
-- 
2.40.0.rc0.216.gc4246ad0f0-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] only message in thread

only message in thread, other threads:[~2023-03-02 19:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-02 19:46 [f2fs-dev] [PATCH] f2fs-tools: relax zone size of power of 2 Jaegeuk Kim

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).