diff options
| author | Paolo Abeni <pabeni@redhat.com> | 2025-08-14 12:40:21 +0300 |
|---|---|---|
| committer | Paolo Abeni <pabeni@redhat.com> | 2025-08-14 12:40:22 +0300 |
| commit | 875c541ea680d0df2de3e666d8125bee08c1bc1b (patch) | |
| tree | d77ea5aa1db594984bd9766b34c6a60b65f3a13e /include/uapi/linux | |
| parent | 40e819747b45fd254ab99cfe39ba8787d6bbd33d (diff) | |
| parent | 26dbe030ff08930bb243af3c66dd3b7e7bb8406d (diff) | |
| download | linux-875c541ea680d0df2de3e666d8125bee08c1bc1b.tar.xz | |
Merge branch 'net-ethtool-support-including-flow-label-in-the-flow-hash-for-rss'
Jakub Kicinski says:
====================
net: ethtool: support including Flow Label in the flow hash for RSS
Add support for using IPv6 Flow Label in Rx hash computation
and therefore RSS queue selection.
v3: https://lore.kernel.org/20250724015101.186608-1-kuba@kernel.org
v2: https://lore.kernel.org/20250722014915.3365370-1-kuba@kernel.org
RFC: https://lore.kernel.org/20250609173442.1745856-1-kuba@kernel.org
====================
Link: https://patch.msgid.link/20250811234212.580748-1-kuba@kernel.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/ethtool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/ethtool.h b/include/uapi/linux/ethtool.h index 9e9afdd1238a..8bd5ea5469d9 100644 --- a/include/uapi/linux/ethtool.h +++ b/include/uapi/linux/ethtool.h @@ -2380,6 +2380,7 @@ enum { #define RXH_L4_B_0_1 (1 << 6) /* src port in case of TCP/UDP/SCTP */ #define RXH_L4_B_2_3 (1 << 7) /* dst port in case of TCP/UDP/SCTP */ #define RXH_GTP_TEID (1 << 8) /* teid in case of GTP */ +#define RXH_IP6_FL (1 << 9) /* IPv6 flow label */ #define RXH_DISCARD (1 << 31) #define RX_CLS_FLOW_DISC 0xffffffffffffffffULL |
