diff options
Diffstat (limited to 'fs/xfs/xfs_dquot.c')
| -rw-r--r-- | fs/xfs/xfs_dquot.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c index bf27fcca484..e95f800333d 100644 --- a/fs/xfs/xfs_dquot.c +++ b/fs/xfs/xfs_dquot.c @@ -439,7 +439,7 @@ xfs_qm_dqtobp(  		error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,  					   dqp->q_blkno,  					   mp->m_quotainfo->qi_dqchunklen, -					   0, &bp); +					   0, &bp, NULL);  		if (error || !bp)  			return XFS_ERROR(error);  	} @@ -920,7 +920,7 @@ xfs_qm_dqflush(  	 * Get the buffer containing the on-disk dquot  	 */  	error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, dqp->q_blkno, -				   mp->m_quotainfo->qi_dqchunklen, 0, &bp); +				   mp->m_quotainfo->qi_dqchunklen, 0, &bp, NULL);  	if (error)  		goto out_unlock;  |