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 A1EDAA04F5; Fri, 19 Jun 2020 10:47:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5E21D1B75C; Fri, 19 Jun 2020 10:47:25 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 39DE214583 for ; Fri, 19 Jun 2020 10:47:23 +0200 (CEST) IronPort-SDR: JtT7XqNoZ0iuYYnXah6Nngxj1GEFQLnn19OF5tUD8xDeKSBDFwFmGjFwHVPDFT6+odShXpnS4e /Fyi4CDnMIgg== X-IronPort-AV: E=McAfee;i="6000,8403,9656"; a="204384390" X-IronPort-AV: E=Sophos;i="5.75,254,1589266800"; d="scan'208";a="204384390" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Jun 2020 01:47:22 -0700 IronPort-SDR: WPFzYaP2UFh99cj4XJO/dlPQ9vZKsMrVYUv8n5FxphzA+O6JEEgLhbMdY5udwH8axYK1qJsa1A u9H68f4u4mSA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,254,1589266800"; d="scan'208";a="477547898" Received: from dpdk-xuting-second.sh.intel.com ([10.67.116.154]) by fmsmga006.fm.intel.com with ESMTP; 19 Jun 2020 01:47:20 -0700 From: Ting Xu To: dev@dpdk.org Cc: qi.z.zhang@intel.com, qiming.yang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, marko.kovacevic@intel.com, john.mcnamara@intel.com, Xu Ting Date: Fri, 19 Jun 2020 16:50:33 +0800 Message-Id: <20200619085045.22875-1-ting.xu@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200605201737.33766-1-ting.xu@intel.com> References: <20200605201737.33766-1-ting.xu@intel.com> Subject: [dpdk-dev] [PATCH v4 00/12] enable DCF datapath configuration 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" From: Xu Ting This patchset adds support to configure DCF datapath, including Rx/Tx queues setup, start and stop, device configuration, RSS and flexible descriptor RXDID initialization and MAC filter setup. Qi Zhang (11): net/ice: init RSS and supported RXDID in DCF net/ice: complete device info get in DCF net/ice: complete dev configure in DCF net/ice: complete queue setup in DCF net/ice: add stop flag for device start / stop net/ice: add Rx queue init in DCF net/ice: init RSS during DCF start net/ice: add queue config in DCF net/ice: add queue start and stop for DCF net/ice: enable stats for DCF net/ice: set MAC filter during dev start for DCF Ting Xu (1): doc: enable DCF datapath configuration --- v3->v4: Clean codes based on comments v2->v3: Correct coding style issue v1->v2: Optimize coding style Correct some return values Add support to stop started queues when queue start failed doc/guides/rel_notes/release_20_08.rst | 6 + drivers/net/ice/ice_dcf.c | 408 ++++++++++++- drivers/net/ice/ice_dcf.h | 17 + drivers/net/ice/ice_dcf_ethdev.c | 773 +++++++++++++++++++++++-- drivers/net/ice/ice_dcf_ethdev.h | 3 - drivers/net/ice/ice_dcf_parent.c | 8 + 6 files changed, 1162 insertions(+), 53 deletions(-) -- 2.17.1