From patchwork Tue Jan 2 19:42:26 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 527 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B6B05437FC; Tue, 2 Jan 2024 12:21:33 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 42B14402DC; Tue, 2 Jan 2024 12:21:33 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id CD21E402CE for ; Tue, 2 Jan 2024 12:21:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1704194492; x=1735730492; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=YnRSApnGJ3PNESp0YVKaW0DwTB7yb0YAh4URFyCwkBM=; b=oGw79TqpLQCSxlan9+L7+FLb6+zSBcpPOBXneWA+Frh47/yKJuHFgu+u KfHIWSH19378izCpjYQXzwvxoS+Ejcwgy/Cri6hSlnQOKMqu+yVRAdhuJ eMQQonvez7vRu72d2A+9mxWwVqELf/xqTEx1SpCpB58wF1JW8vWB3FaPM at2P8HJd1HB5+waXNi6mevNaSq4imHNOclxl/wD2NtkQuqzJlh7wIQRII yNMtg9mG0xGEF/D6WHw7Cul692AGrRth0KaOiMlarWgrHyxQFPuve2MUO tvXI4+BNECU67vMgKVAEEUMphu3i5HypPBklqIsCcoRTQEYwhCULfvihn A==; X-IronPort-AV: E=McAfee;i="6600,9927,10940"; a="10256779" X-IronPort-AV: E=Sophos;i="6.04,324,1695711600"; d="scan'208";a="10256779" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Jan 2024 03:21:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10940"; a="952895230" X-IronPort-AV: E=Sophos;i="6.04,324,1695711600"; d="scan'208";a="952895230" Received: from dpdk-qzhan15-test02.sh.intel.com ([10.67.115.37]) by orsmga005.jf.intel.com with ESMTP; 02 Jan 2024 03:21:29 -0800 From: Qi Zhang To: qiming.yang@intel.com, wenjun1.wu@intel.com Cc: dev@dpdk.org, Qi Zhang Subject: [PATCH 0/6] net/ice improve qos Date: Tue, 2 Jan 2024 14:42:26 -0500 Message-Id: <20240102194232.3614305-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 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 The patchset enhanced ice rte_tm implemenations Qi Zhang (6): net/ice: remove redundent code net/ice: support VSI level bandwidth config net/ice: support queue group weight configure net/ice: refactor hardware Tx sched node config net/ice: reset Tx sched node during commit net/ice: support Tx sched commit before dev_start drivers/net/ice/base/ice_sched.c | 4 +- drivers/net/ice/base/ice_sched.h | 7 +- drivers/net/ice/ice_ethdev.c | 9 + drivers/net/ice/ice_ethdev.h | 5 + drivers/net/ice/ice_tm.c | 361 +++++++++++++++++++++---------- 5 files changed, 269 insertions(+), 117 deletions(-) Acked-by: Wenjun Wu