Skip to content

Commit

Permalink
Merge pull request #4594 from evgeny-leksikov/uct_rdmacm_cm_stub_fix
Browse files Browse the repository at this point in the history
UCT/IB/RDMACM/CM: fix stub functions of dummy iface
  • Loading branch information
yosefe authored Dec 20, 2019
2 parents 9a72ae3 + 98331d7 commit 4ae9c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uct/ib/rdmacm/rdmacm_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,10 @@ static uct_iface_ops_t uct_rdmacm_cm_iface_ops = {
.ep_disconnect = uct_rdmacm_cm_ep_disconnect,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_rdmacm_cm_ep_t),
.ep_put_short = (uct_ep_put_short_func_t)ucs_empty_function_return_unsupported,
.ep_put_bcopy = (uct_ep_put_bcopy_func_t)ucs_empty_function_return_zero_int64,
.ep_put_bcopy = (uct_ep_put_bcopy_func_t)ucs_empty_function_return_unsupported,
.ep_get_bcopy = (uct_ep_get_bcopy_func_t)ucs_empty_function_return_unsupported,
.ep_am_short = (uct_ep_am_short_func_t)ucs_empty_function_return_unsupported,
.ep_am_bcopy = (uct_ep_am_bcopy_func_t)ucs_empty_function_return_zero_int64,
.ep_am_bcopy = (uct_ep_am_bcopy_func_t)ucs_empty_function_return_unsupported,
.ep_atomic_cswap64 = (uct_ep_atomic_cswap64_func_t)ucs_empty_function_return_unsupported,
.ep_atomic64_post = (uct_ep_atomic64_post_func_t)ucs_empty_function_return_unsupported,
.ep_atomic64_fetch = (uct_ep_atomic64_fetch_func_t)ucs_empty_function_return_unsupported,
Expand Down

0 comments on commit 4ae9c2b

Please sign in to comment.