Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d3c7fce authored by Jan Kara's avatar Jan Kara Committed by Linus Torvalds
Browse files

[PATCH] jbd: log_do_checkpoint fix



While checkpointing we have to check that our transaction still is in the
checkpoint list *and* (not or) that it's not just a different transaction
with the same address.

Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2149bcab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -338,7 +338,7 @@ int log_do_checkpoint(journal_t *journal)
	 * done (maybe it's a new transaction, but it fell at the same
	 * address).
	 */
 	if (journal->j_checkpoint_transactions == transaction ||
 	if (journal->j_checkpoint_transactions == transaction &&
			transaction->t_tid == this_tid) {
		int batch_count = 0;
		struct buffer_head *bhs[NR_BATCH];