816bea4c19
Add 0021-RHBZ-919119-respect-kernel-cmdline.patch * keep the multipath.rules udev file from running and multipathd from starting if nompath is on the kernel command line Add 0022-RH-multipathd-check-wwids.patch * Whenever multipath runs configure, it will check the wwids, and add any missing ones to the wwids file Add 0023-RH-multipath-wipe-wwid.patch * multipath's -w command will remove a wwid from the wwids file Add 0024-RH-multipath-wipe-wwids.patch * multipath's -W command will set reset the wwids file to just the current devices Add 0025-UPBZ-916668_add_maj_min.patch Resolves: bz #919119
30 lines
815 B
Diff
30 lines
815 B
Diff
---
|
|
multipathd/main.c | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
Index: multipath-tools-130222/multipathd/main.c
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/multipathd/main.c
|
|
+++ multipath-tools-130222/multipathd/main.c
|
|
@@ -537,7 +537,8 @@ rescan:
|
|
goto fail_map;
|
|
|
|
if (retries >= 0) {
|
|
- condlog(2, "%s path added to devmap %s", pp->dev, mpp->alias);
|
|
+ condlog(2, "%s [%s]: path added to devmap %s",
|
|
+ pp->dev, pp->dev_t, mpp->alias);
|
|
return 0;
|
|
}
|
|
else
|
|
@@ -642,8 +643,8 @@ ev_remove_path (struct path *pp, struct
|
|
}
|
|
sync_map_state(mpp);
|
|
|
|
- condlog(2, "%s: path removed from map %s",
|
|
- pp->dev, mpp->alias);
|
|
+ condlog(2, "%s [%s]: path removed from map %s",
|
|
+ pp->dev, pp->dev_t, mpp->alias);
|
|
}
|
|
}
|
|
|