All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] udev: adapt rules to systemd v247
@ 2022-01-14 15:44 Mariusz Tkaczyk
  2022-01-19 13:22 ` Jes Sorensen
  2022-03-31 15:41 ` Jes Sorensen
  0 siblings, 2 replies; 5+ messages in thread
From: Mariusz Tkaczyk @ 2022-01-14 15:44 UTC (permalink / raw)
  To: jes; +Cc: linux-raid

New events have been added in kernel 4.14 ("bind" and "unbind").
Systemd maintainer suggests to modify "add|change" branches.
This patches implements their suggestions. There is no issue yet because
new event types are not used in md.

Please see systemd announcement for details[1].

[1] https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html

Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
---
 udev-md-raid-arrays.rules        | 2 +-
 udev-md-raid-assembly.rules      | 5 +++--
 udev-md-raid-safe-timeouts.rules | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/udev-md-raid-arrays.rules b/udev-md-raid-arrays.rules
index 13c9076e..2967ace1 100644
--- a/udev-md-raid-arrays.rules
+++ b/udev-md-raid-arrays.rules
@@ -3,7 +3,7 @@
 SUBSYSTEM!="block", GOTO="md_end"
 
 # handle md arrays
-ACTION!="add|change", GOTO="md_end"
+ACTION=="remove", GOTO="md_end"
 KERNEL!="md*", GOTO="md_end"
 
 # partitions have no md/{array_state,metadata_version}, but should not
diff --git a/udev-md-raid-assembly.rules b/udev-md-raid-assembly.rules
index d668cddd..39b4344b 100644
--- a/udev-md-raid-assembly.rules
+++ b/udev-md-raid-assembly.rules
@@ -30,8 +30,9 @@ LABEL="md_inc"
 
 # remember you can limit what gets auto/incrementally assembled by
 # mdadm.conf(5)'s 'AUTO' and selectively whitelist using 'ARRAY'
-ACTION=="add|change", IMPORT{program}="BINDIR/mdadm --incremental --export $devnode --offroot $env{DEVLINKS}"
-ACTION=="add|change", ENV{MD_STARTED}=="*unsafe*", ENV{MD_FOREIGN}=="no", ENV{SYSTEMD_WANTS}+="mdadm-last-resort@$env{MD_DEVICE}.timer"
+ACTION!="remove", IMPORT{program}="BINDIR/mdadm --incremental --export $devnode --offroot $env{DEVLINKS}"
+ACTION!="remove", ENV{MD_STARTED}=="*unsafe*", ENV{MD_FOREIGN}=="no", ENV{SYSTEMD_WANTS}+="mdadm-last-resort@$env{MD_DEVICE}.timer"
+
 ACTION=="remove", ENV{ID_PATH}=="?*", RUN+="BINDIR/mdadm -If $name --path $env{ID_PATH}"
 ACTION=="remove", ENV{ID_PATH}!="?*", RUN+="BINDIR/mdadm -If $name"
 
diff --git a/udev-md-raid-safe-timeouts.rules b/udev-md-raid-safe-timeouts.rules
index 12bdcaa8..2e185cee 100644
--- a/udev-md-raid-safe-timeouts.rules
+++ b/udev-md-raid-safe-timeouts.rules
@@ -50,7 +50,7 @@ ENV{DEVTYPE}!="partition", GOTO="md_timeouts_end"
 
 IMPORT{program}="/sbin/mdadm --examine --export $devnode"
 
-ACTION=="add|change", \
+ACTION!="remove", \
   ENV{ID_FS_TYPE}=="linux_raid_member", \
   ENV{MD_LEVEL}=="raid[1-9]*", \
   TEST=="/sys/block/$parent/device/timeout", \
-- 
2.26.2


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

* Re: [PATCH] udev: adapt rules to systemd v247
  2022-01-14 15:44 [PATCH] udev: adapt rules to systemd v247 Mariusz Tkaczyk
