From patchwork Mon Oct 19 13:00:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hal Rosenstock X-Patchwork-Id: 55402 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 n9MHujvj031073 for ; Thu, 22 Oct 2009 17:56:45 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755441AbZJVR4k (ORCPT ); Thu, 22 Oct 2009 13:56:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755566AbZJVR4k (ORCPT ); Thu, 22 Oct 2009 13:56:40 -0400 Received: from qmta01.westchester.pa.mail.comcast.net ([76.96.62.16]:39784 "EHLO QMTA01.westchester.pa.mail.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755441AbZJVR4j (ORCPT ); Thu, 22 Oct 2009 13:56:39 -0400 Received: from OMTA03.westchester.pa.mail.comcast.net ([76.96.62.27]) by QMTA01.westchester.pa.mail.comcast.net with comcast id uccr1c00B0bG4ec51d5JAL; Mon, 19 Oct 2009 13:05:18 +0000 Received: from hal.comcast.net ([75.69.247.31]) by OMTA03.westchester.pa.mail.comcast.net with comcast id ud5B1c00M0hNrtn3Pd5BvX; Mon, 19 Oct 2009 13:05:12 +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 n9JD4PBw018533; Mon, 19 Oct 2009 09:04:31 -0400 Received: (from hnrose@localhost) by hal.comcast.net (8.14.3/8.14.3/Submit) id n9JD0SCs018486; Mon, 19 Oct 2009 09:00:28 -0400 Date: Mon, 19 Oct 2009 09:00:28 -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: <20091019130028.GA18483@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);