diff options
author | Christoph Hellwig <hch@lst.de> | 2024-02-22 21:42:44 +0100 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 21:42:44 +0100 |
commit | 21e308e6485542a9795144aa6a39a1edc83a0d31 (patch) | |
tree | c71e21c3ef06d165c1df9a63dceb0f0947183b7d /fs/xfs/xfs_log.c | |
parent | xfs: split xfs_buf_rele for cached vs uncached buffers (diff) | |
download | linux-21e308e6485542a9795144aa6a39a1edc83a0d31.tar.xz linux-21e308e6485542a9795144aa6a39a1edc83a0d31.zip |
xfs: remove the xfs_buftarg_t typedef
Switch the few remaining holdouts to the struct version.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 1f68569e62ca..5004f23d344e 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c @@ -633,14 +633,14 @@ xlog_state_release_iclog( */ int xfs_log_mount( - xfs_mount_t *mp, - xfs_buftarg_t *log_target, - xfs_daddr_t blk_offset, - int num_bblks) -{ - struct xlog *log; - int error = 0; - int min_logfsbs; + xfs_mount_t *mp, + struct xfs_buftarg *log_target, + xfs_daddr_t blk_offset, + int num_bblks) +{ + struct xlog *log; + int error = 0; + int min_logfsbs; if (!xfs_has_norecovery(mp)) { xfs_notice(mp, "Mounting V%d Filesystem %pU", |