]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md/raid5: allow each slot to have an extra replacement device
authorNeilBrown <neilb@suse.de>
Fri, 9 Dec 2011 03:27:02 +0000 (14:27 +1100)
committerNeilBrown <neilb@suse.de>
Fri, 9 Dec 2011 03:27:02 +0000 (14:27 +1100)
commit10e2265609ed95b75f204a34070ac8104abb4141
treef64cb172606fae98366c9d876e8f9d3277ebef49
parent559436d70d5078a3ef2b44ab55ecbc976a62427b
md/raid5: allow each slot to have an extra replacement device

Just enhance data structures to record a second device per slot to be
used as a 'replacement' device, replacing the original.
We also have a second bio in each slot in each stripe_head.  This will
only be used when writing to the array - we need to write to both the
original and the replacement at the same time, so will need two bios.

For now, only try using the replacement drive for aligned-reads.
In this case, we prefer the replacement if it has been recovered far
enough, otherwise use the original.

This includes a small enhancement.  Previously we would only do
aligned reads if the target device was fully recovered.  Now we also
do them if it has recovered far enough.

Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid5.c
drivers/md/raid5.h