| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH v3 04/12] xfs: calculate xfs_qm_write_sb_changes() space log reservation at mount time |
| From: | Jeff Liu <jeff.liu@xxxxxxxxxx> |
| Date: | Thu, 24 Jan 2013 19:10:59 +0800 |
| Delivered-to: | xfs@xxxxxxxxxxx |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 |
For the transaction that write the incore superblock changes of quota
flags to disk, it would reserve the same log space to clear/reset quota
flags transaction, so we can use XFS_TRANS_SBCHANGE_LOG_RES() for it as well.
Signed-off-by: Jie Liu <jeff.liu@xxxxxxxxxx>
---
fs/xfs/xfs_qm.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index 2e86fa0..5745189 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -1582,10 +1582,9 @@ xfs_qm_write_sb_changes(
int error;
tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
- if ((error = xfs_trans_reserve(tp, 0,
- mp->m_sb.sb_sectsize + 128, 0,
- 0,
- XFS_DEFAULT_LOG_COUNT))) {
+ error = xfs_trans_reserve(tp, 0, XFS_QM_SBCHANGE_LOG_RES(mp),
+ 0, 0, XFS_DEFAULT_LOG_COUNT);
+ if (error) {
xfs_trans_cancel(tp, 0);
return error;
}
--
1.7.9.5
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH v3 02/13] xfs: make use of xfs_calc_buf_res() in xfs_trans.c, Jeff Liu |
|---|---|
| Next by Date: | [PATCH v3 05/14] xfs: calcuate XFS_TRANS_QM_SETQLIM space log reservation at mount time, Jeff Liu |
| Previous by Thread: | [PATCH v3 02/13] xfs: make use of xfs_calc_buf_res() in xfs_trans.c, Jeff Liu |
| Next by Thread: | Re: [PATCH v3 04/12] xfs: calculate xfs_qm_write_sb_changes() space log reservation at mount time, Mark Tinguely |
| Indexes: | [Date] [Thread] [Top] [All Lists] |