diff options
| author | Christoph Hellwig <hch@lst.de> | 2025-09-15 06:27:01 -0700 |
|---|---|---|
| committer | Carlos Maiolino <cem@kernel.org> | 2025-09-16 12:25:05 +0200 |
| commit | 3dde08b64c98cf76b2e2378ecf36351464e2972a (patch) | |
| tree | 6863ddafe78f16e73df54522b9dcd1b95e39d361 /fs/xfs | |
| parent | a0cb349672f9ac2dcd80afa3dd25e2df2842db7a (diff) | |
xfs: remove the unused xfs_efd_log_format_64_t typedef
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
Diffstat (limited to 'fs/xfs')
| -rw-r--r-- | fs/xfs/libxfs/xfs_log_format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_log_format.h b/fs/xfs/libxfs/xfs_log_format.h index 2155cc6b2aae..aa8e3b557733 100644 --- a/fs/xfs/libxfs/xfs_log_format.h +++ b/fs/xfs/libxfs/xfs_log_format.h @@ -718,13 +718,13 @@ xfs_efd_log_format32_sizeof( nr * sizeof(struct xfs_extent_32); } -typedef struct xfs_efd_log_format_64 { +struct xfs_efd_log_format_64 { uint16_t efd_type; /* efd log item type */ uint16_t efd_size; /* size of this item */ uint32_t efd_nextents; /* # of extents freed */ uint64_t efd_efi_id; /* id of corresponding efi */ struct xfs_extent_64 efd_extents[]; /* array of extents freed */ -} xfs_efd_log_format_64_t; +}; static inline size_t xfs_efd_log_format64_sizeof( |
