From 8c04482ea38ccdfeb5368a31904fcd143d83c15b Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Tue, 5 Aug 2025 01:03:41 -0500 Subject: [PATCH] Disable LFS3_BMAP when LFS3_BIGGEST for now Currently LFS3_BMAP implies LFS3_YES_BMAP, which is an ugly hack because I don't want to figure out the BMAP flag logic right now. As a side-effect, this makes it impossible to test LFS3_BIGGEST without LFS3_BMAP, which breaks a number of tests that have not been updated to support >2 format blocks. --- lfs3_util.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lfs3_util.h b/lfs3_util.h index 29eab2a7..8545042c 100644 --- a/lfs3_util.h +++ b/lfs3_util.h @@ -47,9 +47,10 @@ #ifndef LFS3_GC #define LFS3_GC #endif -#ifndef LFS3_BMAP -#define LFS3_BMAP -#endif +// TODO how interact with bmap? +// #ifndef LFS3_BMAP +// #define LFS3_BMAP +// #endif #endif // LFS3_YES_* variants imply the relevant LFS3_* macro