From patchwork Mon Sep 28 18:41:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: bmarzins@sourceware.org X-Patchwork-Id: 50436 X-Patchwork-Delegate: bmarzins@redhat.com Received: from hormel.redhat.com (hormel1.redhat.com [209.132.177.33]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8SIfcAd024841 for ; Mon, 28 Sep 2009 18:41:38 GMT Received: from listman.util.phx.redhat.com (listman.util.phx.redhat.com [10.8.4.110]) by hormel.redhat.com (Postfix) with ESMTP id 76098619DBF; Mon, 28 Sep 2009 14:41:37 -0400 (EDT) Received: from int-mx01.intmail.prod.int.phx2.redhat.com (nat-pool.util.phx.redhat.com [10.8.5.200]) by listman.util.phx.redhat.com (8.13.1/8.13.1) with ESMTP id n8SIfYKY005016 for ; Mon, 28 Sep 2009 14:41:34 -0400 Received: from mx1.redhat.com (ext-mx05.extmail.prod.ext.phx2.redhat.com [10.5.110.9]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8SIfYWd014885 for ; Mon, 28 Sep 2009 14:41:34 -0400 Received: from sourceware.org (sourceware.org [209.132.176.174]) by mx1.redhat.com (8.13.8/8.13.8) with SMTP id n8SIfLNR017736 for ; Mon, 28 Sep 2009 14:41:21 -0400 Received: (qmail 22092 invoked by uid 9475); 28 Sep 2009 18:41:20 -0000 Date: 28 Sep 2009 18:41:20 -0000 Message-ID: <20090928184120.22090.qmail@sourceware.org> From: bmarzins@sourceware.org To: dm-cvs@sourceware.org, dm-devel@redhat.com X-RedHat-Spam-Score: -4 (RCVD_IN_DNSWL_MED) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-Scanned-By: MIMEDefang 2.67 on 10.5.110.9 X-loop: dm-devel@redhat.com Cc: Subject: [dm-devel] multipath-tools ./multipath.conf.defaults libm ... X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.5 Precedence: junk Reply-To: device-mapper development List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com CVSROOT: /cvs/dm Module name: multipath-tools Branch: RHEL5_FC6 Changes by: bmarzins@sourceware.org 2009-09-28 18:41:20 Modified files: . : multipath.conf.defaults libmultipath : hwtable.c Log message: Fix for bz #517896. Add default configurations for HP devices. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/multipath.conf.defaults.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.5.4.16&r2=1.5.4.17 http://sourceware.org/cgi-bin/cvsweb.cgi/multipath-tools/libmultipath/hwtable.c.diff?cvsroot=dm&only_with_tag=RHEL5_FC6&r1=1.20.2.22&r2=1.20.2.23 --- dm-devel mailing list dm-devel@redhat.com https://www.redhat.com/mailman/listinfo/dm-devel --- multipath-tools/multipath.conf.defaults 2009/09/28 18:28:48 1.5.4.16 +++ multipath-tools/multipath.conf.defaults 2009/09/28 18:41:20 1.5.4.17 @@ -58,7 +58,7 @@ # } # device { # vendor "(COMPAQ|HP)" -# product "HSV1[01]1|HSV2[01]0|HSV300" +# product "HSV1[01]1|HSV2[01]0|HSV300|HSV4[05]0" # getuid_callout "/sbin/scsi_id -g -u -s /block/%n" # prio_callout "/sbin/mpath_prio_alua /dev/%n" # features "0" @@ -100,7 +100,7 @@ # } # device { # vendor "HP" -# product "MSA2012sa|MSA23(12|24)(fc|i|sa)" +# product "MSA2012sa|MSA23(12|24)(fc|i|sa)|MSA2000s VOLUME" # getuid_callout "/sbin/scsi_id -g -u -s /block/%n" # prio_callout "/sbin/mpath_prio_alua /dev/%n" # features "0" --- multipath-tools/libmultipath/hwtable.c 2009/09/28 18:28:48 1.20.2.22 +++ multipath-tools/libmultipath/hwtable.c 2009/09/28 18:41:20 1.20.2.23 @@ -93,7 +93,7 @@ { /* EVA 3000/5000 with new firmware, EVA 4000/6000/8000, EVA 4400 */ .vendor = "(COMPAQ|HP)", - .product = "HSV1[01]1|HSV2[01]0|HSV300", + .product = "HSV1[01]1|HSV2[01]0|HSV300|HSV4[05]|HSV4[05]0", .getuid = DEFAULT_GETUID, .getprio = "/sbin/mpath_prio_alua /dev/%n", .features = DEFAULT_FEATURES, @@ -141,7 +141,7 @@ { /* HP MSA2000 product family with new firmware */ .vendor = "HP", - .product = "MSA2012sa|MSA23(12|24)(fc|i|sa)", + .product = "MSA2012sa|MSA23(12|24)(fc|i|sa)|MSA2000s VOLUME", .getuid = DEFAULT_GETUID, .getprio = "/sbin/mpath_prio_alua /dev/%n", .features = DEFAULT_FEATURES,