[PATCH v2 3/8] xfs: Make writeid transaction use tr_writeid

Jeff Liu jeff.liu at oracle.com
Fri May 17 00:38:13 CDT 2013


From: Jie Liu <jeff.liu at oracle.com>

tr_writeid is defined at mp->m_reservation structure, however,
it does not really being used.

This patch fix it to tr_writeid to fetch the log reservation size.

Signed-off-by: Jie Liu <jeff.liu at oracle.com>
---
 fs/xfs/xfs_trans.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h
index 509ad4d..6177040 100644
--- a/fs/xfs/xfs_trans.h
+++ b/fs/xfs/xfs_trans.h
@@ -255,7 +255,7 @@ struct xfs_log_item_desc {
  * as long as SWRITE logs the entire inode core
  */
 #define XFS_FSYNC_TS_LOG_RES(mp) ((mp)->m_reservations.tr_fsyncts.tr_logres)
-#define	XFS_WRITEID_LOG_RES(mp)	 ((mp)->m_reservations.tr_swrite.tr_logres)
+#define	XFS_WRITEID_LOG_RES(mp)	 ((mp)->m_reservations.tr_writeid.tr_logres)
 #define	XFS_ADDAFORK_LOG_RES(mp) ((mp)->m_reservations.tr_addafork.tr_logres)
 #define	XFS_ATTRSETM_LOG_RES(mp) ((mp)->m_reservations.tr_attrsetm.tr_logres)
 #define	XFS_ATTRINVAL_LOG_RES(mp) ((mp)->m_reservations.tr_attrinval.tr_logres)
-- 
1.7.9.5



More information about the xfs mailing list