Skip to content
  • Jan Kara's avatar
    jbd: Issue cache flush after checkpointing · 353b67d8
    Jan Kara authored
    When we reach cleanup_journal_tail(), there is no guarantee that
    checkpointed buffers are on a stable storage - especially if buffers were
    written out by log_do_checkpoint(), they are likely to be only in disk's
    caches. Thus when we update journal superblock, effectively removing old
    transaction from journal, this write of superblock can get to stable storage
    before those checkpointed buffers which can result in filesystem corruption
    after a crash.
    
    A similar problem can happen if we replay the journal and wipe it before
    flushing disk's caches.
    
    Thus we must unconditionally issue a cache flush before we update journal
    superblock in these cases. The fix is slightly complicated by the fact that we
    have to get log tail before we issue cache flush but we can store it in the
    journal superblock only after the cache flush. Otherwise we risk races where
    new tail is written before appropriate cache flush is finished.
    
    I managed to reproduce the corruption using somewhat t...
    353b67d8