aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2011-12-14 18:54:39 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-12-21 15:57:42 -0500
commitd8091fda7895ed0624d1641089f4080164e75a35 (patch)
tree96e6c709b1944e75fa05235b5d5472cb14895ab3 /drivers/md
parentbf3673c5e33ba214af62e1cd9d4a333eb61e650f (diff)
md/raid5: fix bug that could result in reads from a failed device.
commit 355840e7a7e56bb2834fd3b0da64da5465f8aeaa upstream. commit a847627709b3402163d99f7c6fda4a77bcd6b51b in linux-3.0.9 attempted to backport this to 3.0 but only made one change were two were necessary. This add the second change. This bug was introduced in 415e72d034c50520ddb7ff79e7d1792c1306f0c9 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. Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/raid5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index cbb50d3883a..1f6c68df6f3 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -3078,7 +3078,7 @@ static void handle_stripe5(struct stripe_head *sh)
3078 /* Not in-sync */; 3078 /* Not in-sync */;
3079 else if (test_bit(In_sync, &rdev->flags)) 3079 else if (test_bit(In_sync, &rdev->flags))
3080 set_bit(R5_Insync, &dev->flags); 3080 set_bit(R5_Insync, &dev->flags);
3081 else { 3081 else if (!test_bit(Faulty, &rdev->flags)) {
3082 /* could be in-sync depending on recovery/reshape status */ 3082 /* could be in-sync depending on recovery/reshape status */
3083 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset) 3083 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3084 set_bit(R5_Insync, &dev->flags); 3084 set_bit(R5_Insync, &dev->flags);