summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode.h
diff options
context:
space:
mode:
authorChristoph Hellwig2018-07-18 01:51:50 +0200
committerDarrick J. Wong2018-07-30 16:57:48 +0200
commit3ba738df25239f877f6a98ce1cc925fa7e924cd3 (patch)
tree528032280b8618b4e91016d3e11e3fd19f3f31aa /fs/xfs/xfs_inode.h
parentxfs: simplify xfs_idata_realloc (diff)
downloadkernel-qcow2-linux-3ba738df25239f877f6a98ce1cc925fa7e924cd3.tar.gz
kernel-qcow2-linux-3ba738df25239f877f6a98ce1cc925fa7e924cd3.tar.xz
kernel-qcow2-linux-3ba738df25239f877f6a98ce1cc925fa7e924cd3.zip
xfs: remove the xfs_ifork_t typedef
We only have a few more callers left, so seize the opportunity and kill it off. Signed-off-by: Christoph Hellwig <hch@lst.de> 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_inode.h')
-rw-r--r--fs/xfs/xfs_inode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h
index 8db34d6f2835..a67efdac70a6 100644
--- a/fs/xfs/xfs_inode.h
+++ b/fs/xfs/xfs_inode.h
@@ -34,9 +34,9 @@ typedef struct xfs_inode {
struct xfs_imap i_imap; /* location for xfs_imap() */
/* Extent information. */
- xfs_ifork_t *i_afp; /* attribute fork pointer */
- xfs_ifork_t *i_cowfp; /* copy on write extents */
- xfs_ifork_t i_df; /* data fork */
+ struct xfs_ifork *i_afp; /* attribute fork pointer */
+ struct xfs_ifork *i_cowfp; /* copy on write extents */
+ struct xfs_ifork i_df; /* data fork */
/* operations vectors */
const struct xfs_dir_ops *d_ops; /* directory ops vector */