diff options
author | Christoph Hellwig <hch@lst.de> | 2020-03-10 08:57:30 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-03-11 09:11:39 -0700 |
commit | 3e6e8afd3abb745871ee215738a899a495c54a66 (patch) | |
tree | fe3ed8cb9715b630c87e039cf9e3d2a291b795a5 /fs/xfs/scrub/agheader_repair.c | |
parent | 9798f615ad2be48466a01c44ad2257ba64ab03bd (diff) | |
download | linux-stable-3e6e8afd3abb745871ee215738a899a495c54a66.tar.gz linux-stable-3e6e8afd3abb745871ee215738a899a495c54a66.tar.bz2 linux-stable-3e6e8afd3abb745871ee215738a899a495c54a66.zip |
xfs: remove XFS_BUF_TO_SBP
Just dereference bp->b_addr directly and make the code a little
simpler and more clear.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/scrub/agheader_repair.c')
-rw-r--r-- | fs/xfs/scrub/agheader_repair.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/agheader_repair.c b/fs/xfs/scrub/agheader_repair.c index ce4adfa2b550..9b3954d7f7d9 100644 --- a/fs/xfs/scrub/agheader_repair.c +++ b/fs/xfs/scrub/agheader_repair.c @@ -49,7 +49,7 @@ xrep_superblock( /* Copy AG 0's superblock to this one. */ xfs_buf_zero(bp, 0, BBTOB(bp->b_length)); - xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb); + xfs_sb_to_disk(bp->b_addr, &mp->m_sb); /* Write this to disk. */ xfs_trans_buf_set_type(sc->tp, bp, XFS_BLFT_SB_BUF); |