dm-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [dm-devel] [PATCH 0/2] update hwtable
@ 2022-07-09 23:07 Xose Vazquez Perez
  2022-07-09 23:07 ` [dm-devel] [PATCH 1/2] multipath-tools: update Huawei OceanStor NVMe vendor id Xose Vazquez Perez
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Xose Vazquez Perez @ 2022-07-09 23:07 UTC (permalink / raw)
  Cc: Zou Ming, Xose Vazquez Perez, chengjike.cheng, DM-DEVEL ML,
	Christophe Varoqui, sunao.sun, jiangtao62, Zhouweigang,
	Martin Wilck

Xose Vazquez Perez (2):
  multipath-tools: update Huawei OceanStor NVMe vendor id
  multipath-tools: update "Generic NVMe" vendor regex in hwtable

 libmultipath/hwtable.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Cc: <chengjike.cheng@huawei.com>
Cc: <sunao.sun@huawei.com>
Cc: <jiangtao62@huawei.com>
Cc: Zhouweigang (Jack) <zhouweigang09@huawei.com>
Cc: Zou Ming <zouming.zouming@huawei.com>
Cc: Martin Wilck <mwilck@suse.com>
Cc: Benjamin Marzinski <bmarzins@redhat.com>
Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: DM-DEVEL ML <dm-devel@redhat.com>
Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
-- 
2.36.1

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


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

* [dm-devel] [PATCH 1/2] multipath-tools: update Huawei OceanStor NVMe vendor id
  2022-07-09 23:07 [dm-devel] [PATCH 0/2] update hwtable Xose Vazquez Perez
@ 2022-07-09 23:07 ` Xose Vazquez Perez
  2022-07-09 23:07 ` [dm-devel] [PATCH 2/2] multipath-tools: update "Generic NVMe" vendor regex in hwtable Xose Vazquez Perez
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Xose Vazquez Perez @ 2022-07-09 23:07 UTC (permalink / raw)
  Cc: Zou Ming, Xose Vazquez Perez, chengjike.cheng, DM-DEVEL ML,
	Christophe Varoqui, sunao.sun, jiangtao62, Zhouweigang,
	Martin Wilck

"NVME" in the doc, but "NVMe" is the real output:
(page 61-62): https://drive.google.com/file/d/1c5RK4GXX7ofZBFxTtZ_IN1qHyIjw5eR1
https://marc.info/?l=dm-devel&m=163393151312418
Use both, just in case.

Cc: <chengjike.cheng@huawei.com>
Cc: <sunao.sun@huawei.com>
Cc: <jiangtao62@huawei.com>
Cc: Zhouweigang (Jack) <zhouweigang09@huawei.com>
Cc: Zou Ming <zouming.zouming@huawei.com>
Cc: Martin Wilck <mwilck@suse.com>
Cc: Benjamin Marzinski <bmarzins@redhat.com>
Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: DM-DEVEL ML <dm-devel@redhat.com>
Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
---
 libmultipath/hwtable.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
index 513fa679..fc0252ba 100644
--- a/libmultipath/hwtable.c
+++ b/libmultipath/hwtable.c
@@ -1116,7 +1116,7 @@ static struct hwentry default_hw[] = {
 	},
 	{
 		/* OceanStor NVMe */
-		.vendor        = "NVME",
+		.vendor        = "NVM[eE]",
 		.product       = "Huawei-XSG1",
 		.checker_name  = DIRECTIO,
 		.no_path_retry = 12,
-- 
2.36.1

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


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

* [dm-devel] [PATCH 2/2] multipath-tools: update "Generic NVMe" vendor regex in hwtable
  2022-07-09 23:07 [dm-devel] [PATCH 0/2] update hwtable Xose Vazquez Perez
  2022-07-09 23:07 ` [dm-devel] [PATCH 1/2] multipath-tools: update Huawei OceanStor NVMe vendor id Xose Vazquez Perez
