From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id E080B8E61 for ; Thu, 24 Sep 2015 11:53:30 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 24 Sep 2015 02:53:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,580,1437462000"; d="scan'208";a="775984103" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga001.jf.intel.com with SMTP; 24 Sep 2015 02:53:27 -0700 Received: by stargo (sSMTP sendmail emulation); Thu, 24 Sep 2015 11:56:02 +0200 From: Piotr Azarewicz To: dev@dpdk.org Date: Thu, 24 Sep 2015 11:55:36 +0200 Message-Id: <1443088539-28194-1-git-send-email-piotrx.t.azarewicz@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1442322395-23365-1-git-send-email-piotrx.t.azarewicz@intel.com> References: <1442322395-23365-1-git-send-email-piotrx.t.azarewicz@intel.com> Subject: [dpdk-dev] [PATCH v2 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: Thu, 24 Sep 2015 09:53:31 -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 Piotr Azarewicz (3): port: add mp/mc ring ports port: fix ras 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_ras.c | 8 +- lib/librte_port/rte_port_ring.c | 311 ++++++++++++++++++++++++++++++++--- lib/librte_port/rte_port_ring.h | 35 +++- 9 files changed, 724 insertions(+), 71 deletions(-) -- 1.7.9.5