From: Christoph Hellwig Date: Wed, 5 Apr 2023 05:49:04 +0000 (+0200) Subject: btrfs: don't print the crc32c implementation at module load time X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6e7a367e1abed5f6a73970f5342c747379197eda;p=linux.git btrfs: don't print the crc32c implementation at module load time Btrfs can use various different checksumming algorithms, and prints the one used for a given file system at mount time. Don't bother printing the crc32c implementation at module load time, the information is available in /sys/fs/btrfs/FSID/checksum. Signed-off-by: Christoph Hellwig Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 03aaf8de9cabf..6cb97efee9765 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2413,7 +2413,7 @@ static int __init btrfs_print_mod_info(void) ", fsverity=no" #endif ; - pr_info("Btrfs loaded, crc32c=%s%s\n", crc32c_impl(), options); + pr_info("Btrfs loaded%s\n", options); return 0; }