Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prov/util: Fix flag initialization for generic receive of unexpected entry #10741

Merged
merged 1 commit into from
Feb 3, 2025
Merged
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
4 changes: 2 additions & 2 deletions prov/util/src/util_srx.c
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ ssize_t util_srx_generic_trecv(struct fid_ep *ep_fid, const struct iovec *iov,
}
}
util_init_rx_entry(rx_entry, iov, desc, iov_count, addr, context, tag,
flags);
flags | FI_TAGGED | FI_RECV);

srx->update_func(srx, rx_entry);
ret = rx_entry->peer_entry.srx->peer_ops->start_tag(
Expand Down Expand Up @@ -778,7 +778,7 @@ ssize_t util_srx_generic_recv(struct fid_ep *ep_fid, const struct iovec *iov,
}

util_init_rx_entry(rx_entry, iov, desc, iov_count, addr, context, 0,
flags);
flags | FI_MSG | FI_RECV);

srx->update_func(srx, rx_entry);
ret = rx_entry->peer_entry.srx->peer_ops->start_msg(
Expand Down