blob: 2cae0750badbcb8489dda31e82e9f838ee3937a0 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Xose Vazquez Perez <xose.vazquez@gmail.com>
3Date: Mon, 14 May 2018 17:30:17 +0200
4Subject: [PATCH] multipath-tools: configure hitachi ams2000 and hus100 as full
5 active arrays
6
7AMS2000 and HUS100 families are active/active arrays.
8
9Based on https://support.hitachivantara.com/download/epcra/df818913.pdf
10and internal hitachi docs.
11
12Cc: Matthias Rudolph <Matthias.Rudolph@hitachivantara.com>
13Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
14Cc: DM-DEV ML <dm-devel@redhat.com>
15Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
16Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
17---
18 libmultipath/hwtable.c | 10 ++++++++--
19 1 file changed, 8 insertions(+), 2 deletions(-)
20
21diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
22index 2ca6888..148f0ba 100644
23--- a/libmultipath/hwtable.c
24+++ b/libmultipath/hwtable.c
25@@ -398,13 +398,13 @@ static struct hwentry default_hw[] = {
26 * Mail : matthias.rudolph@hds.com
27 */
28 {
29- /* USP-V, HUS VM, VSP, VSP G1X00 and VSP GX00 families */
30+ /* USP-V, HUS VM, VSP, VSP G1X00 and VSP GX00 families / HP XP */
31 .vendor = "(HITACHI|HP)",
32 .product = "^OPEN-",
33 .pgpolicy = MULTIBUS,
34 },
35 {
36- /* AMS 2000 and HUS 100 families */
37+ /* AMS other than AMS 2000 */
38 .vendor = "HITACHI",
39 .product = "^DF",
40 .no_path_retry = NO_PATH_RETRY_QUEUE,
41@@ -412,6 +412,12 @@ static struct hwentry default_hw[] = {
42 .pgfailback = -FAILBACK_IMMEDIATE,
43 .prio_name = PRIO_HDS,
44 },
45+ {
46+ /* AMS 2000 and HUS 100 families */
47+ .vendor = "HITACHI",
48+ .product = "^DF600F",
49+ .pgpolicy = MULTIBUS,
50+ },
51 /*
52 * IBM
53 *
54--
552.7.4
56