diff options
author | Chris Mason | 2016-06-08 14:36:12 -0700 |
---|---|---|
committer | Chris Mason | 2016-06-08 14:36:12 -0700 |
commit | 719da39a61173c849f70656ed1a302e4b6deaa5b (patch) | |
tree | dcba3abd4921cdc663eb0fbad0c7e62fbe73f27c /fs/btrfs/super.c | |
parent | 4c52990080e37925039a4d546937e9df2a8da944 (diff) | |
parent | 5f9e1059d9347191b271bf7d13bd83db57594d2a (diff) |
Merge branch 'misc-fixes-4.7' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux into for-linus-4.7
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 c49d7ae69617..4339b6613f19 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) |