diff options
author | Ido Barnea <ibarnea@cisco.com> | 2015-12-14 05:12:45 +0200 |
---|---|---|
committer | Ido Barnea <ibarnea@cisco.com> | 2015-12-27 08:51:30 +0200 |
commit | 7de16b05fa2ef6feeec8370b36037a59aeb1f8e5 (patch) | |
tree | b989ba0dc8668d60e7a24a497bee7e9ed2bddafb /src/dpdk22/lib/librte_ether | |
parent | 509648b87434b9032d38b8ca5ad470ba3edcc036 (diff) |
Changes only to DPDK files: dpdk22 40G fixes for TTL and ip_protocol match and IPv6 support + TX hang issue fix
Diffstat (limited to 'src/dpdk22/lib/librte_ether')
-rw-r--r-- | src/dpdk22/lib/librte_ether/rte_eth_ctrl.h | 6 | ||||
-rw-r--r-- | src/dpdk22/lib/librte_ether/rte_ethdev.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/dpdk22/lib/librte_ether/rte_eth_ctrl.h b/src/dpdk22/lib/librte_ether/rte_eth_ctrl.h index ce224adb..dc26439d 100644 --- a/src/dpdk22/lib/librte_ether/rte_eth_ctrl.h +++ b/src/dpdk22/lib/librte_ether/rte_eth_ctrl.h @@ -407,6 +407,9 @@ struct rte_eth_l2_flow { struct rte_eth_ipv4_flow { uint32_t src_ip; /**< IPv4 source address to match. */ uint32_t dst_ip; /**< IPv4 destination address to match. */ + // TREX_PATCH + uint8_t ttl; /**< IPv4 ttl to match */ + uint8_t l4_protocol; /**< IPv4 l4 protocol to match */ }; /** @@ -443,6 +446,9 @@ struct rte_eth_sctpv4_flow { struct rte_eth_ipv6_flow { uint32_t src_ip[4]; /**< IPv6 source address to match. */ uint32_t dst_ip[4]; /**< IPv6 destination address to match. */ + // TREX_PATCH + uint8_t hop_limit; /**< IPv6 hop limit to match */ + uint8_t l4_protocol; /**< IPv6 l4 protocol to match */ }; /** diff --git a/src/dpdk22/lib/librte_ether/rte_ethdev.h b/src/dpdk22/lib/librte_ether/rte_ethdev.h index bada8ade..f8c7c86d 100644 --- a/src/dpdk22/lib/librte_ether/rte_ethdev.h +++ b/src/dpdk22/lib/librte_ether/rte_ethdev.h @@ -734,6 +734,8 @@ struct rte_fdir_conf { struct rte_eth_fdir_masks mask; struct rte_eth_fdir_flex_conf flex_conf; /**< Flex payload configuration. */ + // TREX_PATCH + uint8_t flexbytes_offset; }; /** |