[dpdk-dev] [PATCH] net/ice: fix packet type table

Ye Xiaolong xiaolong.ye at intel.com
Wed Dec 11 10:06:41 CET 2019


On 12/10, Shougang Wang wrote:
>According to comms package, index 94 should be MAC_IPV6_ICMP,
>not MAC_IPV4_ICMP. This patch fix the issue.
>
>Fixes: 4cf29798b4c9 ("net/ice: fix packet type table")
>Cc: stable at dpdk.org
>
>Signed-off-by: Shougang Wang <shougangx.wang at intel.com>
>---
> drivers/net/ice/ice_rxtx.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/drivers/net/ice/ice_rxtx.c b/drivers/net/ice/ice_rxtx.c
>index 2db174456..b4f5367c5 100644
>--- a/drivers/net/ice/ice_rxtx.c
>+++ b/drivers/net/ice/ice_rxtx.c
>@@ -3268,7 +3268,7 @@ ice_get_default_pkt_type(uint16_t ptype)
> 		       RTE_PTYPE_L4_TCP,
> 		[93] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
> 		       RTE_PTYPE_L4_SCTP,
>-		[94] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV4_EXT_UNKNOWN |
>+		[94] = RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6_EXT_UNKNOWN |
> 		       RTE_PTYPE_L4_ICMP,
> 
> 		/* IPv6 --> IPv4 */
>-- 
>2.17.1
>

Acked-by: Xiaolong Ye <xiaolong.ye at intel.com>

Applied to dpdk-next-net-intel, Thanks.


More information about the dev mailing list