Re: [PATCH] opensm: fixed segfault when enable qos on fabric with no switches

2011-04-13 Thread Jim Schutt

Alex Netes wrote:

Signed-off-by: Alex Netes 
---
 opensm/osm_qos.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Acked-by: Jim Schutt 

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] opensm: fixed segfault when enable qos on fabric with no switches

2011-04-13 Thread Alex Netes
Signed-off-by: Alex Netes 
---
 opensm/osm_qos.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opensm/osm_qos.c b/opensm/osm_qos.c
index afea7bb..f353275 100644
--- a/opensm/osm_qos.c
+++ b/opensm/osm_qos.c
@@ -292,7 +292,7 @@ static int qos_endport_setup(osm_sm_t * sm, osm_physp_t * p,
if (!(p->port_info.capability_mask & IB_PORT_CAP_HAS_SL_MAP))
return 0;
 
-   if (re->update_sl2vl) {
+   if (re && re->update_sl2vl) {
routing_sl2vl = *port_sl2vl;
re->update_sl2vl(re->context, p, 0, 0, &routing_sl2vl);
port_sl2vl = &routing_sl2vl;
-- 
1.7.4.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html