Repository : ssh://git@diktynna/batman-adv On branches: main,main
commit 594ab6d6c77dd54fba18965a0c6dda8c349e4adb Author: Sven Eckelmann sven@narfation.org Date: Sun Feb 2 13:39:32 2025 +0100
batman-adv: Use consistent name for mesh interface
The way how the virtual interface is called inside the batman-adv source code is not consistent. The genl headers call it meshif and the rest of the code calls is (mostly) softif.
The genl definitions cannot be touched because they are part of the UAPI. But the rest of the batman-adv code can be touched to have a consistent name again.
The bulk of the renaming was done using
sed -i -e 's/soft(-|_| |)i([nf])/mesh\1i\2/g' \ -e 's/SOFT(-|_| |)I([NF])/MESH\1I\2/g'
and then it was adjusted slightly when proofreading the changes.
Signed-off-by: Sven Eckelmann sven@narfation.org
594ab6d6c77dd54fba18965a0c6dda8c349e4adb CHANGELOG.rst | 14 +- Documentation/networking/batman-adv.rst | 2 +- compat-include/net/addrconf.h | 6 +- include/uapi/linux/batman_adv.h | 18 +- net/batman-adv/Makefile | 2 +- net/batman-adv/bat_algo.c | 8 +- net/batman-adv/bat_iv_ogm.c | 64 +- net/batman-adv/bat_v.c | 28 +- net/batman-adv/bat_v_elp.c | 16 +- net/batman-adv/bat_v_ogm.c | 42 +- net/batman-adv/bitarray.c | 2 +- net/batman-adv/bridge_loop_avoidance.c | 106 +-- net/batman-adv/distributed-arp-table.c | 68 +- net/batman-adv/distributed-arp-table.h | 4 +- net/batman-adv/fragmentation.c | 2 +- net/batman-adv/gateway_client.c | 38 +- net/batman-adv/gateway_common.c | 8 +- net/batman-adv/hard-interface.c | 140 ++-- net/batman-adv/hard-interface.h | 12 +- net/batman-adv/log.c | 2 +- net/batman-adv/log.h | 10 +- net/batman-adv/main.c | 42 +- net/batman-adv/main.h | 16 +- net/batman-adv/mesh-interface.c | 1166 +++++++++++++++++++++++++++++++ net/batman-adv/mesh-interface.h | 42 ++ net/batman-adv/multicast.c | 182 ++--- net/batman-adv/multicast_forw.c | 30 +- net/batman-adv/netlink.c | 178 ++--- net/batman-adv/netlink.h | 2 +- net/batman-adv/network-coding.c | 64 +- net/batman-adv/originator.c | 58 +- net/batman-adv/routing.c | 42 +- net/batman-adv/send.c | 34 +- net/batman-adv/send.h | 4 +- net/batman-adv/soft-interface.c | 1166 ------------------------------- net/batman-adv/soft-interface.h | 42 -- net/batman-adv/tp_meter.c | 30 +- net/batman-adv/trace.h | 4 +- net/batman-adv/translation-table.c | 198 +++--- net/batman-adv/translation-table.h | 4 +- net/batman-adv/tvlv.c | 26 +- net/batman-adv/types.h | 46 +- 42 files changed, 1984 insertions(+), 1984 deletions(-)
Diff suppressed because of size. To see it, use:
git diff-tree --root --patch-with-stat --no-color --ignore-space-at-eol --textconv --ext-diff --cc 594ab6d6c77dd54fba18965a0c6dda8c349e4adb