Re: [dpdk-dev] [PATCH v5 6/8] cmdline: use new ethernet address parser

2019-07-17 Thread Olivier Matz
On Wed, Jul 17, 2019 at 10:04:10AM -0400, Aaron Conole wrote: > Stephen Hemminger writes: > > > On Tue, 16 Jul 2019 01:17:56 + > > "Li, WenjieX A" wrote: > > > >> Hi Stephen, > >> > >> > >> > >> This DPDK patch makes cmdline_autotest failed. List the details as below. > >> > >> Could you

Re: [dpdk-dev] [PATCH v5 6/8] cmdline: use new ethernet address parser

2019-07-17 Thread Aaron Conole
Stephen Hemminger writes: > On Tue, 16 Jul 2019 01:17:56 + > "Li, WenjieX A" wrote: > >> Hi Stephen, >> >> >> >> This DPDK patch makes cmdline_autotest failed. List the details as below. >> >> Could you please help to resolve it? >> >> Thank you! >> Test Setup >> Steps to reproduce >> L

Re: [dpdk-dev] [PATCH v5 6/8] cmdline: use new ethernet address parser

2019-07-16 Thread Stephen Hemminger
On Tue, 16 Jul 2019 01:17:56 + "Li, WenjieX A" wrote: > Hi Stephen, > > > > This DPDK patch makes cmdline_autotest failed. List the details as below. > > Could you please help to resolve it? > > Thank you! > Test Setup > Steps to reproduce > List the steps to reproduce the issue. > ./x86

[dpdk-dev] [PATCH v5 6/8] cmdline: use new ethernet address parser

2019-06-24 Thread Stephen Hemminger
Now that there is a version of ether_aton in rte_ether, it can be used by the cmdline ethernet address parser. Note: ether_aton_r can not be used in cmdline because the old code would accept either bytes XX:XX:XX:XX:XX:XX or words :: and we need to keep compatiablity. Signed-off-by: S