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 X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=no 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 26560C433ED for ; Mon, 26 Apr 2021 01:24:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ED20861078 for ; Mon, 26 Apr 2021 01:24:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231589AbhDZBZf (ORCPT ); Sun, 25 Apr 2021 21:25:35 -0400 Received: from mail.netfilter.org ([217.70.188.207]:49800 "EHLO mail.netfilter.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231403AbhDZBZf (ORCPT ); Sun, 25 Apr 2021 21:25:35 -0400 Received: from us.es (unknown [90.77.255.23]) by mail.netfilter.org (Postfix) with ESMTPSA id 46E7B605A8; Mon, 26 Apr 2021 03:24:18 +0200 (CEST) Date: Mon, 26 Apr 2021 03:24:51 +0200 From: Pablo Neira Ayuso To: Florian Westphal Cc: netfilter-devel@vger.kernel.org Subject: Re: [PATCH nf-next v2 00/12] netfilter: x_tables: remove ipt_unregister_table Message-ID: <20210426012451.GA31030@salvia> References: <20210421075110.19334-1-fw@strlen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210421075110.19334-1-fw@strlen.de> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Wed, Apr 21, 2021 at 09:50:58AM +0200, Florian Westphal wrote: > This change removes all xt_table pointers from struct net. > > v2: fix "no previous prototype for 'ipt_unregister_table'" warning > in patch 2. > > The various ip(6)table_foo incarnations are updated to expect > that the table is passed as 'void *priv' argument that netfilter core > passes to the hook functions. > > This reduces the struct net size by 2 cachelines on x86_64. Series applied, thanks.