@ 2022-01-19 13:22 ` Jes Sorensen
  2022-01-20  7:58   ` Mariusz Tkaczyk
  2022-03-31 15:41 ` Jes Sorensen
  1 sibling, 1 reply; 5+ messages in thread
From: Jes Sorensen @ 2022-01-19 13:22 UTC (permalink / raw)
  To: Mariusz Tkaczyk; +Cc: linux-raid

On 1/14/22 10:44, Mariusz Tkaczyk wrote:
> New events have been added in kernel 4.14 ("bind" and "unbind").
> Systemd maintainer suggests to modify "add|change" branches.
> This patches implements their suggestions. There is no issue yet because
> new event types are not used in md.
> 
> Please see systemd announcement for details[1].
> 
> [1] https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html
> 
> Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>

Hi Mariusz,

It looks fine to me, but it does raise the question how does this change
affect anyone building mdadm running an older systemd since you're
removing most of the add|change triggers in this patch?

Thanks,
Jes

> ---
>  udev-md-raid-arrays.rules        | 2 +-
>  udev-md-raid-assembly.rules      | 5 +++--
>  udev-md-raid-safe-timeouts.rules | 2 +-
>  3 files changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/udev-md-raid-arrays.rules b/udev-md-raid-arrays.rules
> index 13c9076e..2967ace1 100644
> --- a/udev-md-raid-arrays.rules
> +++ b/udev-md-raid-arrays.rules
> @@ -3,7 +3,7 @@
>  SUBSYSTEM!="block", GOTO="md_end"
>  
>  # handle md arrays
> -ACTION!="add|change", GOTO="md_end"
> +ACTION=="remove", GOTO="md_end"
>  KERNEL!="md*", GOTO="md_end"
>  
>  # partitions have no md/{array_state,metadata_version}, but should not
> diff --git a/udev-md-raid-assembly.rules b/udev-md-raid-assembly.rules
> index d668cddd..39b4344b 100644
> --- a/udev-md-raid-assembly.rules
> +++ b/udev-md-raid-assembly.rules
> @@ -30,8 +30,9 @@ LABEL="md_inc"
>  
>  # remember you can limit what gets auto/incrementally assembled by
>  # mdadm.conf(5)'s 'AUTO' and selectively whitelist using 'ARRAY'
> -ACTION=="add|change", IMPORT{program}="BINDIR/mdadm --incremental --export $devnode --offroot $env{DEVLINKS}"
> -ACTION=="add|change", ENV{MD_STARTED}=="*unsafe*", ENV{MD_FOREIGN}=="no", ENV{SYSTEMD_WANTS}+="mdadm-last-resort@$env{MD_DEVICE}.timer"
> +ACTION!="remove", IMPORT{program}="BINDIR/mdadm --incremental --export $devnode --offroot $env{DEVLINKS}"
> +ACTION!="remove", ENV{MD_STARTED}=="*unsafe*", ENV{MD_FOREIGN}=="no", ENV{SYSTEMD_WANTS}+="mdadm-last-resort@$env{MD_DEVICE}.timer"
> +
>  ACTION=="remove", ENV{ID_PATH}=="?*", RUN+="BINDIR/mdadm -If $name --path $env{ID_PATH}"
>  ACTION=="remove", ENV{ID_PATH}!="?*", RUN+="BINDIR/mdadm -If $name"
>  
> diff --git a/udev-md-raid-safe-timeouts.rules b/udev-md-raid-safe-timeouts.rules
> index 12bdcaa8..2e185cee 100644
> --- a/udev-md-raid-safe-timeouts.rules
> +++ b/udev-md-raid-safe-timeouts.rules
> @@ -50,7 +50,7 @@ ENV{DEVTYPE}!="partition", GOTO="md_timeouts_end"
>  
>  IMPORT{program}="/sbin/mdadm --examine --export $devnode"
>  
> -ACTION=="add|change", \
> +ACTION!="remove", \
>    ENV{ID_FS_TYPE}=="linux_raid_member", \
>    ENV{MD_LEVEL}=="raid[1-9]*", \
>    TEST=="/sys/block/$parent/device/timeout", \
> 


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

* Re: [PATCH] udev: adapt rules to systemd v247
  2022-01-19 13:22 ` Jes Sorensen
@ 2022-01-20  7:58   ` Mariusz Tkaczyk
  2022-03-22 15:32     ` Mariusz Tkaczyk
  0 siblings, 1 reply; 5+ messages in thread
From: Mariusz Tkaczyk @ 2022-01-20  7:58 UTC (permalink / raw)
  To: Jes Sorensen; +Cc: linux-raid

