diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-05 01:30:21 +0300 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-05-10 18:56:47 +0300 |
commit | c14cfccabe2af251388e20c1004ac5c6a970ba53 (patch) | |
tree | 9cb023d1a0388458fdef15eb769610a5d5d6e27e /fs/xfs/xfs_iops.c | |
parent | d7103eeb0051db9c27b7aaaf07262bd3802c529f (diff) | |
download | linux-c14cfccabe2af251388e20c1004ac5c6a970ba53.tar.xz |
xfs: remove unnecessary xfs_qm_dqattach parameter
The flags argument is always zero, get rid of it.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_iops.c')
-rw-r--r-- | fs/xfs/xfs_iops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index a3ed3c811dfa..5afe3c2234b3 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -855,7 +855,7 @@ xfs_setattr_size( /* * Make sure that the dquots are attached to the inode. */ - error = xfs_qm_dqattach(ip, 0); + error = xfs_qm_dqattach(ip); if (error) return error; |