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>
18 lines
600 B
Diff
18 lines
600 B
Diff
---
|
|
libmultipath/blacklist.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: multipath-tools-130222/libmultipath/blacklist.c
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/libmultipath/blacklist.c
|
|
+++ multipath-tools-130222/libmultipath/blacklist.c
|
|
@@ -163,7 +163,7 @@ setup_default_blist (struct config * con
|
|
if (store_ble(conf->blist_devnode, str, ORIGIN_DEFAULT))
|
|
return 1;
|
|
|
|
- str = STRDUP("^hd[a-z]");
|
|
+ str = STRDUP("^(td|hd)[a-z]");
|
|
if (!str)
|
|
return 1;
|
|
if (store_ble(conf->blist_devnode, str, ORIGIN_DEFAULT))
|