From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga105.jf.intel.com with ESMTP; 04 Jul 2017 08:38:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,309,1496127600"; d="scan'208";a="874688188" Received: from silpixa00382658.ir.intel.com ([10.237.223.29]) by FMSMGA003.fm.intel.com with ESMTP; 04 Jul 2017 08:38:52 -0700 From: Cristian Dumitrescu To: thomas@monjalon.net Cc: dev@dpdk.org, jerin.jacob@caviumnetworks.com, hemant.agrawal@nxp.com, jasvinder.singh@intel.com, wenzhuo.lu@intel.com Date: Tue, 4 Jul 2017 16:38:51 +0100 Message-Id: <1499182731-86830-1-git-send-email-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [pull-request] next-tm 17.08 pre-rc1 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: Tue, 04 Jul 2017 15:38:56 -0000 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