From e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Fri, 4 May 2018 15:15:48 -0700 Subject: xfs: remove unused flags arg from xfs_dquot_verify Long ago the flags argument was used to determine whether to issue warnings about corruptions, but that's done elsewhere now and the flag is unused here, so remove it. Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- fs/xfs/xfs_qm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/xfs/xfs_qm.c') diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c index afb991283b12..e641a507d0ed 100644 --- a/fs/xfs/xfs_qm.c +++ b/fs/xfs/xfs_qm.c @@ -865,7 +865,7 @@ xfs_qm_reset_dqcounts( * find uninitialised dquot blks. See comment in * xfs_dquot_verify. */ - fa = xfs_dquot_verify(mp, ddq, id + j, type, 0); + fa = xfs_dquot_verify(mp, ddq, id + j, type); if (fa) xfs_dquot_repair(mp, ddq, id + j, type); -- cgit v1.2.3-59-g8ed1b