Skip to content

Commit

Permalink
Merge pull request #134 from evgeny-leksikov/integration3
Browse files Browse the repository at this point in the history
UCT/CM: add missed func ptrs in cm iface
  • Loading branch information
yosefe authored Apr 16, 2021
2 parents 6677f21 + 1b7b6c4 commit a8dee8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/uct/ib/rdmacm/rdmacm_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ static uct_cm_ops_t uct_rdmacm_cm_ops = {
static uct_iface_ops_t uct_rdmacm_cm_iface_ops = {
.ep_pending_purge = ucs_empty_function,
.ep_disconnect = uct_rdmacm_cm_ep_disconnect,
.ep_enable_keep_alive = (uct_ep_enable_keep_alive_func_t)ucs_empty_function_return_unsupported,
.cm_ep_conn_notify = uct_rdmacm_cm_ep_conn_notify,
.ep_query = uct_rdmacm_ep_query,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_rdmacm_cm_ep_t),
Expand Down
1 change: 1 addition & 0 deletions src/uct/tcp/tcp_sockcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ static uct_iface_ops_t uct_tcp_sockcm_iface_ops = {
.ep_pending_purge = (uct_ep_pending_purge_func_t)ucs_empty_function,
.ep_disconnect = uct_tcp_sockcm_ep_disconnect,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_tcp_sockcm_ep_t),
.ep_enable_keep_alive = (uct_ep_enable_keep_alive_func_t)ucs_empty_function_return_unsupported,
.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_unsupported,
.ep_get_bcopy = (uct_ep_get_bcopy_func_t)ucs_empty_function_return_unsupported,
Expand Down

0 comments on commit a8dee8a

Please sign in to comment.