aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/xfs/xfs_bmap_item.h
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-09-27 14:26:19 -0700
committerDarrick J. Wong <djwong@kernel.org>2021-10-22 16:00:31 -0700
commite7720afad068a6729d9cd3aaa08212f2f5a7ceff (patch)
tree62c84f29a1b0f45baae781251a029c04b006411f /fs/xfs/xfs_bmap_item.h
parentxfs: use separate btree cursor cache for each btree type (diff)
downloadwireguard-linux-e7720afad068a6729d9cd3aaa08212f2f5a7ceff.tar.xz
wireguard-linux-e7720afad068a6729d9cd3aaa08212f2f5a7ceff.zip
xfs: remove kmem_zone typedef
Remove these typedefs by referencing kmem_cache directly. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_bmap_item.h')
-rw-r--r--fs/xfs/xfs_bmap_item.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_bmap_item.h b/fs/xfs/xfs_bmap_item.h
index b9be62f8bd52..6af6b02d4b66 100644
--- a/fs/xfs/xfs_bmap_item.h
+++ b/fs/xfs/xfs_bmap_item.h
@@ -25,7 +25,7 @@
/* kernel only BUI/BUD definitions */
struct xfs_mount;
-struct kmem_zone;
+struct kmem_cache;
/*
* Max number of extents in fast allocation path.
@@ -65,7 +65,7 @@ struct xfs_bud_log_item {
struct xfs_bud_log_format bud_format;
};
-extern struct kmem_zone *xfs_bui_zone;
-extern struct kmem_zone *xfs_bud_zone;
+extern struct kmem_cache *xfs_bui_zone;
+extern struct kmem_cache *xfs_bud_zone;
#endif /* __XFS_BMAP_ITEM_H__ */