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 2D797A00C4; Sun, 24 Apr 2022 09:15:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C082240042; Sun, 24 Apr 2022 09:15:48 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 6D7534003F for ; Sun, 24 Apr 2022 09:15:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650784546; x=1682320546; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=OY60a280xfGpTbrIfZIWkYdU/9UCOru+oBPLE7IyzEk=; b=aLVubjb7DU/j/g0rofTx8DlWgfNswN+g/Gz1Vu9kJId5Fp371SP8mzRk CJ/i0PkAs9f2SOZhLA/25GMkUlvRyYZ6bu5aWmMKkJoUUm+pedqL+uqEZ 2R7HwfoPuRpo8PCIdUXzu2kv6QgFZKeDqE4IlNfOeWJTj3OYLCGJUqfkY tOUHW/Yyvobt2T+Wt2VD+84yirX4u+cpls+1+UhRdA1uFbvNOuoiyUQXA IMfL74hTmnGOBLlnTtlx72A7NSd0X/cEJVuIBwCyfXUHuO501tv3bLF+k k71zjFEj4bArRbXPJ9LYSd122oOnfj/llMBKwRLHBJvIpcy4+psrzr4rJ Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10326"; a="263855980" X-IronPort-AV: E=Sophos;i="5.90,286,1643702400"; d="scan'208";a="263855980" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2022 00:15:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,286,1643702400"; d="scan'208";a="594773409" Received: from unknown (HELO npg-dpdk-simeisu-cvl-119d218.sh.intel.com) ([10.67.119.218]) by orsmga001.jf.intel.com with ESMTP; 24 Apr 2022 00:15:41 -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 v2 0/3] net/iavf: support Rx timestamp on flex descriptor Date: Sun, 24 Apr 2022 15:08:42 +0800 Message-Id: <20220424070845.87096-1-simei.su@intel.com> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20220408021307.272746-1-simei.su@intel.com> References: <20220408021307.272746-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 v2 1/3] add related ops and structure for Rx timestamp in virtual channel. [PATCH v2 2/3] add support for Rx timestamp on flex descriptor in driver. [PATCH v2 3/3] improve performance with Rx timestamp enabled. 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 | 1 + 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 | 73 +++++++++++++++++++++++++++++ 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, 272 insertions(+), 13 deletions(-) -- 2.9.5