From: Haiyue Wang Date: Thu, 14 Jun 2018 03:09:49 +0000 (+0800) Subject: mbuf: fix typo in IPv6 macro comment X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=af87183b82da32b2ca832a51acdb5a2a6117c718;p=dpdk.git mbuf: fix typo in IPv6 macro comment Comment should mention IPv6, not IPv4. Fixes: f295a00a2b44 ("mbuf: add definitions of unified packet types") Cc: stable@dpdk.org Signed-off-by: Haiyue Wang Reviewed-by: Ferruh Yigit --- diff --git a/lib/librte_mbuf/rte_mbuf_ptype.h b/lib/librte_mbuf/rte_mbuf_ptype.h index 79ea31425a..01acc66e23 100644 --- a/lib/librte_mbuf/rte_mbuf_ptype.h +++ b/lib/librte_mbuf/rte_mbuf_ptype.h @@ -653,9 +653,9 @@ extern "C" { #define RTE_ETH_IS_IPV4_HDR(ptype) ((ptype) & RTE_PTYPE_L3_IPV4) /** - * Check if the (outer) L3 header is IPv4. To avoid comparing IPv4 types one by - * one, bit 6 is selected to be used for IPv4 only. Then checking bit 6 can - * determine if it is an IPV4 packet. + * Check if the (outer) L3 header is IPv6. To avoid comparing IPv6 types one by + * one, bit 6 is selected to be used for IPv6 only. Then checking bit 6 can + * determine if it is an IPV6 packet. */ #define RTE_ETH_IS_IPV6_HDR(ptype) ((ptype) & RTE_PTYPE_L3_IPV6)