diff options
Diffstat (limited to 'meta-oe/recipes-support/multipath-tools/files/0009-multipath-tools-configure-hitachi-ams2000-and-hus100.patch')
| -rw-r--r-- | meta-oe/recipes-support/multipath-tools/files/0009-multipath-tools-configure-hitachi-ams2000-and-hus100.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/multipath-tools/files/0009-multipath-tools-configure-hitachi-ams2000-and-hus100.patch b/meta-oe/recipes-support/multipath-tools/files/0009-multipath-tools-configure-hitachi-ams2000-and-hus100.patch new file mode 100644 index 0000000000..2cae0750ba --- /dev/null +++ b/meta-oe/recipes-support/multipath-tools/files/0009-multipath-tools-configure-hitachi-ams2000-and-hus100.patch | |||
| @@ -0,0 +1,56 @@ | |||
| 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 | |||
