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 5E262A0503; Tue, 29 Mar 2022 04:11:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 880E0428B5; Tue, 29 Mar 2022 04:11:03 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 817E2428B5 for ; Tue, 29 Mar 2022 04:11:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648519861; x=1680055861; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=0anEpdVx1mKOtU35SZx/mo57bEN8NJcWixfTXC7O4bI=; b=jDibP9wyGXIl/Pm8+3+INjFODLb/ks6+NyK+DRheE74j/5f4iqVemAlg fIo4OQBtJsrjrQjwgUq6IBgGjbV3Z4rzdfofbQD0EiUBT+AlnvW3PqEJJ OqHumPJw6TbBPjkkVJVVhqYqmQgTOuq/t6lO6v4OC+DfcfQnN8HP1+6WG M/1lDQPXz8e3nUtpMthvt3pPStjPwKxzD00cmjEZ8eNFSeSfG4Gk439ui gVQAeIOt426GY9KpcU8Nt+cfWOitdf2U3qUf3rI/+VbcwMbq8Eu8vMcZq jgz6kO0U9OUYOd7s+fh8ihzFUt3fKNEo2JB0Hyy4Gx/tEimG+gT/7/Hio A==; X-IronPort-AV: E=McAfee;i="6200,9189,10300"; a="258857670" X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="258857670" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2022 19:11:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,219,1643702400"; d="scan'208";a="585404168" Received: from npg-wuwenjun-dpdk-01.sh.intel.com ([10.67.110.181]) by orsmga001.jf.intel.com with ESMTP; 28 Mar 2022 19:10:59 -0700 From: Wenjun Wu To: dev@dpdk.org, qiming.yang@intel.com, qi.z.zhang@intel.com Cc: Wenjun Wu Subject: [PATCH v1 8/9] net/ice: support queue group priority configuration Date: Tue, 29 Mar 2022 09:48:12 +0800 Message-Id: <20220329014813.1092054-9-wenjun1.wu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220329014813.1092054-1-wenjun1.wu@intel.com> References: <20220329014813.1092054-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 adds queue group priority configuration support. Signed-off-by: Wenjun Wu --- drivers/net/ice/ice_tm.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/net/ice/ice_tm.c b/drivers/net/ice/ice_tm.c index 36981f78dd..fdbb415eda 100644 --- a/drivers/net/ice/ice_tm.c +++ b/drivers/net/ice/ice_tm.c @@ -765,6 +765,14 @@ static int ice_hierarchy_commit(struct rte_eth_dev *dev, goto fail_clear; } } + priority = 7 - tm_node->priority; + ret_val = ice_cfg_node_priority(hw->port_info, qgroup_sched_node, priority); + if (ret_val) { + error->type = RTE_TM_ERROR_TYPE_NODE_PRIORITY; + PMD_DRV_LOG(ERR, "configure queue group %u priority failed", + tm_node->priority); + goto fail_clear; + } idx_qg++; if (idx_qg >= nb_qg) { idx_qg = 0; -- 2.25.1