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 121DFA0579; Fri, 9 Apr 2021 07:59:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A4046141316; Fri, 9 Apr 2021 07:59:18 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 31A004068E for ; Fri, 9 Apr 2021 07:59:17 +0200 (CEST) IronPort-SDR: Qt3pjwxRD7YknTAzCZXtpzXkZ26ubf3OVP8pIdND82C3If9GNW4IajnNJ99qXwYKFokgNTpreS Bfvc8a2YEz6g== X-IronPort-AV: E=McAfee;i="6000,8403,9948"; a="190496973" X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="190496973" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2021 22:59:15 -0700 IronPort-SDR: gkYj4PiJmTDBHenr7cKTcntwj0x74cPZ5Iy5fycsU7x5NPCJ6XQP4v2F0uOFVA8heEypSrgCgr Ss1CFTHTPOEg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="450062386" Received: from dpdk-wenzhuo-haswell.sh.intel.com ([10.67.111.137]) by fmsmga002.fm.intel.com with ESMTP; 08 Apr 2021 22:59:15 -0700 From: Wenzhuo Lu To: dev@dpdk.org Cc: Wenzhuo Lu Date: Fri, 9 Apr 2021 13:59:00 +0800 Message-Id: <1617947944-130983-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1616722322-6027-1-git-send-email-wenzhuo.lu@intel.com> References: <1616722322-6027-1-git-send-email-wenzhuo.lu@intel.com> Subject: [dpdk-dev] [PATCH v4 0/4] add Rx/Tx offload paths for IAVF AVX512 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 Sender: "dev" Add specific paths for RX/TX AVX512, called offload paths. In these paths, support the HW offload features, like, checksum, VLAN, RSS offload. These paths are chosen automatically according to the configuration. v2: - Fixed compile error. v3: - Used 'inline' to drop the duplicate code. - some minor change. v4: - Rebased on next-net-intel. Wenzhuo Lu (4): net/iavf: store offload flag of Rx queue net/iavf: add offload path for Tx AVX512 net/iavf: add offload path for Rx AVX512 net/iavf: add offload path for Rx AVX512 flex desc doc/guides/rel_notes/release_21_05.rst | 7 + drivers/net/iavf/iavf_rxtx.c | 187 +++++-- drivers/net/iavf/iavf_rxtx.h | 33 +- drivers/net/iavf/iavf_rxtx_vec_avx512.c | 899 +++++++++++++++++++------------- drivers/net/iavf/iavf_rxtx_vec_common.h | 115 +++- 5 files changed, 819 insertions(+), 422 deletions(-) -- 1.9.3