f5f1bbe03e
Add 0067-RHBZ-1022899-fix-udev-partition-handling.patch * Make sure to wipe partition devices on change event if they weren't wiped on the device add event Add 0068-RHBZ-1034578-label-partition-devices.patch * Make sure that partition devices are labeled like the whole device Add 0069-UPBZ-1033791-improve-rdac-checker.patch * Use RTPG data in RDAC checker Add 0070-RHBZ-1036503-blacklist-td-devs.patch Add 0071-RHBZ-1031546-strip-dev.patch * make multipathd interactive commands able to handle /dev/<devnode> instead of just <devnode>
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
---
|
|
multipath/multipath.rules | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
Index: multipath-tools-130222/multipath/multipath.rules
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/multipath/multipath.rules
|
|
+++ multipath-tools-130222/multipath/multipath.rules
|
|
@@ -13,12 +13,13 @@ ACTION=="add", ENV{DM_MULTIPATH_DEVICE_P
|
|
PROGRAM=="$env{MPATH_SBIN_PATH}/multipath -c $tempnode", \
|
|
ENV{DM_MULTIPATH_DEVICE_PATH}="1", ENV{ID_FS_TYPE}="mpath_member"
|
|
|
|
-ENV{DM_MULTIPATH_DEVICE_PATH}=="1", \
|
|
+ENV{DM_MULTIPATH_DEVICE_PATH}=="1", ENV{DM_MULTIPATH_WIPE_PARTS}="1", \
|
|
RUN+="/sbin/partx -d --nr 1-1024 $env{DEVNAME}"
|
|
|
|
ACTION!="change", GOTO="update_timestamp"
|
|
IMPORT{db}="DM_MULTIPATH_TIMESTAMP"
|
|
IMPORT{db}="DM_MULTIPATH_DEVICE_PATH"
|
|
+IMPORT{db}="DM_MULTIPATH_WIPE_PARTS"
|
|
# Check if the device is part of a multipath device. the -T option just keeps
|
|
# the old result if the timestamp hasn't changed.
|
|
PROGRAM=="$env{MPATH_SBIN_PATH}/multipath -T $env{DM_MULTIPATH_TIMESTAMP}:$env{DM_MULTIPATH_DEVICE_PATH} -c $env{DEVNAME}", \
|
|
@@ -27,8 +28,13 @@ PROGRAM=="$env{MPATH_SBIN_PATH}/multipat
|
|
|
|
# If the device isn't part of a multipath device, clear this
|
|
ENV{DM_MULTIPATH_DEVICE_PATH}=""
|
|
+ENV{DM_MULTIPATH_WIPE_PARTS}=""
|
|
|
|
LABEL="update_timestamp"
|
|
+ENV{DM_MULTIPATH_DEVICE_PATH}=="1", ENV{DM_MULTIPATH_WIPE_PARTS}!="1", \
|
|
+ ENV{DM_MULTIPATH_WIPE_PARTS}="1", \
|
|
+ RUN+="/sbin/partx -d --nr 1-1024 $env{DEVNAME}"
|
|
+
|
|
IMPORT{file}="/run/multipathd/timestamp"
|
|
|
|
LABEL="check_kpartx"
|