aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ext4/ext4.h3
-rw-r--r--include/linux/jbd2.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
index 0ee9669394f5..d1e2735ac22f 100644
--- a/fs/ext4/ext4.h
+++ b/fs/ext4/ext4.h
@@ -1494,7 +1494,8 @@ static inline void ext4_clear_state_flags(struct ext4_inode_info *ei)
1494 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE | \ 1494 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE | \
1495 EXT4_FEATURE_RO_COMPAT_BTREE_DIR |\ 1495 EXT4_FEATURE_RO_COMPAT_BTREE_DIR |\
1496 EXT4_FEATURE_RO_COMPAT_HUGE_FILE |\ 1496 EXT4_FEATURE_RO_COMPAT_HUGE_FILE |\
1497 EXT4_FEATURE_RO_COMPAT_BIGALLOC) 1497 EXT4_FEATURE_RO_COMPAT_BIGALLOC |\
1498 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)
1498 1499
1499/* 1500/*
1500 * Default values for user and/or group using reserved blocks 1501 * Default values for user and/or group using reserved blocks
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h
index a9632bc55d97..f334c7fab967 100644
--- a/include/linux/jbd2.h
+++ b/include/linux/jbd2.h
@@ -296,7 +296,8 @@ typedef struct journal_superblock_s
296#define JBD2_KNOWN_ROCOMPAT_FEATURES 0 296#define JBD2_KNOWN_ROCOMPAT_FEATURES 0
297#define JBD2_KNOWN_INCOMPAT_FEATURES (JBD2_FEATURE_INCOMPAT_REVOKE | \ 297#define JBD2_KNOWN_INCOMPAT_FEATURES (JBD2_FEATURE_INCOMPAT_REVOKE | \
298 JBD2_FEATURE_INCOMPAT_64BIT | \ 298 JBD2_FEATURE_INCOMPAT_64BIT | \
299 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT) 299 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT | \
300 JBD2_FEATURE_INCOMPAT_CSUM_V2)
300 301
301#ifdef __KERNEL__ 302#ifdef __KERNEL__
302 303