mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
705242538f
commit
ea3dc7d2d1
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue