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 5AFDECDB483 for ; Fri, 13 Oct 2023 09:26:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230508AbjJMJ0X (ORCPT ); Fri, 13 Oct 2023 05:26:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49210 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230380AbjJMJ0U (ORCPT ); Fri, 13 Oct 2023 05:26:20 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4688EC0; Fri, 13 Oct 2023 02:26:18 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 16C37C433C8; Fri, 13 Oct 2023 09:26:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697189177; bh=E9/0n9LD/3cTgp1J3dMrzLvgcdHdGIWkLFZiOEzQPe4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=S4MivpCeIlf5lPj5gu87Vx6jggV0nhy+otJc08N5cogxnNrWLh2fZz60tA4fE+nzb NojezG0O4S76IxeOpzQvWS7XTej8HHXZDlAD48TCogl58KWFBZAh6xSnTMTxNpZ07T l3wdwWSTBx/AWenQP6TL4SFqge12GHcXeegxRxYbEvLotsrEpWIv3rnqbXwMGehwpz LsrhuEWijiCcLpngvCw/fxMIpbZh+l66av3hrv64HY+Xnyk1zapl2onqQKWGLbKV0r ChitxTpt6s9z/LXg2UHt5CtZ68tzY9YrPi2cJYZTadzNaOMp1vCaJWHGJmyXJaoVoq Y7eqpxl9ZehHg== Date: Fri, 13 Oct 2023 11:26:12 +0200 From: Simon Horman To: George Guo Cc: fw@strlen.de, coreteam@netfilter.org, davem@davemloft.net, dongtai.guo@linux.dev, edumazet@google.com, kadlec@netfilter.org, kuba@kernel.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, netfilter-devel@vger.kernel.org, pabeni@redhat.com, pablo@netfilter.org Subject: Re: [PATCH v2] netfilter: cleanup struct nft_table Message-ID: <20231013092612.GA29570@kernel.org> References: <20231007105335.GB20662@breakpoint.cc> <20231009025548.3522409-1-guodongtai@kylinos.cn> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231009025548.3522409-1-guodongtai@kylinos.cn> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 09, 2023 at 10:55:48AM +0800, George Guo wrote: > Add comments for nlpid, family, udlen and udata in struct nft_table, and > afinfo is no longer a member of struct nft_table, so remove the comment > for it. > > Signed-off-by: George Guo Thanks, I checked that the fields of the structure now match the kernel doc for struct nft_table. I might have mentioned kernel doc, or similar in the subject, but I don't think there is a need to respin because of that. As a follow-up, you may want to consider addressing other kernel doc problems in the same file. The following command may be helpful there. ./scripts/kernel-doc -none include/net/netfilter/nf_tables.h Reviewed-by: Simon Horman