From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 139BEA034C; Thu, 28 Apr 2022 10:21:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 947E8410F3; Thu, 28 Apr 2022 10:21:16 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 85F61410E1 for ; Thu, 28 Apr 2022 10:21:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651134075; x=1682670075; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=nwXBAT8u0wGEYDsWxZ/Y3ed86WlnAJAnF5dbO3D00jo=; b=lVrh6UapwuQdcB1XImazCj8aR2xfaM02iFMchnFAjeQRXMyXAZclTJBF 8T0tC+0H8rUmHR99TmbEFDH5keS0bU9yorh1TK0X/ZpDxnfmvUABDc6ce T4D9nwLj+llUd2ukjP8HwmJUgEJFPCMTCCSqBL1va+1ai7Urz9bYKV1dP n5+77wsOT6kWxbBE3x/yFRnIIuXX83cpSr70bbYzBP1+ELAmpoqn2huMi /WQvcp716mF2D6Wy5W6bMpJmR/7HDHFJD3+eZDri8s64oIcsbZ6Z9pXec tkLzznV9G7GXMa+rEHe7+b3clFZfwE3nSFWaa3Nn4c21+cjl5oYt93BpI A==; X-IronPort-AV: E=McAfee;i="6400,9594,10330"; a="266018317" X-IronPort-AV: E=Sophos;i="5.90,295,1643702400"; d="scan'208";a="266018317" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2022 01:21:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,295,1643702400"; d="scan'208";a="581151864" Received: from unknown (HELO npg-dpdk-simeisu-cvl-119d218.sh.intel.com) ([10.67.119.218]) by orsmga008.jf.intel.com with ESMTP; 28 Apr 2022 01:21:12 -0700 From: Simei Su To: qi.z.zhang@intel.com, qiming.yang@intel.com Cc: dev@dpdk.org, wenjun1.wu@intel.com, Simei Su Subject: [PATCH v3 0/3] net/iavf: support Rx timestamp on flex descriptor Date: Thu, 28 Apr 2022 16:13:43 +0800 Message-Id: <20220428081346.94049-1-simei.su@intel.com> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20220424070845.87096-1-simei.su@intel.com> References: <20220424070845.87096-1-simei.su@intel.com> 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 [PATCH v3 1/3] add related ops and structure for Rx timestamp in virtual channel. [PATCH v3 2/3] add support for Rx timestamp on flex descriptor in driver. [PATCH v3 3/3] improve performance with Rx timestamp enabled. v3: * Rebase code. * Fix compile warning. v2: * Add release notes and doc update. Simei Su (3): common/iavf: support Rx timestamp in virtual channel net/iavf: enable Rx timestamp on Flex Descriptor net/iavf: improve performance of Rx timestamp offload doc/guides/nics/features/iavf.ini | 1 + doc/guides/rel_notes/release_22_07.rst | 2 +- drivers/common/iavf/virtchnl.h | 62 +++++++++++++++++++++++- drivers/net/iavf/iavf.h | 6 +++ drivers/net/iavf/iavf_ethdev.c | 35 ++++++++++++++ drivers/net/iavf/iavf_rxtx.c | 74 +++++++++++++++++++++++++++++ drivers/net/iavf/iavf_rxtx.h | 21 +++++++++ drivers/net/iavf/iavf_rxtx_vec_common.h | 3 ++ drivers/net/iavf/iavf_vchnl.c | 83 ++++++++++++++++++++++++++++----- 9 files changed, 273 insertions(+), 14 deletions(-) -- 2.9.5