On Wed, 19 Jan 2022 08:22:14 -0500
Jes Sorensen <jes@trained-monkey.org> wrote:

> On 1/14/22 10:44, Mariusz Tkaczyk wrote:
> > New events have been added in kernel 4.14 ("bind" and "unbind").
> > Systemd maintainer suggests to modify "add|change" branches.
> > This patches implements their suggestions. There is no issue yet
> > because new event types are not used in md.
> > 
> > Please see systemd announcement for details[1].
> > 
> > [1]
> > https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html
> > 
> > Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
> 
> Hi Mariusz,
> 
> It looks fine to me, but it does raise the question how does this
> change affect anyone building mdadm running an older systemd since
> you're removing most of the add|change triggers in this patch?
> 
Hi Jes,

Before 4.14 we had tree types of events:
add, change, remove

After 4.14 we have five types of events:
add, change, remove, bind, unbind

I just changed "add|change" to != "remove". Instead verifying positive
cases, I excluded the negative one. The result is the same. I can't see
any risk of regression here for older systemd.

Thanks,
Mariusz

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

* Re: [PATCH] udev: adapt rules to systemd v247
  2022-01-20  7:58   ` Mariusz Tkaczyk
@ 2022-03-22 15:32     ` Mariusz Tkaczyk
  0 siblings, 0 replies; 5+ messages in thread
From: Mariusz Tkaczyk @ 2022-03-22 15:32 UTC (permalink / raw)
  To: Coly Li; +Cc: Jes Sorensen, linux-raid

Hi Coly,
Could you review?

Thanks,
Mariusz

On Thu, 20 Jan 2022 08:58:20 +0100
Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com> wrote:

> On Wed, 19 Jan 2022 08:22:14 -0500
> Jes Sorensen <jes@trained-monkey.org> wrote:
> 
> > On 1/14/22 10:44, Mariusz Tkaczyk wrote:  
> > > New events have been added in kernel 4.14 ("bind" and "unbind").
> > > Systemd maintainer suggests to modify "add|change" branches.
> > > This patches implements their suggestions. There is no issue yet
> > > because new event types are not used in md.
> > > 
> > > Please see systemd announcement for details[1].
> > > 
> > > [1]
> > > https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html
> > > 
> > > Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>  
> > 
> > Hi Mariusz,
> > 
> > It looks fine to me, but it does raise the question how does this
> > change affect anyone building mdadm running an older systemd since
> > you're removing most of the add|change triggers in this patch?
> >   
> Hi Jes,
> 
> Before 4.14 we had tree types of events:
> add, change, remove
> 
> After 4.14 we have five types of events:
> add, change, remove, bind, unbind
> 
> I just changed "add|change" to != "remove". Instead verifying positive
> cases, I excluded the negative one. The result is the same. I can't
> see any risk of regression here for older systemd.
> 
> Thanks,
> Mariusz


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

* Re: [PATCH] udev: adapt rules to systemd v247
  2022-01-14 15:44 [PATCH] udev: adapt rules to systemd v247 Mariusz Tkaczyk
  2022-01-19 13:22 ` Jes Sorensen
@ 2022-03-31 15:41 ` Jes Sorensen
  1 sibling, 0 replies; 5+ messages in thread
From: Jes Sorensen @ 2022-03-31 15:41 UTC (permalink / raw)
  To: Mariusz Tkaczyk; +Cc: linux-raid

On 1/14/22 10:44, Mariusz Tkaczyk wrote:
> New events have been added in kernel 4.14 ("bind" and "unbind").
> Systemd maintainer suggests to modify "add|change" branches.
> This patches implements their suggestions. There is no issue yet because
> new event types are not used in md.
> 
> Please see systemd announcement for details[1].
> 
> [1] https://lists.freedesktop.org/archives/systemd-devel/2020-November/045646.html
> 
> Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>

Applied!

Thanks,
Jes



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

end of thread, other threads:[~2022-03-31 15:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-14 15:44 [PATCH] udev: adapt rules to systemd v247 Mariusz Tkaczyk
2022-01-19 13:22 ` Jes Sorensen
2022-01-20  7:58   ` Mariusz Tkaczyk
2022-03-22 15:32     ` Mariusz Tkaczyk
2022-03-31 15:41 ` Jes Sorensen

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.