From patchwork Mon Aug 9 21:35:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: bmarzins@sourceware.org X-Patchwork-Id: 118482 Received: from mx02.colomx.prod.int.phx2.redhat.com (mx4-phx2.redhat.com [209.132.183.25]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o79Lcd8f019116 for ; Mon, 9 Aug 2010 21:39:15 GMT Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by mx02.colomx.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o79LaHf2020588; Mon, 9 Aug 2010 17:36:18 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o79LaF0W026323 for ; Mon, 9 Aug 2010 17:36:15 -0400 Received: from mx1.redhat.com (ext-mx07.extmail.prod.ext.phx2.redhat.com [10.5.110.11]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o79LaAh8015434 for ; Mon, 9 Aug 2010 17:36:10 -0400 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by mx1.redhat.com (8.13.8/8.13.8) with SMTP id o79LZxU0018435 for ; Mon, 9 Aug 2010 17:35:59 -0400 Received: (qmail 25497 invoked by uid 9475); 9 Aug 2010 21:35:58 -0000 Date: 9 Aug 2010 21:35:58 -0000 Message-ID: <20100809213558.25495.qmail@sourceware.org> From: bmarzins@sourceware.org To: dm-cvs@sourceware.org, dm-devel@redhat.com X-RedHat-Spam-Score: -2.31 (RCVD_IN_DNSWL_MED,T_RP_MATCHES_RCVD) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-Scanned-By: MIMEDefang 2.67 on 10.5.110.11 X-loop: dm-devel@redhat.com Subject: [dm-devel] multipath-tools ./multipath.conf.defaults libm ... X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk Reply-To: device-mapper development List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Mon, 09 Aug 2010 21:39:15 +0000 (UTC) --- multipath-tools/multipath.conf.defaults 2010/08/09 18:38:21 1.5.4.21 +++ multipath-tools/multipath.conf.defaults 2010/08/09 21:35:58 1.5.4.22 @@ -490,6 +490,46 @@ # rr_min_io 1000 # path_checker tur # } +# device { +# vendor "IBM" +# product "3303 NVDISK" +# getuid_callout "/sbin/scsi_id -g -u -s /block/%n" +# features "0" +# hardware_handler "0" +# path_grouping_policy failover +# failback immediate +# no_path_retry 60 +# rr_weight uniform +# rr_min_io 1000 +# path_checker tur +# } +# device { +# vendor "AIX" +# product "VDASD" +# getuid_callout "/sbin/scsi_id -g -u -s /block/%n" +# features "0" +# hardware_handler "0" +# path_grouping_policy multibus +# failback immediate +# no_path_retry 60 +# rr_weight uniform +# rr_min_io 1000 +# path_checker directio +# } +# device { +# vendor "AIX" +# product "NVDISK" +# getuid_callout "/sbin/scsi_id -g -u -s /block/%n" +# prio_callout "/sbin/mpath_prio_alua /dev/%n" +# features "0" +# hardware_handler "1 alua" +# path_grouping_policy group_by_prio +# failback immediate +# no_path_retry 60 +# rr_weight uniform +# rr_min_io 1000 +# path_checker tur +# } # device { # vendor "SGI" # product "TP9[13]00" --- multipath-tools/libmultipath/hwtable.c 2010/08/09 18:38:21 1.20.2.28 +++ multipath-tools/libmultipath/hwtable.c 2010/08/09 21:35:58 1.20.2.29 @@ -657,6 +657,23 @@ .minio = DEFAULT_MINIO, .checker_name = TUR, }, + { + /* IBM 3303 NVDISK */ + .vendor = "IBM", + .product = "3303 NVDISK", + .getuid = DEFAULT_GETUID, + .getprio = NULL, + .features = DEFAULT_FEATURES, + .hwhandler = DEFAULT_HWHANDLER, + .selector = DEFAULT_SELECTOR, + .pgpolicy = FAILOVER, + .pgfailback = -FAILBACK_IMMEDIATE, + .rr_weight = RR_WEIGHT_NONE, + .no_path_retry = (300 / DEFAULT_CHECKINT), + .minio = DEFAULT_MINIO, + .checker_name = TUR, + }, + /* * IBM Power Virtual SCSI Devices * @@ -679,6 +696,23 @@ .minio = DEFAULT_MINIO, .checker_name = DIRECTIO, }, + { + /* AIX NVDISK */ + .vendor = "AIX", + .product = "NVDISK", + .getuid = DEFAULT_GETUID, + .getprio = "/sbin/mpath_prio_alua /dev/%n", + .features = DEFAULT_FEATURES, + .hwhandler = "1 alua", + .selector = DEFAULT_SELECTOR, + .pgpolicy = GROUP_BY_PRIO, + .pgfailback = -FAILBACK_IMMEDIATE, + .rr_weight = RR_WEIGHT_NONE, + .no_path_retry = (300 / DEFAULT_CHECKINT), + .minio = DEFAULT_MINIO, + .checker_name = TUR, + }, + /* * SGI arrays *