-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Add UDP GSO/GRO support #1616
base: master
Are you sure you want to change the base?
Add UDP GSO/GRO support #1616
Conversation
What's the status on this? My team and I are very interested in using this feature! Thx! |
Just FYI, after spending a little bit of time on this and an easy rebase on
I will see if I can debug... anybody else has seen this? Has anybody got this feature working correctly? |
The exception happens in iperf_api.c/iperf_parse_arguments(): test->settings->gso_dg_size = blksize;
/* use the multiple of datagram size for the best efficiency. */
test->settings->gso_bf_size = (test->settings->gso_bf_size / test->settings->gso_dg_size) * test->settings->gso_dg_size; The problem is that for UDP tests, when Two more comments:
|
Can someone please update if there is any update on these commits? Are these available in master branch? |
Hi, |
Version of iperf3 (or development branch, such as
master
or3.1-STABLE
) to which this pull request applies:master
Issues fixed (if any):
Rebase of PR 1309 including missing declarations on "iperf.h" and exception when using without "-l"
Brief description of code changes (suitable for use as a commit message):
Add UDP GSO/GRO support