From mboxrd@z Thu Jan 1 00:00:00 1970 From: Piotr Azarewicz Subject: [PATCH v4 0/3] ip_pipeline: add MP/MC and frag/ras support to SWQs Date: Wed, 28 Oct 2015 14:30:42 +0100 Message-ID: <1446039045-7789-1-git-send-email-piotrx.t.azarewicz@intel.com> References: <1445351774-4459-1-git-send-email-piotrx.t.azarewicz@intel.com> To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 9A83611F5 for ; Wed, 28 Oct 2015 14:27:42 +0100 (CET) In-Reply-To: <1445351774-4459-1-git-send-email-piotrx.t.azarewicz@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch set enhancement ip_pipeline application: - librte_port: add support for multi-producer/multi-consumer ring ports - librte_port: bug fixes for ring ports with IPv4/IPv6 reassembly support - ip_pipeline application: integrate MP/MC and fragmentation/reassembly support to SWQs v2 changes: - rte_port_ring: - fixed checkpatch errors - interlace the implementation of multi into the implementation of single - reduced the amount of code duplication v3 changes: - new functions added in the .map - add a "Fixes:" tag in commit comment v4 changes: - fix usage RTE_MBUF_METADATA_* macros Acked-by: Cristian Dumitrescu Piotr Azarewicz (3): port: add mp/mc ring ports port: fix ras/frag ring ports examples/ip_pipeline: add mp/mc and frag/ras swq examples/ip_pipeline/app.h | 14 ++ examples/ip_pipeline/config_check.c | 45 ++++- examples/ip_pipeline/config_parse.c | 195 +++++++++++++++++++-- examples/ip_pipeline/init.c | 165 +++++++++++++++--- examples/ip_pipeline/main.c | 4 +- examples/ip_pipeline/pipeline_be.h | 18 ++ lib/librte_port/rte_port_frag.c | 5 +- lib/librte_port/rte_port_ras.c | 8 +- lib/librte_port/rte_port_ring.c | 311 +++++++++++++++++++++++++++++++--- lib/librte_port/rte_port_ring.h | 35 +++- lib/librte_port/rte_port_version.map | 9 + 11 files changed, 736 insertions(+), 73 deletions(-) -- 1.7.9.5