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=-8.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 B470EC433B4 for ; Wed, 19 May 2021 17:47:41 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 260296108D for ; Wed, 19 May 2021 17:47:41 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 260296108D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0A84640041; Wed, 19 May 2021 19:47:40 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id AFD1A4003F for ; Wed, 19 May 2021 19:47:38 +0200 (CEST) IronPort-SDR: c86mHjnqKkn7rKQgwH/65BtzVHT2hx5usEABddid2I5kRDlVgGDVkYDrwzAyK4eB+yI3W02/JO /MZARi1BqvGg== X-IronPort-AV: E=McAfee;i="6200,9189,9989"; a="197946634" X-IronPort-AV: E=Sophos;i="5.82,313,1613462400"; d="scan'208";a="197946634" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2021 10:47:37 -0700 IronPort-SDR: 7s4C9iXs3joxgtB0p8tnucu1Q+QtGRQkS27H8UrSFXkYIDQr8eJnK8BE7dLBrR9WZ8l+BJQ/ZK 1RuSGO8hqaAA== X-IronPort-AV: E=Sophos;i="5.82,313,1613462400"; d="scan'208";a="411829224" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.224.148]) ([10.213.224.148]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2021 10:47:35 -0700 To: Thomas Monjalon , dev@dpdk.org Cc: asafp@nvidia.com, Andrew Rybchenko , Ajit Khaparde , Ori Kam References: <20210519162725.2179226-1-thomas@monjalon.net> <20210519173316.2364189-1-thomas@monjalon.net> From: Ferruh Yigit X-User: ferruhy Message-ID: Date: Wed, 19 May 2021 18:47:31 +0100 MIME-Version: 1.0 In-Reply-To: <20210519173316.2364189-1-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2] ethdev: fix comments of packet integrity flow item X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 5/19/2021 6:33 PM, Thomas Monjalon wrote: > The Doxygen comments are placed before the related lines, > but the markers were /**< instead of /** > > The struct rte_flow_item_integrity did not appear in Doxygen output > because there was no general comment for the struct. > > Fixes: b10a421a1f3b ("ethdev: add packet integrity check flow rules") > > Signed-off-by: Thomas Monjalon > Acked-by: Andrew Rybchenko > Acked-by: Ajit Khaparde Reviewed-by: Ferruh Yigit btw, there are some related issues for other structs, do you think should we fix them in this release? Following are missing doxygen comment for its item: * "struct rte_flow_item_conntrack" * "struct rte_flow_item_ecpri" * Following are missing doxygen comments for its items, and missing experimental tag. * "struct rte_flow_item_geneve_opt" * "struct rte_flow_item_ipv6_frag_ext" And I suspect we can see similar issues with more structs as we check them all.