Page MenuHomeFreeBSD

mxge: Setup mbuf flowid before calling tcp_lro_rx().
ClosedPublic

Authored by sepherosa_gmail.com on May 11 2016, 8:22 AM.
Tags
None
Referenced Files
F114361491: D6320.diff
Fri, Apr 11, 4:00 PM
Unknown Object (File)
Thu, Apr 3, 6:00 AM
Unknown Object (File)
Mar 5 2025, 8:57 AM
Unknown Object (File)
Mar 2 2025, 9:53 AM
Unknown Object (File)
Feb 20 2025, 1:59 AM
Unknown Object (File)
Jan 8 2025, 10:10 PM
Unknown Object (File)
Jan 8 2025, 12:47 PM
Unknown Object (File)
Jan 8 2025, 10:58 AM
Subscribers
None

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sepherosa_gmail.com retitled this revision from to mxge: Setup mbuf flowid before calling tcp_lro_rx()..
sepherosa_gmail.com updated this object.
sepherosa_gmail.com edited the test plan for this revision. (Show Details)
gallatin edited edge metadata.

Note that the hardware is only semi-RSS capable, which is why it is using an opaque flowid derived from the queue id.

By default, a "cheap" hash is done in the NIC, rather than a toeplitz hash, and the hash result is not passed to the driver. The NIC can perform a toeplitz hash, but that cuts packet rate by about 40%.

This revision is now accepted and ready to land.May 11 2016, 2:26 PM

Note that the hardware is only semi-RSS capable, which is why it is using an opaque flowid derived from the queue id.

By default, a "cheap" hash is done in the NIC, rather than a toeplitz hash, and the hash result is not passed to the driver. The NIC can perform a toeplitz hash, but that cuts packet rate by about 40%.

Yeah, I have tested the RSS from NIC as you had told me several years ago, even the bulk data rate is reduced by ~12%, IIRC :P

This revision was automatically updated to reflect the committed changes.