aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_extfree_item.c
diff options
context:
space:
mode:
authorGravatar Christoph Hellwig <hch@lst.de> 2020-04-30 12:52:18 -0700
committerGravatar Darrick J. Wong <darrick.wong@oracle.com> 2020-05-04 09:03:16 -0700
commit82ff450b2d936d778361a1de43eb078cc043c7fe (patch)
tree46dee11cd7545349af06605a4339cf2f014d6e96 /fs/xfs/xfs_extfree_item.c
parentxfs: refactor xlog_recover_buffer_pass1 (diff)
downloadlinux-82ff450b2d936d778361a1de43eb078cc043c7fe.tar.gz
linux-82ff450b2d936d778361a1de43eb078cc043c7fe.tar.bz2
linux-82ff450b2d936d778361a1de43eb078cc043c7fe.zip
xfs: remove the xfs_efi_log_item_t typedef
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_extfree_item.c')
-rw-r--r--fs/xfs/xfs_extfree_item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_extfree_item.c b/fs/xfs/xfs_extfree_item.c
index 6ea847f6e298..00309b81607c 100644
--- a/fs/xfs/xfs_extfree_item.c
+++ b/fs/xfs/xfs_extfree_item.c
@@ -161,7 +161,7 @@ xfs_efi_init(
ASSERT(nextents > 0);
if (nextents > XFS_EFI_MAX_FAST_EXTENTS) {
- size = (uint)(sizeof(xfs_efi_log_item_t) +
+ size = (uint)(sizeof(struct xfs_efi_log_item) +
((nextents - 1) * sizeof(xfs_extent_t)));
efip = kmem_zalloc(size, 0);
} else {