From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cristian Dumitrescu Subject: [pull-request] next-tm 17.08 pre-rc1 Date: Tue, 4 Jul 2017 16:38:51 +0100 Message-ID: <1499182731-86830-1-git-send-email-cristian.dumitrescu@intel.com> Cc: dev@dpdk.org, jerin.jacob@caviumnetworks.com, hemant.agrawal@nxp.com, jasvinder.singh@intel.com, wenzhuo.lu@intel.com To: thomas@monjalon.net Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id CB40A374C for ; Tue, 4 Jul 2017 17:38:55 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The following changes since commit a566400e8b73ec646e0cc6dd0bc44def8535fb98: net: implement CRC for ARM64 NEON (2017-07-04 15:58:45 +0200) are available in the git repository at: http://dpdk.org/git/next/dpdk-next-tm for you to fetch changes up to dcb4c3f881e29e1062a3e298e60474912e8a4ece: net/ixgbe: support committing TM hierarchy (2017-07-04 16:00:01 +0100) ---------------------------------------------------------------- Dumitrescu, Cristian (2): ethdev: add traffic management ops get API ethdev: add traffic management API 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 MAINTAINERS | 5 + doc/api/doxy-api-index.md | 2 + drivers/net/i40e/Makefile | 1 + drivers/net/i40e/i40e_ethdev.c | 15 + drivers/net/i40e/i40e_ethdev.h | 80 ++ 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 +++++++++++++++++ lib/librte_ether/Makefile | 5 +- lib/librte_ether/rte_ethdev.c | 12 + lib/librte_ether/rte_ethdev.h | 20 + lib/librte_ether/rte_ether_version.map | 31 + lib/librte_ether/rte_tm.c | 438 ++++++++ lib/librte_ether/rte_tm.h | 1904 ++++++++++++++++++++++++++++++++ lib/librte_ether/rte_tm_driver.h | 366 ++++++ 18 files changed, 4988 insertions(+), 15 deletions(-) create mode 100644 drivers/net/i40e/i40e_tm.c create mode 100644 drivers/net/ixgbe/ixgbe_tm.c create mode 100644 lib/librte_ether/rte_tm.c create mode 100644 lib/librte_ether/rte_tm.h create mode 100644 lib/librte_ether/rte_tm_driver.h