Skip to content

Commit 75e9600

Browse files
committed
oob/tcp: fix a typo in mca_oob_tcp_component_no_route()
Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent 25c3edb commit 75e9600

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

orte/mca/oob/tcp/oob_tcp_component.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,10 +514,12 @@ static int component_available(void)
514514
/* get the name for diagnostic purposes */
515515
opal_ifindextoname(i, name, sizeof(name));
516516

517+
#if 0
517518
/* ignore any virtual interfaces */
518519
if (0 == strncmp(name, "vir", 3)) {
519520
continue;
520521
}
522+
#endif
521523

522524
/* handle include/exclude directives */
523525
if (NULL != interfaces) {
@@ -1064,7 +1066,7 @@ void mca_oob_tcp_component_no_route(int fd, short args, void *cbdata)
10641066
*/
10651067
if (!orte_finalizing && !orte_abnormal_term_ordered) {
10661068
/* if this was a lifeline, then alert */
1067-
if (ORTE_SUCCESS != orte_routed.route_lost(mop->snd->hdr.routed, &mop->hop)) {
1069+
if (ORTE_SUCCESS != orte_routed.route_lost(mop->rmsg->routed, &mop->hop)) {
10681070
ORTE_ACTIVATE_PROC_STATE(&mop->hop, ORTE_PROC_STATE_LIFELINE_LOST);
10691071
} else {
10701072
ORTE_ACTIVATE_PROC_STATE(&mop->hop, ORTE_PROC_STATE_COMM_FAILED);

0 commit comments

Comments
 (0)