• Shaohua Li's avatar
    raid5: log recovery · 355810d1
    Shaohua Li authored
    This is the log recovery support. The process is quite straightforward.
    We scan the log and read all valid meta/data/parity into memory. If a
    stripe's data/parity checksum is correct, the stripe will be recoveried.
    Otherwise, it's discarded and we don't scan the log further. The reclaim
    process guarantees stripe which starts to be flushed raid disks has
    completed data/parity and has correct checksum. To recovery a stripe, we
    just copy its data/parity to corresponding raid disks.
    
    The trick thing is superblock update after recovery. we can't let
    superblock point to last valid meta block. The log might look like:
    | meta 1| meta 2| meta 3|
    meta 1 is valid, meta 2 is invalid. meta 3 could be valid. If superblock
    points to meta 1, we write a new valid meta 2n.  If crash happens again,
    new recovery will start from meta 1. Since meta 2n is valid, recovery
    will think meta 3 is valid, which is wrong.  The solution is we create a
    new meta in meta2 with its seq == meta 1's seq + 10 and let superblock
    points to meta2.  recovery will not think meta 3 is a valid meta,
    because its seq is wrong
    Signed-off-by: default avatarShaohua Li <shli@fb.com>
    Signed-off-by: default avatarNeilBrown <neilb@suse.com>
    355810d1
raid5-cache.c 30.2 KB