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 9BBC942925; Wed, 12 Apr 2023 10:44:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8773C410F9; Wed, 12 Apr 2023 10:44:54 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id DF4A7410F3 for ; Wed, 12 Apr 2023 10:44:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1681289093; x=1712825093; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=/mTYclvuivawpUQjxr0sN+vhtZ+6YxxYyE2o23szGD8=; b=KrHF8+AmJUgMSid5ImRl4wuyxMPHb1QztGlBg6/9Wi5aTAgYAohZZ6Ln yFs5S03mAZEvzsNbp1VPrfoeBu+6qbFcSRnwuR/30I2ApIYqHuKl71dG/ kXa9B4prrrrp7XT68X+fLBvDBMWa+0FGVLBOWc80fZ8GCuep+0Rq10tHc 50JYhA/Hjo9nUdyGRXRXk+s9h8x9JZv8f0bTnyFRGO1wL19BJh65/79Wd 8VJL9wOlF1rZu/1JNl8PHpTXV16qrobm4/gkpRoqUTFILc/Z/etPoiz3s Q2DMlqD1x7ZVlaNy5vtEylbpy8sVKJwEcSGzr0hHngwOIo8pLilfFnlco Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10677"; a="341329073" X-IronPort-AV: E=Sophos;i="5.98,338,1673942400"; d="scan'208";a="341329073" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2023 01:44:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10677"; a="832653712" X-IronPort-AV: E=Sophos;i="5.98,338,1673942400"; d="scan'208";a="832653712" Received: from unknown (HELO localhost.localdomain) ([10.239.252.103]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2023 01:44:50 -0700 From: Zhichao Zeng To: dev@dpdk.org Cc: qi.z.zhang@intel.com, yaqi.tang@intel.com, yingyax.han@intel.com, Zhichao Zeng Subject: [PATCH v2 0/3] Enable iavf Rx Timestamp offload on vector path Date: Wed, 12 Apr 2023 16:50:07 +0800 Message-Id: <20230412085007.3623733-1-zhichaox.zeng@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230410073501.2492459-1-zhichaox.zeng@intel.com> References: <20230410073501.2492459-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. --- 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 | 196 ++++++++++++++++++++++- 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 | 161 ++++++++++++++++++- 5 files changed, 546 insertions(+), 20 deletions(-) -- 2.25.1