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 9392442BCA; Mon, 29 May 2023 04:17:35 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 73564410DD; Mon, 29 May 2023 04:17:35 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id A82C9410D7 for ; Mon, 29 May 2023 04:17:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685326653; x=1716862653; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GjhoNi6FiWxYnvUTW80t01Yz8CbhPwpFiRsuhuK+hTI=; b=fEwUnWaPJEEmzKCfas3Z4AwPy8vmTQq0ECAC8dTzpBbykAjCjgRP1wMa a4PTvC1Mi95KitqBd49VkIz41nPaGy0bYyhRf5r7CCiSEYGnx2CIl8uTc RaN+yC3fNz467NrHAfIfmD3Mb7ECoJKh/numXxjVNQfcSnqX+YtrJ7oZp 2emsryht6FljIXvq8iRq/WkMwOu1PXef/Ese2YicBXaQ5ri5oGTIgVcXJ bubqwE/KI/vSQhZrUmE897cKH/L71Ch7EMLg7unzKAbintt4U9jiZcEK/ 2EP7vDcwPKMHzMpFayniJyPT7lTKiJyIfZoxGbYnkUMpHQ1HOeY6ZSZA0 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10724"; a="334948960" X-IronPort-AV: E=Sophos;i="6.00,200,1681196400"; d="scan'208";a="334948960" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2023 19:17:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10724"; a="770961057" X-IronPort-AV: E=Sophos;i="6.00,200,1681196400"; d="scan'208";a="770961057" Received: from unknown (HELO zhichao-dpdk..) ([10.239.252.103]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2023 19:17:31 -0700 From: Zhichao Zeng To: dev@dpdk.org Cc: qi.z.zhang@intel.com, yaqi.tang@intel.com, Zhichao Zeng Subject: [PATCH v4 0/3] Enable iavf Rx Timestamp offload on vector path Date: Mon, 29 May 2023 10:23:14 +0800 Message-Id: <20230529022317.68881-1-zhichaox.zeng@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230427031229.1729460-1-zhichaox.zeng@intel.com> References: <20230427031229.1729460-1-zhichaox.zeng@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. --- v4: rework avx2 patch based on offload path --- v3: logging with driver dedicated macro --- v2: fix compile warning and SSE path Zhichao Zeng (3): net/iavf: support Rx timestamp offload on AVX512 net/iavf: support Rx timestamp offload on AVX2 net/iavf: support Rx timestamp offload on SSE drivers/net/iavf/iavf_rxtx.h | 3 +- drivers/net/iavf/iavf_rxtx_vec_avx2.c | 186 +++++++++++++++++++++- drivers/net/iavf/iavf_rxtx_vec_avx512.c | 203 +++++++++++++++++++++++- drivers/net/iavf/iavf_rxtx_vec_common.h | 3 - drivers/net/iavf/iavf_rxtx_vec_sse.c | 159 ++++++++++++++++++- 5 files changed, 538 insertions(+), 16 deletions(-) -- 2.34.1