From 00716339da0a813d92754b94408c80b8fc90f84f Mon Sep 17 00:00:00 2001 From: Zheng Liu Date: Sat, 12 Oct 2013 23:20:38 -0400 Subject: [PATCH] libext2fs: add INLINE_DATA into EXT2_LIB_SOFTSUPP_INCOMPAT EXT4_FEATURE_INCOMPAT_INLINE_DATA flag is added into EXT2_LIB_SOFTSUPP_INCOMPAT due to we still need to take a long time to test inline_data feature. Signed-off-by: Theodore Ts'o Signed-off-by: Zheng Liu Signed-off-by: Theodore Ts'o --- lib/ext2fs/ext2fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index ee30106..67876ad 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -610,7 +610,7 @@ typedef struct ext2_icount *ext2_icount_t; * These features are only allowed if EXT2_FLAG_SOFTSUPP_FEATURES is passed * to ext2fs_openfs() */ -#define EXT2_LIB_SOFTSUPP_INCOMPAT (0) +#define EXT2_LIB_SOFTSUPP_INCOMPAT (EXT4_FEATURE_INCOMPAT_INLINE_DATA) #define EXT2_LIB_SOFTSUPP_RO_COMPAT (EXT4_FEATURE_RO_COMPAT_REPLICA) -- 1.8.3.1