We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d26241e + 2d3fef4 commit c2b215cCopy full SHA for c2b215c
src/uct/sm/self/self.c
@@ -148,7 +148,8 @@ uct_self_iface_is_reachable_v2(const uct_iface_h tl_iface,
148
const uct_self_iface_t *iface = ucs_derived_of(tl_iface, uct_self_iface_t);
149
const uct_self_iface_addr_t *addr;
150
151
- if (!uct_iface_is_reachable_params_addrs_valid(params)) {
+ if (!uct_iface_is_reachable_params_valid(
152
+ params, UCT_IFACE_IS_REACHABLE_FIELD_IFACE_ADDR)) {
153
return 0;
154
}
155
@@ -164,7 +165,8 @@ uct_self_iface_is_reachable_v2(const uct_iface_h tl_iface,
164
165
iface->id, *addr);
166
167
- return uct_iface_scope_is_reachable(tl_iface, params);
168
+
169
+ return 1;
170
171
172
static void uct_self_iface_sendrecv_am(uct_self_iface_t *iface, uint8_t am_id,
0 commit comments