On Thu, Aug 11, 2016 at 01:11:03PM -0400, Brian Foster wrote: > The fix to log recovery to update the metadata LSN in recovered buffers > introduces the requirement that a buffer is submitted only once per > current LSN. Log recovery currently submits buffers on transaction > boundaries. This is not sufficient as the abstraction between log > records and transactions allows for various scenarios where multiple > transactions can share the same current LSN. If independent transactions > share an LSN and both modify the same buffer, log recovery can > incorrectly skip updates and leave the filesystem in an inconsisent > state. > > In preparation for proper metadata LSN updates during log recovery, > update log recovery to submit buffers for write on LSN change boundaries > rather than transaction boundaries. Explicitly track the current LSN in > a new struct xlog field to handle the various corner cases of when the > current LSN may or may not change. ..... > @@ -4221,8 +4223,39 @@ xlog_recover_process_ophdr( > return 0; > } > > + /* > + * Recovered buffers are submitted for I/O on current LSN change > + * boundaries. This is necessary to accommodate metadata LSN ordering > + * rules of v5 superblock filesystems. > + * > + * Store the new current LSN in l_recovery_lsn as we cannot rely on > + * either record boundaries or transaction boundaries alone to track LSN > + * changes. This has several contributing factors: > + * > + * - Metadata LSNs are updated at buffer submission time. Thus, buffers > + * can only be submitted safely once per current LSN value. > + * - The current LSN is defined as the start cycle/block of the first > + * record in which a transaction appears. > + * - A record can hold multiple transactions. Thus, a transaction change > + * does not guarantee a change in current LSN. > + * - A transaction can span multiple records. Thus, a record change does > + * not guarantee a change in current LSN. Consider the case where a > + * record holds one small transaction and a subsequent that carries > + * over to the next record. Both transactions share the same LSN as > + * per the definition of the current LSN. > + * > + * In summary, this means we must track the current LSN independently > + * and submit buffers for the previous LSN only when it has changed. > + */ > + if (log->l_recovery_lsn != trans->r_lsn) { > + error = xfs_buf_delwri_submit(buffer_list); > + if (error) > + return error; > + log->l_recovery_lsn = trans->r_lsn; > + } I'm not sure this is the right place to be submitting buffers. We can have multiple transactions open at once because the writing of the transaction to the log is split into two parts: xlog_write() which writes the changes to the log, and xfs_log_done() which writes the commit record (via xlog_commit_record()) to close the transaction. Hence we can get the situation where we have multiple open transactions such as: CA CB CC CD +---------+--------+--------+--+--+--------+-------+--+--+ trans A trans B trans C trans C trans D where the changes in multiple transactions are written before the ophdr that contains the commit record ("CA", "CB", ....) is written. With the above code, we'd be doing writeback of A when we see B, not when we see the commit record for A. Like wise B when we see C. And worse, partial writeback of C when we see the commit record for A... i.e. We are very careful to write commit records in the correct order because that is what determines recovery order, but we don't care what order we write the actual contents of the checkpoints or whether they interleave with other checkpoints. As such, ophdrs change transactions and LSNs without having actually completed recovery of a checkpoint. I think writeback should occur when all the transactions with a given lsn have been committed. I'm not sure there's a simple way to track and detect this, but using the ophdrs to detect a change of lsn to trigger buffer writeback does not look correct to me at this point in time. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs