Message ID | 20230405054905.94678-2-hch@lst.de (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Herbert Xu |
Headers | show |
Series | [1/2] btrfs: don't print the crc32c implementtion at load time | expand |
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 285c7189b92466..bf79e49157c5e5 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2412,7 +2412,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; }
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. Signed-off-by: Christoph Hellwig <hch@lst.de> --- fs/btrfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)