Page MenuHomeFreeBSD

sfxge: set correct RSS hash type instead of opaque
ClosedPublic

Authored by arybchik on Mar 24 2015, 11:42 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 18 2024, 4:08 AM
Unknown Object (File)
Mar 17 2024, 5:23 AM
Unknown Object (File)
Jan 26 2024, 7:50 PM
Unknown Object (File)
Jan 2 2024, 9:49 PM
Unknown Object (File)
Dec 21 2023, 10:46 PM
Unknown Object (File)
Dec 20 2023, 12:07 AM
Unknown Object (File)
Oct 30 2023, 4:37 PM
Unknown Object (File)
Jul 1 2023, 1:35 PM
Subscribers

Details

Summary

Sponsored by: Solarflare Communications, Inc.

Test Plan

Driver module build tested.
Hashtype is checked using debug printouts and simple traffic using netcat.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

arybchik retitled this revision from to sfxge: set correct RSS hash type instead of opaque.
arybchik updated this object.
arybchik edited the test plan for this revision. (Show Details)
arybchik added a reviewer: gnn.

Hm, is there no 2-tuple and/or UDP hashing available?

There is 4-tuple hash in the case of TCP over IPv4/IPv6.
There is 2-tuple hash in the case of UDP (and other protocols except TCP) over IPv4/IPv6.

Ok. This looks fine. I'll worry about RSS-ifying it at a later stage so it integrates like ixgbe and igb does.

Would you mind adding the UDP RSS hash type in a later commit?

What does the hardware do if it receives an IPv4 or IPv6 fragment? Does it do what intel/chelsio do and mark all frames of the fragment with a 2-tuple hash?

Would you mind adding the UDP RSS hash type in a later commit?

Not sure that I understand. HW does not include UDP ports in RSS hash. RSS hash is provided for UDP and it covers IPs only.
The patch sets hash type to either M_HASHTYPE_RSS_IPV4 or M_HASHTYPE_RSS_IPV6 for UDP.
The hash type is set in two places in the patch, but the second is in home-made LRO for TCP only.

What does the hardware do if it receives an IPv4 or IPv6 fragment? Does it do what intel/chelsio do and mark all frames of the fragment with a 2-tuple hash?

I guess fragments is one of the reasons (or only the reason) why HW provides 2-tuple hash for UDP - to have the same hash for fragmented and not fragmented packets.

gnn edited edge metadata.
This revision is now accepted and ready to land.Mar 28 2015, 4:02 AM
arybchik updated this revision to Diff 4477.

Closed by commit rS280783 (authored by @arybchik).