diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2018-05-05 00:15:48 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-09 19:04:01 +0200 |
commit | e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb (patch) | |
tree | bffbaa3acd360ac1bdc4fcb3d3a53c467adc9e3a /fs/xfs/xfs_qm.c | |
parent | xfs: clean up locking in xfs_file_iomap_begin (diff) | |
download | linux-e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb.tar.xz linux-e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb.zip |
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 <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r-- | fs/xfs/xfs_qm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |