Message ID | 4DE4D145.8060104@dev.mellanox.co.il (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Alex Netes |
Headers | show |
Hi Hal, On 07:30 Tue 31 May , Hal Rosenstock wrote: > > Signed-off-by: Hal Rosenstock <hal@mellanox.com> > --- Applied, thanks. -- 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 --git a/opensm/osm_ucast_mgr.c b/opensm/osm_ucast_mgr.c index 211d6e0..600bb10 100644 --- a/opensm/osm_ucast_mgr.c +++ b/opensm/osm_ucast_mgr.c @@ -529,6 +529,7 @@ static int set_dimn_ports(void *ctx, uint64_t guid, char *p) if (!ports) { OSM_LOG(&p_subn->p_osm->log, OSM_LOG_ERROR, "ERR 3A08: cannot allocate memory for ports\n"); + free(dimn_ports); return -1; } memset(ports, 0, words*sizeof(*ports)); @@ -794,6 +795,8 @@ static void add_sw_endports_to_order_list(osm_switch_t * sw, port = osm_get_port_by_guid(m->p_subn, p->p_remote_physp-> port_guid); + if (!port) + continue; cl_qlist_insert_tail(&m->port_order_list, &port->list_item); port->flag = 1;
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