From: Christoph Hellwig Date: Tue, 10 Nov 2020 20:11:05 +0000 (-0500) Subject: xfs: simplify xfs_trans_getsb X-Git-Tag: v5.10.0-rc0~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=37e6f8856571349abd7a22148d8a924a1b424af8;p=thirdparty%2Fxfsprogs-dev.git xfs: simplify xfs_trans_getsb Source kernel commit: cead0b10f557a2331e0e131ce52aaf7ed7f5355f Remove the mp argument as this function is only called in transaction context, and open code xfs_getsb given that the function already accesses the buffer pointer in the mount point directly. Signed-off-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/include/xfs_trans.h b/include/xfs_trans.h index 1f087672a..9292a4a54 100644 --- a/include/xfs_trans.h +++ b/include/xfs_trans.h @@ -91,7 +91,7 @@ void libxfs_trans_cancel(struct xfs_trans *); /* cancel dfops associated with a transaction */ void xfs_defer_cancel(struct xfs_trans *); -struct xfs_buf *libxfs_trans_getsb(struct xfs_trans *, struct xfs_mount *); +struct xfs_buf *libxfs_trans_getsb(struct xfs_trans *); void libxfs_trans_ijoin(struct xfs_trans *, struct xfs_inode *, uint); void libxfs_trans_log_inode (struct xfs_trans *, struct xfs_inode *, diff --git a/libxfs/trans.c b/libxfs/trans.c index 51ce83021..6838b7273 100644 --- a/libxfs/trans.c +++ b/libxfs/trans.c @@ -463,10 +463,10 @@ libxfs_trans_get_buf_map( xfs_buf_t * libxfs_trans_getsb( - xfs_trans_t *tp, - struct xfs_mount *mp) + struct xfs_trans *tp) { - xfs_buf_t *bp; + struct xfs_mount *mp = tp->t_mountp; + struct xfs_buf *bp; struct xfs_buf_log_item *bip; int len = XFS_FSS_TO_BB(mp, 1); DEFINE_SINGLE_BUF_MAP(map, XFS_SB_DADDR, len); diff --git a/libxfs/xfs_sb.c b/libxfs/xfs_sb.c index 302eea167..7c7e56a89 100644 --- a/libxfs/xfs_sb.c +++ b/libxfs/xfs_sb.c @@ -931,7 +931,7 @@ xfs_log_sb( struct xfs_trans *tp) { struct xfs_mount *mp = tp->t_mountp; - struct xfs_buf *bp = xfs_trans_getsb(tp, mp); + struct xfs_buf *bp = xfs_trans_getsb(tp); mp->m_sb.sb_icount = percpu_counter_sum(&mp->m_icount); mp->m_sb.sb_ifree = percpu_counter_sum(&mp->m_ifree); @@ -1061,7 +1061,7 @@ xfs_sync_sb_buf( if (error) return error; - bp = xfs_trans_getsb(tp, mp); + bp = xfs_trans_getsb(tp); xfs_log_sb(tp); xfs_trans_bhold(tp, bp); xfs_trans_set_sync(tp);