diff options
author | Christoph Hellwig <hch@lst.de> | 2021-10-12 02:11:45 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-14 19:19:33 +0300 |
commit | ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38 (patch) | |
tree | 5b347d6b27539cb45661fca8e3c0ea420c47b274 /fs/xfs/libxfs/xfs_format.h | |
parent | de38db7239c4bd2f37ebfcb8a5f22b4e8e657737 (diff) | |
download | linux-ed67ebfd7c4061b4b505ac42eb00e08dd09f4d38.tar.xz |
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_format.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_format.h b/fs/xfs/libxfs/xfs_format.h index 347c291c9348..10f38541f313 100644 --- a/fs/xfs/libxfs/xfs_format.h +++ b/fs/xfs/libxfs/xfs_format.h @@ -184,7 +184,7 @@ typedef struct xfs_sb { * Superblock - on disk version. Must match the in core version above. * Must be padded to 64 bit alignment. */ -typedef struct xfs_dsb { +struct xfs_dsb { __be32 sb_magicnum; /* magic number == XFS_SB_MAGIC */ __be32 sb_blocksize; /* logical block size, bytes */ __be64 sb_dblocks; /* number of data blocks */ @@ -263,7 +263,7 @@ typedef struct xfs_dsb { uuid_t sb_meta_uuid; /* metadata file system unique id */ /* must be padded to 64 bit alignment */ -} xfs_dsb_t; +}; /* * Misc. Flags - warning - these will be cleared by xfs_repair unless |