From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id DAFF5457A1;
	Mon, 12 Aug 2024 17:28:31 +0200 (CEST)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id C6A954065F;
	Mon, 12 Aug 2024 17:28:31 +0200 (CEST)
Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.16])
 by mails.dpdk.org (Postfix) with ESMTP id 232744014F
 for <dev@dpdk.org>; Mon, 12 Aug 2024 17:28:29 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1723476510; x=1755012510;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=Pf1n8ZiXdGjaF+QcDJRkCh2sTc8BD2sE/cRF9eRTU7E=;
 b=D4m4Znb0UB4GS3RKb9XvfdZk1tHdQyxvJQBXx+uTLeM41PLTSUbUNfg7
 rt8hAYTRrzGKDaHEniInI8DtdrUmp6TKtkItCCfYVTLLB1d+QD9EMYaC+
 nJZrjnR53j3Bgs8HG/SE4ecD76mSkg3WnWTc0pZbXItLeRNNIzb0uxzH/
 sj/Y0HKSlybnss1mjz/vpKs4ArJwY/9HZFnGV6J3BNcI3Tb+MZafV3m94
 Fzm0SLLr43ZGYj7LrXFSHpn+48gxPOQrruYouQm7VH3Rf5nTjhEKN2h+u
 NmjOtHBsZmNhqi5aFBhrCNDHtzIc4qV8QJS7kWIri+D1rLolVWroJmxZf w==;
X-CSE-ConnectionGUID: pLL4RsXhS4y+QCD+o2NgpQ==
X-CSE-MsgGUID: yF8xglW4RU+ixX/VoUKnbA==
X-IronPort-AV: E=McAfee;i="6700,10204,11162"; a="21743027"
X-IronPort-AV: E=Sophos;i="6.09,283,1716274800"; d="scan'208";a="21743027"
Received: from orviesa004.jf.intel.com ([10.64.159.144])
 by orvoesa108.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 12 Aug 2024 08:28:29 -0700
X-CSE-ConnectionGUID: HEWCLrlsRp6pktCyEvd1+g==
X-CSE-MsgGUID: Fl8J4O5RTweWkGZT8aejyQ==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="6.09,283,1716274800"; d="scan'208";a="63222493"
Received: from silpixa00400562.ir.intel.com (HELO
 silpixa00401385.ir.intel.com) ([10.237.214.39])
 by orviesa004.jf.intel.com with ESMTP; 12 Aug 2024 08:28:29 -0700
From: Bruce Richardson <bruce.richardson@intel.com>
To: dev@dpdk.org
Cc: Bruce Richardson <bruce.richardson@intel.com>
Subject: [PATCH v3 00/16] Improve rte_tm support in ICE driver
Date: Mon, 12 Aug 2024 16:27:59 +0100
Message-ID: <20240812152815.1132697-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 <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=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")

v3:
* remove/implement some code TODOs
* add patch 16 to set.

v2:
* Correct typo in commit log of one patch
* Add missing depends-on tag to the cover letter

Bruce Richardson (16):
  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
  net/ice: do early check on node level when adding

 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         | 574 +++++++++++++++----------------
 11 files changed, 497 insertions(+), 529 deletions(-)

--
2.43.0