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 C8A784575B; Wed, 7 Aug 2024 11:47:15 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4B84D40E39; Wed, 7 Aug 2024 11:47:15 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.14]) by mails.dpdk.org (Postfix) with ESMTP id BC8E24064C for ; Wed, 7 Aug 2024 11:47:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1723024034; x=1754560034; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Ha8LVMzLNsF35M5loBTSDHMBL7FeeEWsLcqnEQXhDq8=; b=EKF2Ue+rYXQpiD6xe6eqKhTUVzh9O+Iocb+tXXRaMfmdqKjsfZ/dd4QL enNJXCDIqBnbxfQYI0UY7Acf3BEybo6aENy7eSLWUSf3YURUjhLzJyzPy AJJIqW5nWTYOMcWc2DskTICxtQSSYBVZ8hWIq8Nplzlp2tb97XGRifRvr ojk0sHNDtK8434hqatNI2V8AF8iYj42ufrfB3tZpfQdZSISFoTAzcKdnO JRjaj/w8OViX2rT2kYpzsHe/LgSrruBnEsEBMlpPciAP5EHCIeCx+jHh1 gFo6rZo1BndRi0brHAsFyjCaamiOJsJB9X4DT/xVPzLX8VWrwx9eyTCRz g==; X-CSE-ConnectionGUID: WeiJESUDQXODf/35F9/wjQ== X-CSE-MsgGUID: 6TK/3R6jSz2+n5SXcP9w6w== X-IronPort-AV: E=McAfee;i="6700,10204,11156"; a="21257926" X-IronPort-AV: E=Sophos;i="6.09,269,1716274800"; d="scan'208";a="21257926" Received: from orviesa002.jf.intel.com ([10.64.159.142]) by fmvoesa108.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Aug 2024 02:47:13 -0700 X-CSE-ConnectionGUID: W8VJ3MLHTcOvwVwjRi0Fuw== X-CSE-MsgGUID: hIp8ra8uTYipUmDgNckqRQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,269,1716274800"; d="scan'208";a="87467356" Received: from silpixa00400562.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.39]) by orviesa002.jf.intel.com with ESMTP; 07 Aug 2024 02:47:11 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH v2 00/15] Improve rte_tm support in ICE driver Date: Wed, 7 Aug 2024 10:46:51 +0100 Message-ID: <20240807094706.459822-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240807093407.452784-1-bruce.richardson@intel.com> References: <20240807093407.452784-1-bruce.richardson@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 patchset expands the capabilities of the traffic management support in the ICE driver. It allows the driver to support different sizes of topologies, and support >256 queues and more than 3 hierarchy layers. --- Depends-on: series-32719 ("improve rte_rm APIs") v2: * Correct typo in commit log of one patch * Add missing depends-on tag to the cover letter Bruce Richardson (15): net/ice: add traffic management node query function net/ice: detect stopping a flow-director queue twice net/ice: improve Tx scheduler graph output net/ice: add option to choose DDP package file net/ice: add option to download scheduler topology net/ice/base: allow init without TC class sched nodes net/ice/base: set VSI index on newly created nodes net/ice/base: read VSI layer info from VSI net/ice/base: remove 255 limit on sched child nodes net/ice/base: optimize subtree searches net/ice/base: make functions non-static net/ice/base: remove flag checks before topology upload net/ice: limit the number of queues to sched capabilities net/ice: enhance Tx scheduler hierarchy support net/ice: add minimal capability reporting API doc/guides/nics/ice.rst | 9 + drivers/net/ice/base/ice_ddp.c | 51 +-- drivers/net/ice/base/ice_ddp.h | 4 +- drivers/net/ice/base/ice_sched.c | 56 ++-- drivers/net/ice/base/ice_sched.h | 8 + drivers/net/ice/base/ice_type.h | 3 +- drivers/net/ice/ice_diagnose.c | 196 ++++------- drivers/net/ice/ice_ethdev.c | 92 +++-- drivers/net/ice/ice_ethdev.h | 18 +- drivers/net/ice/ice_rxtx.c | 15 + drivers/net/ice/ice_tm.c | 558 +++++++++++++++---------------- 11 files changed, 487 insertions(+), 523 deletions(-) -- 2.43.0