ef9089f4e8
Update to the head of the upstream staging branch * Patches 0005-0042 are from the upstream staging branch * Previous patches 0005 & 0006 are now patches 0023 & 0005 Rename redhat patches * Previous patches 0007-0017 are now patches 0043-0053 Change from using readline to libedit * readline is licensed GPL v3, and multipathd includes code licensed gpl v2. Remove README.alua * information moved to README.md
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Date: Tue, 7 Jun 2022 17:45:01 -0500
|
|
Subject: [PATCH] libmultipath: unset detect_checker for clariion / Unity
|
|
arrays
|
|
|
|
Dell EMC would like to always use the emc_clariion checker. Currently
|
|
detect_checker will switch the checker to TUR for Unity arrays.
|
|
This can cause problems on some setups with replicated Unity LUNs,
|
|
which are handled correctly the the emc_checker, but not the TUR
|
|
checker.
|
|
|
|
Cc: vincent.chen1@dell.com
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Reviewed-by: Martin Wilck <mwilck@suse.com>
|
|
---
|
|
libmultipath/hwtable.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
|
|
index c88fa09a..2085aba5 100644
|
|
--- a/libmultipath/hwtable.c
|
|
+++ b/libmultipath/hwtable.c
|
|
@@ -350,6 +350,7 @@ static struct hwentry default_hw[] = {
|
|
.no_path_retry = (300 / DEFAULT_CHECKINT),
|
|
.checker_name = EMC_CLARIION,
|
|
.prio_name = PRIO_EMC,
|
|
+ .detect_checker = DETECT_CHECKER_OFF,
|
|
},
|
|
{
|
|
/* Invista / VPLEX */
|