From: Simon Wunderlich <sw@simonwunderlich.de>
To: netdev@vger.kernel.org
Cc: "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Simon Horman <horms@kernel.org>,
b.a.t.m.a.n@lists.open-mesh.org,
Simon Wunderlich <sw@simonwunderlich.de>
Subject: [PATCH net-next 00/10] pull request for net-next: batman-adv 2026-08-05
Date: Wed, 5 Aug 2026 16:27:14 +0200 [thread overview]
Message-ID: <20260805143200.722098-1-sw@simonwunderlich.de> (raw)
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/
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(-)
next reply other threads:[~2026-08-05 14:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 14:27 Simon Wunderlich [this message]
2026-08-05 14:27 ` [PATCH net-next 01/10] batman-adv: dat: drop non-4addr backwards compatibility Simon Wunderlich
2026-08-06 15:03 ` Sven Eckelmann
2026-08-05 14:27 ` [PATCH net-next 02/10] batman-adv: tvlv: handle negative tvlv processing return codes Simon Wunderlich
2026-08-06 15:36 ` Sven Eckelmann
2026-08-05 14:27 ` [PATCH net-next 03/10] batman-adv: add missing kernel-doc comments Simon Wunderlich
2026-08-06 16:02 ` Sven Eckelmann
2026-08-06 18:25 ` Sven Eckelmann
2026-08-05 14:27 ` [PATCH net-next 04/10] batman-adv: fix kernel-doc for functions holding skb ownership Simon Wunderlich
2026-08-05 14:27 ` [PATCH net-next 05/10] batman-adv: annotate functions which may reallocate the skbuff Simon Wunderlich
2026-08-06 16:13 ` Sven Eckelmann
2026-08-05 14:27 ` [PATCH net-next 06/10] batman-adv: split multiple declarations per line Simon Wunderlich
2026-08-05 14:27 ` [PATCH net-next 07/10] batman-adv: switch var declarations to reverse x-mas tree order Simon Wunderlich
2026-08-05 14:27 ` [PATCH net-next 08/10] batman-adv: handle errors in batadv_init() Simon Wunderlich
2026-08-05 14:27 ` [PATCH net-next 09/10] batman-adv: correct NET_RX_* NET_XMIT_* confusion Simon Wunderlich
2026-08-05 14:27 ` [PATCH net-next 10/10] batman-adv: remove negative returns for batadv_send_skb_unicast Simon Wunderlich
2026-08-06 16:26 ` Sven Eckelmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260805143200.722098-1-sw@simonwunderlich.de \
--to=sw@simonwunderlich.de \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.