]> git.baikalelectronics.ru Git - kernel.git/commit
md/raid5: fix bug that could result in reads from a failed device.
authorNeilBrown <neilb@suse.de>
Tue, 25 Oct 2011 23:31:04 +0000 (10:31 +1100)
committerNeilBrown <neilb@suse.de>
Tue, 25 Oct 2011 23:31:04 +0000 (10:31 +1100)
commitebfb024b74308aa493df4a890d512263cfce4ada
tree8ba816b2db3b96872f744c476c3d3d0d3f12fd23
parent55a0afbeb91837c428f6b1669502f87074321a27
md/raid5: fix bug that could result in reads from a failed device.

This bug was introduced in db275bd59346e7fcbb67e546952e094bc3351688
which was in 2.6.36.

There is a small window of time between when a device fails and when
it is removed from the array.  During this time we might still read
from it, but we won't write to it - so it is possible that we could
read stale data.

We didn't need the test of 'Faulty' before because the test on
In_sync is sufficient.  Since we started allowing reads from the early
part of non-In_sync devices we need a test on Faulty too.

This is suitable for any kernel from 2.6.36 onwards, though the patch
might need a bit of tweaking in 3.0 and earlier.

Cc: stable@kernel.org
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid5.c