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 5169342BA9; Fri, 26 May 2023 11:45:41 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 26B4640DDA; Fri, 26 May 2023 11:45:41 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 150CD40A89 for ; Fri, 26 May 2023 11:45:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685094339; x=1716630339; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GjhoNi6FiWxYnvUTW80t01Yz8CbhPwpFiRsuhuK+hTI=; b=c4WEUULXOmklVz9GH9LywUOILYXwrFjTLheQmGdScs/P2xWU3nHLBJXm DuJqhfQFNpTQsj3GtDPwcMyh1cYV5vX7LEYUnFCQrsSBW5Wj6VnjAdU8C I6wBBY0Ab4flTyktOogDfeBTE/6Lr+YbTJd57B7qF6tYSsh6SQMwn3y4J q9ki0U6gZS6g2i05DttmoaptxeTuhrWuBmkDAm0EWn0EDerkyDzeSn0zN nR28Hv7sXio+tIcM/MaQpKuUQ5r4VxD47CxcyoQeKGGfSquetVR4fbNF3 Ylv+mj2I/wQq6qRhNDWCsjK5uYN5ZcyuXuCihwEGuzIl/pVs+27K+X2Tu g==; X-IronPort-AV: E=McAfee;i="6600,9927,10721"; a="357417920" X-IronPort-AV: E=Sophos;i="6.00,193,1681196400"; d="scan'208";a="357417920" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 May 2023 02:45:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10721"; a="735943332" X-IronPort-AV: E=Sophos;i="6.00,193,1681196400"; d="scan'208";a="735943332" Received: from unknown (HELO zhichao-dpdk..) ([10.239.252.103]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 May 2023 02:45:36 -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: Fri, 26 May 2023 17:50:52 +0800 Message-Id: <20230526095055.2855121-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