]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Allow partition aliases in vdev_id.conf (#5266)
authorBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 14 Oct 2016 23:11:16 +0000 (16:11 -0700)
committerGitHub <noreply@github.com>
Fri, 14 Oct 2016 23:11:16 +0000 (16:11 -0700)
When pools are assembled from partitions, vdev_id.conf aliases
do not work.  The directory /dev/disk/by-vdev is not created because
the associated udev rule for parsing vdev_id.conf is never called.
Extend to logic to match "disk" and "partition".

Patch-proposed-by: @sparksh
Reviewed-by: Ned Bass <bass6@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3859
Closes #5266

udev/rules.d/69-vdev.rules.in

index 5c2940af64773e4cea9942587951a9dfcc00773e..2b9e5d600062afbb09c6fb9d59fb932e7a8f2efe 100644 (file)
@@ -3,6 +3,7 @@
 #
 
 ENV{DEVTYPE}=="disk", IMPORT{program}="@udevdir@/vdev_id -d %k"
+ENV{DEVTYPE}=="partition", IMPORT{program}="@udevdir@/vdev_id -d %k"
 
 KERNEL=="*[!0-9]", ENV{SUBSYSTEM}=="block", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}"
 KERNEL=="*[0-9]", ENV{SUBSYSTEM}=="block", ENV{DEVTYPE}=="partition", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}-part%n"