diff options
Diffstat (limited to 'fs/jbd')
-rw-r--r-- | fs/jbd/commit.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/jbd/commit.c b/fs/jbd/commit.c index f8077b9c8981..a8e8513a78a9 100644 --- a/fs/jbd/commit.c +++ b/fs/jbd/commit.c | |||
@@ -351,8 +351,13 @@ void journal_commit_transaction(journal_t *journal) | |||
351 | spin_lock(&journal->j_state_lock); | 351 | spin_lock(&journal->j_state_lock); |
352 | commit_transaction->t_state = T_LOCKED; | 352 | commit_transaction->t_state = T_LOCKED; |
353 | 353 | ||
354 | /* | ||
355 | * Use plugged writes here, since we want to submit several before | ||
356 | * we unplug the device. We don't do explicit unplugging in here, | ||
357 | * instead we rely on sync_buffer() doing the unplug for us. | ||
358 | */ | ||
354 | if (commit_transaction->t_synchronous_commit) | 359 | if (commit_transaction->t_synchronous_commit) |
355 | write_op = WRITE_SYNC; | 360 | write_op = WRITE_SYNC_PLUG; |
356 | spin_lock(&commit_transaction->t_handle_lock); | 361 | spin_lock(&commit_transaction->t_handle_lock); |
357 | while (commit_transaction->t_updates) { | 362 | while (commit_transaction->t_updates) { |
358 | DEFINE_WAIT(wait); | 363 | DEFINE_WAIT(wait); |