mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
net, treewide: define and use MAC_ADDR_STR_LEN
There are a few places in the tree which compute the length of the string representation of a MAC address as 3 * ETH_ALEN - 1. Define a constant for this and use it where relevant. No functionality changes are expected. Signed-off-by: Uday Shankar <ushankar@purestorage.com> Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Reviewed-by: Breno Leitao <leitao@debian.org> Reviewed-by: Simon Horman <horms@verge.net.au> Link: https://patch.msgid.link/20250312-netconsole-v6-1-3437933e79b8@purestorage.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
committed by
Paolo Abeni
parent
34e5ededf4
commit
6d6c1ba782
@@ -37,7 +37,7 @@ static int u_boot_env_read_post_process_ethaddr(void *context, const char *id, i
|
||||
{
|
||||
u8 mac[ETH_ALEN];
|
||||
|
||||
if (bytes != 3 * ETH_ALEN - 1)
|
||||
if (bytes != MAC_ADDR_STR_LEN)
|
||||
return -EINVAL;
|
||||
|
||||
if (!mac_pton(buf, mac))
|
||||
|
||||
Reference in New Issue
Block a user