-
Notifications
You must be signed in to change notification settings - Fork 398
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
Couple fixes to fi_pingpong #9971
Conversation
bot:aws:retest |
@zachdworkin AWS CI failed due to fi_pingpong failed on Windows platform
|
Did your change modify the default behavior for OOB exchange? |
@shijin-aws #9963 did modify the default behaviour for fabtests. The backlog went from 0 to 511. This prevents SYN Flooding on port 3000 when using oob exchange in fabtests. I did not change the behaviour outside of fabtests. |
Is |
|
Any ideas how can this change cause |
It might be an ordering issue. ofi_socket is called before any calls to libfabric. I don't care that much about removing ofi_osd_init() call. I will drop that commit from this PR. |
Ah, that makes sense. Thank you! |
In multi-adapter environment, fi_pingpong is failing with -61, No data available error when not using the first interface. Add source address parameter and use it with hints src_addr to get at the correct interface for data transfer. Signed-off-by: Chien Tin Tung <[email protected]>
@chien-intel windows test passed for the latest push |
Great, thanks! |
First commit is cleanup. Second commit adds source address parameter to fix issue #9900, using fi_pingpong in multi-adapter environment.