summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_refcount_item.c
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-19 11:48:39 -0700
commitb4afb79b1bb14c06cf639b4c028769d5800e9b78 (patch)
tree9ef23d66b30aba6748ed059013f03a6439bf18d0 /fs/xfs/xfs_refcount_item.c
parenteeaeea743df3ecb2a90ebb49b61add36346ff771 (diff)
xfs: remove kmem_zone typedef
Remove these typedefs by referencing kmem_cache directly. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_refcount_item.c')
-rw-r--r--fs/xfs/xfs_refcount_item.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_refcount_item.c b/fs/xfs/xfs_refcount_item.c
index 61bbbe816b5e..0ca8da55053d 100644
--- a/fs/xfs/xfs_refcount_item.c
+++ b/fs/xfs/xfs_refcount_item.c
@@ -21,8 +21,8 @@
#include "xfs_log_priv.h"
#include "xfs_log_recover.h"
-kmem_zone_t *xfs_cui_zone;
-kmem_zone_t *xfs_cud_zone;
+struct kmem_cache *xfs_cui_zone;
+struct kmem_cache *xfs_cud_zone;
static const struct xfs_item_ops xfs_cui_item_ops;