From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-f67.google.com (mail-ed1-f67.google.com [209.85.208.67]) by dpdk.org (Postfix) with ESMTP id 6D734239 for ; Mon, 15 Oct 2018 14:58:33 +0200 (CEST) Received: by mail-ed1-f67.google.com with SMTP id l14-v6so8755216edq.0 for ; Mon, 15 Oct 2018 05:58:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netronome-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=A5H0DhFd4660bkiePhJRSQSaoZ+NW7f+h4h/NZrSwKo=; b=JFdHUqy4o0zGb/CdC0TZ4bd8AdDs9i2z/iG5PDNx9UBW/84XZRcM425uF5eAlt7M3K zF2VaqbEx+Zw5PoZt1x2Q7oSMIlfC1szDZlVyGvUYbMnXxQwHjNHNoja8r06B/83n1hw KNUWsHVGj45M6LY7PpLBcJP6SnLyvZEYqLHGnY/Z1NSLAs6NFEhMOTtPZKcr0tf55ZTr 9d9b6dtDd89sEzPUx8En1JfTxQwmf8z7TXdGJjp+fbMmvtQufVlIHDy1YfSpAeu8tgM/ cn6V/dSsiTIfFESc3m1NiFlY/0HlSzttL341Ftz0ifxyuxI9NTLzMVAD6mFvFyHzDSyc udSw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=A5H0DhFd4660bkiePhJRSQSaoZ+NW7f+h4h/NZrSwKo=; b=p3OaGKEqcw1NVbaHV0bGoQ3iblWccLlbpDOEEcojP7gtljQ+t1yW2ZByWfsSRlqFra yL6TU6OwKGy+dxj1JO01tNLmSfcAWSpUlgbTvVgJZznU8iTgCQ8o5joJct7NlTGEWODS +VGcch1lou/NKzSRJrQsQ3aB7RjBXq4rCvjuR+F1+XM0OEydyHLhKffUli7tiCj0o6wN ZeG0vJyyu9q0FQW9l7t3i34QwiJCoYPkvIBlz2DdRsxZyWfxXDvTCKyKLOEPK/Ngg2f8 dXbsHT3WdtZSbrgYHV+Qq733/E08CA9wuxDfenNzIkrAmojgrXhI3liiOE300KBS2EQd FdFQ== X-Gm-Message-State: ABuFfohSsOY50Tbj20r7eIx6rBUNwVZrQPusw9r9KpTo7jXxkHmf9JFN bAs0aSByrgMQdQS6bJ4WI+xwRvJdHFttiRAIegqPAQ== X-Google-Smtp-Source: ACcGV60uxIMwfd4JhNcQZ4FY0IzfgaoPl2PDlkNsgJxgc6HWNBeG6emsuPO+M0+r8ZJlhHhqWBgfTW7tmxas51d2HuI= X-Received: by 2002:a50:9386:: with SMTP id o6-v6mr24969592eda.248.1539608312997; Mon, 15 Oct 2018 05:58:32 -0700 (PDT) MIME-Version: 1.0 References: <1539594009-48700-1-git-send-email-alejandro.lucero@netronome.com> <554e86be-9139-f580-7d79-a0114671ecfe@solarflare.com> In-Reply-To: <554e86be-9139-f580-7d79-a0114671ecfe@solarflare.com> From: Alejandro Lucero Date: Mon, 15 Oct 2018 13:58:21 +0100 Message-ID: To: Andrew Rybchenko Cc: dev Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 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:58:33 -0000 On Mon, Oct 15, 2018 at 1:12 PM Andrew Rybchenko wrote: > 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. > > Apologies for my clumsiness. It seems I was modifying the example! I'll fix this asap. Thanks > <...> >