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 4DD8DA0032; Tue, 29 Mar 2022 12:02:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7502D428F2; Tue, 29 Mar 2022 12:01:33 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id AF15D428F4 for ; Tue, 29 Mar 2022 12:01:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648548090; x=1680084090; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=2eCpgJ8HfvMgvb9b/1hnsamUsWJENbAsnnAQ1v6zLss=; b=F/5sn9Nx0/Sr1wky6c+1B+uCWmLfwt12DwcHy/IvpHDwkOfyWc/53VLf elzhTNYMBQu7UyBCFwFJMxrsFPIA1iZqzb0iDLZcFFu1yhZXgKJ8rw+Nm LBeUkosdXDeNBNmji3AlEjg1lwIbIdGlG6FXHgGcUBO62Ap5yZvOj+sXI en06rozwAqkC/dZUtWuuJ9pSvuyNOYLKxnvwQiIYo8txVEguDNOz7JMpP A/BQuhRIl8R9iKM/DiN+hETlqB6I4VOMQDKlI7Lm1ffeWOWFkoGe00fQc eCGIsPz2f6RA+Ho6aKOBMSBtoThGQiHT4ylXRgcWrBFesH+pkgj3b149X Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10300"; a="246701887" X-IronPort-AV: E=Sophos;i="5.90,220,1643702400"; d="scan'208";a="246701887" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Mar 2022 03:01:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,220,1643702400"; d="scan'208";a="546325940" Received: from npg-wuwenjun-dpdk-01.sh.intel.com ([10.67.110.181]) by orsmga007.jf.intel.com with ESMTP; 29 Mar 2022 03:01:28 -0700 From: Wenjun Wu To: dev@dpdk.org, qiming.yang@intel.com, qi.z.zhang@intel.com Subject: [PATCH v5 9/9] net/ice: add warning log for unsupported configuration Date: Tue, 29 Mar 2022 17:38:52 +0800 Message-Id: <20220329093852.1360767-10-wenjun1.wu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220329093852.1360767-1-wenjun1.wu@intel.com> References: <20220329045612.1262025-1-wenjun1.wu@intel.com> <20220329093852.1360767-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 Priority configuration is enabled in level 3 and level 4. Weight configuration is enabled in level 4. This patch adds warning log for unsupported priority and weight configuration. Signed-off-by: Wenjun Wu --- drivers/net/ice/ice_tm.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/drivers/net/ice/ice_tm.c b/drivers/net/ice/ice_tm.c index 17f369994b..3e98c2f01e 100644 --- a/drivers/net/ice/ice_tm.c +++ b/drivers/net/ice/ice_tm.c @@ -531,6 +531,15 @@ ice_tm_node_add(struct rte_eth_dev *dev, uint32_t node_id, rte_calloc(NULL, 256, (sizeof(struct ice_tm_node *)), 0); tm_node->parent->children[tm_node->parent->reference_count] = tm_node; + if (tm_node->priority != 0 && level_id != ICE_TM_NODE_TYPE_QUEUE && + level_id != ICE_TM_NODE_TYPE_QGROUP) + PMD_DRV_LOG(WARNING, "priority != 0 not supported in level %d", + level_id); + + if (tm_node->weight != 1 && level_id != ICE_TM_NODE_TYPE_QUEUE) + PMD_DRV_LOG(WARNING, "weight != 1 not supported in level %d", + level_id); + rte_memcpy(&tm_node->params, params, sizeof(struct rte_tm_node_params)); if (parent_node_type == ICE_TM_NODE_TYPE_PORT) { -- 2.25.1