Skip to content

Commit

Permalink
Merge pull request #4562 from ROCmSoftwarePlatform/topic/sourav/fix-r…
Browse files Browse the repository at this point in the history
…ndv-get-zcopy

UCP/RNDV: Call correct completion function in pipeline protocol
  • Loading branch information
yosefe authored Dec 11, 2019
2 parents 72ae40c + 2f1cb22 commit cfcda46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ucp/tag/rndv.c
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ UCS_PROFILE_FUNC(ucs_status_t, ucp_rndv_progress_rma_get_zcopy, (self),
status);
if (rndv_req->send.state.dt.offset == rndv_req->send.length) {
if (rndv_req->send.state.uct_comp.count == 0) {
ucp_rndv_complete_rma_get_zcopy(rndv_req);
rndv_req->send.state.uct_comp.func(&rndv_req->send.state.uct_comp, status);
}
return UCS_OK;
} else if (!UCS_STATUS_IS_ERR(status)) {
Expand Down

0 comments on commit cfcda46

Please sign in to comment.