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=-6.2 required=3.0 tests=BAYES_00,DKIM_ADSP_DISCARD, DKIM_INVALID,DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, NICE_REPLY_A,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, 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 16CBEC2D0A3 for ; Tue, 3 Nov 2020 12:40:54 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 4D9D522243 for ; Tue, 3 Nov 2020 12:40:53 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=oktetlabs.ru header.i=@oktetlabs.ru header.b="EUGn6JHH" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4D9D522243 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=oktetlabs.ru Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5509FC9D2; Tue, 3 Nov 2020 13:40:51 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id 9D1B4C9C8 for ; Tue, 3 Nov 2020 13:40:49 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 4D7827F4F8; Tue, 3 Nov 2020 15:40:48 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 4D7827F4F8 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1604407248; bh=pryqyRIRLl+TYA25sB+Bu8kzr4q8OPm6EwQmz0JA2UU=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=EUGn6JHHR4fFZoavHh2WAZ2CTKoZpIwpULRAG9klBJIj5EkQw0v6+Ob/sCKOzUDDs XqQyR0GL+lzDaZFWIdU0dk2wo1dRedJC9m+zJTjHCPqE5LJxAlqr2wAlsbhzz4zkqy 4cZNcD0t4ZNrSCgO0/Tq/7ALgzfC6K+v8T48VC/g= To: Thomas Monjalon , dev@dpdk.org Cc: ferruh.yigit@intel.com, david.marchand@redhat.com, bruce.richardson@intel.com, olivier.matz@6wind.com, jerinj@marvell.com, viacheslavo@nvidia.com References: <20201029092751.3837177-1-thomas@monjalon.net> <20201103122205.183472-1-thomas@monjalon.net> <20201103122205.183472-14-thomas@monjalon.net> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <4a04b797-d6a7-0063-cc29-1ad897972da2@oktetlabs.ru> Date: Tue, 3 Nov 2020 15:40:48 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: <20201103122205.183472-14-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4 13/16] ethdev: add doxygen comment for Rx timestamp API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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 11/3/20 3:22 PM, Thomas Monjalon wrote: > The offload flag DEV_RX_OFFLOAD_TIMESTAMP had no documentation. > After switching to dynamic mbuf flag and field, > it becomes even more important to explicit the feature behaviour. > > A doxygen comment for the timesync API was mentioning > the deprecated timestamp field, so it is also updated. > > Signed-off-by: Thomas Monjalon > Acked-by: David Marchand Reviewed-by: Andrew Rybchenko