Skip to content

Commit

Permalink
UCT/IB/EFA/SRD: Cleanup connect callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
tvegas1 committed Feb 3, 2025
1 parent d6ec3cc commit d54fecd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/uct/ib/efa/srd/srd_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,10 @@ uct_srd_query_tl_devices(uct_md_h md, uct_tl_device_resource_t **tl_devices_p,
}

static uct_iface_ops_t uct_srd_iface_tl_ops = {
.ep_flush = ucs_empty_function_return_unsupported,
.ep_fence = ucs_empty_function_return_unsupported,
.ep_flush = (uct_ep_flush_func_t)
ucs_empty_function_return_unsupported,
.ep_fence = (uct_ep_fence_func_t)
ucs_empty_function_return_unsupported,
.ep_create = UCS_CLASS_NEW_FUNC_NAME(uct_srd_ep_t),
.ep_get_address = uct_srd_ep_get_address,
.ep_connect_to_ep = uct_base_ep_connect_to_ep,
Expand Down

0 comments on commit d54fecd

Please sign in to comment.