26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
From d6bc07b87a56804a8bc063c16ee0106cdb86f72d Mon Sep 17 00:00:00 2001
|
|
From: kjackiewicz <kjackiewicz@users.noreply.github.com>
|
|
Date: Tue, 30 May 2017 15:19:03 +0200
|
|
Subject: [PATCH] rules: watch metadata changes in mmcblk devices (#6050)
|
|
|
|
Formatting sd-cards does not trigger "change" uevents. As a result clients
|
|
using udev API don't get any updates afterwards and get outdated information
|
|
about the device.
|
|
|
|
Include mmcblk* in a match for watch option assignment.
|
|
(cherry picked from commit e74d0a9a5cdd8562aeaab1994ebd9c4cd07e82c3)
|
|
---
|
|
rules/60-block.rules | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/rules/60-block.rules b/rules/60-block.rules
|
|
index 42c75974a5..343fc06f85 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!="remove", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*|xvd*|pmem*", OPTIONS+="watch"
|
|
+ACTION!="remove", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*|xvd*|pmem*|mmcblk*", OPTIONS+="watch"
|