gfs2: Fix invalid block size message
authorAndrew Price <anprice@redhat.com>
Tue, 12 Jan 2021 11:46:56 +0000 (11:46 +0000)
committerBob Peterson <rpeterso@redhat.com>
Mon, 25 Jan 2021 13:08:29 +0000 (08:08 -0500)
Signed-off-by: Andrew Price <anprice@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
fs/gfs2/ops_fstype.c

index f2c6bbe..6118f97 100644 (file)
@@ -179,7 +179,7 @@ static int gfs2_check_sb(struct gfs2_sbd *sdp, int silent)
 
        if (sb->sb_bsize < 512 || sb->sb_bsize > PAGE_SIZE ||
            (sb->sb_bsize & (sb->sb_bsize - 1))) {
-               pr_warn("Invalid superblock size\n");
+               pr_warn("Invalid block size\n");
                return -EINVAL;
        }