diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-09-28 00:26:19 +0300 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-10-23 02:00:31 +0300 |
commit | e7720afad068a6729d9cd3aaa08212f2f5a7ceff (patch) | |
tree | 62c84f29a1b0f45baae781251a029c04b006411f /fs/xfs/xfs_dquot.c | |
parent | 9fa47bdcd33b117599e9ee3f2e315cb47939ac2d (diff) | |
download | linux-e7720afad068a6729d9cd3aaa08212f2f5a7ceff.tar.xz |
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_dquot.c')
-rw-r--r-- | fs/xfs/xfs_dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c index c9e1f2c94bd4..283b6740afea 100644 --- a/fs/xfs/xfs_dquot.c +++ b/fs/xfs/xfs_dquot.c @@ -38,8 +38,8 @@ * otherwise by the lowest id first, see xfs_dqlock2. */ -struct kmem_zone *xfs_qm_dqtrxzone; -static struct kmem_zone *xfs_qm_dqzone; +struct kmem_cache *xfs_qm_dqtrxzone; +static struct kmem_cache *xfs_qm_dqzone; static struct lock_class_key xfs_dquot_group_class; static struct lock_class_key xfs_dquot_project_class; |