xfs
[Top] [All Lists]

[PATCH 13/47] xfs: clean up typedef usage in the EFI/EFD handling code

To: david@xxxxxxxxxxxxx, darrick.wong@xxxxxxxxxx
Subject: [PATCH 13/47] xfs: clean up typedef usage in the EFI/EFD handling code
From: "Darrick J. Wong" <darrick.wong@xxxxxxxxxx>
Date: Wed, 20 Jul 2016 21:57:30 -0700
Cc: linux-fsdevel@xxxxxxxxxxxxxxx, vishal.l.verma@xxxxxxxxx, bfoster@xxxxxxxxxx, xfs@xxxxxxxxxxx
Delivered-to: xfs@xxxxxxxxxxx
In-reply-to: <146907695530.25461.3225785294902719773.stgit@xxxxxxxxxxxxxxxx>
References: <146907695530.25461.3225785294902719773.stgit@xxxxxxxxxxxxxxxx>
User-agent: StGit/0.17.1-dirty
Replace structure typedefs with struct xfs_foo_* in the EFI/EFD
handling code in preparation to move it over to deferred ops.

Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx>
---
 fs/xfs/xfs_trans.h         |    6 +++---
 fs/xfs/xfs_trans_extfree.c |   30 +++++++++++++++---------------
 2 files changed, 18 insertions(+), 18 deletions(-)


diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h
index 9a462e8..5226511 100644
--- a/fs/xfs/xfs_trans.h
+++ b/fs/xfs/xfs_trans.h
@@ -209,12 +209,12 @@ void              xfs_trans_ichgtime(struct xfs_trans *, 
struct xfs_inode *, int);
 void           xfs_trans_ijoin(struct xfs_trans *, struct xfs_inode *, uint);
 void           xfs_trans_log_buf(xfs_trans_t *, struct xfs_buf *, uint, uint);
 void           xfs_trans_log_inode(xfs_trans_t *, struct xfs_inode *, uint);
-struct xfs_efi_log_item        *xfs_trans_get_efi(xfs_trans_t *, uint);
-void           xfs_trans_log_efi_extent(xfs_trans_t *,
+struct xfs_efi_log_item        *xfs_trans_get_efi(struct xfs_trans *, uint);
+void           xfs_trans_log_efi_extent(struct xfs_trans *,
                                         struct xfs_efi_log_item *,
                                         xfs_fsblock_t,
                                         xfs_extlen_t);
-struct xfs_efd_log_item        *xfs_trans_get_efd(xfs_trans_t *,
+struct xfs_efd_log_item        *xfs_trans_get_efd(struct xfs_trans *,
                                  struct xfs_efi_log_item *,
                                  uint);
 int            xfs_trans_free_extent(struct xfs_trans *,
diff --git a/fs/xfs/xfs_trans_extfree.c b/fs/xfs/xfs_trans_extfree.c
index a96ae54..380cc46 100644
--- a/fs/xfs/xfs_trans_extfree.c
+++ b/fs/xfs/xfs_trans_extfree.c
@@ -33,11 +33,11 @@
  * caller must use all nextents extents, because we are not
  * flexible about this at all.
  */
-xfs_efi_log_item_t *
-xfs_trans_get_efi(xfs_trans_t  *tp,
-                 uint          nextents)
+struct xfs_efi_log_item *
+xfs_trans_get_efi(struct xfs_trans     *tp,
+                 uint                  nextents)
 {
-       xfs_efi_log_item_t      *efip;
+       struct xfs_efi_log_item         *efip;
 
        ASSERT(tp != NULL);
        ASSERT(nextents > 0);
@@ -58,13 +58,13 @@ xfs_trans_get_efi(xfs_trans_t       *tp,
  * be called once for each extent to be freed.
  */
 void
-xfs_trans_log_efi_extent(xfs_trans_t           *tp,
-                        xfs_efi_log_item_t     *efip,
-                        xfs_fsblock_t          start_block,
-                        xfs_extlen_t           ext_len)
+xfs_trans_log_efi_extent(struct xfs_trans              *tp,
+                        struct xfs_efi_log_item        *efip,
+                        xfs_fsblock_t                  start_block,
+                        xfs_extlen_t                   ext_len)
 {
-       uint                    next_extent;
-       xfs_extent_t            *extp;
+       uint                                            next_extent;
+       struct xfs_extent                               *extp;
 
        tp->t_flags |= XFS_TRANS_DIRTY;
        efip->efi_item.li_desc->lid_flags |= XFS_LID_DIRTY;
@@ -88,12 +88,12 @@ xfs_trans_log_efi_extent(xfs_trans_t                *tp,
  * caller must use all nextents extents, because we are not
  * flexible about this at all.
  */
-xfs_efd_log_item_t *
-xfs_trans_get_efd(xfs_trans_t          *tp,
-                 xfs_efi_log_item_t    *efip,
-                 uint                  nextents)
+struct xfs_efd_log_item *
+xfs_trans_get_efd(struct xfs_trans             *tp,
+                 struct xfs_efi_log_item       *efip,
+                 uint                          nextents)
 {
-       xfs_efd_log_item_t      *efdp;
+       struct xfs_efd_log_item                 *efdp;
 
        ASSERT(tp != NULL);
        ASSERT(nextents > 0);

<Prev in Thread] Current Thread [Next in Thread>