diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-09-27 23:26:19 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-23 01:00:31 +0200 |
commit | e7720afad068a6729d9cd3aaa08212f2f5a7ceff (patch) | |
tree | 62c84f29a1b0f45baae781251a029c04b006411f /fs/xfs/xfs_log_priv.h | |
parent | xfs: use separate btree cursor cache for each btree type (diff) | |
download | linux-e7720afad068a6729d9cd3aaa08212f2f5a7ceff.tar.xz 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_log_priv.h')
-rw-r--r-- | fs/xfs/xfs_log_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h index 844fbeec3545..1b03277029c1 100644 --- a/fs/xfs/xfs_log_priv.h +++ b/fs/xfs/xfs_log_priv.h @@ -497,7 +497,7 @@ xlog_recover_cancel(struct xlog *); extern __le32 xlog_cksum(struct xlog *log, struct xlog_rec_header *rhead, char *dp, int size); -extern kmem_zone_t *xfs_log_ticket_zone; +extern struct kmem_cache *xfs_log_ticket_zone; struct xlog_ticket * xlog_ticket_alloc( struct xlog *log, |