From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dispatch1-us1.ppe-hosted.com (dispatch1-us1.ppe-hosted.com [67.231.154.164]) by dpdk.org (Postfix) with ESMTP id 3AA09201 for ; Mon, 15 Oct 2018 14:13:00 +0200 (CEST) X-Virus-Scanned: Proofpoint Essentials engine Received: from webmail.solarflare.com (uk.solarflare.com [193.34.186.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by mx1-us3.ppe-hosted.com (Proofpoint Essentials ESMTP Server) with ESMTPS id E58A49C005B; Mon, 15 Oct 2018 12:12:58 +0000 (UTC) Received: from [192.168.38.17] (91.220.146.112) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Mon, 15 Oct 2018 13:12:54 +0100 To: Alejandro Lucero , References: <1539594009-48700-1-git-send-email-alejandro.lucero@netronome.com> From: Andrew Rybchenko Message-ID: <554e86be-9139-f580-7d79-a0114671ecfe@solarflare.com> Date: Mon, 15 Oct 2018 15:12:13 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 In-Reply-To: <1539594009-48700-1-git-send-email-alejandro.lucero@netronome.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-GB X-Originating-IP: [91.220.146.112] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-12.5.0.1300-8.5.1010-24156.003 X-TM-AS-Result: No-10.696100-8.000000-10 X-TMASE-MatchedRID: nVQUmLJJeyYOwH4pD14DsPHkpkyUphL9jOOSc4z5Qmh+YesuCgkiXB3m ofUGOoJwahX4ipyY+l4jrysmQWQSIpRho78T5P9DJhFEQZiq2ZQhotH7bEpEMjRCaZSKE/OscHj giTON9jI0me31Nb/HBgndEgpS87BPQw3ojRObXh1c/msUC5wFQX0tCKdnhB58vqq8s2MNhPCy5/ tFZu9S3Ku6xVHLhqfxIAcCikR3vq9S1ESSkGinREzLoUjvq0nsCb58lCNJ2T0MlyIIj2kuqHWl+ 4/qSMa/ X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No X-TMASE-Result: 10--10.696100-8.000000 X-TMASE-Version: SMEX-12.5.0.1300-8.5.1010-24156.003 X-MDID: 1539605579-JzPJ_8LhwgPF Subject: Re: [dpdk-dev] [PATCH v3] ethdev: add field for device data per process 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: Mon, 15 Oct 2018 12:13:00 -0000 On 10/15/18 12:00 PM, Alejandro Lucero wrote: > Primary and secondary processes share a per-device private data. With > current design it is not possible to have data per-device per-process. > This is required for handling properly the CPP interface inside the NFP > PMD with multiprocess support. > > There is also at least another PMD driver, tap, with similar > requirements for per-process device data. > > v2: > - changing library version > - report shared library change in release notes > > v3: > - fix shared library version > > Signed-off-by: Alejandro Lucero > --- > doc/guides/rel_notes/release_18_11.rst | 1 + > lib/librte_ethdev/Makefile | 2 +- > lib/librte_ethdev/meson.build | 2 +- > lib/librte_ethdev/rte_ethdev_core.h | 8 +++++++- > 4 files changed, 10 insertions(+), 3 deletions(-) > > diff --git a/doc/guides/rel_notes/release_18_11.rst b/doc/guides/rel_notes/release_18_11.rst > index c806dc6..8b2ccad 100644 > --- a/doc/guides/rel_notes/release_18_11.rst > +++ b/doc/guides/rel_notes/release_18_11.rst > @@ -189,6 +189,7 @@ Shared Library Versions > librte_acl.so.2 > + librte_cfgfile.so.2 > librte_cmdline.so.2 > + + librte_ethdev.so.11 > > This section is a comment. Do not overwrite or remove it. > ========================================================= It is still wrong place. There is librte_ethdev.so.10 few lines below. It should be updated to add + sign and change version to 11. <...>