From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f169.google.com (mail-wi0-f169.google.com [209.85.212.169]) by dpdk.org (Postfix) with ESMTP id 4E1F65A1F for ; Mon, 19 Oct 2015 17:19:51 +0200 (CEST) Received: by wicfv8 with SMTP id fv8so10901112wic.0 for ; Mon, 19 Oct 2015 08:19:51 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=4RiRgVXeXVia+wq0pNrxrGzNLdVNqFIw1Q5zjr0Rqvg=; b=GcPy+LIPSre24XtD76hrJtK+H6LWLHZCS4sQSyzI6y0CfwdXnUig28vuZ2Gd3CUpEr eRqsk9xC/b7kTwoxU2eIzH1rJnDOIFuFTOdQrnFp7r1i0I8TMa8I6HWh/Amsvo9R7kBW WN1P8Wh+t4eCgQ6TZF00A3BuJ1egy1PhyhVxq1CMyNu0zJU3vV+pHN9NCuFmpjnPCsZJ AMDDKysDUn1lnwcID8pZKGOv3g79/JWA0ZnHsQnxfzYDNguh68uCwAAeg9hbcKTjxNGY Q2/hCmztrhHFLY69Us6HM1OtxFa+gRO6f67HI2l26cLKqvHd8UdyaPyLg2IAuI9nrMhy lMrA== X-Gm-Message-State: ALoCoQk4fc71glLXN/DOTpfoJxXs9gAyJOAEd27jZHbYcuH4bdPISxz8UnxgtowNutT93NZYRlUR X-Received: by 10.194.121.232 with SMTP id ln8mr39368223wjb.76.1445267991062; Mon, 19 Oct 2015 08:19:51 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id jd9sm10958939wic.0.2015.10.19.08.19.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Oct 2015 08:19:50 -0700 (PDT) From: Thomas Monjalon To: Piotr Azarewicz Date: Mon, 19 Oct 2015 17:18:46 +0200 Message-ID: <4185964.BcDhOiHPGt@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1443088539-28194-2-git-send-email-piotrx.t.azarewicz@intel.com> References: <1442322395-23365-1-git-send-email-piotrx.t.azarewicz@intel.com> <1443088539-28194-1-git-send-email-piotrx.t.azarewicz@intel.com> <1443088539-28194-2-git-send-email-piotrx.t.azarewicz@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 1/3] port: add mp/mc ring ports 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: Mon, 19 Oct 2015 15:19:51 -0000 2015-09-24 11:55, Piotr Azarewicz: > ring_multi_reader input port (on top of multi consumer rte_ring) > ring_multi_writer output port (on top of multi producer rte_ring) > > Signed-off-by: Piotr Azarewicz > --- > lib/librte_port/rte_port_ring.c | 311 +++++++++++++++++++++++++++++++++++---- > lib/librte_port/rte_port_ring.h | 35 ++++- Piotr, You forgot the shared library case: the new functions are missing in the .map. Cristian, As a maintainer, please check compilation of shared library. See you for the v3 ;) Thanks