dm-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* multipath-tools/libmultipath hwtable.c
@ 2008-01-02 23:38 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2008-01-02 23:38 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2008-01-02 23:38:43

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Use the hp_sw hardware handler. Fixes bz #226791

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.9&r2=1.20.2.10

--- multipath-tools/libmultipath/hwtable.c	2007/10/29 20:03:08	1.20.2.9
+++ multipath-tools/libmultipath/hwtable.c	2008/01/02 23:38:43	1.20.2.10
@@ -76,7 +76,7 @@
 	},
 	{
 		.vendor        = "(COMPAQ|HP)",
-		.product       = "MSA1.*",
+		.product       = "(MSA|HSV)1.*",
 		.getuid        = DEFAULT_GETUID,
 		.getprio       = NULL,
 		.features      = DEFAULT_FEATURES,
@@ -91,7 +91,7 @@
 	},
 	{
 		.vendor        = "(COMPAQ|HP)",
-		.product       = "HSV(1|2).*",
+		.product       = "HSV2.*",
 		.getuid        = DEFAULT_GETUID,
 		.getprio       = "/sbin/mpath_prio_alua %n",
 		.features      = DEFAULT_FEATURES,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2012-01-16 22:22 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2012-01-16 22:22 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2012-01-16 22:22:05

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix for bzs 781480/742906. change config for HP P2000 SAS

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.36&r2=1.20.2.37

--- multipath-tools/libmultipath/hwtable.c	2011/10/26 04:55:18	1.20.2.36
+++ multipath-tools/libmultipath/hwtable.c	2012/01/16 22:22:05	1.20.2.37
@@ -173,7 +173,7 @@
 	{
                  /* HP P2000 product family */
                 .vendor        = "HP",
-                .product       = "P2000 G3 FC|P2000G3 FC/iSCSI|P2000 G3 SAS|P2000 G3 iSCSI",
+                .product       = "P2000 G3 FC|P2000G3 FC/iSCSI|P2000 G3 iSCSI",
                 .getuid        = DEFAULT_GETUID,
                 .getprio       = "/sbin/mpath_prio_alua /dev/%n",
                 .features      = DEFAULT_FEATURES,
@@ -187,6 +187,22 @@
                 .checker_name  = TUR,
         },
 	{
+		/* HP P2000 SAS */
+		.vendor        = "HP",
+		.product       = "P2000 G3 SAS",
+		.getuid        = "/sbin/cciss_id /block/%n",
+		.getprio       = "/sbin/mpath_prio_alua /dev/%c",
+		.features      = DEFAULT_FEATURES,
+		.hwhandler     = DEFAULT_HWHANDLER,
+		.selector      = DEFAULT_SELECTOR,
+		.pgpolicy      = GROUP_BY_PRIO,
+		.pgfailback    = -FAILBACK_IMMEDIATE,
+		.rr_weight     = RR_WEIGHT_NONE,
+		.no_path_retry = 18,
+		.minio         = 100,
+		.checker_name  = TUR,
+	},
+	{
                  /* HP SVSP Active-Standby */
                 .vendor        = "HP",
                 .product       = "HSVX700",

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2011-10-26  4:55 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2011-10-26  4:55 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2011-10-26 04:55:18

Modified files:
	libmultipath   : hwtable.c 

Log message:
	fix for bz#742906. Add more HP P2000 product strings.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.35&r2=1.20.2.36

--- multipath-tools/libmultipath/hwtable.c	2011/03/07 05:19:38	1.20.2.35
+++ multipath-tools/libmultipath/hwtable.c	2011/10/26 04:55:18	1.20.2.36
@@ -173,7 +173,7 @@
 	{
                  /* HP P2000 product family */
                 .vendor        = "HP",
-                .product       = "P2000 G3 FC",
+                .product       = "P2000 G3 FC|P2000G3 FC/iSCSI|P2000 G3 SAS|P2000 G3 iSCSI",
                 .getuid        = DEFAULT_GETUID,
                 .getprio       = "/sbin/mpath_prio_alua /dev/%n",
                 .features      = DEFAULT_FEATURES,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2009-11-04 21:47 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2009-11-04 21:47 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2009-11-04 21:47:06

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix fox bz #512243. Add default configuration for IBM Power Virtual SCSI
	devices. Already upstream.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.23&r2=1.20.2.24

--- multipath-tools/libmultipath/hwtable.c	2009/09/28 18:41:20	1.20.2.23
+++ multipath-tools/libmultipath/hwtable.c	2009/11/04 21:47:06	1.20.2.24
@@ -627,6 +627,28 @@
 		.checker_name  = TUR,
 	},
 	/*
+	 * IBM Power Virtual SCSI Devices
+	 *
+	 * Maintainer : Brian King, IBM
+	 * Mail : brking@linux.vnet.ibm.com
+	 */
+	{
+		/* AIX VDASD */
+		.vendor        = "AIX",
+		.product       = "VDASD",
+		.getuid        = DEFAULT_GETUID,
+		.getprio       = NULL,
+		.features      = DEFAULT_FEATURES,
+		.hwhandler     = DEFAULT_HWHANDLER,
+		.selector      = DEFAULT_SELECTOR,
+		.pgpolicy      = MULTIBUS,
+		.pgfailback    = -FAILBACK_IMMEDIATE,
+		.rr_weight     = RR_WEIGHT_NONE,
+		.no_path_retry = (300 / DEFAULT_CHECKINT),
+		.minio         = DEFAULT_MINIO,
+		.checker_name  = DIRECTIO,
+	},
+	/*
 	 * SGI arrays
 	 *
 	 * Maintainer : Christophe Varoqui

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2009-08-31 17:17 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2009-08-31 17:17 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2009-08-31 17:17:11

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Updated HP MSA configuration. Already Upstream.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.20&r2=1.20.2.21

--- multipath-tools/libmultipath/hwtable.c	2009/08/19 21:52:40	1.20.2.20
+++ multipath-tools/libmultipath/hwtable.c	2009/08/31 17:17:10	1.20.2.21
@@ -63,11 +63,11 @@
 		.vendor        = "DEC",
 		.product       = "HSG80",
 		.getuid        = DEFAULT_GETUID,
-		.getprio       = NULL,
-		.features      = "2 pg_init_retries 10",
+		.getprio       = "/sbin/mpath_prio_hp_sw /dev/%n",
+		.features      = "1 queue_if_no_path",
 		.hwhandler     = "1 hp-sw",
 		.selector      = DEFAULT_SELECTOR,
-		.pgpolicy      = GROUP_BY_SERIAL,
+		.pgpolicy      = GROUP_BY_PRIO,
 		.pgfailback    = FAILBACK_UNDEF,
 		.rr_weight     = RR_WEIGHT_NONE,
 		.no_path_retry = NO_PATH_RETRY_UNDEF,
@@ -77,17 +77,17 @@
 	{
 		/* MSA 1000/MSA1500, EVA 3000/5000 with old firmware */
 		.vendor        = "COMPAQ",
-		.product       = "MSA|HSV1.0.*",
+		.product       = "(MSA|HSV)1.0.*",
 		.getuid        = DEFAULT_GETUID,
-		.getprio       = NULL,
-		.features      = "2 pg_init_retries 10",
+		.getprio       = "/sbin/mpath_prio_hp_sw /dev/%n",
+		.features      = "1 queue_if_no_path",
 		.hwhandler     = "1 hp-sw",
 		.selector      = DEFAULT_SELECTOR,
-		.pgpolicy      = MULTIBUS,
+		.pgpolicy      = GROUP_BY_PRIO,
 		.pgfailback    = FAILBACK_UNDEF,
 		.rr_weight     = RR_WEIGHT_NONE,
-		.no_path_retry = NO_PATH_RETRY_UNDEF,
-		.minio         = DEFAULT_MINIO,
+		.no_path_retry = 12,
+		.minio         = 100,
 		.checker_name  = HP_SW,
 	},
 	{

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2009-06-19 22:10 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2009-06-19 22:10 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2009-06-19 22:10:53

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix for 475967.  Fixed config defaults for hp storageworks devices.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.18&r2=1.20.2.19

--- multipath-tools/libmultipath/hwtable.c	2009/05/05 22:02:31	1.20.2.18
+++ multipath-tools/libmultipath/hwtable.c	2009/06/19 22:10:53	1.20.2.19
@@ -64,8 +64,8 @@
 		.product       = "HSG80",
 		.getuid        = DEFAULT_GETUID,
 		.getprio       = NULL,
-		.features      = DEFAULT_FEATURES,
-		.hwhandler     = "1 hp_sw",
+		.features      = "2 pg_init_retries 10",
+		.hwhandler     = "1 hp-sw",
 		.selector      = DEFAULT_SELECTOR,
 		.pgpolicy      = GROUP_BY_SERIAL,
 		.pgfailback    = FAILBACK_UNDEF,
@@ -80,8 +80,8 @@
 		.product       = "MSA|HSV1.0.*",
 		.getuid        = DEFAULT_GETUID,
 		.getprio       = NULL,
-		.features      = DEFAULT_FEATURES,
-		.hwhandler     = "1 hp_sw",
+		.features      = "2 pg_init_retries 10",
+		.hwhandler     = "1 hp-sw",
 		.selector      = DEFAULT_SELECTOR,
 		.pgpolicy      = MULTIBUS,
 		.pgfailback    = FAILBACK_UNDEF,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-10-29 20:03 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-10-29 20:03 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2007-10-29 20:03:08

Modified files:
	libmultipath   : hwtable.c 

Log message:
	use fully qualified path name for mpath_prio_hds_modular.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.8&r2=1.20.2.9

--- multipath-tools/libmultipath/hwtable.c	2007/10/09 21:48:19	1.20.2.8
+++ multipath-tools/libmultipath/hwtable.c	2007/10/29 20:03:08	1.20.2.9
@@ -223,7 +223,7 @@
 		.vendor        = "HITACHI",
 		.product       = "DF.*",
 		.getuid        = DEFAULT_GETUID,
-		.getprio       = "mpath_prio_hds_modular %d",
+		.getprio       = "/sbin/mpath_prio_hds_modular %d",
 		.features      = DEFAULT_FEATURES,
 		.hwhandler     = DEFAULT_HWHANDLER,
 		.selector      = DEFAULT_SELECTOR,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-09-06 16:21 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-09-06 16:21 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2007-09-06 16:21:38

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Changed the default checker function for NETAPP devices from readsector0 to
	directio.
	Resolves: bz #247443

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.6&r2=1.20.2.7

--- multipath-tools/libmultipath/hwtable.c	2007/08/16 16:30:11	1.20.2.6
+++ multipath-tools/libmultipath/hwtable.c	2007/09/06 16:21:38	1.20.2.7
@@ -403,7 +403,7 @@
 		.rr_weight     = RR_WEIGHT_NONE,
 		.no_path_retry = NO_PATH_RETRY_UNDEF,
 		.minio         = 128,
-		.checker_name  = READSECTOR0,
+		.checker_name  = DIRECTIO,
 	},
  	/*
 	 * IBM NSeries (NETAPP) controller family

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-08-16 16:30 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-08-16 16:30 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL5_FC6
Changes by:	bmarzins@sourceware.org	2007-08-16 16:30:12

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix for bz 245019. The alua  callout for the IBM 2145 now has a fully qualified
	path name.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.5&r2=1.20.2.6

--- multipath-tools/libmultipath/hwtable.c	2007/08/14 18:08:54	1.20.2.5
+++ multipath-tools/libmultipath/hwtable.c	2007/08/16 16:30:11	1.20.2.6
@@ -356,7 +356,7 @@
 		.vendor        = "IBM",
 		.product       = "2145",
 		.getuid        = DEFAULT_GETUID,
-		.getprio       = "mpath_prio_alua /dev/%n",
+		.getprio       = "/sbin/mpath_prio_alua /dev/%n",
 		.features      = "1 queue_if_no_path",
 		.hwhandler     = DEFAULT_HWHANDLER,
 		.selector      = DEFAULT_SELECTOR,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-05-15 16:42 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-05-15 16:42 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL4_FC5
Changes by:	bmarzins@sourceware.org	2007-05-15 16:42:27

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix for bz #240075. prioritizer typo fixed.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL4_FC5&r1=1.16.2.10&r2=1.16.2.11

--- multipath-tools/libmultipath/hwtable.c	2007/05/07 17:59:46	1.16.2.10
+++ multipath-tools/libmultipath/hwtable.c	2007/05/15 16:42:26	1.16.2.11
@@ -86,7 +86,7 @@
 	r += store_hwe_ext(hw, "SGI", "TP9500", FAILOVER, DEFAULT_GETUID,
 		   NULL, "0", "0", "tur", FAILBACK_UNDEF, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "HITACHI", "DF*", GROUP_BY_PRIO,
-		   DEFAULT_GETUID, "/sbin/mpath/prio_hds_modular %d", "0", "0",
+		   DEFAULT_GETUID, "/sbin/mpath_prio_hds_modular %d", "0", "0",
 		   "readsector0", -FAILBACK_IMMEDIATE, NULL, 0, 0, 0);
 
 	return r;

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-04-04 22:28 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-04-04 22:28 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL4_FC5
Changes by:	bmarzins@sourceware.org	2007-04-04 23:28:30

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Fix for bz #233629. Change pgpolicy from DS8000 from GROUP_BY_SERIAL to
	MULTIBUS.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL4_FC5&r1=1.16.2.8&r2=1.16.2.9

--- multipath-tools/libmultipath/hwtable.c	2007/03/07 16:12:46	1.16.2.8
+++ multipath-tools/libmultipath/hwtable.c	2007/04/04 22:28:30	1.16.2.9
@@ -62,7 +62,7 @@
 		   DEFAULT_GETUID, "/sbin/mpath_prio_alua /dev/%n", "0",
 		   "1 queue_if_no_path", "tur", -FAILBACK_IMMEDIATE, NULL, 0, 0,
 		   0);
-	r += store_hwe_ext(hw, "IBM", "2107900", GROUP_BY_SERIAL,
+	r += store_hwe_ext(hw, "IBM", "2107900", MULTIBUS,
 		   DEFAULT_GETUID, NULL, "0", "1 queue_if_no_path", "tur",
 		   FAILBACK_UNDEF, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "2145", GROUP_BY_PRIO, DEFAULT_GETUID,

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-03-07 16:12 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-03-07 16:12 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL4_FC5
Changes by:	bmarzins@sourceware.org	2007-03-07 16:12:46

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Changed the bl_product string back to LUNZ as per Ed Goggins comments in
	BZ#174441

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL4_FC5&r1=1.16.2.7&r2=1.16.2.8

--- multipath-tools/libmultipath/hwtable.c	2007/02/13 18:50:37	1.16.2.7
+++ multipath-tools/libmultipath/hwtable.c	2007/03/07 16:12:46	1.16.2.8
@@ -51,7 +51,7 @@
 		    "tur", FAILBACK_UNDEF, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "DGC", "*", GROUP_BY_PRIO,
                    DEFAULT_GETUID, "/sbin/mpath_prio_emc /dev/%n", "1 emc",
-		   "1 queue_if_no_path", "emc_clariion", -FAILBACK_IMMEDIATE, "LUN_Z",
+		   "1 queue_if_no_path", "emc_clariion", -FAILBACK_IMMEDIATE, "LUNZ",
 		   0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "3542", GROUP_BY_SERIAL, DEFAULT_GETUID,
 		   NULL, "0", "0", "tur", FAILBACK_UNDEF, NULL, 0, 0, 0);

^ permalink raw reply	[flat|nested] 13+ messages in thread
* multipath-tools/libmultipath hwtable.c
@ 2007-02-13 18:50 bmarzins
  0 siblings, 0 replies; 13+ messages in thread
From: bmarzins @ 2007-02-13 18:50 UTC (permalink / raw)
  To: dm-cvs, dm-devel

CVSROOT:	/cvs/dm
Module name:	multipath-tools
Branch: 	RHEL4_FC5
Changes by:	bmarzins@sourceware.org	2007-02-13 18:50:37

Modified files:
	libmultipath   : hwtable.c 

Log message:
	Typo in the configurations for a couple IBM devices, causing them not to be
	correctly configured by default. BZ #226805

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL4_FC5&r1=1.16.2.6&r2=1.16.2.7

--- multipath-tools/libmultipath/hwtable.c	2007/01/10 21:56:17	1.16.2.6
+++ multipath-tools/libmultipath/hwtable.c	2007/02/13 18:50:37	1.16.2.7
@@ -56,17 +56,17 @@
 	r += store_hwe_ext(hw, "IBM", "3542", GROUP_BY_SERIAL, DEFAULT_GETUID,
 		   NULL, "0", "0", "tur", FAILBACK_UNDEF, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "2105*", GROUP_BY_SERIAL, DEFAULT_GETUID,
-		   NULL, "0", "1 queue_in_no_path", "tur", FAILBACK_UNDEF, NULL,
+		   NULL, "0", "1 queue_if_no_path", "tur", FAILBACK_UNDEF, NULL,
 		   0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "1750500", GROUP_BY_PRIO,
 		   DEFAULT_GETUID, "/sbin/mpath_prio_alua /dev/%n", "0",
-		   "1 queue_in_no_path", "tur", -FAILBACK_IMMEDIATE, NULL, 0, 0,
+		   "1 queue_if_no_path", "tur", -FAILBACK_IMMEDIATE, NULL, 0, 0,
 		   0);
 	r += store_hwe_ext(hw, "IBM", "2107900", GROUP_BY_SERIAL,
-		   DEFAULT_GETUID, NULL, "0", "1 queue_in_no_path", "tur",
+		   DEFAULT_GETUID, NULL, "0", "1 queue_if_no_path", "tur",
 		   FAILBACK_UNDEF, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "2145", GROUP_BY_PRIO, DEFAULT_GETUID,
-		   "/sbin/mpath_prio_alua /dev/%n", "0", "1 queue_in_no_path",
+		   "/sbin/mpath_prio_alua /dev/%n", "0", "1 queue_if_no_path",
 		   "tur", -FAILBACK_IMMEDIATE, NULL, 0, 0, 0);
 	r += store_hwe_ext(hw, "IBM", "S/390 DASD ECKD", MULTIBUS,
 		   "/sbin/dasdview -j /dev/%n", NULL, "0", "0",

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

end of thread, other threads:[~2012-01-16 22:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-02 23:38 multipath-tools/libmultipath hwtable.c bmarzins
  -- strict thread matches above, loose matches on Subject: below --
2012-01-16 22:22 bmarzins
2011-10-26  4:55 bmarzins
2009-11-04 21:47 bmarzins
2009-08-31 17:17 bmarzins
2009-06-19 22:10 bmarzins
2007-10-29 20:03 bmarzins
2007-09-06 16:21 bmarzins
2007-08-16 16:30 bmarzins
2007-05-15 16:42 bmarzins
2007-04-04 22:28 bmarzins
2007-03-07 16:12 bmarzins
2007-02-13 18:50 bmarzins

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).