Re: [PATCH v3 4/4] net/tap: use rte_ether_unformat_address

2023-10-11 Thread Ferruh Yigit
On 10/3/2023 9:29 PM, Stephen Hemminger wrote: > From: David Christensen > > Building DPDK with gcc 12 on a ppc64le system generates a > stringop-overflow warning. Replace the local MAC address > validation function parse_user_mac() with a call to > rte_ether_unformat_addr() instead. > > Bugzill

[PATCH v3 4/4] net/tap: use rte_ether_unformat_address

2023-10-03 Thread Stephen Hemminger
From: David Christensen Building DPDK with gcc 12 on a ppc64le system generates a stringop-overflow warning. Replace the local MAC address validation function parse_user_mac() with a call to rte_ether_unformat_addr() instead. Bugzilla ID: 1197 Cc: sta...@dpdk.org Signed-off-by: David Christense