* [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot
@ 2025-11-21 19:14 Tarun Sahu
2025-11-23 2:52 ` Yu Kuai
2025-11-30 1:58 ` Yu Kuai
0 siblings, 2 replies; 4+ messages in thread
From: Tarun Sahu @ 2025-11-21 19:14 UTC (permalink / raw)
To: linux-raid, linux-scsi, linux-kernel, song
Cc: berrange, neil, hch, pasha.tatashin, mclapinski, khazhy,
Tarun Sahu
During system shutdown, the md driver registered notifier function
(md_notify_reboot) currently imposes a hardcoded one-second delay.
This delay was introduced approximately 23 years ago and was likely
necessary for the hardware generation of that time. Proposing this
patch to make sure there are no known devices that need this delay.
Signed-off-by: Tarun Sahu <tarunsahu@google.com>
---
v2:
Added linux-scsi mailing list
drivers/md/md.c | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/drivers/md/md.c b/drivers/md/md.c
index b086cbf24086..66c4d66b4b86 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -9704,7 +9704,6 @@ static int md_notify_reboot(struct notifier_block *this,
unsigned long code, void *x)
{
struct mddev *mddev;
- int need_delay = 0;
spin_lock(&all_mddevs_lock);
list_for_each_entry(mddev, &all_mddevs, all_mddevs) {
@@ -9718,21 +9717,11 @@ static int md_notify_reboot(struct notifier_block *this,
mddev->safemode = 2;
mddev_unlock(mddev);
}
- need_delay = 1;
spin_lock(&all_mddevs_lock);
mddev_put_locked(mddev);
}
spin_unlock(&all_mddevs_lock);
- /*
- * certain more exotic SCSI devices are known to be
- * volatile wrt too early system reboots. While the
- * right place to handle this issue is the given
- * driver, we do want to have a safe RAID driver ...
- */
- if (need_delay)
- msleep(1000);
-
return NOTIFY_DONE;
}
--
2.52.0.rc2.455.g230fcf2819-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot
2025-11-21 19:14 [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot Tarun Sahu
@ 2025-11-23 2:52 ` Yu Kuai
2025-11-30 1:58 ` Yu Kuai
1 sibling, 0 replies; 4+ messages in thread
From: Yu Kuai @ 2025-11-23 2:52 UTC (permalink / raw)
To: Tarun Sahu, linux-raid, linux-scsi, linux-kernel, song
Cc: berrange, neil, hch, pasha.tatashin, mclapinski, khazhy
在 2025/11/22 3:14, Tarun Sahu 写道:
> During system shutdown, the md driver registered notifier function
> (md_notify_reboot) currently imposes a hardcoded one-second delay.
>
> This delay was introduced approximately 23 years ago and was likely
> necessary for the hardware generation of that time. Proposing this
> patch to make sure there are no known devices that need this delay.
>
> Signed-off-by: Tarun Sahu<tarunsahu@google.com>
> ---
> v2:
> Added linux-scsi mailing list
>
> drivers/md/md.c | 11 -----------
> 1 file changed, 11 deletions(-)
LGTM
Reviewed-by: Yu Kuai<yukuai@fnnas.com>
--
Thanks,
Kuai
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot
2025-11-21 19:14 [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot Tarun Sahu
2025-11-23 2:52 ` Yu Kuai
@ 2025-11-30 1:58 ` Yu Kuai
2025-12-01 17:28 ` Pasha Tatashin
1 sibling, 1 reply; 4+ messages in thread
From: Yu Kuai @ 2025-11-30 1:58 UTC (permalink / raw)
To: Tarun Sahu, linux-raid, linux-scsi, linux-kernel, song, Yu Kuai
Cc: berrange, neil, hch, pasha.tatashin, mclapinski, khazhy
在 2025/11/22 3:14, Tarun Sahu 写道:
> During system shutdown, the md driver registered notifier function
> (md_notify_reboot) currently imposes a hardcoded one-second delay.
>
> This delay was introduced approximately 23 years ago and was likely
> necessary for the hardware generation of that time. Proposing this
> patch to make sure there are no known devices that need this delay.
>
> Signed-off-by: Tarun Sahu <tarunsahu@google.com>
> ---
> v2:
> Added linux-scsi mailing list
>
> drivers/md/md.c | 11 -----------
> 1 file changed, 11 deletions(-)
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index b086cbf24086..66c4d66b4b86 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -9704,7 +9704,6 @@ static int md_notify_reboot(struct notifier_block *this,
> unsigned long code, void *x)
> {
> struct mddev *mddev;
> - int need_delay = 0;
>
> spin_lock(&all_mddevs_lock);
> list_for_each_entry(mddev, &all_mddevs, all_mddevs) {
> @@ -9718,21 +9717,11 @@ static int md_notify_reboot(struct notifier_block *this,
> mddev->safemode = 2;
> mddev_unlock(mddev);
> }
> - need_delay = 1;
> spin_lock(&all_mddevs_lock);
> mddev_put_locked(mddev);
> }
> spin_unlock(&all_mddevs_lock);
>
> - /*
> - * certain more exotic SCSI devices are known to be
> - * volatile wrt too early system reboots. While the
> - * right place to handle this issue is the given
> - * driver, we do want to have a safe RAID driver ...
> - */
> - if (need_delay)
> - msleep(1000);
> -
> return NOTIFY_DONE;
> }
>
Applied to md-6.19
--
Thanks,
Kuai
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot
2025-11-30 1:58 ` Yu Kuai
@ 2025-12-01 17:28 ` Pasha Tatashin
0 siblings, 0 replies; 4+ messages in thread
From: Pasha Tatashin @ 2025-12-01 17:28 UTC (permalink / raw)
To: yukuai
Cc: Tarun Sahu, linux-raid, linux-scsi, linux-kernel, song, berrange,
neil, hch, mclapinski, khazhy
On Sat, Nov 29, 2025 at 8:58 PM Yu Kuai <yukuai@fnnas.com> wrote:
>
> 在 2025/11/22 3:14, Tarun Sahu 写道:
>
> > During system shutdown, the md driver registered notifier function
> > (md_notify_reboot) currently imposes a hardcoded one-second delay.
> >
> > This delay was introduced approximately 23 years ago and was likely
> > necessary for the hardware generation of that time. Proposing this
> > patch to make sure there are no known devices that need this delay.
> >
> > Signed-off-by: Tarun Sahu <tarunsahu@google.com>
> > ---
> > v2:
> > Added linux-scsi mailing list
> >
> > drivers/md/md.c | 11 -----------
> > 1 file changed, 11 deletions(-)
> >
> > diff --git a/drivers/md/md.c b/drivers/md/md.c
> > index b086cbf24086..66c4d66b4b86 100644
> > --- a/drivers/md/md.c
> > +++ b/drivers/md/md.c
> > @@ -9704,7 +9704,6 @@ static int md_notify_reboot(struct notifier_block *this,
> > unsigned long code, void *x)
> > {
> > struct mddev *mddev;
> > - int need_delay = 0;
> >
> > spin_lock(&all_mddevs_lock);
> > list_for_each_entry(mddev, &all_mddevs, all_mddevs) {
> > @@ -9718,21 +9717,11 @@ static int md_notify_reboot(struct notifier_block *this,
> > mddev->safemode = 2;
> > mddev_unlock(mddev);
> > }
> > - need_delay = 1;
> > spin_lock(&all_mddevs_lock);
> > mddev_put_locked(mddev);
> > }
> > spin_unlock(&all_mddevs_lock);
> >
> > - /*
> > - * certain more exotic SCSI devices are known to be
> > - * volatile wrt too early system reboots. While the
> > - * right place to handle this issue is the given
> > - * driver, we do want to have a safe RAID driver ...
> > - */
> > - if (need_delay)
> > - msleep(1000);
> > -
> > return NOTIFY_DONE;
> > }
> >
>
> Applied to md-6.19
Awesome, thanks.
Pasha
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-12-01 17:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-21 19:14 [RFC PATCH v2] md: remove legacy 1s delay in md_notify_reboot Tarun Sahu
2025-11-23 2:52 ` Yu Kuai
2025-11-30 1:58 ` Yu Kuai
2025-12-01 17:28 ` Pasha Tatashin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox