summaryrefslogtreecommitdiffstats
path: root/src/plugins/dpdk/device/dpdk.h
diff options
context:
space:
mode:
authorDastin Wilski <dastin.wilski@gmail.com>2022-03-30 14:06:44 +0200
committerDamjan Marion <dmarion@me.com>2022-04-05 16:16:30 +0000
commitc233bc3581e33c819466f2248eb7218b87b54bd2 (patch)
tree8a47dcafd79230828439de4db6b717c972633ef4 /src/plugins/dpdk/device/dpdk.h
parent57eb4b6269dd22b042deb2a7a535cf31387a0161 (diff)
dpdk: compatibility layer for dpdk 22.03 bump
New version of dpdk changes some macros names. This patch ensures VPP will be compatible with older dpdk versions. Type: improvement Signed-off-by: Dastin Wilski <dastin.wilski@gmail.com> Change-Id: I3d9736278e70064610a1dcad5f2d2f6eb26e0d4b
Diffstat (limited to 'src/plugins/dpdk/device/dpdk.h')
-rw-r--r--src/plugins/dpdk/device/dpdk.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/plugins/dpdk/device/dpdk.h b/src/plugins/dpdk/device/dpdk.h
index 196f68f9756..6f3680c17a1 100644
--- a/src/plugins/dpdk/device/dpdk.h
+++ b/src/plugins/dpdk/device/dpdk.h
@@ -393,32 +393,32 @@ typedef enum
void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
#define foreach_dpdk_rss_hf \
- _ (0, ETH_RSS_FRAG_IPV4, "ipv4-frag") \
- _ (1, ETH_RSS_NONFRAG_IPV4_TCP, "ipv4-tcp") \
- _ (2, ETH_RSS_NONFRAG_IPV4_UDP, "ipv4-udp") \
- _ (3, ETH_RSS_NONFRAG_IPV4_SCTP, "ipv4-sctp") \
- _ (4, ETH_RSS_NONFRAG_IPV4_OTHER, "ipv4-other") \
- _ (5, ETH_RSS_IPV4, "ipv4") \
- _ (6, ETH_RSS_IPV6_TCP_EX, "ipv6-tcp-ex") \
- _ (7, ETH_RSS_IPV6_UDP_EX, "ipv6-udp-ex") \
- _ (8, ETH_RSS_FRAG_IPV6, "ipv6-frag") \
- _ (9, ETH_RSS_NONFRAG_IPV6_TCP, "ipv6-tcp") \
- _ (10, ETH_RSS_NONFRAG_IPV6_UDP, "ipv6-udp") \
- _ (11, ETH_RSS_NONFRAG_IPV6_SCTP, "ipv6-sctp") \
- _ (12, ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other") \
- _ (13, ETH_RSS_IPV6_EX, "ipv6-ex") \
- _ (14, ETH_RSS_IPV6, "ipv6") \
- _ (15, ETH_RSS_L2_PAYLOAD, "l2-payload") \
- _ (16, ETH_RSS_PORT, "port") \
- _ (17, ETH_RSS_VXLAN, "vxlan") \
- _ (18, ETH_RSS_GENEVE, "geneve") \
- _ (19, ETH_RSS_NVGRE, "nvgre") \
- _ (20, ETH_RSS_GTPU, "gtpu") \
- _ (21, ETH_RSS_ESP, "esp") \
- _ (60, ETH_RSS_L4_DST_ONLY, "l4-dst-only") \
- _ (61, ETH_RSS_L4_SRC_ONLY, "l4-src-only") \
- _ (62, ETH_RSS_L3_DST_ONLY, "l3-dst-only") \
- _ (63, ETH_RSS_L3_SRC_ONLY, "l3-src-only")
+ _ (0, RTE_ETH_RSS_FRAG_IPV4, "ipv4-frag") \
+ _ (1, RTE_ETH_RSS_NONFRAG_IPV4_TCP, "ipv4-tcp") \
+ _ (2, RTE_ETH_RSS_NONFRAG_IPV4_UDP, "ipv4-udp") \
+ _ (3, RTE_ETH_RSS_NONFRAG_IPV4_SCTP, "ipv4-sctp") \
+ _ (4, RTE_ETH_RSS_NONFRAG_IPV4_OTHER, "ipv4-other") \
+ _ (5, RTE_ETH_RSS_IPV4, "ipv4") \
+ _ (6, RTE_ETH_RSS_IPV6_TCP_EX, "ipv6-tcp-ex") \
+ _ (7, RTE_ETH_RSS_IPV6_UDP_EX, "ipv6-udp-ex") \
+ _ (8, RTE_ETH_RSS_FRAG_IPV6, "ipv6-frag") \
+ _ (9, RTE_ETH_RSS_NONFRAG_IPV6_TCP, "ipv6-tcp") \
+ _ (10, RTE_ETH_RSS_NONFRAG_IPV6_UDP, "ipv6-udp") \
+ _ (11, RTE_ETH_RSS_NONFRAG_IPV6_SCTP, "ipv6-sctp") \
+ _ (12, RTE_ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other") \
+ _ (13, RTE_ETH_RSS_IPV6_EX, "ipv6-ex") \
+ _ (14, RTE_ETH_RSS_IPV6, "ipv6") \
+ _ (15, RTE_ETH_RSS_L2_PAYLOAD, "l2-payload") \
+ _ (16, RTE_ETH_RSS_PORT, "port") \
+ _ (17, RTE_ETH_RSS_VXLAN, "vxlan") \
+ _ (18, RTE_ETH_RSS_GENEVE, "geneve") \
+ _ (19, RTE_ETH_RSS_NVGRE, "nvgre") \
+ _ (20, RTE_ETH_RSS_GTPU, "gtpu") \
+ _ (21, RTE_ETH_RSS_ESP, "esp") \
+ _ (60, RTE_ETH_RSS_L4_DST_ONLY, "l4-dst-only") \
+ _ (61, RTE_ETH_RSS_L4_SRC_ONLY, "l4-src-only") \
+ _ (62, RTE_ETH_RSS_L3_DST_ONLY, "l3-dst-only") \
+ _ (63, RTE_ETH_RSS_L3_SRC_ONLY, "l3-src-only")
format_function_t format_dpdk_device_name;
format_function_t format_dpdk_device;