From 2f1cb22a591b4a8d053c8e6369304360869399cc Mon Sep 17 00:00:00 2001 From: Sourav Chakraborty Date: Tue, 10 Dec 2019 12:22:21 -0800 Subject: [PATCH] UCP/RNDV: Call correct completion function in pipeline protocol --- src/ucp/tag/rndv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ucp/tag/rndv.c b/src/ucp/tag/rndv.c index 277c3d7302f..6677e372cb7 100644 --- a/src/ucp/tag/rndv.c +++ b/src/ucp/tag/rndv.c @@ -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)) {