Commit ea3dc7d2 authored by David Sterba's avatar David Sterba
Browse files

btrfs: print if fsverity support is built in when loading module



As fsverity support depends on a config option, print that at module
load time like we do for similar features.

Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 70524253
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2566,6 +2566,11 @@ static void __init btrfs_print_mod_info(void)
			", zoned=yes"
#else
			", zoned=no"
#endif
#ifdef CONFIG_FS_VERITY
			", fsverity=yes"
#else
			", fsverity=no"
#endif
			;
	pr_info("Btrfs loaded, crc32c=%s%s\n", crc32c_impl(), options);