Re: [dpdk-dev] [PATCH v3 2/6] net/ether: add rte_eth_unformat_addr

2019-06-05 Thread Stephen Hemminger
On Wed, 5 Jun 2019 11:55:21 +0300 Andrew Rybchenko wrote: > On 6/5/19 4:08 AM, Stephen Hemminger wrote: > > Make a function that coresponds with eth_aton_r which can > > I guess ether_aton_r > > > be used to convert string to rte_ether_addr. > > > > This also allows rte_ethdev to no longer de

Re: [dpdk-dev] [PATCH v3 2/6] net/ether: add rte_eth_unformat_addr

2019-06-05 Thread Andrew Rybchenko
On 6/5/19 4:08 AM, Stephen Hemminger wrote: Make a function that coresponds with eth_aton_r which can I guess ether_aton_r be used to convert string to rte_ether_addr. This also allows rte_ethdev to no longer depend on the cmdline library. Signed-off-by: Stephen Hemminger --- lib/librte_

[dpdk-dev] [PATCH v3 2/6] net/ether: add rte_eth_unformat_addr

2019-06-04 Thread Stephen Hemminger
Make a function that coresponds with eth_aton_r which can be used to convert string to rte_ether_addr. This also allows rte_ethdev to no longer depend on the cmdline library. Signed-off-by: Stephen Hemminger --- lib/librte_net/rte_ether.c | 47 ++ lib/librte_