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/hash.h | |
parent | e06cd3dd7cea50e87663a88acdfdb7ac1c53a5ca (diff) |
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/hash.h')
-rw-r--r-- | fs/btrfs/hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/hash.h b/fs/btrfs/hash.h index 118a2316e5d3..c3a2ec554361 100644 --- a/fs/btrfs/hash.h +++ b/fs/btrfs/hash.h @@ -22,6 +22,7 @@ int __init btrfs_hash_init(void); void btrfs_hash_exit(void); +const char* btrfs_crc32c_impl(void); u32 btrfs_crc32c(u32 crc, const void *address, unsigned int length); |