Skip to content

Commit

Permalink
RDMACM: disables iWarp device initialization
Browse files Browse the repository at this point in the history
- due to lack of support
  • Loading branch information
Sergey Oblomov committed Feb 5, 2019
1 parent a10e5fb commit a7b25b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/uct/ib/rdmacm/rdmacm_md.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ static int uct_rdmacm_is_addr_route_resolved(struct rdma_cm_id *cm_id,
return 0;
}

if (cm_id->verbs->device->transport_type == IBV_TRANSPORT_IWARP) {
ucs_debug("%s: iWarp support is not implemented",
ucs_sockaddr_str(addr, ip_port_str, UCS_SOCKADDR_STRING_LEN));
return 0;
}

if (rdma_resolve_route(cm_id, timeout_ms)) {
ucs_debug("rdma_resolve_route(addr = %s) failed: %m",
ucs_sockaddr_str(addr, ip_port_str, UCS_SOCKADDR_STRING_LEN));
Expand Down

0 comments on commit a7b25b6

Please sign in to comment.