net/core/of_net.c | 5 +++++ 1 file changed, 5 insertions(+)
Embedded devices that don't have a fixed mac address may want
to use this property. For example dsa switch ports may use this property in
order avoid setting this from user space. Sometimes, in case of DSA switch
ports is desirable to use a random mac address rather than using the
conduit interface mac address.
example device tree config :
....
netswitch: swdev@5f {
compatible = "microchip,ksz9897";
...
ports {
port@0 {
reg = <0>;
label = "eth0";
random-address;
}
...
}
}
...
This way the switch ports that have the "random-address" property
will use a random mac address rather than the conduit mac address.
PS. Sorry for the previous malformed patch
Signed-off-by: Iulian Gilca <igilca1980@gmail.com>
---
net/core/of_net.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/net/core/of_net.c b/net/core/of_net.c
index 93ea425b9248..8a1fc8a4e87f 100644
--- a/net/core/of_net.c
+++ b/net/core/of_net.c
@@ -142,6 +142,11 @@ int of_get_mac_address(struct device_node *np, u8 *addr)
if (!ret)
return 0;
+ if (of_find_property(np, "random-address", NULL)) {
+ eth_random_addr(addr);
+ return 0;
+ }
+
return of_get_mac_address_nvmem(np, addr);
}
EXPORT_SYMBOL(of_get_mac_address);
--
2.43.0
On Thu, Oct 10, 2024 at 05:54:17PM -0400, Iulian Gilca wrote: > Embedded devices that don't have a fixed mac address may want > to use this property. For example dsa switch ports may use this property in > order avoid setting this from user space. Sometimes, in case of DSA switch > ports is desirable to use a random mac address rather than using the > conduit interface mac address. > > example device tree config : > > .... > netswitch: swdev@5f { > compatible = "microchip,ksz9897"; > ... > ports { > port@0 { > reg = <0>; > label = "eth0"; > random-address; > } > ... > } > } > > ... > > This way the switch ports that have the "random-address" property > will use a random mac address rather than the conduit mac address. > > PS. Sorry for the previous malformed patch In addition to Russells emai: https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html and it is much better to answer questions asked than post yet another patch. Yes, the commit message is better, but it still does not fully explain 'Why?' and convince us this is the correct solution to your problem. What _is_ the problem you are trying to solve? Andrew --- pw-bot: cr
On Thu, Oct 10, 2024 at 05:54:17PM -0400, Iulian Gilca wrote: > Embedded devices that don't have a fixed mac address may want > to use this property. For example dsa switch ports may use this property in > order avoid setting this from user space. As Andrew has already explained, DSA switch ports derive their ethernet address from the ethernet address of the host MAC they are connected to, and each port does not have its own ethernet address. Please explain why you want to have DSA switch ports having their own randomised ethernet addresses, and why this is advantageous over having a stable ethernet address for the switch ports. > Sometimes, in case of DSA switch > ports is desirable to use a random mac address rather than using the > conduit interface mac address. This is just a statement but gives no insight into _why_ you want this. We want to know the reason behind this change. -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
© 2016 - 2024 Red Hat, Inc.