net/memif: use new ethernet address parser
Use rte_ether_unformat_addr rather than sscanf. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
72505bf36f
commit
4a49dbd1b3
@ -1224,13 +1224,8 @@ static int
|
||||
memif_set_mac(const char *key __rte_unused, const char *value, void *extra_args)
|
||||
{
|
||||
struct rte_ether_addr *ether_addr = (struct rte_ether_addr *)extra_args;
|
||||
int ret = 0;
|
||||
|
||||
ret = sscanf(value, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
|
||||
ðer_addr->addr_bytes[0], ðer_addr->addr_bytes[1],
|
||||
ðer_addr->addr_bytes[2], ðer_addr->addr_bytes[3],
|
||||
ðer_addr->addr_bytes[4], ðer_addr->addr_bytes[5]);
|
||||
if (ret != 6)
|
||||
if (rte_ether_unformat_addr(value, ether_addr) < 0)
|
||||
MIF_LOG(WARNING, "Failed to parse mac '%s'.", value);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user