aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_qm.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r--fs/xfs/xfs_qm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index 48c750b0e83..688f608b366 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -892,7 +892,7 @@ xfs_qm_dqiter_bufs(
892 while (blkcnt--) { 892 while (blkcnt--) {
893 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, 893 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
894 XFS_FSB_TO_DADDR(mp, bno), 894 XFS_FSB_TO_DADDR(mp, bno),
895 mp->m_quotainfo->qi_dqchunklen, 0, &bp); 895 mp->m_quotainfo->qi_dqchunklen, 0, &bp, NULL);
896 if (error) 896 if (error)
897 break; 897 break;
898 898
@@ -979,7 +979,8 @@ xfs_qm_dqiterate(
979 while (rablkcnt--) { 979 while (rablkcnt--) {
980 xfs_buf_readahead(mp->m_ddev_targp, 980 xfs_buf_readahead(mp->m_ddev_targp,
981 XFS_FSB_TO_DADDR(mp, rablkno), 981 XFS_FSB_TO_DADDR(mp, rablkno),
982 mp->m_quotainfo->qi_dqchunklen); 982 mp->m_quotainfo->qi_dqchunklen,
983 NULL);
983 rablkno++; 984 rablkno++;
984 } 985 }
985 } 986 }