diff mbox

opensm/osm_subnet.c: Support MLNX ExtendedPortInfo for ConnectIB device

Message ID 4FF9AA99.1060909@dev.mellanox.co.il (mailing list archive)
State Accepted
Delegated to: Alex Netes
Headers show

Commit Message

Hal Rosenstock July 8, 2012, 3:43 p.m. UTC
Signed-off-by: Hal Rosenstock <hal@mellanox.com>
---
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/opensm/osm_subnet.c b/opensm/osm_subnet.c
index 46b82f1..1365e93 100644
--- a/opensm/osm_subnet.c
+++ b/opensm/osm_subnet.c
@@ -801,7 +801,7 @@  int is_mlnx_ext_port_info_supported(ib_net16_t devid)
 	devid_ho = cl_ntoh16(devid);
 	if (devid_ho == 0xc738)
 		return 1;
-	if (devid_ho >= 0x1003 && devid_ho <= 0x1010)
+	if (devid_ho >= 0x1003 && devid_ho <= 0x1011)
 		return 1;
 	return 0;
 }