From: Qi Zhang Date: Fri, 4 Aug 2017 07:52:06 +0000 (+0800) Subject: examples/l3fwd: fix IPv6 packet type parse X-Git-Tag: spdx-start~2216 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5b9b65b14e05c106bb8229c0fe0b347315da7d00;p=dpdk.git examples/l3fwd: fix IPv6 packet type parse Fix a typo that cause IPv6 packet type not be parsed. Fixes: 71a7e2424e07 ("examples/l3fwd: fix using packet type blindly") Cc: stable@dpdk.org Signed-off-by: Qi Zhang --- diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3fwd/l3fwd_em.c index 9046f43461..53d081bd76 100644 --- a/examples/l3fwd/l3fwd_em.c +++ b/examples/l3fwd/l3fwd_em.c @@ -614,7 +614,7 @@ em_parse_ptype(struct rte_mbuf *m) packet_type |= RTE_PTYPE_L4_UDP; } else packet_type |= RTE_PTYPE_L3_IPV4_EXT; - } else if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv4)) { + } else if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv6)) { ipv6_hdr = (struct ipv6_hdr *)l3; if (ipv6_hdr->proto == IPPROTO_TCP) packet_type |= RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_TCP;