xfs: remove the xfs_dinode_t typedef
authorChristoph Hellwig <hch@lst.de>
Mon, 11 Oct 2021 23:11:21 +0000 (16:11 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Thu, 14 Oct 2021 16:19:33 +0000 (09:19 -0700)
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>
fs/xfs/libxfs/xfs_format.h
fs/xfs/libxfs/xfs_inode_buf.c
fs/xfs/libxfs/xfs_inode_fork.c
fs/xfs/xfs_buf_item_recover.c

index 2d7057b7984b6ef9f95b00d90ac5f76c80b075c9..347c291c9348440ee7633fa908cfdbb16614dc13 100644 (file)
@@ -780,7 +780,7 @@ static inline time64_t xfs_bigtime_to_unix(uint64_t ondisk_seconds)
  * padding field for v3 inodes.
  */
 #define        XFS_DINODE_MAGIC                0x494e  /* 'IN' */
-typedef struct xfs_dinode {
+struct xfs_dinode {
        __be16          di_magic;       /* inode magic # = XFS_DINODE_MAGIC */
        __be16          di_mode;        /* mode and type of file */
        __u8            di_version;     /* inode version */
@@ -825,7 +825,7 @@ typedef struct xfs_dinode {
        uuid_t          di_uuid;        /* UUID of the filesystem */
 
        /* structure must be padded to 64 bit alignment */
-} xfs_dinode_t;
+};
 
 #define XFS_DINODE_CRC_OFF     offsetof(struct xfs_dinode, di_crc)
 
index 3932b4ebf9037f66f007a98957ee1f8ca2b3da89..cae9708c8587c9b6800e3f786ef62514f79c6296 100644 (file)
@@ -51,9 +51,9 @@ xfs_inode_buf_verify(
        agno = xfs_daddr_to_agno(mp, xfs_buf_daddr(bp));
        ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
        for (i = 0; i < ni; i++) {
-               int             di_ok;
-               xfs_dinode_t    *dip;
-               xfs_agino_t     unlinked_ino;
+               struct xfs_dinode       *dip;
+               xfs_agino_t             unlinked_ino;
+               int                     di_ok;
 
                dip = xfs_buf_offset(bp, (i << mp->m_sb.sb_inodelog));
                unlinked_ino = be32_to_cpu(dip->di_next_unlinked);
index 1d174909f9bdf5deffeb5caa9f565ef1b9b9fab5..08a390a259491c505263ce184eee0376d53000aa 100644 (file)
@@ -67,10 +67,10 @@ xfs_init_local_fork(
  */
 STATIC int
 xfs_iformat_local(
-       xfs_inode_t     *ip,
-       xfs_dinode_t    *dip,
-       int             whichfork,
-       int             size)
+       struct xfs_inode        *ip,
+       struct xfs_dinode       *dip,
+       int                     whichfork,
+       int                     size)
 {
        /*
         * If the size is unreasonable, then something
@@ -162,8 +162,8 @@ xfs_iformat_extents(
  */
 STATIC int
 xfs_iformat_btree(
-       xfs_inode_t             *ip,
-       xfs_dinode_t            *dip,
+       struct xfs_inode        *ip,
+       struct xfs_dinode       *dip,
        int                     whichfork)
 {
        struct xfs_mount        *mp = ip->i_mount;
@@ -580,8 +580,8 @@ xfs_iextents_copy(
  */
 void
 xfs_iflush_fork(
-       xfs_inode_t             *ip,
-       xfs_dinode_t            *dip,
+       struct xfs_inode        *ip,
+       struct xfs_dinode       *dip,
        struct xfs_inode_log_item *iip,
        int                     whichfork)
 {
index a476c7ef5d533754119a6ea1046b6d35e57a2558..70ca5751b13e807ce2d7a99072e411c0ab2fc4cd 100644 (file)
@@ -603,7 +603,7 @@ xlog_recover_do_inode_buffer(
        inodes_per_buf = BBTOB(bp->b_length) >> mp->m_sb.sb_inodelog;
        for (i = 0; i < inodes_per_buf; i++) {
                next_unlinked_offset = (i * mp->m_sb.sb_inodesize) +
-                       offsetof(xfs_dinode_t, di_next_unlinked);
+                       offsetof(struct xfs_dinode, di_next_unlinked);
 
                while (next_unlinked_offset >=
                       (reg_buf_offset + reg_buf_bytes)) {