Add NIC offload features

Adds a set of new traits representing features that hardware networking
interface controllers expose. A number of source documents were used to
come up with these traits:

https://www.kernel.org/doc/Documentation/networking/checksum-offloads.txt
https://www.kernel.org/doc/Documentation/networking/netdev-features.txt

Change-Id: Ic1cd7f4bffd1808967ca418ae77fc741770c57a4
This commit is contained in:
Rodolfo Alonso Hernandez 2017-05-18 17:15:41 +01:00
parent 43ee0a5d68
commit c091deb9b5
1 changed files with 3 additions and 0 deletions

View File

@ -33,4 +33,7 @@ TRAITS = [
'QINQ', # QinQ specification
'RDMA', # remote direct memory access
'RXHASH', # receive hashing
'RX', # RX checksumming
'TX', # RX checksumming
'SG', # scatter-gather
]