diff options
author | Tom Gundersen <teg@jklm.no> | 2015-05-29 20:55:39 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-07-20 07:14:41 -0400 |
commit | 0617e636ab3f2a05cb22a3fd34c6d196cf19d4b7 (patch) | |
tree | 2d66f6536c17306bec48a31282b6d8027cb0282a /rules | |
parent | ebcaf4b310efc93a07a5263a88c49fa900d78126 (diff) |
rules: restore block watch after CHANGE events
When processing an event, the watch is disabled, make sure it is restorted after
a CHANGE event has been processed.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules')
-rw-r--r-- | rules/60-block.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-block.rules b/rules/60-block.rules index cfd5010bbd..a69d648023 100644 --- a/rules/60-block.rules +++ b/rules/60-block.rules @@ -8,4 +8,4 @@ ACTION=="add", SUBSYSTEM=="module", KERNEL=="block", ATTR{parameters/events_dfl_ ACTION=="change", SUBSYSTEM=="scsi", ENV{DEVTYPE}=="scsi_device", TEST=="block", ATTR{block/*/uevent}="change" # watch metadata changes, caused by tools closing the device node which was opened for writing -ACTION=="add", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*", OPTIONS+="watch" +ACTION!="remove", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*", OPTIONS+="watch" |