Skip to content

Commit

Permalink
Merge pull request #2097 from brminich/topic/ucp_fix_get_rndv
Browse files Browse the repository at this point in the history
UCP/TAG: Fix RNDV get_zcopy progression
  • Loading branch information
yosefe authored Dec 21, 2017
2 parents ca9f3d5 + d0cd98a commit aa523d7
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 aa523d7

Please sign in to comment.