diff options
author | Christoph Hellwig <hch@lst.de> | 2021-10-11 16:11:45 -0700 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-14 09:19:33 -0700 |
commit | ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38 (patch) | |
tree | 5b347d6b27539cb45661fca8e3c0ea420c47b274 /fs/xfs/libxfs/xfs_sb.c | |
parent | de38db7239c4bd2f37ebfcb8a5f22b4e8e657737 (diff) | |
download | linux-ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38.tar.gz linux-ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38.tar.bz2 linux-ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38.zip |
xfs: remove the xfs_dsb_t typedef
Remove the few leftover instances of the xfs_dinode_t typedef.
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/libxfs/xfs_sb.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_sb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_sb.c b/fs/xfs/libxfs/xfs_sb.c index e58349be78bd..f4e84aa1d50a 100644 --- a/fs/xfs/libxfs/xfs_sb.c +++ b/fs/xfs/libxfs/xfs_sb.c @@ -495,7 +495,7 @@ xfs_sb_quota_from_disk(struct xfs_sb *sbp) static void __xfs_sb_from_disk( struct xfs_sb *to, - xfs_dsb_t *from, + struct xfs_dsb *from, bool convert_xquota) { to->sb_magicnum = be32_to_cpu(from->sb_magicnum); @@ -571,7 +571,7 @@ __xfs_sb_from_disk( void xfs_sb_from_disk( struct xfs_sb *to, - xfs_dsb_t *from) + struct xfs_dsb *from) { __xfs_sb_from_disk(to, from, true); } |