Skip to content

Commit

Permalink
UCX/RNDV: multirail - updated EP configuration (3)
Browse files Browse the repository at this point in the history
- code beautify
  • Loading branch information
Sergey Oblomov committed Nov 11, 2017
1 parent 22596c1 commit 8cf6173
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ucp/core/ucp_request.inl
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ ucp_request_send_state_reset(ucp_request_t *req,
/* Fall through */
case UCP_REQUEST_SEND_PROTO_RNDV_GET:
if (UCP_DT_IS_CONTIG(req->send.datatype)) {
ucp_dt_clear_rndv_lanes(&req->send.state.dt);
ucp_dt_clear_memh(&req->send.state.dt);
}
/* Fall through */
case UCP_REQUEST_SEND_PROTO_ZCOPY_AM:
Expand Down
2 changes: 1 addition & 1 deletion src/ucp/dt/dt.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ size_t ucp_dt_pack(ucp_datatype_t datatype, void *dest, const void *src,
ucp_dt_state_t *state, size_t length);

static UCS_F_ALWAYS_INLINE void
ucp_dt_clear_rndv_lanes(ucp_dt_state_t *state)
ucp_dt_clear_memh(ucp_dt_state_t *state)
{
int i;
for (i = 0; i < UCP_MAX_RNDV_LANES; i++) {
Expand Down
2 changes: 1 addition & 1 deletion src/ucp/tag/rndv.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ static void ucp_rndv_handle_recv_contig(ucp_request_t *rndv_req, ucp_request_t *
} else {
if (rndv_rts_hdr->flags & UCP_RNDV_RTS_FLAG_PACKED_RKEY) {
UCS_PROFILE_CALL(uct_rkey_unpack, rndv_rts_hdr + 1,
&rndv_req->send.rndv_get.rkey_bundle);
&rndv_req->send.rndv_get.rkey_bundle);
}
/* rndv_req is the request that would perform the get operation */
rndv_req->send.uct.func = ucp_proto_progress_rndv_get_zcopy;
Expand Down

0 comments on commit 8cf6173

Please sign in to comment.