All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] examples/l3fwd: fix IPv6 packet type parse
@ 2017-08-04  7:52 Qi Zhang
  2017-08-04 23:34 ` [dpdk-stable] " Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Qi Zhang @ 2017-08-04  7:52 UTC (permalink / raw)
  To: tomasz.kantecki; +Cc: dev, Qi Zhang, stable

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 <qi.z.zhang@intel.com>
---
 examples/l3fwd/l3fwd_em.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3fwd/l3fwd_em.c
index 9046f43..53d081b 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;
-- 
2.9.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [dpdk-stable] [PATCH] examples/l3fwd: fix IPv6 packet type parse
  2017-08-04  7:52 [PATCH] examples/l3fwd: fix IPv6 packet type parse Qi Zhang
@ 2017-08-04 23:34 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2017-08-04 23:34 UTC (permalink / raw)
  To: Qi Zhang; +Cc: stable, tomasz.kantecki, dev

04/08/2017 09:52, Qi Zhang:
> 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 <qi.z.zhang@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-04 23:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-04  7:52 [PATCH] examples/l3fwd: fix IPv6 packet type parse Qi Zhang
2017-08-04 23:34 ` [dpdk-stable] " Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.