|
@@ -2370,7 +2370,7 @@ static __cold void btrfs_interface_exit(void)
|
|
|
|
|
|
static void __init btrfs_print_mod_info(void)
|
|
|
{
|
|
|
- pr_info("Btrfs loaded, crc32c=%s"
|
|
|
+ static const char options[] = ""
|
|
|
#ifdef CONFIG_BTRFS_DEBUG
|
|
|
", debug=on"
|
|
|
#endif
|
|
@@ -2383,8 +2383,8 @@ static void __init btrfs_print_mod_info(void)
|
|
|
#ifdef CONFIG_BTRFS_FS_REF_VERIFY
|
|
|
", ref-verify=on"
|
|
|
#endif
|
|
|
- "\n",
|
|
|
- crc32c_impl());
|
|
|
+ ;
|
|
|
+ pr_info("Btrfs loaded, crc32c=%s%s\n", crc32c_impl(), options);
|
|
|
}
|
|
|
|
|
|
static int __init init_btrfs_fs(void)
|