From: Zheng Liu Date: Sun, 13 Oct 2013 03:20:38 +0000 (-0400) Subject: libext2fs: add INLINE_DATA into EXT2_LIB_SOFTSUPP_INCOMPAT X-Git-Tag: v1.43-WIP-2015-05-18~377 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=00716339da0a813d92754b94408c80b8fc90f84f;p=tools%2Fe2fsprogs.git 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 --- 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)