35f5570500
Update Source to upstream version 0.8.0 * Previous patches 0006 & 0007 are included in this commit Rename files * Previous patches 0008-0016 & 0100 are now patches 0018-0027 Add 0006-multipathd-Fix-miscounting-active-paths.patch Add 0007-multipathd-ignore-failed-wwid-recheck.patch * multipathd will no longer disable paths if it is unable to get their wwid on a change event Add 0008-libmutipath-continue-to-use-old-state-on-PATH_PENDIN.patch Add 0009-multipathd-use-update_path_groups-instead-of-reload_.patch Add 0010-multipath.conf-add-missing-options-to-man-page.patch Add 0011-libmultipath-add-get_uid-fallback-code-for-NVMe-devi.patch Add 0012-libmulitpath-cleanup-uid_fallback-code.patch Add 0013-multipathd-handle-changed-wwids-by-removal-and-addit.patch * if a path device changes wwid, it will now be removed and re-added to the correct multipath device. Add 0014-multipathd-remove-wwid_changed-path-attribute.patch Add 0015-multipathd-ignore-disable_changed_wwids.patch Add 0016-multipathd-Don-t-use-fallback-code-after-getting-wwi.patch Add 0017-libmultipath-silence-dm_is_mpath-error-messages.patch * The above 12 patches have been submitted upstream
47 lines
1.3 KiB
Diff
47 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Mon, 18 Mar 2019 13:12:34 +0100
|
|
Subject: [PATCH] multipathd: remove "wwid_changed" path attribute
|
|
|
|
This is now not needed any more.
|
|
|
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
libmultipath/structs.h | 1 -
|
|
multipathd/main.c | 6 ------
|
|
2 files changed, 7 deletions(-)
|
|
|
|
diff --git a/libmultipath/structs.h b/libmultipath/structs.h
|
|
index b794b0d..7879d76 100644
|
|
--- a/libmultipath/structs.h
|
|
+++ b/libmultipath/structs.h
|
|
@@ -280,7 +280,6 @@ struct path {
|
|
int fd;
|
|
int initialized;
|
|
int retriggers;
|
|
- int wwid_changed;
|
|
unsigned int path_failures;
|
|
time_t dis_reinstate_time;
|
|
int disable_reinstate;
|
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
|
index b3571d9..e4f95a0 100644
|
|
--- a/multipathd/main.c
|
|
+++ b/multipathd/main.c
|
|
@@ -2001,12 +2001,6 @@ check_path (struct vectors * vecs, struct path * pp, int ticks)
|
|
if (newstate == PATH_REMOVED)
|
|
newstate = PATH_DOWN;
|
|
|
|
- if (pp->wwid_changed) {
|
|
- condlog(2, "%s: path wwid has changed. Refusing to use",
|
|
- pp->dev);
|
|
- newstate = PATH_DOWN;
|
|
- }
|
|
-
|
|
if (newstate == PATH_WILD || newstate == PATH_UNCHECKED) {
|
|
condlog(2, "%s: unusable path (%s) - checker failed",
|
|
pp->dev, checker_state_name(newstate));
|
|
--
|
|
2.17.2
|
|
|