All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] md/raid5: fix bug that could result in reads from a failed device.
@ 2011-12-14 23:54 NeilBrown
  2011-12-15  0:02 ` Greg KH
  2011-12-15  0:03 ` Patch "md/raid5: fix bug that could result in reads from a failed device." has been added to the 3.0-stable tree gregkh
  0 siblings, 2 replies; 3+ messages in thread
From: NeilBrown @ 2011-12-14 23:54 UTC (permalink / raw)
  To: stable; +Cc: linux RAID, Alexander Lyakas, tim.gardner

[-- Attachment #1: Type: text/plain, Size: 1977 bytes --]


hi Greg,
 When I sent you a backport of 355840e for 3.0.y I messed up and missed half
 of the required patch.  This is the other half.  So if 3.0 is still open for
 updates I would appreciate you applying this.

Thanks,
NeilBrown


From: NeilBrown <neilb@suse.de>
Date: Thu, 15 Dec 2011 10:49:58 +1100
Subject: [PATCH] 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>
---
 drivers/md/raid5.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index cbb50d3..1f6c68d 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -3078,7 +3078,7 @@ static void handle_stripe5(struct stripe_head *sh)
 			/* Not in-sync */;
 		else if (test_bit(In_sync, &rdev->flags))
 			set_bit(R5_Insync, &dev->flags);
-		else {
+		else if (!test_bit(Faulty, &rdev->flags)) {
 			/* could be in-sync depending on recovery/reshape status */
 			if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
 				set_bit(R5_Insync, &dev->flags);
-- 
1.7.7


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] md/raid5: fix bug that could result in reads from a failed device.
  2011-12-14 23:54 [PATCH] md/raid5: fix bug that could result in reads from a failed device NeilBrown
@ 2011-12-15  0:02 ` Greg KH
  2011-12-15  0:03 ` Patch "md/raid5: fix bug that could result in reads from a failed device." has been added to the 3.0-stable tree gregkh
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2011-12-15  0:02 UTC (permalink / raw)
  To: NeilBrown; +Cc: stable, linux RAID, Alexander Lyakas, tim.gardner

On Thu, Dec 15, 2011 at 10:54:39AM +1100, NeilBrown wrote:
> 
> hi Greg,
>  When I sent you a backport of 355840e for 3.0.y I messed up and missed half
>  of the required patch.  This is the other half.  So if 3.0 is still open for
>  updates I would appreciate you applying this.

Now applied, thanks for the patch.

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Patch "md/raid5: fix bug that could result in reads from a failed device." has been added to the 3.0-stable tree
  2011-12-14 23:54 [PATCH] md/raid5: fix bug that could result in reads from a failed device NeilBrown
  2011-12-15  0:02 ` Greg KH
@ 2011-12-15  0:03 ` gregkh
  1 sibling, 0 replies; 3+ messages in thread
From: gregkh @ 2011-12-15  0:03 UTC (permalink / raw)
  To: neilb, alex.bolshoy, gregkh, linux-raid; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    md/raid5: fix bug that could result in reads from a failed device.

to the 3.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     md-raid5-fix-bug-that-could-result-in-reads-from-a-failed-device.patch
and it can be found in the queue-3.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


From neilb@suse.de  Wed Dec 14 16:01:18 2011
From: NeilBrown <neilb@suse.de>
Date: Thu, 15 Dec 2011 10:54:39 +1100
Subject: md/raid5: fix bug that could result in reads from a failed device.
To: stable@vger.kernel.org
Cc: linux RAID <linux-raid@vger.kernel.org>, Alexander Lyakas <alex.bolshoy@gmail.com>, tim.gardner@canonical.com
Message-ID: <20111215105439.628fe074@notabene.brown>


From: NeilBrown <neilb@suse.de>

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>
---
 drivers/md/raid5.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -3078,7 +3078,7 @@ static void handle_stripe5(struct stripe
 			/* Not in-sync */;
 		else if (test_bit(In_sync, &rdev->flags))
 			set_bit(R5_Insync, &dev->flags);
-		else {
+		else if (!test_bit(Faulty, &rdev->flags)) {
 			/* could be in-sync depending on recovery/reshape status */
 			if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
 				set_bit(R5_Insync, &dev->flags);


Patches currently in stable-queue which might be from neilb@suse.de are

queue-3.0/md-raid5-fix-bug-that-could-result-in-reads-from-a-failed-device.patch

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-15  0:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-14 23:54 [PATCH] md/raid5: fix bug that could result in reads from a failed device NeilBrown
2011-12-15  0:02 ` Greg KH
2011-12-15  0:03 ` Patch "md/raid5: fix bug that could result in reads from a failed device." has been added to the 3.0-stable tree gregkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.