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 46300A0505; Tue, 29 Mar 2022 05:29:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1C80B42807; Tue, 29 Mar 2022 05:29:24 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 3750740691 for ; Tue, 29 Mar 2022 05:29:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648524562; x=1680060562; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=fWRdRmtKdSQlAoqjhAfFqFfc8Hy9IWswxeR9mCxpW2w=; b=Gw5oD0Sm9s1gOQQGM12jjV2DSakz58+tGUNmtgqc6WKEa9tLLfuF1M05 oITLdX2Dw9ozXpOAdfFdTzBekXfhSBXP92rI16Jn1n9TfMj+QMreROFkl fEXjx4Xv7Y4eG0xoPyUJ8oR0l7tDr+yfKxjTuC8mTUHrq8Ej/eamb8dZF Jq7QNc6Wu/VGI8RXPfQXHDDIhbfFp8+7aYBY06OtW1hmHi2cA+uf5NVXF +gU+IkXTal+fhqo8nED5WgOAlFk8mIUec0Zxs3NmUuD4B9z5Bt2iMBAe0 a4JWiDlT2+1tMo2eAxvSWN+05N7491AHs6OIuRscaRXOBY/3dl/uuhLOW A==; X-IronPort-AV: E=McAfee;i="6200,9189,10300"; a="259122341" X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="259122341" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2022 20:29:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="521266512" Received: from npg-wuwenjun-dpdk-01.sh.intel.com ([10.67.110.181]) by orsmga006.jf.intel.com with ESMTP; 28 Mar 2022 20:29:20 -0700 From: Wenjun Wu To: dev@dpdk.org, qiming.yang@intel.com, qi.z.zhang@intel.com Subject: [PATCH v3 0/9] Enable ETS-based TX QoS on PF Date: Tue, 29 Mar 2022 11:06:48 +0800 Message-Id: <20220329030657.1121305-1-wenjun1.wu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220329020308.1099471-1-wenjun1.wu@intel.com> References: <20220329020308.1099471-1-wenjun1.wu@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 This patch set enables ETS-based TX QoS on PF. It is supported to configure bandwidth and priority in both queue and queue group level, and weight only in queue level. v2: fix code style issue. v3: fix uninitialization issue Ting Xu (1): net/ice: support queue bandwidth limit Wenjun Wu (8): net/ice/base: fix dead lock issue when getting node from ID type net/base/ice: support priority configuration of the exact node net/ice/base: support queue BW allocation configuration net/ice: support queue group bandwidth limit net/ice: support queue priority configuration net/ice: support queue weight configuration net/ice: support queue group priority configuration net/ice: add warning log for unsupported configuration drivers/net/ice/base/ice_sched.c | 89 +++- drivers/net/ice/base/ice_sched.h | 6 + drivers/net/ice/ice_ethdev.c | 19 + drivers/net/ice/ice_ethdev.h | 55 ++ drivers/net/ice/ice_tm.c | 844 +++++++++++++++++++++++++++++++ drivers/net/ice/meson.build | 1 + 6 files changed, 1012 insertions(+), 2 deletions(-) create mode 100644 drivers/net/ice/ice_tm.c -- 2.25.1