|
|
| version 1.30, 2007/02/07 02:50:13 | version 1.31, 2007/03/02 02:59:33 |
|---|---|
| Line 735 xfs_qm_scall_setqlim( | Line 735 xfs_qm_scall_setqlim( |
| xfs_trans_log_dquot(tp, dqp); | xfs_trans_log_dquot(tp, dqp); |
| xfs_dqtrace_entry(dqp, "Q_SETQLIM: COMMIT"); | xfs_dqtrace_entry(dqp, "Q_SETQLIM: COMMIT"); |
| xfs_trans_commit(tp, 0, NULL); | xfs_trans_commit(tp, 0); |
| xfs_qm_dqprint(dqp); | xfs_qm_dqprint(dqp); |
| xfs_qm_dqrele(dqp); | xfs_qm_dqrele(dqp); |
| mutex_unlock(&(XFS_QI_QOFFLOCK(mp))); | mutex_unlock(&(XFS_QI_QOFFLOCK(mp))); |
| Line 809 xfs_qm_log_quotaoff_end( | Line 809 xfs_qm_log_quotaoff_end( |
| * We don't care about quotoff's performance. | * We don't care about quotoff's performance. |
| */ | */ |
| xfs_trans_set_sync(tp); | xfs_trans_set_sync(tp); |
| error = xfs_trans_commit(tp, 0, NULL); | error = xfs_trans_commit(tp, 0); |
| return (error); | return (error); |
| } | } |
| Line 852 xfs_qm_log_quotaoff( | Line 852 xfs_qm_log_quotaoff( |
| * We don't care about quotoff's performance. | * We don't care about quotoff's performance. |
| */ | */ |
| xfs_trans_set_sync(tp); | xfs_trans_set_sync(tp); |
| error = xfs_trans_commit(tp, 0, NULL); | error = xfs_trans_commit(tp, 0); |
| error0: | error0: |
| if (error) { | if (error) { |