Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/plugins/ucx/ucx_backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1114,8 +1114,11 @@ nixl_status_t nixlUcxEngine::postXfer (const nixl_xfer_op_t &operation,
default:
return NIXL_ERR_INVALID_PARAM;
}

if (_retHelper(ret, intHandle, req)) {
// if ret is NIXL_IN_PROG and have notification, store it
if (ret == NIXL_IN_PROG && opt_args && opt_args->hasNotif) {
intHandle->notification().emplace(remote_agent, opt_args->notifMsg);
}
return ret;
}
}
Expand Down