When the option 'user_friendly_names' is set we should provide both symlinks, the persistent one and that one generated for user_friendly_names. Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- kpartx/kpartx.rules | 4 ++++ kpartx/kpartx_id | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/kpartx/kpartx.rules b/kpartx/kpartx.rules index ba5c6cb..8640094 100644 --- a/kpartx/kpartx.rules +++ b/kpartx/kpartx.rules @@ -18,10 +18,14 @@ OPTIONS="link_priority=50" # Create persistent links for multipath tables ENV{DM_UUID}=="mpath-*", \ SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_NAME}" +ENV{DM_MPATH}=="?*", ENV{DM_PART}!="?*", \ + SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_MPATH}" # Create persistent links for partitions ENV{DM_PART}=="?*", \ SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_NAME}-part$env{DM_PART}" +ENV{DM_MPATH}=="?*", ENV{DM_PART}=="?*", \ + SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_MPATH}-part$env{DM_PART}" # Create dm tables for partitions ENV{DM_STATE}!="SUSPENDED", ENV{DM_UUID}=="mpath-*", \ diff --git a/kpartx/kpartx_id b/kpartx/kpartx_id index fa21b5b..afb589c 100644 --- a/kpartx/kpartx_id +++ b/kpartx/kpartx_id @@ -55,6 +55,9 @@ if [ "$dmtbl" = "part" ] ; then # The name of the kpartx table is the name of the parent table dmname=$($DMSETUP info -c --noheadings -o name -u $dmuuid) echo "DM_NAME=$dmname" + if [ "$dmname" != ${dmuuid#mpath-} ] ; then + echo "DM_MPATH=${dmuuid#mpath-}" + fi # We need the dependencies of the parent table to figure out # the type if the parent is a multipath table case "$dmuuid" in @@ -63,7 +66,9 @@ if [ "$dmtbl" = "part" ] ; then ;; esac elif [ "$dmtbl" = "mpath" ] ; then - dmname=$tblname + if [ -n "$DM_NAME" -a "$DM_NAME" != "$dmuuid" ] ; then + echo "DM_MPATH=$dmuuid" + fi # We need the dependencies of the table to figure out the type dmdeps=$($DMSETUP deps -u $UUID) elif [ "$dmtbl" = "dmraid" ] ; then -- 1.7.10.4 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel