From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cristian Dumitrescu Subject: [PATCH v6 0/2] ethdev: abstraction layer for QoS traffic management Date: Mon, 12 Jun 2017 14:35:37 +0100 Message-ID: <1497274539-187029-1-git-send-email-cristian.dumitrescu@intel.com> References: <1497027075-31738-3-git-send-email-cristian.dumitrescu@intel.com> Cc: thomas@monjalon.net, jerin.jacob@caviumnetworks.com, balasubramanian.manoharan@cavium.com, hemant.agrawal@nxp.com, shreyansh.jain@nxp.com, jasvinder.singh@intel.com, wenzhuo.lu@intel.com To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id BE37A3DC for ; Mon, 12 Jun 2017 15:35:43 +0200 (CEST) In-Reply-To: <1497027075-31738-3-git-send-email-cristian.dumitrescu@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch set introduces an ethdev-based abstraction layer for Quality of Service (QoS) Traffic Management, which includes: hierarchical scheduling, traffic shaping, congestion management, packet marking. The goal is to provide a simple generic API that is agnostic of the underlying HW, SW or mixed HW-SW implementation. Patch 1 uses the approach introduced by rte_flow in DPDK to extend the ethdev functionality in a modular way for traffic management. Patch 2 introduces the generic ethdev API for traffic management. Cristian Dumitrescu (2): ethdev: add traffic management ops get API ethdev: add traffic management API MAINTAINERS | 5 + doc/api/doxy-api-index.md | 2 + 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 | 36 + lib/librte_ether/rte_tm.c | 438 ++++++++ lib/librte_ether/rte_tm.h | 1904 ++++++++++++++++++++++++++++++++ lib/librte_ether/rte_tm_driver.h | 366 ++++++ 9 files changed, 2787 insertions(+), 1 deletion(-) 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 -- 2.7.4