[PATCH net-next 00/10] pull request for net-next: batman-adv 2026-08-05
From: Simon Wunderlich <sw@simonwunderlich.de>
Date: 2026-08-05 14:35:13
Also in:
batman
Dear net maintainers,
here is a cleanup pull request of batman-adv to go into net-next. It
replaces my previous pull request as of 2026-07-28 [1]. We're including
only cleanups patches of the previous pull request - some of them revised
- plus some new cleanup patches. We've dropped the fix patches from the
previous pull request and will submit those separately, later.
Please pull or let me know of any problem!
Thank you,
Simon
[1] https://lore.kernel.org/netdev/20260728133918.643267-1-sw@simonwunderlich.de/ (local)
The following changes since commit b470fde8f77b56ff273c5527484b99499b894e16:
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net (2026-07-10 10:20:05 +0200)
are available in the Git repository at:
https://git.open-mesh.org/batadv.git tags/batadv-next-pullrequest-20260805
for you to fetch changes up to 02aee8ebea3a714d92b27da9a9d8791d8c8c9a4f:
batman-adv: remove negative returns for batadv_send_skb_unicast (2026-08-05 10:00:16 +0200)
----------------------------------------------------------------
This cleanup patchset includes the following patches:
- dat: drop non-4addr backwards compatibility, by Sven Eckelmann
- tvlv: handle negative tvlv processing return codes,
by Sven Eckelmann
- improve kernel-doc, add comments and warnings,
by Sven Eckelmann (3 patches)
- coding style: split declarations, reverse x-mas tree,
by Sven Eckelmann (2 patches)
- handle errors in batadv_init(), by Minhong He
- correct NET_RX_* NET_XMIT_* confusion, by Sven Eckelmann
- remove negative returns for batadv_send_skb_unicast,
by Sven Eckelmann
----------------------------------------------------------------
Minhong He (1):
batman-adv: handle errors in batadv_init()
Sven Eckelmann (9):
batman-adv: dat: drop non-4addr backwards compatibility
batman-adv: tvlv: handle negative tvlv processing return codes
batman-adv: add missing kernel-doc comments
batman-adv: fix kernel-doc for functions holding skb ownership
batman-adv: annotate functions which may reallocate the skbuff
batman-adv: split multiple declarations per line
batman-adv: switch var declarations to reverse x-mas tree order
batman-adv: correct NET_RX_* NET_XMIT_* confusion
batman-adv: remove negative returns for batadv_send_skb_unicast
include/uapi/linux/batadv_packet.h | 16 +-
net/batman-adv/bat_algo.c | 16 +-
net/batman-adv/bat_iv_ogm.c | 311 ++++++++++++++++++++------
net/batman-adv/bat_iv_ogm.h | 1 +
net/batman-adv/bat_v.c | 96 +++++++--
net/batman-adv/bat_v.h | 5 +
net/batman-adv/bat_v_elp.c | 19 +-
net/batman-adv/bat_v_ogm.c | 34 +--
net/batman-adv/bitarray.c | 9 +-
net/batman-adv/bridge_loop_avoidance.c | 109 ++++++----
net/batman-adv/distributed-arp-table.c | 239 ++++++++++++++------
net/batman-adv/fragmentation.c | 35 +--
net/batman-adv/gateway_client.c | 46 ++--
net/batman-adv/gateway_common.c | 6 +-
net/batman-adv/hard-interface.c | 94 +++++++-
net/batman-adv/hash.c | 5 +-
net/batman-adv/hash.h | 42 ++--
net/batman-adv/log.h | 16 +-
net/batman-adv/main.c | 104 +++++++--
net/batman-adv/mesh-interface.c | 109 ++++++++--
net/batman-adv/multicast.c | 43 ++--
net/batman-adv/multicast_forw.c | 26 ++-
net/batman-adv/netlink.c | 20 +-
net/batman-adv/netlink.h | 2 +-
net/batman-adv/originator.c | 64 +++---
net/batman-adv/routing.c | 121 ++++++++---
net/batman-adv/send.c | 13 +-
net/batman-adv/tp_meter.c | 41 ++--
net/batman-adv/translation-table.c | 383 +++++++++++++++++++++++++--------
net/batman-adv/tvlv.c | 46 ++--
net/batman-adv/types.h | 4 +-
31 files changed, 1541 insertions(+), 534 deletions(-)