0b94e5c7c2
Add 0026-fix-checker-time.patch * Once multipathd hit it max checker interval, it was reverting to to shortest checker interval Add 0027-RH-get-wwid.patch * Multipath wasn't correctly setting the multipath wwid when it read devices in from the kernel Add 0028-RHBZ-929078-refresh-udev-dev.patch * Make multipath try to get the UID of down devices. Also, on ev_add_path, make multipathd reinitialize existing devices that weren't fully initialized before.
18 lines
543 B
Diff
18 lines
543 B
Diff
---
|
|
libmultipath/structs_vec.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: multipath-tools-130222/libmultipath/structs_vec.c
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/libmultipath/structs_vec.c
|
|
+++ multipath-tools-130222/libmultipath/structs_vec.c
|
|
@@ -106,7 +106,7 @@ orphan_paths (vector pathvec, struct mul
|
|
static void
|
|
set_multipath_wwid (struct multipath * mpp)
|
|
{
|
|
- if (mpp->wwid)
|
|
+ if (strlen(mpp->wwid))
|
|
return;
|
|
|
|
dm_get_uuid(mpp->alias, mpp->wwid);
|