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/efa, fabtests: Implement FI_MORE for fi_recv #10532

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

jiaxiyan
Copy link
Contributor

Implement FI_MORE for fi_recv in zero-copy recv mode.
Allow tests with FI_MORE flag by using fi_recvmsg.
Add FI_MORE pytest for fi_recv in test_rdm_bw_zcpy_recv_use_fi_more.

@jiaxiyan jiaxiyan requested a review from a team November 13, 2024 00:12

assert(pke_cnt);

ep = pke_vec[0]->ep;
assert(ep);

wr_index = ep->base_ep.efa_recv_wr_index;

for (i = 0; i < pke_cnt; ++i) {
Copy link
Contributor

@shijin-aws shijin-aws Nov 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another approach may be having efa_rdm_ep_post_internal_rx_pkts call this function in a loop of pkt_cnt times, where the first pkt_cnt-1 times are with FI_MORE. So we can get rid of this loop inside

But this version should be good as well... We can revisit it later if necessary.

@shijin-aws
Copy link
Contributor

@j-xiong can you review the fabtests change ad408c1, thanks!

@shijin-aws
Copy link
Contributor

Some offline discussion shows that this PR will cause issue when both internal rx buffer and user fi_recv calling efa_rdm_pke_recvv as the efa_recv_wr_vec are shared among both mode and we don't want internal rx buffer post calls ibv_post_recv for the earlier staged wr to the default qp. This PR needs more work to address this issue.

@jiaxiyan jiaxiyan force-pushed the write_fi_more branch 2 times, most recently from 91c10ea to 0eec1b0 Compare November 14, 2024 00:30
Track the last index of wr with recv_wr_index. Append wr when
FI_MORE is set. Only post recv when FI_MORE is not set.

Signed-off-by: Jessie Yang <jiaxiyan@amazon.com>
Also fix a bug in ft_recvmsg that uses tx_seq tag.

Signed-off-by: Jessie Yang <jiaxiyan@amazon.com>
Signed-off-by: Jessie Yang <jiaxiyan@amazon.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants