diff options
author | Kay Sievers <kay@vrfy.org> | 2015-03-12 16:09:46 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-03-18 15:13:47 -0400 |
commit | 586a3da8327b6ee06e193917e91bac2080ac0137 (patch) | |
tree | 4ec75f698beae9f3ada6ef47210aa9279965337a /rules/60-block.rules | |
parent | d2313434acc1cf5387637e72f76c2ebe36d523e1 (diff) |
rules: move block device rules to its own rules file
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules/60-block.rules')
-rw-r--r-- | rules/60-block.rules | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rules/60-block.rules b/rules/60-block.rules new file mode 100644 index 0000000000..de41499cb7 --- /dev/null +++ b/rules/60-block.rules @@ -0,0 +1,11 @@ +# do not edit this file, it will be overwritten on update + +# enable in-kernel media-presence polling +ACTION=="add", SUBSYSTEM=="module", KERNEL=="block", ATTR{parameters/events_dfl_poll_msecs}=="0", \ + ATTR{parameters/events_dfl_poll_msecs}="2000" + +# forward scsi device event to corresponding block device +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" |