From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.simonwunderlich.de (mail.simonwunderlich.de [23.88.38.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3AC3B3BB57 for ; Tue, 30 Jun 2026 14:06:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=23.88.38.48 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782828388; cv=none; b=FuCrLe1zzbiifnSRWdJe4kUn9am1ZOpleDBUg029IC4GBw9A5th5CvZ1Hyvb7sO045Cex4inWVfc1pyGQwr8lPmrqoyACjxpab9Syob08Ch2NSuAt4thHkg6DhK+ZJ8I3SxNTjBY9xGO6HF7IkUZPxHp9dZi0DHr5Z9C+9v+o4w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782828388; c=relaxed/simple; bh=czmVNJLBzYnqYzRW1H4oNqFTDuuhbwfs2khaJXKGkuc=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Vj18Ud163Fxht0ixc+l1j8ziZB/4k1kYLju/dYJRT56Y83xmhm0+eWUH9gzX8NFMmV0j9dzbrCAxXky+4D7q3CYPL6dZNSK2j2dAeZbdnOr9qyoPmE9A/8sPElzZ9ZWUQCKtIf0WURNDsLeKkiwbAoFa0nyrd9RKyE+Erxp4eNY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=simonwunderlich.de; spf=pass smtp.mailfrom=simonwunderlich.de; dkim=pass (2048-bit key) header.d=simonwunderlich.de header.i=@simonwunderlich.de header.b=I9aeYTkz; arc=none smtp.client-ip=23.88.38.48 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=simonwunderlich.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=simonwunderlich.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=simonwunderlich.de header.i=@simonwunderlich.de header.b="I9aeYTkz" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=simonwunderlich.de; s=09092022; t=1782828384; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=RML7WXnJKm0QCAIXXu6o7fujESjNPIoRg8QFFLLlkbU=; b=I9aeYTkzmQugHZyHbSOxmQbBHfhCBE3wpKMbAzOuqMdNFiDQErANeChF3fCNehDgcmB781 hBAx+RBlYDivhXhRxdiSpaK+aLYbJJOsyVd34S2Mp2sw0vJWC1YVQNjslp3lrR685+psAa Es/H1cWpv9vdiq6qZggoZmfao2oXbzbtCIK59lyUrX98L7mzFSCDXdXQc3eSx0o3OZP+UB 6sAxZetzP7TUKMd8KDU9hndeAq+yVy8tpcPCpwn8PL+Jab+1Em66xAcPVtAKa0epdjPP33 qSJycq2AuR/8v7eqbJmFJdVapL5T/4vcuFdZPJqsxZWrwCKFUQ2I8gyqbf0V8g== From: Simon Wunderlich To: netdev@vger.kernel.org Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , b.a.t.m.a.n@lists.open-mesh.org, Simon Wunderlich Subject: [PATCH net-next 00/15] pull request for net-next: batman-adv 2026-06-30 Date: Tue, 30 Jun 2026 16:06:08 +0200 Message-ID: <20260630140623.88431-1-sw@simonwunderlich.de> X-Mailer: git-send-email 2.47.3 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Dear net maintainers, here is cleanup pull request of batman-adv to go into net-next. Please pull or let me know of any problem! Thank you, Simon The following changes since commit 805185b7c7a1069e407b6f7b3bc98e44d415f484: Merge tag 'net-7.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net (2026-06-25 12:25:36 -0700) are available in the Git repository at: https://git.open-mesh.org/batadv.git tags/batadv-next-pullrequest-20260630 for you to fetch changes up to 247691642fd4de7a029de253e47dba936542ce9f: batman-adv: tp_meter: delay allocation of unacked entry (2026-06-28 22:09:04 +0200) ---------------------------------------------------------------- This cleanup patchset includes the following patches: - drop hardif global list, by Nora Schiffer (2 patches) - make hard_iface->mesh_iface immutable, by Sven Eckelmann - further post-hardif global list cleanups, by Nora Schiffer (3 patches) - cleanups and simplifications depending on the hardif->mesh_iface immutability guarantee, by Sven Eckelmann (3 patches) - tvlv: extract tvlv header iterator, by Sven Eckelmann - tp_meter: improve unacked list handling, by Sven Eckelmann (5 patches) ---------------------------------------------------------------- Nora Schiffer (5): batman-adv: create hardif only for netdevs that are part of a mesh batman-adv: remove global hardif list batman-adv: remove BATADV_IF_NOT_IN_USE hardif state batman-adv: move hardif generation counter into batadv_priv batman-adv: drop unneeded goto and initialization from batadv_hardif_disable_interface() Sven Eckelmann (10): batman-adv: make hard_iface->mesh_iface immutable batman-adv: drop NULL check for immutable hardif->mesh_iface Revert "batman-adv: v: stop OGMv2 on disabled interface" batman-adv: iv: drop migration check for batadv_hard_iface batman-adv: tvlv: extract tvlv header iterator batman-adv: tp_meter: simplify unordered ack calculation batman-adv: tp_meter: combine adjacent/overlapping unacked entries batman-adv: tp_meter: keep unacked list for receivers batman-adv: tp_meter: adjust name of receiver lock batman-adv: tp_meter: delay allocation of unacked entry net/batman-adv/bat_iv_ogm.c | 12 +- net/batman-adv/bat_v_elp.c | 9 +- net/batman-adv/bat_v_ogm.c | 33 ++--- net/batman-adv/bridge_loop_avoidance.c | 9 +- net/batman-adv/hard-interface.c | 165 ++++++++----------------- net/batman-adv/hard-interface.h | 10 +- net/batman-adv/main.c | 9 -- net/batman-adv/main.h | 3 - net/batman-adv/mesh-interface.c | 13 +- net/batman-adv/netlink.c | 4 +- net/batman-adv/originator.c | 4 - net/batman-adv/tp_meter.c | 217 ++++++++++++++++++++------------- net/batman-adv/tvlv.c | 86 +++++++------ net/batman-adv/types.h | 28 ++--- 14 files changed, 273 insertions(+), 329 deletions(-)