diff options
author | Jeff Mahoney <jeffm@suse.com> | 2015-09-16 15:34:53 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-06-06 14:08:28 +0200 |
commit | 5f9e1059d9347191b271bf7d13bd83db57594d2a (patch) | |
tree | f23ae20ffd41ac1405e51e75b25e4e19de580179 /fs/btrfs/super.c | |
parent | e06cd3dd7cea50e87663a88acdfdb7ac1c53a5ca (diff) | |
download | op-kernel-dev-5f9e1059d9347191b271bf7d13bd83db57594d2a.zip op-kernel-dev-5f9e1059d9347191b271bf7d13bd83db57594d2a.tar.gz |
btrfs: advertise which crc32c implementation is being used at module load
Since several architectures support hardware-accelerated crc32c
calculation, it would be nice to confirm that btrfs is actually using it.
We can see an elevated use count for the module, but it doesn't actually
show who the users are. This patch simply prints the name of the driver
after successfully initializing the shash.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
[ added a helper and used in module load-time message ]
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 4e59a91..4397a30 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2303,7 +2303,7 @@ static void btrfs_interface_exit(void) static void btrfs_print_mod_info(void) { - printk(KERN_INFO "Btrfs loaded" + printk(KERN_INFO "Btrfs loaded, crc32c=%s" #ifdef CONFIG_BTRFS_DEBUG ", debug=on" #endif @@ -2313,7 +2313,8 @@ static void btrfs_print_mod_info(void) #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY ", integrity-checker=on" #endif - "\n"); + "\n", + btrfs_crc32c_impl()); } static int btrfs_run_sanity_tests(void) |