From: Andrew Price Date: Tue, 12 Jan 2021 11:46:56 +0000 (+0000) Subject: gfs2: Fix invalid block size message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bff2e532d433a1de3ec11aa0a525ceb08ba8f960;p=linux.git gfs2: Fix invalid block size message Signed-off-by: Andrew Price Signed-off-by: Andreas Gruenbacher Signed-off-by: Bob Peterson --- diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index f2c6bbe5cdb81..6118f975030c8 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c @@ -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; }