aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r--fs/xfs/xfs_log.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c
index 3038dd52c72a..687b220c6af3 100644
--- a/fs/xfs/xfs_log.c
+++ b/fs/xfs/xfs_log.c
@@ -360,6 +360,15 @@ xfs_log_reserve(
360 ASSERT(flags & XFS_LOG_PERM_RESERV); 360 ASSERT(flags & XFS_LOG_PERM_RESERV);
361 internal_ticket = *ticket; 361 internal_ticket = *ticket;
362 362
363 /*
364 * this is a new transaction on the ticket, so we need to
365 * change the transaction ID so that the next transaction has a
366 * different TID in the log. Just add one to the existing tid
367 * so that we can see chains of rolling transactions in the log
368 * easily.
369 */
370 internal_ticket->t_tid++;
371
363 trace_xfs_log_reserve(log, internal_ticket); 372 trace_xfs_log_reserve(log, internal_ticket);
364 373
365 xlog_grant_push_ail(mp, internal_ticket->t_unit_res); 374 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);