From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 17EB2292D for ; Sat, 27 May 2017 10:17:26 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 May 2017 01:17:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.38,400,1491289200"; d="scan'208";a="92489162" Received: from dpdk26.sh.intel.com ([10.239.128.228]) by orsmga002.jf.intel.com with ESMTP; 27 May 2017 01:17:24 -0700 From: Wenzhuo Lu To: dev@dpdk.org Cc: jingjing.wu@intel.com, cristian.dumitrescu@intel.com, jasvinder.singh@intel.com, Wenzhuo Lu Date: Sat, 27 May 2017 16:17:35 +0800 Message-Id: <1495873075-49542-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dpdk-dev] [PATCH 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: Sat, 27 May 2017 08:17:27 -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/24411/ http://dpdk.org/dev/patchwork/patch/24412/ 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 | 7 + drivers/net/i40e/i40e_ethdev.h | 57 +++ drivers/net/i40e/i40e_tm.c | 815 +++++++++++++++++++++++++++++++++++++ drivers/net/i40e/rte_pmd_i40e.c | 9 - drivers/net/ixgbe/Makefile | 1 + drivers/net/ixgbe/ixgbe_ethdev.c | 15 +- drivers/net/ixgbe/ixgbe_ethdev.h | 60 +++ drivers/net/ixgbe/ixgbe_tm.c | 850 +++++++++++++++++++++++++++++++++++++++ 9 files changed, 1801 insertions(+), 14 deletions(-) create mode 100644 drivers/net/i40e/i40e_tm.c create mode 100644 drivers/net/ixgbe/ixgbe_tm.c -- 1.9.3