]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
xfs: fix superblock inprogress check
authorDave Chinner <dchinner@redhat.com>
Fri, 26 Aug 2016 06:01:30 +0000 (16:01 +1000)
committerWilly Tarreau <w@1wt.eu>
Fri, 10 Feb 2017 10:03:25 +0000 (11:03 +0100)
commit f3d7ebdeb2c297bd26272384e955033493ca291c upstream.

From inspection, the superblock sb_inprogress check is done in the
verifier and triggered only for the primary superblock via a
"bp->b_bn == XFS_SB_DADDR" check.

Unfortunately, the primary superblock is an uncached buffer, and
hence it is configured by xfs_buf_read_uncached() with:

bp->b_bn = XFS_BUF_DADDR_NULL;  /* always null for uncached buffers */

And so this check never triggers. Fix it.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
[wt: s/xfs_sb.c/xfs_mount.c in 3.10]

Signed-off-by: Willy Tarreau <w@1wt.eu>
fs/xfs/xfs_mount.c

index e8e310c050977c51ecf1927c177c17cc0b17ef01..363c4cc9bfd5e8497eb3d0dfcf9ece8ddcb1fa67 100644 (file)
@@ -689,7 +689,8 @@ xfs_sb_verify(
         * Only check the in progress field for the primary superblock as
         * mkfs.xfs doesn't clear it from secondary superblocks.
         */
-       return xfs_mount_validate_sb(mp, &sb, bp->b_bn == XFS_SB_DADDR,
+       return xfs_mount_validate_sb(mp, &sb,
+                                    bp->b_maps[0].bm_bn == XFS_SB_DADDR,
                                     check_version);
 }