From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 7AB8C2BE1 for ; Thu, 29 Jun 2017 06:23:24 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP; 28 Jun 2017 21:23:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,278,1496127600"; d="scan'208";a="1145901485" Received: from dpdk26.sh.intel.com ([10.67.110.152]) by orsmga001.jf.intel.com with ESMTP; 28 Jun 2017 21:23:22 -0700 From: Wenzhuo Lu To: dev@dpdk.org Cc: cristian.dumitrescu@intel.com, jasvinder.singh@intel.com, Wenzhuo Lu Date: Thu, 29 Jun 2017 12:23:37 +0800 Message-Id: <1498710237-80285-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1495873075-49542-1-git-send-email-wenzhuo.lu@intel.com> References: <1495873075-49542-1-git-send-email-wenzhuo.lu@intel.com> Subject: [dpdk-dev] [PATCH v3 00/20] traffic manager on i40e and ixgbe X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2017 04:23:25 -0000 Implement the traffic manager APIs on i40e and ixgbe. This patch set is based on the patch set, "ethdev: abstraction layer for QoS traffic management" http://dpdk.org/dev/patchwork/patch/25275/ http://dpdk.org/dev/patchwork/patch/25276/ Series Reviewed-by: Ferruh Yigit Series-Acked-by: Cristian Dumitrescu v2: - reworked based on the new TM APIs. - fixed a queue mapping issue on ixgbe. v3: - supported adding queue node on i40e. - some parameters of the TM APIs are misunderstanded, corrected them. - added more comments about not implemented features. - supported commit flag check. Wenzhuo Lu (20): net/i40e: support getting TM ops net/i40e: support getting TM capability net/i40e: support adding TM shaper profile net/i40e: support deleting TM shaper profile net/i40e: support adding TM node net/i40e: support deleting TM node net/i40e: support getting TM node type net/i40e: support getting TM level capability net/i40e: support getting TM node capability net/i40e: support committing TM hierarchy net/ixgbe: support getting TM ops net/ixgbe: support getting TM capability net/ixgbe: support adding TM shaper profile net/ixgbe: support deleting TM shaper profile net/ixgbe: support adding TM node net/ixgbe: support deleting TM node net/ixgbe: support getting TM node type net/ixgbe: support getting TM level capability net/ixgbe: support getting TM node capability net/ixgbe: support committing TM hierarchy drivers/net/i40e/Makefile | 1 + drivers/net/i40e/i40e_ethdev.c | 15 + drivers/net/i40e/i40e_ethdev.h | 75 +++ drivers/net/i40e/i40e_tm.c | 974 +++++++++++++++++++++++++++++++++++ drivers/net/i40e/rte_pmd_i40e.c | 9 - drivers/net/ixgbe/Makefile | 1 + drivers/net/ixgbe/ixgbe_ethdev.c | 27 +- drivers/net/ixgbe/ixgbe_ethdev.h | 72 +++ drivers/net/ixgbe/ixgbe_tm.c | 1041 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 2201 insertions(+), 14 deletions(-) create mode 100644 drivers/net/i40e/i40e_tm.c create mode 100644 drivers/net/ixgbe/ixgbe_tm.c -- 1.9.3