]> git.proxmox.com Git - mirror_zfs-debian.git/commit
Call udevadm trigger more safely
authorNed Bass <bass6@llnl.gov>
Fri, 1 Apr 2011 16:47:05 +0000 (09:47 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 5 Apr 2011 20:00:51 +0000 (13:00 -0700)
commitfa417e57a68b7aa026ec5fd8c0471b6c60ca109f
treeb767b6b2906a67f1ba23283a3a8a4fb3dfbaa14e
parent34e4864009d32da5fe29393082a56b5272f65faa
Call udevadm trigger more safely

Some udev hooks are not designed to be idempotent, so calling udevadm
trigger outside of the distribution's initialization scripts can have
unexpected (and potentially dangerous) side effects.  For example, the
system time may change or devices may appear multiple times.  See Ubuntu
launchpad bug 320200 and this mailing list post for more details:

https://lists.ubuntu.com/archives/ubuntu-devel/2009-January/027260.html

To avoid these problems we call udevadm trigger with --action=change
--subsystem-match=block.  The first argument tells udev just to refresh
devices, and make sure everything's as it should be.  The second
argument limits the scope to block devices, so devices belonging to
other subsystems cannot be affected.

This doesn't fix the problem on older udev implementations that don't
provide udevadm but instead have udevtrigger as a standalone program.
In this case the above options aren't available so there's no way to
call call udevtrigger safely.  But we can live with that since this
issue only exists in optional test and helper scripts, and most
zfs-on-linux users are running newer systems anyways.
cmd/zpool_layout/zpool_layout
scripts/common.sh.in