Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| 2 | From: Xose Vazquez Perez <xose.vazquez@gmail.com> |
| 3 | Date: Mon, 14 May 2018 17:30:17 +0200 |
| 4 | Subject: [PATCH] multipath-tools: configure hitachi ams2000 and hus100 as full |
| 5 | active arrays |
| 6 | |
| 7 | AMS2000 and HUS100 families are active/active arrays. |
| 8 | |
| 9 | Based on https://support.hitachivantara.com/download/epcra/df818913.pdf |
| 10 | and internal hitachi docs. |
| 11 | |
| 12 | Cc: Matthias Rudolph <Matthias.Rudolph@hitachivantara.com> |
| 13 | Cc: Christophe Varoqui <christophe.varoqui@opensvc.com> |
| 14 | Cc: DM-DEV ML <dm-devel@redhat.com> |
| 15 | Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com> |
| 16 | Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com> |
| 17 | --- |
| 18 | libmultipath/hwtable.c | 10 ++++++++-- |
| 19 | 1 file changed, 8 insertions(+), 2 deletions(-) |
| 20 | |
| 21 | diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c |
| 22 | index 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 | -- |
| 55 | 2.7.4 |
| 56 | |