]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] ext3: fix log_do_checkpoint() assertion failure
authorJan Kara <jack@suse.cz>
Thu, 2 Jun 2005 21:02:00 +0000 (14:02 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 2 Jun 2005 22:12:29 +0000 (15:12 -0700)
Fix possible false assertion failure in log_do_checkpoint().  We might fail
to detect that we actually made a progress when cleaning up the checkpoint
lists if we don't retry after writing something to disk.  The patch was
confirmed to fix observed assertion failures for several users.

When we flushed some buffers we need to retry scanning the list.
Otherwise we can fail to detect our progress.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/jbd/checkpoint.c

index 98d830401c56c7e50463e85acfe994f76171bb99..58133ab9457e251dfcefbc062b491408afcca02a 100644 (file)
@@ -339,8 +339,10 @@ int log_do_checkpoint(journal_t *journal)
                        }
                } while (jh != last_jh && !retry);
 
-               if (batch_count)
+               if (batch_count) {
                        __flush_batch(journal, bhs, &batch_count);
+                       retry = 1;
+               }
 
                /*
                 * If someone cleaned up this transaction while we slept, we're