From patchwork Mon Oct 19 14:21:21 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hal Rosenstock X-Patchwork-Id: 54785 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n9JEMNkP027620 for ; Mon, 19 Oct 2009 14:22:23 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756161AbZJSOWS (ORCPT ); Mon, 19 Oct 2009 10:22:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756334AbZJSOWS (ORCPT ); Mon, 19 Oct 2009 10:22:18 -0400 Received: from qmta07.westchester.pa.mail.comcast.net ([76.96.62.64]:50627 "EHLO QMTA07.westchester.pa.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756332AbZJSOWR (ORCPT ); Mon, 19 Oct 2009 10:22:17 -0400 Received: from OMTA11.westchester.pa.mail.comcast.net ([76.96.62.36]) by QMTA07.westchester.pa.mail.comcast.net with comcast id ub9G1c0060mv7h057eNMhS; Mon, 19 Oct 2009 14:22:21 +0000 Received: from hal.comcast.net ([75.69.247.31]) by OMTA11.westchester.pa.mail.comcast.net with comcast id ueNL1c00D0hNrtn3XeNMJ3; Mon, 19 Oct 2009 14:22:21 +0000 Received: from hal.comcast.net (localhost.localdomain [127.0.0.1]) by hal.comcast.net (8.14.3/8.14.3) with ESMTP id n9JELYKo019211; Mon, 19 Oct 2009 10:21:39 -0400 Received: (from hnrose@localhost) by hal.comcast.net (8.14.3/8.14.3/Submit) id n9JELL7a019181; Mon, 19 Oct 2009 10:21:21 -0400 Date: Mon, 19 Oct 2009 10:21:21 -0400 From: Hal Rosenstock To: sashak@voltaire.com Cc: linux-rdma@vger.kernel.org Subject: [PATCH] opensm: Add some additional HP vendor IDs/OUIs Message-ID: <20091019142121.GA19177@comcast.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org diff --git a/opensm/include/opensm/osm_base.h b/opensm/include/opensm/osm_base.h index 06223ce..34646cd 100644 --- a/opensm/include/opensm/osm_base.h +++ b/opensm/include/opensm/osm_base.h @@ -906,6 +906,8 @@ typedef enum _osm_sm_signal { #define OSM_VENDOR_ID_HP2 0x0018FE #define OSM_VENDOR_ID_DELL 0x00188B #define OSM_VENDOR_ID_SUPERMICRO 0x003048 +#define OSM_VENDOR_ID_HP3 0x0019BB +#define OSM_VENDOR_ID_HP4 0x00237D /**********/ diff --git a/opensm/opensm/osm_helper.c b/opensm/opensm/osm_helper.c index 40dea10..4f520ba 100644 --- a/opensm/opensm/osm_helper.c +++ b/opensm/opensm/osm_helper.c @@ -2210,6 +2210,8 @@ const char *osm_get_manufacturer_str(IN uint64_t guid_ho) return (panta_str); case OSM_VENDOR_ID_HP: case OSM_VENDOR_ID_HP2: + case OSM_VENDOR_ID_HP3: + case OSM_VENDOR_ID_HP4: return (hp_str); case OSM_VENDOR_ID_RIOWORKS: return (rioworks_str);