aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jbd2/commit.c
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2008-11-06 17:50:21 -0500
committerTheodore Ts'o <tytso@mit.edu>2008-11-06 17:50:21 -0500
commitfb68407b0d9efba962c03f55009c797e22f024bc (patch)
treeb3f33f513969d6f77c5b6a6f71b662057d3440a5 /fs/jbd2/commit.c
parentc3a326a657562dab81acf05aee106dc1fe345eb4 (diff)
jbd2: Call journal commit callback without holding j_list_lock
Avoid freeing the transaction in __jbd2_journal_drop_transaction() so the journal commit callback can run without holding j_list_lock, to avoid lock contention on this spinlock. Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/jbd2/commit.c')
-rw-r--r--fs/jbd2/commit.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c
index f22d1828ea85..0ad84162c425 100644
--- a/fs/jbd2/commit.c
+++ b/fs/jbd2/commit.c
@@ -363,7 +363,7 @@ void jbd2_journal_commit_transaction(journal_t *journal)
363 int space_left = 0; 363 int space_left = 0;
364 int first_tag = 0; 364 int first_tag = 0;
365 int tag_flag; 365 int tag_flag;
366 int i; 366 int i, to_free = 0;
367 int tag_bytes = journal_tag_bytes(journal); 367 int tag_bytes = journal_tag_bytes(journal);
368 struct buffer_head *cbh = NULL; /* For transactional checksums */ 368 struct buffer_head *cbh = NULL; /* For transactional checksums */
369 __u32 crc32_sum = ~0; 369 __u32 crc32_sum = ~0;
@@ -1011,12 +1011,10 @@ restart_loop:
1011 journal->j_average_commit_time = commit_time; 1011 journal->j_average_commit_time = commit_time;
1012 spin_unlock(&journal->j_state_lock); 1012 spin_unlock(&journal->j_state_lock);
1013 1013
1014 if (journal->j_commit_callback)
1015 journal->j_commit_callback(journal, commit_transaction);
1016
1017 if (commit_transaction->t_checkpoint_list == NULL && 1014 if (commit_transaction->t_checkpoint_list == NULL &&
1018 commit_transaction->t_checkpoint_io_list == NULL) { 1015 commit_transaction->t_checkpoint_io_list == NULL) {
1019 __jbd2_journal_drop_transaction(journal, commit_transaction); 1016 __jbd2_journal_drop_transaction(journal, commit_transaction);
1017 to_free = 1;
1020 } else { 1018 } else {
1021 if (journal->j_checkpoint_transactions == NULL) { 1019 if (journal->j_checkpoint_transactions == NULL) {
1022 journal->j_checkpoint_transactions = commit_transaction; 1020 journal->j_checkpoint_transactions = commit_transaction;
@@ -1035,11 +1033,16 @@ restart_loop:
1035 } 1033 }
1036 spin_unlock(&journal->j_list_lock); 1034 spin_unlock(&journal->j_list_lock);
1037 1035
1036 if (journal->j_commit_callback)
1037 journal->j_commit_callback(journal, commit_transaction);
1038
1038 trace_mark(jbd2_end_commit, "dev %s transaction %d head %d", 1039 trace_mark(jbd2_end_commit, "dev %s transaction %d head %d",
1039 journal->j_devname, journal->j_commit_sequence, 1040 journal->j_devname, commit_transaction->t_tid,
1040 journal->j_tail_sequence); 1041 journal->j_tail_sequence);
1041 jbd_debug(1, "JBD: commit %d complete, head %d\n", 1042 jbd_debug(1, "JBD: commit %d complete, head %d\n",
1042 journal->j_commit_sequence, journal->j_tail_sequence); 1043 journal->j_commit_sequence, journal->j_tail_sequence);
1044 if (to_free)
1045 kfree(commit_transaction);
1043 1046
1044 wake_up(&journal->j_wait_done_commit); 1047 wake_up(&journal->j_wait_done_commit);
1045} 1048}