From 3ede0a8f58983cb6e717a1c2dd550a12a6791bb2 Mon Sep 17 00:00:00 2001 From: paul-1 <6473457+paul-1@users.noreply.github.com> Date: Sun, 12 Mar 2023 14:39:31 -0400 Subject: [PATCH 5/6] fs: Change error to warning for squashfs superblocks --- fs/squashfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c index 22e812808e5c..c847d463c182 100644 --- a/fs/squashfs/super.c +++ b/fs/squashfs/super.c @@ -228,7 +228,7 @@ static int squashfs_fill_super(struct super_block *sb, struct fs_context *fc) sb->s_magic = le32_to_cpu(sblk->s_magic); if (sb->s_magic != SQUASHFS_MAGIC) { if (!(fc->sb_flags & SB_SILENT)) - errorf(fc, "Can't find a SQUASHFS superblock on %pg", + warnf(fc, "Can't find a SQUASHFS superblock on %pg", sb->s_bdev); goto failed_mount; } -- 2.48.1