diff options
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r-- | fs/xfs/xfs_qm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c index 28a5e8ae3829..8e707d33e106 100644 --- a/fs/xfs/xfs_qm.c +++ b/fs/xfs/xfs_qm.c | |||
@@ -70,7 +70,7 @@ xfs_qm_dquot_walk( | |||
70 | void *data) | 70 | void *data) |
71 | { | 71 | { |
72 | struct xfs_quotainfo *qi = mp->m_quotainfo; | 72 | struct xfs_quotainfo *qi = mp->m_quotainfo; |
73 | struct radix_tree_root *tree = XFS_DQUOT_TREE(qi, type); | 73 | struct radix_tree_root *tree = xfs_dquot_tree(qi, type); |
74 | uint32_t next_index; | 74 | uint32_t next_index; |
75 | int last_error = 0; | 75 | int last_error = 0; |
76 | int skipped; | 76 | int skipped; |
@@ -189,7 +189,7 @@ xfs_qm_dqpurge( | |||
189 | xfs_dqfunlock(dqp); | 189 | xfs_dqfunlock(dqp); |
190 | xfs_dqunlock(dqp); | 190 | xfs_dqunlock(dqp); |
191 | 191 | ||
192 | radix_tree_delete(XFS_DQUOT_TREE(qi, dqp->q_core.d_flags), | 192 | radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags), |
193 | be32_to_cpu(dqp->q_core.d_id)); | 193 | be32_to_cpu(dqp->q_core.d_id)); |
194 | qi->qi_dquots--; | 194 | qi->qi_dquots--; |
195 | 195 | ||
@@ -1471,7 +1471,7 @@ xfs_qm_dqfree_one( | |||
1471 | struct xfs_quotainfo *qi = mp->m_quotainfo; | 1471 | struct xfs_quotainfo *qi = mp->m_quotainfo; |
1472 | 1472 | ||
1473 | mutex_lock(&qi->qi_tree_lock); | 1473 | mutex_lock(&qi->qi_tree_lock); |
1474 | radix_tree_delete(XFS_DQUOT_TREE(qi, dqp->q_core.d_flags), | 1474 | radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags), |
1475 | be32_to_cpu(dqp->q_core.d_id)); | 1475 | be32_to_cpu(dqp->q_core.d_id)); |
1476 | 1476 | ||
1477 | qi->qi_dquots--; | 1477 | qi->qi_dquots--; |