From patchwork Sat Sep 22 04:00:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [01/21, v5] libext2fs: add INLINE_DATA into EXT2_LIB_SOFTSUPP_INCOMPAT Date: Fri, 21 Sep 2012 18:00:49 -0000 From: Zheng Liu X-Patchwork-Id: 186074 Message-Id: <1348286469-31690-2-git-send-email-wenqing.lz@taobao.com> To: linux-ext4@vger.kernel.org Cc: tytso@mit.edu, Zheng Liu From: Zheng Liu 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: Zheng Liu --- lib/ext2fs/ext2fs.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index 9927875..1cd53f0 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -602,7 +602,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)