mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Reinstate detection of inappropriate uevent with DISK_RO set and suppress it.
We still need to detect this one! We're not so strict with CHANGE events as with the ADD events while applying filters in the rules so this one would pass and it would process the rules prematurely (because it appears *before* the actual CHANGE event used when resuming a DM device while setting read-only state at the same time).
This commit is contained in:
parent
2565ffad25
commit
b045f4fe9a
@ -1,5 +1,6 @@
|
||||
Version 1.02.54 -
|
||||
================================
|
||||
Reinstate detection of inappropriate uevent with DISK_RO set and suppress it.
|
||||
Fix segfault in regex matcher with characters of ordinal value > 127.
|
||||
Use built-in rule for device aliases: block/ < dm- < disk/ < mapper/ < other.
|
||||
Wait for node creation before displaying debug info in dmsetup.
|
||||
|
@ -42,6 +42,9 @@ ENV{DM_COOKIE}=="?*", IMPORT{program}="$env{DM_SBIN_PATH}/dmsetup udevflags $env
|
||||
# is not recommended.
|
||||
ACTION!="add|change", GOTO="dm_end"
|
||||
|
||||
# Rule out easy-to-detect inappropriate events first.
|
||||
ENV{DISK_RO}=="1", GOTO="dm_disable"
|
||||
|
||||
# There is no cookie set nor any flags encoded in events not originating
|
||||
# in libdevmapper so we need to detect this and try to behave correctly.
|
||||
# For such spurious events, regenerate all flags from current udev database content
|
||||
|
Loading…
Reference in New Issue
Block a user