summary refs log tree commit diff stats
path: root/hw/net/net_rx_pkt.h
diff options
context:
space:
mode:
authorYuri Benditovich <yuri.benditovich@daynix.com>2020-01-27 13:54:04 +0200
committerJason Wang <jasowang@redhat.com>2020-03-03 18:04:47 +0800
commit33bbc05eabe5109d270faf10493a3ebebd541ecd (patch)
treed3172dcd3528beaec307d0ff748ab561e57c6bcf /hw/net/net_rx_pkt.h
parentb559ea95eaee8cbf72d910e8f98d2601c7f74f97 (diff)
downloadfocaccia-qemu-33bbc05eabe5109d270faf10493a3ebebd541ecd.tar.gz
focaccia-qemu-33bbc05eabe5109d270faf10493a3ebebd541ecd.zip
NetRxPkt: Introduce support for additional hash types
Add support for following hash types:
IPV6 TCP with extension headers
IPV4 UDP
IPV6 UDP
IPV6 UDP with extension headers

Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com>
Acked-by: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net/net_rx_pkt.h')
-rw-r--r--hw/net/net_rx_pkt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/net/net_rx_pkt.h b/hw/net/net_rx_pkt.h
index 7adf0fad51..048e3461f0 100644
--- a/hw/net/net_rx_pkt.h
+++ b/hw/net/net_rx_pkt.h
@@ -133,7 +133,11 @@ typedef enum {
     NetPktRssIpV4Tcp,
     NetPktRssIpV6Tcp,
     NetPktRssIpV6,
-    NetPktRssIpV6Ex
+    NetPktRssIpV6Ex,
+    NetPktRssIpV6TcpEx,
+    NetPktRssIpV4Udp,
+    NetPktRssIpV6Udp,
+    NetPktRssIpV6UdpEx,
 } NetRxPktRssType;
 
 /**