batman-adv: Avoid name based attaching of hard interfaces
authorSven Eckelmann <sven@narfation.org>
Tue, 1 Jun 2021 21:50:35 +0000 (23:50 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Wed, 2 Jun 2021 20:25:45 +0000 (22:25 +0200)
commitfa205602d46e0b66c0c90672bce8b36e5de449df
tree6d788897d8f118e1f52ba53d67d2a57d8166b544
parentbf6b260b8a9654db99761cde74c6b16356b9b441
batman-adv: Avoid name based attaching of hard interfaces

The sysfs code for the batman-adv/mesh_iface file was receiving a string of
the batadv interface. This interface name was then provided to the code
which shared sysfs+rtnetlink code for attaching an hard-interface to an
batadv interface. The rtnetlink code was also using the (extracted)
interface name from the ndo_add_slave callback to increase the shared code
- even when it would have been more efficient to use the provided
net_device object directly instead of searching it again (based on its
name) in batadv_hardif_enable_interface.

But this indirect handling is no longer necessary because the sysfs code
was dropped. There is now only a single code path which is using
batadv_hardif_enable_interface.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/hard-interface.c
net/batman-adv/hard-interface.h
net/batman-adv/soft-interface.c