* [PATCH] md: Fix skipping recovery for read-only arrays.
@ 2013-10-07 14:25 Lukasz Dorau
2013-10-16 3:49 ` NeilBrown
0 siblings, 1 reply; 3+ messages in thread
From: Lukasz Dorau @ 2013-10-07 14:25 UTC (permalink / raw)
To: neilb; +Cc: linux-raid, pawel.baldysiak, linux-kernel
Since:
commit 7ceb17e87bde79d285a8b988cfed9eaeebe60b86
md: Allow devices to be re-added to a read-only array.
spares are activated on a read-only array. In case of raid1 and raid10
personalities it causes that not-in-sync devices are marked in-sync
without checking if recovery has been finished.
If a read-only array is degraded and one of its devices is not in-sync
(because the array has been only partially recovered) recovery will be skipped.
This patch adds checking if recovery has been finished before marking a device
in-sync for raid1 and raid10 personalities. In case of raid5 personality
such condition is already present (at raid5.c:6029).
Bug was introduced in 3.10 and causes data corruption.
Cc: stable@vger.kernel.org
Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
---
drivers/md/raid1.c | 1 +
drivers/md/raid10.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index d60412c..aacf6bf 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -1479,6 +1479,7 @@ static int raid1_spare_active(struct mddev *mddev)
}
}
if (rdev
+ && rdev->recovery_offset == MaxSector
&& !test_bit(Faulty, &rdev->flags)
&& !test_and_set_bit(In_sync, &rdev->flags)) {
count++;
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
index df7b0a0..73dc8a3 100644
--- a/drivers/md/raid10.c
+++ b/drivers/md/raid10.c
@@ -1782,6 +1782,7 @@ static int raid10_spare_active(struct mddev *mddev)
}
sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
} else if (tmp->rdev
+ && tmp->rdev->recovery_offset == MaxSector
&& !test_bit(Faulty, &tmp->rdev->flags)
&& !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
count++;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] md: Fix skipping recovery for read-only arrays.
2013-10-07 14:25 [PATCH] md: Fix skipping recovery for read-only arrays Lukasz Dorau
@ 2013-10-16 3:49 ` NeilBrown
2013-10-16 7:43 ` Dorau, Lukasz
0 siblings, 1 reply; 3+ messages in thread
From: NeilBrown @ 2013-10-16 3:49 UTC (permalink / raw)
To: Lukasz Dorau; +Cc: linux-raid, pawel.baldysiak, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2135 bytes --]
On Mon, 07 Oct 2013 16:25:51 +0200 Lukasz Dorau <lukasz.dorau@intel.com>
wrote:
> Since:
> commit 7ceb17e87bde79d285a8b988cfed9eaeebe60b86
> md: Allow devices to be re-added to a read-only array.
>
> spares are activated on a read-only array. In case of raid1 and raid10
> personalities it causes that not-in-sync devices are marked in-sync
> without checking if recovery has been finished.
>
> If a read-only array is degraded and one of its devices is not in-sync
> (because the array has been only partially recovered) recovery will be skipped.
>
> This patch adds checking if recovery has been finished before marking a device
> in-sync for raid1 and raid10 personalities. In case of raid5 personality
> such condition is already present (at raid5.c:6029).
>
> Bug was introduced in 3.10 and causes data corruption.
>
> Cc: stable@vger.kernel.org
> Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
> Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
> ---
> drivers/md/raid1.c | 1 +
> drivers/md/raid10.c | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
> index d60412c..aacf6bf 100644
> --- a/drivers/md/raid1.c
> +++ b/drivers/md/raid1.c
> @@ -1479,6 +1479,7 @@ static int raid1_spare_active(struct mddev *mddev)
> }
> }
> if (rdev
> + && rdev->recovery_offset == MaxSector
> && !test_bit(Faulty, &rdev->flags)
> && !test_and_set_bit(In_sync, &rdev->flags)) {
> count++;
> diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
> index df7b0a0..73dc8a3 100644
> --- a/drivers/md/raid10.c
> +++ b/drivers/md/raid10.c
> @@ -1782,6 +1782,7 @@ static int raid10_spare_active(struct mddev *mddev)
> }
> sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
> } else if (tmp->rdev
> + && tmp->rdev->recovery_offset == MaxSector
> && !test_bit(Faulty, &tmp->rdev->flags)
> && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
> count++;
Applied - thanks.
I'll forward it to Linus and -stable shortly.
NeilBrown
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] md: Fix skipping recovery for read-only arrays.
2013-10-16 3:49 ` NeilBrown
@ 2013-10-16 7:43 ` Dorau, Lukasz
0 siblings, 0 replies; 3+ messages in thread
From: Dorau, Lukasz @ 2013-10-16 7:43 UTC (permalink / raw)
To: NeilBrown
Cc: linux-raid@vger.kernel.org, Baldysiak, Pawel,
linux-kernel@vger.kernel.org
On Wednesday, October 16, 2013 5:50 AM NeilBrown <neilb@suse.de> wrote:
> On Mon, 07 Oct 2013 16:25:51 +0200 Lukasz Dorau <lukasz.dorau@intel.com>
> wrote:
>
> > Since:
> > commit 7ceb17e87bde79d285a8b988cfed9eaeebe60b86
> > md: Allow devices to be re-added to a read-only array.
> >
> > spares are activated on a read-only array. In case of raid1 and raid10
> > personalities it causes that not-in-sync devices are marked in-sync
> > without checking if recovery has been finished.
> >
> > If a read-only array is degraded and one of its devices is not in-sync
> > (because the array has been only partially recovered) recovery will be skipped.
> >
> > This patch adds checking if recovery has been finished before marking
> > a device in-sync for raid1 and raid10 personalities. In case of raid5
> > personality such condition is already present (at raid5.c:6029).
> >
> > Bug was introduced in 3.10 and causes data corruption.
> >
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Pawel Baldysiak <pawel.baldysiak@intel.com>
> > Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
> > ---
> > drivers/md/raid1.c | 1 +
> > drivers/md/raid10.c | 1 +
> > 2 files changed, 2 insertions(+)
> >
> > diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index
> > d60412c..aacf6bf 100644
> > --- a/drivers/md/raid1.c
> > +++ b/drivers/md/raid1.c
> > @@ -1479,6 +1479,7 @@ static int raid1_spare_active(struct mddev *mddev)
> > }
> > }
> > if (rdev
> > + && rdev->recovery_offset == MaxSector
> > && !test_bit(Faulty, &rdev->flags)
> > && !test_and_set_bit(In_sync, &rdev->flags)) {
> > count++;
> > diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index
> > df7b0a0..73dc8a3 100644
> > --- a/drivers/md/raid10.c
> > +++ b/drivers/md/raid10.c
> > @@ -1782,6 +1782,7 @@ static int raid10_spare_active(struct mddev
> *mddev)
> > }
> > sysfs_notify_dirent_safe(tmp->replacement-
> >sysfs_state);
> > } else if (tmp->rdev
> > + && tmp->rdev->recovery_offset == MaxSector
> > && !test_bit(Faulty, &tmp->rdev->flags)
> > && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
> > count++;
>
> Applied - thanks.
>
> I'll forward it to Linus and -stable shortly.
>
> NeilBrown
Thanks!
Lukasz
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-10-16 7:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-07 14:25 [PATCH] md: Fix skipping recovery for read-only arrays Lukasz Dorau
2013-10-16 3:49 ` NeilBrown
2013-10-16 7:43 ` Dorau, Lukasz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox