From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4084EEB64DD for ; Sun, 16 Jul 2023 19:18:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229997AbjGPTSe (ORCPT ); Sun, 16 Jul 2023 15:18:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46488 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229591AbjGPTSe (ORCPT ); Sun, 16 Jul 2023 15:18:34 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5C24EE4B; Sun, 16 Jul 2023 12:18:33 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E3CD260DD0; Sun, 16 Jul 2023 19:18:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EEE37C433C8; Sun, 16 Jul 2023 19:18:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1689535112; bh=DSFIV8zlzSImOGC2wEpAwibiamA9oYkeRfaUYowc7p8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=U5a7dIydg8iVkD4d9UjmWyDZOZr1oeydiHKBNoopVXollvQYREYsMzNAyLwPv8NEY 613gdY+bjQs2BnzhfIkkz056ehpI2nHEqr/ZcZyKE0ti/GmowDcOC7BhZdNQ7s15UD PE+3EdrbItJi8ogCAKbLT+HVUj3ENhNHYXNKlH4Y= Date: Sun, 16 Jul 2023 21:18:29 +0200 From: Greg KH To: Pablo Neira Ayuso Cc: netfilter-devel@vger.kernel.org, stable@vger.kernel.org, sashal@kernel.org Subject: Re: [PATCH -stable,5.10 v3 01/11] netfilter: nf_tables: use net_generic infra for transaction data Message-ID: <2023071608-pushcart-egotism-c77f@gregkh> References: <20230713084859.71541-1-pablo@netfilter.org> <20230713084859.71541-2-pablo@netfilter.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230713084859.71541-2-pablo@netfilter.org> Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Thu, Jul 13, 2023 at 10:48:49AM +0200, Pablo Neira Ayuso wrote: > From: Florian Westphal > > [ Upstream commit 0854db2aaef3fcdd3498a9d299c60adea2aa3dc6 ] > > This moves all nf_tables pernet data from struct net to a net_generic > extension, with the exception of the gencursor. > > The latter is used in the data path and also outside of the nf_tables > core. All others are only used from the configuration plane. > > Signed-off-by: Florian Westphal > Signed-off-by: Pablo Neira Ayuso > --- > include/net/netfilter/nf_tables.h | 10 + > include/net/netns/nftables.h | 7 - > net/netfilter/nf_tables_api.c | 382 ++++++++++++++++++------------ > net/netfilter/nf_tables_offload.c | 30 ++- > net/netfilter/nft_chain_filter.c | 11 +- > net/netfilter/nft_dynset.c | 6 +- > 6 files changed, 279 insertions(+), 167 deletions(-) This doesn't apply to the 5.10.y tree, what version did you make it against? thanks, greg k-h