Skip to content

Commit

Permalink
UCP/TAG: Fix RNDV get_zcopy progression
Browse files Browse the repository at this point in the history
  • Loading branch information
brminich committed Dec 20, 2017
1 parent bf36ed7 commit d0cd98a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ucp/tag/rndv.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,11 @@ UCS_PROFILE_FUNC(ucs_status_t, ucp_proto_progress_rndv_get_zcopy, (self),
if (rndv_req->send.state.uct_comp.count == 0) {
ucp_rndv_complete_rndv_get(rndv_req);
}
return UCS_OK;
} else if (status == UCS_OK) {
/* in case if not all chunks are transmitted - return in_progress
* status */
return UCS_INPROGRESS;
/* in case if not all chunks are transmitted - return in_progress
* status */
return UCS_INPROGRESS;
}

return status;
Expand Down

0 comments on commit d0cd98a

Please sign in to comment.