From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DBF1AA0521; Tue, 3 Nov 2020 13:45:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DF4D9CA1C; Tue, 3 Nov 2020 13:45:08 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id 3C98FCA1A for ; Tue, 3 Nov 2020 13:45:07 +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 CA0C17F4D4; Tue, 3 Nov 2020 15:45:05 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru CA0C17F4D4 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1604407505; bh=0S391WSjmDID1yU+yzu4SV24QAjkAogWsSFDsSWwgjU=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=quUihwu1kx2YaPBBDRtIfYASpfvyb5/zqOQMYAW0eEyOeaMHDwYeaju4EQZEJMJck xDinpVOAG9ojI4YkVu0G8n3xehuXygB3ZYRy8xntb0i/TT/mG0OmutBQrJHJMWZ09w 8q/oOAoNEiuhYoRlsx45sDUGPvo8WKZ15VHrcJyg= 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, Wenzhuo Lu , Beilei Xing , Bernard Iremonger , Matan Azrad , Shahaf Shuler References: <20201029092751.3837177-1-thomas@monjalon.net> <20201103122205.183472-1-thomas@monjalon.net> <20201103122205.183472-17-thomas@monjalon.net> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <6fc18dca-36b9-ecb2-c136-92e0833fca3f@oktetlabs.ru> Date: Tue, 3 Nov 2020 15:45:05 +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-17-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4 16/16] ethdev: include mbuf registration in Tx 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: > Previously, the Tx timestamp field and flag were registered in testpmd, > as described in mlx5 guide. > For consistency between Rx and Tx timestamps, > managing mbuf registrations inside the driver, as properly documented, > is a simpler expectation. > > The only driver to support this feature (mlx5) is updated > as well as the testpmd application. > > Signed-off-by: Thomas Monjalon > Acked-by: Viacheslav Ovsiienko > Acked-by: David Marchand Acked-by: Andrew Rybchenko