From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (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 E5AA1200DC for ; Tue, 10 Oct 2023 14:54:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=none Received: from Chamillionaire.breakpoint.cc (Chamillionaire.breakpoint.cc [IPv6:2a0a:51c0:0:237:300::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5699DAC; Tue, 10 Oct 2023 07:53:59 -0700 (PDT) Received: from fw by Chamillionaire.breakpoint.cc with local (Exim 4.92) (envelope-from ) id 1qqE7H-0001Ne-Lp; Tue, 10 Oct 2023 16:53:47 +0200 From: Florian Westphal To: Cc: Paolo Abeni , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Subject: [PATCH net-next 0/8] netfilter updates for next Date: Tue, 10 Oct 2023 16:53:30 +0200 Message-ID: <20231010145343.12551-1-fw@strlen.de> X-Mailer: git-send-email 2.41.0 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_BLOCKED,SPF_HELO_PASS, SPF_PASS autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Hello, The following request contains updates for your *net-next* tree. First 5 patches, from Phil Sutter, clean up nftables dumpers to use the context buffer in the netlink_callback structure rather than a kmalloc'd buffer. Patch 6, from myself, zaps dead code and replaces the helper function with a small inlined helper. Patch 7, also from myself, removes another pr_debug and replaces it with the existing nf_log-based debug helpers. Last patch, from George Guo, gets nft_table comments back in sync with the structure members. The following changes since commit f0107b864f004bc6fa19bf6d5074b4a366f3e16a: atm: fore200e: Drop unnecessary of_match_device() (2023-10-10 12:41:17 +0200) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git tags/nf-next-23-10-10 for you to fetch changes up to 94ecde833be5779f8086c3a094dfa51e1dbce75f: netfilter: cleanup struct nft_table (2023-10-10 16:34:28 +0200) ---------------------------------------------------------------- netfilter net-next pull request 2023-10-10 ---------------------------------------------------------------- Florian Westphal (2): netfilter: conntrack: simplify nf_conntrack_alter_reply netfilter: conntrack: prefer tcp_error_log to pr_debug George Guo (1): netfilter: cleanup struct nft_table Phil Sutter (5): netfilter: nf_tables: Always allocate nft_rule_dump_ctx netfilter: nf_tables: Drop pointless memset when dumping rules netfilter: nf_tables: Carry reset flag in nft_rule_dump_ctx netfilter: nf_tables: Carry s_idx in nft_rule_dump_ctx netfilter: nf_tables: Don't allocate nft_rule_dump_ctx include/net/netfilter/nf_conntrack.h | 14 ++++-- include/net/netfilter/nf_tables.h | 5 ++- net/netfilter/nf_conntrack_core.c | 18 -------- net/netfilter/nf_conntrack_helper.c | 7 +-- net/netfilter/nf_conntrack_proto_tcp.c | 7 +-- net/netfilter/nf_tables_api.c | 80 +++++++++++++--------------------- 6 files changed, 50 insertions(+), 81 deletions(-)