From patchwork Thu Aug 19 15:33:28 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Simon Wunderlich X-Patchwork-Id: 500200 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-21.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8B6B5C432BE for ; Thu, 19 Aug 2021 15:41:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 72BE26108E for ; Thu, 19 Aug 2021 15:41:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240669AbhHSPly (ORCPT ); Thu, 19 Aug 2021 11:41:54 -0400 Received: from simonwunderlich.de ([79.140.42.25]:47034 "EHLO simonwunderlich.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240585AbhHSPlw (ORCPT ); Thu, 19 Aug 2021 11:41:52 -0400 Received: from kero.packetmixer.de (p200300c5971402c0773d8e0e2371531e.dip0.t-ipconnect.de [IPv6:2003:c5:9714:2c0:773d:8e0e:2371:531e]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simonwunderlich.de (Postfix) with ESMTPSA id 80E3517401E; Thu, 19 Aug 2021 17:33:40 +0200 (CEST) From: Simon Wunderlich To: kuba@kernel.org, davem@davemloft.net Cc: netdev@vger.kernel.org, b.a.t.m.a.n@lists.open-mesh.org, Simon Wunderlich Subject: [PATCH 0/6] pull request for net-next: batman-adv 2021-08-19 Date: Thu, 19 Aug 2021 17:33:28 +0200 Message-Id: <20210819153334.18850-1-sw@simonwunderlich.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi Jakub, hi David, here is a little 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 b37a466837393af72fe8bcb8f1436410f3f173f3: netdevice: add the case if dev is NULL (2021-08-05 13:29:26 +0100) are available in the Git repository at: git://git.open-mesh.org/linux-merge.git tags/batadv-next-pullrequest-20210819 for you to fetch changes up to 808cfdfad57999c85f9ab13499a38d136d032232: batman-adv: bcast: remove remaining skb-copy calls (2021-08-18 18:39:00 +0200) ---------------------------------------------------------------- This cleanup patchset includes the following patches: - bump version strings, by Simon Wunderlich - update docs about move IRC channel away from freenode, by Sven Eckelmann - Switch to kstrtox.h for kstrtou64, by Sven Eckelmann - Update NULL checks, by Sven Eckelmann (2 patches) - remove remaining skb-copy calls for broadcast packets, by Linus Lüssing ---------------------------------------------------------------- Linus Lüssing (1): batman-adv: bcast: remove remaining skb-copy calls Simon Wunderlich (1): batman-adv: Start new development cycle Sven Eckelmann (4): batman-adv: Move IRC channel to hackint.org batman-adv: Switch to kstrtox.h for kstrtou64 batman-adv: Check ptr for NULL before reducing its refcnt batman-adv: Drop NULL check before dropping references Documentation/networking/batman-adv.rst | 2 +- MAINTAINERS | 2 +- net/batman-adv/bat_iv_ogm.c | 75 ++++++++--------------- net/batman-adv/bat_v.c | 30 ++++------ net/batman-adv/bat_v_elp.c | 9 +-- net/batman-adv/bat_v_ogm.c | 39 ++++-------- net/batman-adv/bridge_loop_avoidance.c | 33 +++++------ net/batman-adv/distributed-arp-table.c | 24 ++++---- net/batman-adv/fragmentation.c | 6 +- net/batman-adv/gateway_client.c | 57 +++++------------- net/batman-adv/gateway_client.h | 16 ++++- net/batman-adv/gateway_common.c | 2 +- net/batman-adv/hard-interface.c | 21 +++---- net/batman-adv/hard-interface.h | 3 + net/batman-adv/main.h | 2 +- net/batman-adv/multicast.c | 2 +- net/batman-adv/netlink.c | 6 +- net/batman-adv/network-coding.c | 24 ++++---- net/batman-adv/originator.c | 102 +++++--------------------------- net/batman-adv/originator.h | 96 +++++++++++++++++++++++++++--- net/batman-adv/routing.c | 39 ++++-------- net/batman-adv/send.c | 33 ++++++----- net/batman-adv/soft-interface.c | 27 ++------- net/batman-adv/soft-interface.h | 16 ++++- net/batman-adv/tp_meter.c | 27 ++++----- net/batman-adv/translation-table.c | 100 +++++++++++-------------------- net/batman-adv/translation-table.h | 18 +++++- net/batman-adv/tvlv.c | 9 ++- 28 files changed, 364 insertions(+), 456 deletions(-)