summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_qm_syscalls.c
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2019-07-31 13:37:43 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2019-08-16 19:06:26 -0700
commit0924ec736bab697f1c611b1c755f51e9b7466463 (patch)
treed112357fdfc71617089687fc84c92064f9cf1f61 /fs/xfs/xfs_qm_syscalls.c
parentd7a71f108545ca734888f85c6d5861838dc3ad44 (diff)
xfs: hide most of the incore inode walk interfaceincore-inode-walk_2019-08-16
Hide the incore inode walk interface because callers outside of the icache code don't need to know about iter_flags and radix tags and other implementation details of the incore inode cache. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_qm_syscalls.c')
-rw-r--r--fs/xfs/xfs_qm_syscalls.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_qm_syscalls.c b/fs/xfs/xfs_qm_syscalls.c
index 438b8104e630..fcdcb029da4f 100644
--- a/fs/xfs/xfs_qm_syscalls.c
+++ b/fs/xfs/xfs_qm_syscalls.c
@@ -785,6 +785,5 @@ xfs_qm_dqrele_all_inodes(
};
ASSERT(mp->m_quotainfo);
- xfs_inode_ag_iterator(mp, XFS_AGITER_INEW_WAIT, xfs_dqrele_inode, &dqr,
- XFS_ICI_NO_TAG);
+ xfs_ici_walk_all(mp, xfs_dqrele_inode, &dqr);
}