diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-28 19:27:33 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-06-28 19:27:33 -0700 |
commit | efe2330fdc246a29b36f94f3c8bd8896b88dca6d (patch) | |
tree | e82b2e389e87f39a02140aad16ab98a114365f50 /fs/xfs/xfs_extfree_item.h | |
parent | b3b14aacc6765eb908f13d0422d9b2d0cd822e14 (diff) | |
download | linux-efe2330fdc246a29b36f94f3c8bd8896b88dca6d.tar.gz linux-efe2330fdc246a29b36f94f3c8bd8896b88dca6d.tar.bz2 linux-efe2330fdc246a29b36f94f3c8bd8896b88dca6d.zip |
xfs: remove the xfs_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.h')
-rw-r--r-- | fs/xfs/xfs_extfree_item.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_extfree_item.h b/fs/xfs/xfs_extfree_item.h index 2a6a895ca73e..b0dc4ebe8892 100644 --- a/fs/xfs/xfs_extfree_item.h +++ b/fs/xfs/xfs_extfree_item.h @@ -51,7 +51,7 @@ struct kmem_zone; * AIL, so at this point both the EFI and EFD are freed. */ typedef struct xfs_efi_log_item { - xfs_log_item_t efi_item; + struct xfs_log_item efi_item; atomic_t efi_refcount; atomic_t efi_next_extent; unsigned long efi_flags; /* misc flags */ @@ -64,7 +64,7 @@ typedef struct xfs_efi_log_item { * have been freed. */ typedef struct xfs_efd_log_item { - xfs_log_item_t efd_item; + struct xfs_log_item efd_item; xfs_efi_log_item_t *efd_efip; uint efd_next_extent; xfs_efd_log_format_t efd_format; |