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 31A0042925; Wed, 12 Apr 2023 10:40:19 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B5F7E40FAE; Wed, 12 Apr 2023 10:40:18 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 91BDA4067B for ; Wed, 12 Apr 2023 10:40:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1681288817; x=1712824817; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=/mTYclvuivawpUQjxr0sN+vhtZ+6YxxYyE2o23szGD8=; b=cgkYXsKmqIe9UAooEjSTEl7pgEMjrjuSfMPzNf9viNHq516lM64fO7Er oht9U6f4SzeCAQLl6ev1sfVLwvoGeTK7XMmbBfxVIVKeUarlWmbUMLQaM CxyP+/O9gfUGAZB17km7uZITeQucfxOxeJvhtoakzkZ8/2yny20gRrlw1 IAtxdQ5Pz4wTw6Bu1nnqBJEKTlQ/o8tf8QOqsmglPoQ+4h8jX114AjV/J j+qDv8+2muO9m2TTWTwCRfatrqfnzBKpMm3Tp9WrAW1Dx9LB6QAiZSB9f EuwWOW7oHIBrn1lOKdU2cYT7lpaJDysr5Ga6m8WDgxcVl6RfQDhQxXKLo Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10677"; a="323464094" X-IronPort-AV: E=Sophos;i="5.98,338,1673942400"; d="scan'208";a="323464094" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2023 01:40:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10677"; a="719276943" X-IronPort-AV: E=Sophos;i="5.98,338,1673942400"; d="scan'208";a="719276943" Received: from unknown (HELO localhost.localdomain) ([10.239.252.103]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2023 01:40:14 -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:45:28 +0800 Message-Id: <20230412084528.3621733-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