Re: [dpdk-dev] [PATCH 3/5] replace RTE_IPv4 with uppercase RTE_IPV4

2019-06-03 Thread Thomas Monjalon
29/05/2019 16:26, Olivier Matz: > On Wed, May 29, 2019 at 01:29:16PM +0200, David Marchand wrote: > > Since we change this macro, we might as well avoid triggering complaints > > from checkpatch because of mixed case. > > > > old=RTE_IPv4 > > new=RTE_IPV4 > > git grep -lw $old | xargs sed -i -e "s

Re: [dpdk-dev] [PATCH 3/5] replace RTE_IPv4 with uppercase RTE_IPV4

2019-06-03 Thread David Marchand
Thomas, Ferruh, Can I get your review on these patches? Then a quick merge would help, so that I send the changes on OVS dpdk-latest branch. Thanks! -- David Marchand On Wed, May 29, 2019 at 6:50 PM Olivier Matz wrote: > On Wed, May 29, 2019 at 01:29:16PM +0200, David Marchand wrote: > > Si

Re: [dpdk-dev] [PATCH 3/5] replace RTE_IPv4 with uppercase RTE_IPV4

2019-05-29 Thread Olivier Matz
On Wed, May 29, 2019 at 01:29:16PM +0200, David Marchand wrote: > Since we change this macro, we might as well avoid triggering complaints > from checkpatch because of mixed case. > > old=RTE_IPv4 > new=RTE_IPV4 > git grep -lw $old | xargs sed -i -e "s/\<$old\>/$new/g" > > Signed-off-by: David Ma