summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_super.c
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_super.c
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_super.c')
-rw-r--r--fs/xfs/xfs_super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index d2ebacd5975c..207ee302b1bb 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -1860,7 +1860,7 @@ xfs_init_zones(void)
if (!xfs_da_state_zone)
goto out_destroy_btree_cur_zone;
- xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
+ xfs_ifork_zone = kmem_zone_init(sizeof(struct xfs_ifork), "xfs_ifork");
if (!xfs_ifork_zone)
goto out_destroy_da_state_zone;