mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
b226ddfc1b
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
15 lines
739 B
Plaintext
15 lines
739 B
Plaintext
# 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!="remove", SUBSYSTEM=="block", KERNEL=="loop*|nvme*|sd*|vd*|xvd*|pmem*", OPTIONS+="watch"
|
|
|
|
# set noop on solid state drives
|
|
SUBSYSTEM=="block", ACTION=="add", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="noop"
|