From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id AD006A04DC; Tue, 20 Oct 2020 13:14:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4F1D1BBD6; Tue, 20 Oct 2020 13:14:08 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 13A53BBCE for ; Tue, 20 Oct 2020 13:14:05 +0200 (CEST) IronPort-SDR: HWXTqAcB2vUOTxywCT4vpsr+YwBK2LWXwSbEfAw1jP5qf19sXUj9bp2m9NXLpfW1/EaLGlaJr5 /rGmaaFW+ALQ== X-IronPort-AV: E=McAfee;i="6000,8403,9779"; a="163700303" X-IronPort-AV: E=Sophos;i="5.77,396,1596524400"; d="scan'208";a="163700303" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Oct 2020 04:14:05 -0700 IronPort-SDR: f3brYnfgylyRjolQc+NNJfueBd1Qx3Fj6pvTHLpABzY3yHax9cxtGmbYFX/Zp3t26WCxSg7Vu8 GSkrbVbN4z6Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,396,1596524400"; d="scan'208";a="465895809" Received: from dpdk-lrong-srv-04.sh.intel.com ([10.67.119.221]) by orsmga004.jf.intel.com with ESMTP; 20 Oct 2020 04:14:03 -0700 From: Leyi Rong To: bruce.richardson@intel.com, wenzhuo.lu@intel.com, qi.z.zhang@intel.com Cc: dev@dpdk.org, Leyi Rong Date: Tue, 20 Oct 2020 18:51:50 +0800 Message-Id: <20201020105153.19690-1-leyi.rong@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200910065504.104217-1-leyi.rong@intel.com> References: <20200910065504.104217-1-leyi.rong@intel.com> Subject: [dpdk-dev] [PATCH v3 0/3] AVX512 vPMD on ice X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" This patchset aims to support AVX512 vPMD on ice. --- v3: - Code rebased. v2: - No internal judgement when RTE_MACHINE_CPUFLAG_AVX512F is set in meson.build. - Add RSS hash parsing as default RXDID is set to #22. - Use buf_iova instead of buf_physaddr, as buf_physaddr will be removed. Leyi Rong (3): net/ice: add AVX512 vector path net/ice: add RSS hash parsing in AVX512 path net/ice: optimize Tx path on AVX512 vPMD drivers/net/ice/ice_rxtx.c | 90 ++- drivers/net/ice/ice_rxtx.h | 11 + drivers/net/ice/ice_rxtx_vec_avx512.c | 1018 +++++++++++++++++++++++++ drivers/net/ice/ice_rxtx_vec_common.h | 36 +- drivers/net/ice/meson.build | 11 + 5 files changed, 1141 insertions(+), 25 deletions(-) create mode 100644 drivers/net/ice/ice_rxtx_vec_avx512.c -- 2.17.1