diff options
author | Andrew Price <anprice@redhat.com> | 2021-01-12 12:46:56 +0100 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2021-01-25 14:08:29 +0100 |
commit | bff2e532d433a1de3ec11aa0a525ceb08ba8f960 (patch) | |
tree | a36cea75f333fd3e18f967044ef40aac921894c5 /fs/gfs2 | |
parent | gfs2: amend SLAB_RECLAIM_ACCOUNT on gfs2 related slab cache (diff) | |
download | linux-bff2e532d433a1de3ec11aa0a525ceb08ba8f960.tar.xz linux-bff2e532d433a1de3ec11aa0a525ceb08ba8f960.zip |
gfs2: Fix invalid block size message
Signed-off-by: Andrew Price <anprice@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/ops_fstype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index f2c6bbe5cdb8..6118f975030c 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; } |