diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2018-05-04 15:15:48 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-09 10:04:01 -0700 |
commit | e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb (patch) | |
tree | bffbaa3acd360ac1bdc4fcb3d3a53c467adc9e3a /fs/xfs/xfs_qm.c | |
parent | dfa03a5f8076c6bf79a9f68ef8f559fb8999cec1 (diff) | |
download | op-kernel-dev-e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb.zip op-kernel-dev-e381a0f6c28a3f2a452d5fba9b917f03e5dc4ffb.tar.gz |
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 afb9912..e641a50 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); |