> -----Original Message----- > From: Ferruh Yigit <ferruh.yi...@intel.com> > Sent: Thursday, November 14, 2019 10:09 AM > To: John Daley (johndale) <johnd...@cisco.com>; Hyong Youb Kim (hyonkim) > <hyon...@cisco.com> > Cc: Reshma Pattan <reshma.pat...@intel.com>; dev@dpdk.org; > xiaoyun...@intel.com; Bernard Iremonger <bernard.iremon...@intel.com>; > David Harton (dharton) <dhar...@cisco.com> > Subject: Re: [PATCH] net: replace IP VHL DEF macro with RTE IPV4 VHL DEF > > On 11/8/2019 10:02 AM, Reshma Pattan wrote: > > diff --git a/drivers/net/enic/enic_fm_flow.c > b/drivers/net/enic/enic_fm_flow.c > > index a1598b822..e3e3d737b 100644 > > --- a/drivers/net/enic/enic_fm_flow.c > > +++ b/drivers/net/enic/enic_fm_flow.c > > @@ -17,9 +17,6 @@ > > #include "vnic_nic.h" > > > > #define IP_DEFTTL 64 /* from RFC 1340. */ > > -#define IP_VERSION 0x40 > > -#define IP_HDRLEN 0x05 /* default IP header length == five 32-bits words. > */ > > -#define IP_VHL_DEF (IP_VERSION | IP_HDRLEN) > > #define IP6_VTC_FLOW 0x60000000 > > > > /* Highest Item type supported by Flowman */ > > @@ -1000,7 +997,7 @@ enic_fm_copy_vxlan_encap(struct enic_flowman > *fm, > > sizeof(struct rte_vxlan_hdr); > > append_template(&template, &off, item->spec, > > sizeof(struct rte_ipv4_hdr)); > > - ip4->version_ihl = IP_VHL_DEF; > > + ip4->version_ihl = RTE_IPV4_VHL_DEF; > > if (ip4->time_to_live == 0) > > ip4->time_to_live = IP_DEFTTL; > > ip4->next_proto_id = IPPROTO_UDP; > > + David Harton, there was some comment from him in relevant issue > > Hi John, Hyong Youb, > > Are you OK with the changes in the PMD? >
Yes, looks good to me. Thanks for pinging us. Acked-by: Hyong Youb Kim <hyon...@cisco.com> -Hyong