From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 56D2EC433C1 for ; Fri, 26 Mar 2021 01:32:18 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id CF04161A42 for ; Fri, 26 Mar 2021 01:32:17 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CF04161A42 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 081A24067B; Fri, 26 Mar 2021 02:32:17 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id E5B704067B for ; Fri, 26 Mar 2021 02:32:15 +0100 (CET) IronPort-SDR: Czzp+SOQTRZslggKkTm347LcxoUX8R8yaa+x2rSJrr2gwSIOsyyiSFDeKHat+eodsY5OkFqk8o TS6zma2us85Q== X-IronPort-AV: E=McAfee;i="6000,8403,9934"; a="188770259" X-IronPort-AV: E=Sophos;i="5.81,278,1610438400"; d="scan'208";a="188770259" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 18:32:14 -0700 IronPort-SDR: /VKhi0YHCsh7Aa5+yAkf2ibh2fFR51O2vIaRZQqSgXvr4SawcERciBsEavh9807fUYHs7UpOQ6 Il6JUTnzQcJw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,278,1610438400"; d="scan'208";a="443091339" Received: from dpdk-wenzhuo-haswell.sh.intel.com ([10.67.111.137]) by fmsmga002.fm.intel.com with ESMTP; 25 Mar 2021 18:32:12 -0700 From: Wenzhuo Lu To: dev@dpdk.org Cc: Wenzhuo Lu Date: Fri, 26 Mar 2021 09:31:58 +0800 Message-Id: <1616722322-6027-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1615963718-67428-1-git-send-email-wenzhuo.lu@intel.com> References: <1615963718-67428-1-git-send-email-wenzhuo.lu@intel.com> Subject: [dpdk-dev] [PATCH v3 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. 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 | 901 +++++++++++++++++++------------- drivers/net/iavf/iavf_rxtx_vec_common.h | 115 +++- 5 files changed, 820 insertions(+), 423 deletions(-) -- 1.9.3