diff options
author | Christoph Hellwig <hch@lst.de> | 2024-02-22 12:42:44 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 12:42:44 -0800 |
commit | 21e308e6485542a9795144aa6a39a1edc83a0d31 (patch) | |
tree | c71e21c3ef06d165c1df9a63dceb0f0947183b7d /fs/xfs/xfs_mount.h | |
parent | 24f755e4854e0fddb78d18f610bf1b5cb61db520 (diff) | |
download | linux-21e308e6485542a9795144aa6a39a1edc83a0d31.tar.gz linux-21e308e6485542a9795144aa6a39a1edc83a0d31.tar.bz2 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_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index e86dfe67894f..6c44e6db4d86 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h @@ -94,9 +94,9 @@ typedef struct xfs_mount { struct xfs_inode *m_rsumip; /* pointer to summary inode */ struct xfs_inode *m_rootip; /* pointer to root directory */ struct xfs_quotainfo *m_quotainfo; /* disk quota information */ - xfs_buftarg_t *m_ddev_targp; /* saves taking the address */ - xfs_buftarg_t *m_logdev_targp;/* ptr to log device */ - xfs_buftarg_t *m_rtdev_targp; /* ptr to rt device */ + struct xfs_buftarg *m_ddev_targp; /* data device */ + struct xfs_buftarg *m_logdev_targp;/* log device */ + struct xfs_buftarg *m_rtdev_targp; /* rt device */ void __percpu *m_inodegc; /* percpu inodegc structures */ /* |