All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] multipath-tools: add Promise/Vess to hwtable
@ 2016-11-21 22:17 Xose Vazquez Perez
  2016-11-21 22:17 ` [PATCH] multipath-tools: convert Promise/VTrak to ALUA Xose Vazquez Perez
  2016-11-26  8:59 ` [PATCH] multipath-tools: add Promise/Vess to hwtable Christophe Varoqui
  0 siblings, 2 replies; 4+ messages in thread
From: Xose Vazquez Perez @ 2016-11-21 22:17 UTC (permalink / raw)
  Cc: device-mapper development, Xose Vazquez Perez

Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: device-mapper development <dm-devel@redhat.com>
Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
---
 libmultipath/hwtable.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
index c46b072..efccca9 100644
--- a/libmultipath/hwtable.c
+++ b/libmultipath/hwtable.c
@@ -1037,6 +1037,16 @@ static struct hwentry default_hw[] = {
 		.pgpolicy      = MULTIBUS,
 		.no_path_retry = 30,
 	},
+	{
+		.vendor        = "Promise",
+		.product       = "Vess",
+		.bl_product    = "Vess V-LUN",
+		.hwhandler     = "1 alua",
+		.pgpolicy      = GROUP_BY_PRIO,
+		.pgfailback    = -FAILBACK_IMMEDIATE,
+		.prio_name     = PRIO_ALUA,
+		.no_path_retry = 30,
+	},
 	/*
 	 * Infortrend Technology
 	 */
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] multipath-tools: convert Promise/VTrak to ALUA
  2016-11-21 22:17 [PATCH] multipath-tools: add Promise/Vess to hwtable Xose Vazquez Perez
@ 2016-11-21 22:17 ` Xose Vazquez Perez
  2016-11-26  9:01   ` Christophe Varoqui
  2016-11-26  8:59 ` [PATCH] multipath-tools: add Promise/Vess to hwtable Christophe Varoqui
  1 sibling, 1 reply; 4+ messages in thread
From: Xose Vazquez Perez @ 2016-11-21 22:17 UTC (permalink / raw)
  Cc: device-mapper development, Xose Vazquez Perez

It's also supported.

Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: device-mapper development <dm-devel@redhat.com>
Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
---
 libmultipath/hwtable.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
index efccca9..eb7a5a0 100644
--- a/libmultipath/hwtable.c
+++ b/libmultipath/hwtable.c
@@ -1034,7 +1034,10 @@ static struct hwentry default_hw[] = {
 		.vendor        = "Promise",
 		.product       = "VTrak",
 		.bl_product    = "VTrak V-LUN",
-		.pgpolicy      = MULTIBUS,
+		.hwhandler     = "1 alua",
+		.pgpolicy      = GROUP_BY_PRIO,
+		.pgfailback    = -FAILBACK_IMMEDIATE,
+		.prio_name     = PRIO_ALUA,
 		.no_path_retry = 30,
 	},
 	{
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] multipath-tools: add Promise/Vess to hwtable
  2016-11-21 22:17 [PATCH] multipath-tools: add Promise/Vess to hwtable Xose Vazquez Perez
  2016-11-21 22:17 ` [PATCH] multipath-tools: convert Promise/VTrak to ALUA Xose Vazquez Perez
@ 2016-11-26  8:59 ` Christophe Varoqui
  1 sibling, 0 replies; 4+ messages in thread
From: Christophe Varoqui @ 2016-11-26  8:59 UTC (permalink / raw)
  To: Xose Vazquez Perez; +Cc: device-mapper development


[-- Attachment #1.1: Type: text/plain, Size: 1161 bytes --]

Applied, thanks.

On Mon, Nov 21, 2016 at 11:17 PM, Xose Vazquez Perez <xose.vazquez@gmail.com
> wrote:

> Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
> Cc: device-mapper development <dm-devel@redhat.com>
> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
> ---
>  libmultipath/hwtable.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
>
> diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
> index c46b072..efccca9 100644
> --- a/libmultipath/hwtable.c
> +++ b/libmultipath/hwtable.c
> @@ -1037,6 +1037,16 @@ static struct hwentry default_hw[] = {
>                 .pgpolicy      = MULTIBUS,
>                 .no_path_retry = 30,
>         },
> +       {
> +               .vendor        = "Promise",
> +               .product       = "Vess",
> +               .bl_product    = "Vess V-LUN",
> +               .hwhandler     = "1 alua",
> +               .pgpolicy      = GROUP_BY_PRIO,
> +               .pgfailback    = -FAILBACK_IMMEDIATE,
> +               .prio_name     = PRIO_ALUA,
> +               .no_path_retry = 30,
> +       },
>         /*
>          * Infortrend Technology
>          */
> --
> 2.10.2
>
>

[-- Attachment #1.2: Type: text/html, Size: 1939 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] multipath-tools: convert Promise/VTrak to ALUA
  2016-11-21 22:17 ` [PATCH] multipath-tools: convert Promise/VTrak to ALUA Xose Vazquez Perez
@ 2016-11-26  9:01   ` Christophe Varoqui
  0 siblings, 0 replies; 4+ messages in thread
From: Christophe Varoqui @ 2016-11-26  9:01 UTC (permalink / raw)
  To: Xose Vazquez Perez; +Cc: device-mapper development


[-- Attachment #1.1: Type: text/plain, Size: 1082 bytes --]

Applied, thanks.

On Mon, Nov 21, 2016 at 11:17 PM, Xose Vazquez Perez <xose.vazquez@gmail.com
> wrote:

> It's also supported.
>
> Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
> Cc: device-mapper development <dm-devel@redhat.com>
> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
> ---
>  libmultipath/hwtable.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
> index efccca9..eb7a5a0 100644
> --- a/libmultipath/hwtable.c
> +++ b/libmultipath/hwtable.c
> @@ -1034,7 +1034,10 @@ static struct hwentry default_hw[] = {
>                 .vendor        = "Promise",
>                 .product       = "VTrak",
>                 .bl_product    = "VTrak V-LUN",
> -               .pgpolicy      = MULTIBUS,
> +               .hwhandler     = "1 alua",
> +               .pgpolicy      = GROUP_BY_PRIO,
> +               .pgfailback    = -FAILBACK_IMMEDIATE,
> +               .prio_name     = PRIO_ALUA,
>                 .no_path_retry = 30,
>         },
>         {
> --
> 2.10.2
>
>

[-- Attachment #1.2: Type: text/html, Size: 1830 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-26  9:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-21 22:17 [PATCH] multipath-tools: add Promise/Vess to hwtable Xose Vazquez Perez
2016-11-21 22:17 ` [PATCH] multipath-tools: convert Promise/VTrak to ALUA Xose Vazquez Perez
2016-11-26  9:01   ` Christophe Varoqui
2016-11-26  8:59 ` [PATCH] multipath-tools: add Promise/Vess to hwtable Christophe Varoqui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.