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