summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_qm_syscalls.c
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-03-11 13:42:56 -0800
committerDarrick J. Wong <djwong@kernel.org>2021-03-18 15:20:19 -0700
commit06dbbbc51e6132a8d822b644e503e21e6acbf0a1 (patch)
tree92e4167cfd59239c125dc2105d9307bc04514949 /fs/xfs/xfs_qm_syscalls.c
parentd13b21d29774fb6d831c0672e3d2f732ac72eb6d (diff)
xfs: remove iter_flags parameter from xfs_inode_walk_*iwalk-remove-indirect-calls-5.13_2021-03-18
The sole user of the INEW_WAIT flag to xfs_inode_walk is a caller that is external to the inode cache. Since external callers have no business messing with INEW inodes or inode radix tree tags, we can get rid of the iter_flag entirely. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_qm_syscalls.c')
-rw-r--r--fs/xfs/xfs_qm_syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_qm_syscalls.c b/fs/xfs/xfs_qm_syscalls.c
index 2f42ea8a09ab..dad4d3fc3df3 100644
--- a/fs/xfs/xfs_qm_syscalls.c
+++ b/fs/xfs/xfs_qm_syscalls.c
@@ -795,5 +795,5 @@ xfs_qm_dqrele_all_inodes(
uint flags)
{
ASSERT(mp->m_quotainfo);
- xfs_inode_walk(mp, XFS_INODE_WALK_INEW_WAIT, xfs_dqrele_inode, &flags);
+ xfs_inode_walk(mp, xfs_dqrele_inode, &flags);
}