summaryrefslogtreecommitdiff
path: root/ext4_utils
diff options
context:
space:
mode:
authorDaniel Rosenberg <drosen@google.com>2020-01-08 16:10:15 -0800
committerDaniel Rosenberg <drosen@google.com>2020-01-08 18:00:56 -0800
commita2e9010843d4001413e43f8f8110389704c9ff6c (patch)
treea034c97214c01adcf1eef086c7af80e72627d60b /ext4_utils
parentf9c2a1d9c1d8fc691e0e519a2f2f95a2adb38881 (diff)
downloadextras-a2e9010843d4001413e43f8f8110389704c9ff6c.tar.gz
ext4.h: add EXT4_FEATURE_INCOMPAT_CASEFOLD
fs_mgr needs to know the value of the casefold feature flag so it can enable it. Bug: 138322712 Test: Compiles Change-Id: I6acca568622174a4b15a6bfa101fcc676c12dca7
Diffstat (limited to 'ext4_utils')
-rw-r--r--ext4_utils/include/ext4_utils/ext4.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext4_utils/include/ext4_utils/ext4.h b/ext4_utils/include/ext4_utils/ext4.h
index 2e7cc4c0..add4cd4e 100644
--- a/ext4_utils/include/ext4_utils/ext4.h
+++ b/ext4_utils/include/ext4_utils/ext4.h
@@ -511,6 +511,7 @@ struct ext4_super_block {
#define EXT4_FEATURE_INCOMPAT_EA_INODE 0x0400
#define EXT4_FEATURE_INCOMPAT_DIRDATA 0x1000
#define EXT4_FEATURE_INCOMPAT_ENCRYPT 0x10000
+#define EXT4_FEATURE_INCOMPAT_CASEFOLD 0x20000
#define EXT4_FEATURE_COMPAT_SUPP EXT2_FEATURE_COMPAT_EXT_ATTR
#define EXT4_FEATURE_INCOMPAT_SUPP (EXT4_FEATURE_INCOMPAT_FILETYPE| EXT4_FEATURE_INCOMPAT_RECOVER| EXT4_FEATURE_INCOMPAT_META_BG| EXT4_FEATURE_INCOMPAT_EXTENTS| EXT4_FEATURE_INCOMPAT_64BIT| EXT4_FEATURE_INCOMPAT_FLEX_BG)