In osm_sa_path_record.c::__search_mgrp_by_mgid, ignore groups marked for deletion
Signed-off-by: Hal Rosenstock <[EMAIL PROTECTED]> Index: osm_sa_path_record.c =================================================================== --- osm_sa_path_record.c (revision 4280) +++ osm_sa_path_record.c (working copy) @@ -1230,6 +1230,10 @@ __search_mgrp_by_mgid( p_recvd_mgid = p_ctxt->p_mgid; p_rcv = p_ctxt->p_rcv; + /* ignore groups marked for deletion */ + if (p_mgrp->to_be_deleted) + return; + /* Why not compare the entire MGID ???? */ /* different scope can sneak in for the same MGID ? */ /* EZ: I changed it to full compare ! */ _______________________________________________ openib-general mailing list [email protected] http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
