aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_bmap_util.c
diff options
context:
space:
mode:
authorGravatar Darrick J. Wong <djwong@kernel.org> 2021-01-22 16:48:33 -0800
committerGravatar Darrick J. Wong <djwong@kernel.org> 2021-02-03 09:18:49 -0800
commit4abe21ad67a7b9dc6844f55e91a6e3ef81879d42 (patch)
tree001708f4a7ef79b4c5bfc1455d559ad46836f7d4 /fs/xfs/xfs_bmap_util.c
parentxfs: reduce quota reservation when doing a dax unwritten extent conversion (diff)
downloadlinux-4abe21ad67a7b9dc6844f55e91a6e3ef81879d42.tar.gz
linux-4abe21ad67a7b9dc6844f55e91a6e3ef81879d42.tar.bz2
linux-4abe21ad67a7b9dc6844f55e91a6e3ef81879d42.zip
xfs: clean up quota reservation callsites
Convert a few xfs_trans_*reserve* callsites that are open-coding other convenience functions. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_bmap_util.c')
-rw-r--r--fs/xfs/xfs_bmap_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap_util.c b/fs/xfs/xfs_bmap_util.c
index f3f8c48ff5bf..792809debaaa 100644
--- a/fs/xfs/xfs_bmap_util.c
+++ b/fs/xfs/xfs_bmap_util.c
@@ -884,8 +884,8 @@ xfs_unmap_extent(
}
xfs_ilock(ip, XFS_ILOCK_EXCL);
- error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, ip->i_gdquot,
- ip->i_pdquot, resblks, 0, XFS_QMOPT_RES_REGBLKS);
+ error = xfs_trans_reserve_quota_nblks(tp, ip, resblks, 0,
+ XFS_QMOPT_RES_REGBLKS);
if (error)
goto out_trans_cancel;