From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 28 Oct 2015 06:27:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,210,1444719600"; d="scan'208";a="837089774" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga002.jf.intel.com with SMTP; 28 Oct 2015 06:27:34 -0700 Received: by stargo (sSMTP sendmail emulation); Wed, 28 Oct 2015 14:30:48 +0100 From: Piotr Azarewicz To: dev@dpdk.org Date: Wed, 28 Oct 2015 14:30:42 +0100 Message-Id: <1446039045-7789-1-git-send-email-piotrx.t.azarewicz@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1445351774-4459-1-git-send-email-piotrx.t.azarewicz@intel.com> References: <1445351774-4459-1-git-send-email-piotrx.t.azarewicz@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] ip_pipeline: add MP/MC and frag/ras support to SWQs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Oct 2015 13:27:43 -0000 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