@ 2022-07-09 23:07 ` Xose Vazquez Perez
  2022-07-12 19:24 ` [dm-devel] [PATCH 0/2] update hwtable Martin Wilck
  2022-07-12 19:48 ` Benjamin Marzinski
  3 siblings, 0 replies; 5+ messages in thread
From: Xose Vazquez Perez @ 2022-07-09 23:07 UTC (permalink / raw)
  Cc: Christophe Varoqui, Xose Vazquez Perez, Martin Wilck, DM-DEVEL ML

to accept NVME and NVMe

Cc: Martin Wilck <mwilck@suse.com>
Cc: Benjamin Marzinski <bmarzins@redhat.com>
Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: DM-DEVEL ML <dm-devel@redhat.com>
Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
---
 libmultipath/hwtable.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c
index fc0252ba..c88fa09a 100644
--- a/libmultipath/hwtable.c
+++ b/libmultipath/hwtable.c
@@ -86,7 +86,7 @@ static struct hwentry default_hw[] = {
 	 */
 	{
 		/* Generic NVMe */
-		.vendor        = "NVME",
+		.vendor        = "NVM[eE]",
 		.product       = ".*",
 		.uid_attribute = DEFAULT_NVME_UID_ATTRIBUTE,
 		.checker_name  = NONE,
-- 
2.36.1

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


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

* Re: [dm-devel] [PATCH 0/2] update hwtable
  2022-07-09 23:07 [dm-devel] [PATCH 0/2] update hwtable Xose Vazquez Perez
  2022-07-09 23:07 ` [dm-devel] [PATCH 1/2] multipath-tools: update Huawei OceanStor NVMe vendor id Xose Vazquez Perez
  2022-07-09 23:07 ` [dm-devel] [PATCH 2/2] multipath-tools: update "Generic NVMe" vendor regex in hwtable Xose Vazquez Perez
@ 2022-07-12 19:24 ` Martin Wilck
  2022-07-12 19:48 ` Benjamin Marzinski
  3 siblings, 0 replies; 5+ messages in thread
From: Martin Wilck @ 2022-07-12 19:24 UTC (permalink / raw)
  To: Xose Vazquez Perez
  Cc: Zou Ming, chengjike.cheng, DM-DEVEL ML, sunao.sun,
	Christophe Varoqui, Zhouweigang, jiangtao62

On Sun, 2022-07-10 at 01:07 +0200, Xose Vazquez Perez wrote:
> Xose Vazquez Perez (2):
>   multipath-tools: update Huawei OceanStor NVMe vendor id
>   multipath-tools: update "Generic NVMe" vendor regex in hwtable
> 
>  libmultipath/hwtable.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

For the set:
Reviewed-by: Martin Wilck <mwilck@suse.com>


> 
> Cc: <chengjike.cheng@huawei.com>
> Cc: <sunao.sun@huawei.com>
> Cc: <jiangtao62@huawei.com>
> Cc: Zhouweigang (Jack) <zhouweigang09@huawei.com>
> Cc: Zou Ming <zouming.zouming@huawei.com>
> Cc: Martin Wilck <mwilck@suse.com>
> Cc: Benjamin Marzinski <bmarzins@redhat.com>
> Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
> Cc: DM-DEVEL ML <dm-devel@redhat.com>
> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


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

* Re: [dm-devel] [PATCH 0/2] update hwtable
  2022-07-09 23:07 [dm-devel] [PATCH 0/2] update hwtable Xose Vazquez Perez
                   ` (2 preceding siblings ...)
  2022-07-12 19:24 ` [dm-devel] [PATCH 0/2] update hwtable Martin Wilck
@ 2022-07-12 19:48 ` Benjamin Marzinski
  3 siblings, 0 replies; 5+ messages in thread
From: Benjamin Marzinski @ 2022-07-12 19:48 UTC (permalink / raw)
  To: Xose Vazquez Perez
  Cc: Zou Ming, chengjike.cheng, DM-DEVEL ML, sunao.sun,
	Christophe Varoqui, jiangtao62, Zhouweigang, Martin Wilck

On Sun, Jul 10, 2022 at 01:07:07AM +0200, Xose Vazquez Perez wrote:
> Xose Vazquez Perez (2):
>   multipath-tools: update Huawei OceanStor NVMe vendor id
>   multipath-tools: update "Generic NVMe" vendor regex in hwtable

For the set
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>

> 
>  libmultipath/hwtable.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Cc: <chengjike.cheng@huawei.com>
> Cc: <sunao.sun@huawei.com>
> Cc: <jiangtao62@huawei.com>
> Cc: Zhouweigang (Jack) <zhouweigang09@huawei.com>
> Cc: Zou Ming <zouming.zouming@huawei.com>
> Cc: Martin Wilck <mwilck@suse.com>
> Cc: Benjamin Marzinski <bmarzins@redhat.com>
> Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>
> Cc: DM-DEVEL ML <dm-devel@redhat.com>
> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
> -- 
> 2.36.1
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


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

end of thread, other threads:[~2022-07-15  7:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-09 23:07 [dm-devel] [PATCH 0/2] update hwtable Xose Vazquez Perez
2022-07-09 23:07 ` [dm-devel] [PATCH 1/2] multipath-tools: update Huawei OceanStor NVMe vendor id Xose Vazquez Perez
2022-07-09 23:07 ` [dm-devel] [PATCH 2/2] multipath-tools: update "Generic NVMe" vendor regex in hwtable Xose Vazquez Perez
2022-07-12 19:24 ` [dm-devel] [PATCH 0/2] update hwtable Martin Wilck
2022-07-12 19:48 ` Benjamin Marzinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).