diff options
Diffstat (limited to 'fs/xfs/xfs_qm_syscalls.c')
| -rw-r--r-- | fs/xfs/xfs_qm_syscalls.c | 32 | 
1 files changed, 15 insertions, 17 deletions
diff --git a/fs/xfs/xfs_qm_syscalls.c b/fs/xfs/xfs_qm_syscalls.c index 5f53e75409b..cf9a34051e0 100644 --- a/fs/xfs/xfs_qm_syscalls.c +++ b/fs/xfs/xfs_qm_syscalls.c @@ -408,10 +408,10 @@ xfs_qm_scall_getqstat(  {  	struct xfs_quotainfo	*q = mp->m_quotainfo;  	struct xfs_inode	*uip, *gip; -	boolean_t		tempuqip, tempgqip; +	bool                    tempuqip, tempgqip;  	uip = gip = NULL; -	tempuqip = tempgqip = B_FALSE; +	tempuqip = tempgqip = false;  	memset(out, 0, sizeof(fs_quota_stat_t));  	out->qs_version = FS_QSTAT_VERSION; @@ -434,12 +434,12 @@ xfs_qm_scall_getqstat(  	if (!uip && mp->m_sb.sb_uquotino != NULLFSINO) {  		if (xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,  					0, 0, &uip) == 0) -			tempuqip = B_TRUE; +			tempuqip = true;  	}  	if (!gip && mp->m_sb.sb_gquotino != NULLFSINO) {  		if (xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,  					0, 0, &gip) == 0) -			tempgqip = B_TRUE; +			tempgqip = true;  	}  	if (uip) {  		out->qs_uquota.qfs_nblks = uip->i_d.di_nblocks; @@ -490,8 +490,9 @@ xfs_qm_scall_setqlim(  		return 0;  	tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SETQLIM); -	if ((error = xfs_trans_reserve(tp, 0, sizeof(xfs_disk_dquot_t) + 128, -				      0, 0, XFS_DEFAULT_LOG_COUNT))) { +	error = xfs_trans_reserve(tp, 0, XFS_QM_SETQLIM_LOG_RES(mp), +				  0, 0, XFS_DEFAULT_LOG_COUNT); +	if (error) {  		xfs_trans_cancel(tp, 0);  		return (error);  	} @@ -638,8 +639,9 @@ xfs_qm_log_quotaoff_end(  	tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF_END); -	if ((error = xfs_trans_reserve(tp, 0, sizeof(xfs_qoff_logitem_t) * 2, -				      0, 0, XFS_DEFAULT_LOG_COUNT))) { +	error = xfs_trans_reserve(tp, 0, XFS_QM_QUOTAOFF_END_LOG_RES(mp), +				  0, 0, XFS_DEFAULT_LOG_COUNT); +	if (error) {  		xfs_trans_cancel(tp, 0);  		return (error);  	} @@ -671,14 +673,10 @@ xfs_qm_log_quotaoff(  	uint			oldsbqflag=0;  	tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF); -	if ((error = xfs_trans_reserve(tp, 0, -				      sizeof(xfs_qoff_logitem_t) * 2 + -				      mp->m_sb.sb_sectsize + 128, -				      0, -				      0, -				      XFS_DEFAULT_LOG_COUNT))) { +	error = xfs_trans_reserve(tp, 0, XFS_QM_QUOTAOFF_LOG_RES(mp), +				  0, 0, XFS_DEFAULT_LOG_COUNT); +	if (error)  		goto error0; -	}  	qoffi = xfs_trans_get_qoff_item(tp, NULL, flags & XFS_ALL_QUOTA_ACCT);  	xfs_trans_log_quotaoff_item(tp, qoffi); @@ -784,11 +782,11 @@ xfs_qm_scall_getquota(  	     (XFS_IS_OQUOTA_ENFORCED(mp) &&  			(dst->d_flags & (FS_PROJ_QUOTA | FS_GROUP_QUOTA)))) &&  	    dst->d_id != 0) { -		if (((int) dst->d_bcount > (int) dst->d_blk_softlimit) && +		if ((dst->d_bcount > dst->d_blk_softlimit) &&  		    (dst->d_blk_softlimit > 0)) {  			ASSERT(dst->d_btimer != 0);  		} -		if (((int) dst->d_icount > (int) dst->d_ino_softlimit) && +		if ((dst->d_icount > dst->d_ino_softlimit) &&  		    (dst->d_ino_softlimit > 0)) {  			ASSERT(dst->d_itimer != 0);  		}  |