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 E75644A63 for ; Fri, 9 Jun 2017 18:51:19 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP; 09 Jun 2017 09:51:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,317,1493708400"; d="scan'208";a="97605057" Received: from silpixa00382658.ir.intel.com ([10.237.223.29]) by orsmga002.jf.intel.com with ESMTP; 09 Jun 2017 09:51:15 -0700 From: Cristian Dumitrescu To: dev@dpdk.org 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 Date: Fri, 9 Jun 2017 17:51:13 +0100 Message-Id: <1497027075-31738-1-git-send-email-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1495213972-109148-2-git-send-email-cristian.dumitrescu@intel.com> References: <1495213972-109148-2-git-send-email-cristian.dumitrescu@intel.com> Subject: [dpdk-dev] [PATCH v5 0/2] ethdev: abstraction layer for QoS traffic management 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: Fri, 09 Jun 2017 16:51:20 -0000 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 + 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 | 1899 ++++++++++++++++++++++++++++++++ lib/librte_ether/rte_tm_driver.h | 366 ++++++ 8 files changed, 2780 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