aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/e2p/pf.c2
-rw-r--r--lib/ext2fs/ext2fs.h3
-rw-r--r--misc/tune2fs.c1
3 files changed, 4 insertions, 2 deletions
diff --git a/lib/e2p/pf.c b/lib/e2p/pf.c
index 1c4bdde1..884f1671 100644
--- a/lib/e2p/pf.c
+++ b/lib/e2p/pf.c
@@ -46,7 +46,7 @@ static struct flags_name flags_array[] = {
{ FS_NOCOW_FL, "C", "No_COW" },
{ EXT4_INLINE_DATA_FL, "N", "Inline_Data" },
{ EXT4_PROJINHERIT_FL, "P", "Project_Hierarchy" },
- { EXT4_PROJINHERIT_FL, "V", "Verity" },
+ { EXT4_VERITY_FL, "V", "Verity" },
{ 0, NULL, NULL }
};
diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h
index c4a4ef01..185be5df 100644
--- a/lib/ext2fs/ext2fs.h
+++ b/lib/ext2fs/ext2fs.h
@@ -630,7 +630,8 @@ typedef struct ext2_icount *ext2_icount_t;
EXT4_FEATURE_RO_COMPAT_METADATA_CSUM|\
EXT4_FEATURE_RO_COMPAT_READONLY |\
EXT4_FEATURE_RO_COMPAT_PROJECT |\
- EXT4_FEATURE_RO_COMPAT_SHARED_BLOCKS)
+ EXT4_FEATURE_RO_COMPAT_SHARED_BLOCKS |\
+ EXT4_FEATURE_RO_COMPAT_VERITY)
/*
* These features are only allowed if EXT2_FLAG_SOFTSUPP_FEATURES is passed
diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index 0f095f4d..3fe1c288 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -3056,6 +3056,7 @@ _("Warning: The journal is dirty. You may wish to replay the journal like:\n\n"
ext2fs_close_free(&fs);
exit(1);
}
+ sb = fs->super;
}
#endif