From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id EE460A04B3 for ; Tue, 24 Dec 2019 07:09:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B59681C01; Tue, 24 Dec 2019 07:09:51 +0100 (CET) Received: from mail.valinux.co.jp (mail.valinux.co.jp [210.128.90.3]) by dpdk.org (Postfix) with ESMTP id 97E6A1C01 for ; Tue, 24 Dec 2019 07:09:49 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.valinux.co.jp (Postfix) with ESMTP id 35ED3B55B2; Tue, 24 Dec 2019 15:09:48 +0900 (JST) X-Virus-Scanned: Debian amavisd-new at valinux.co.jp Received: from mail.valinux.co.jp ([127.0.0.1]) by localhost (mail.valinux.co.jp [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AR2SA3tPM05L; Tue, 24 Dec 2019 15:09:48 +0900 (JST) Received: from [127.0.0.1] (vagw.valinux.co.jp [210.128.90.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.valinux.co.jp (Postfix) with ESMTPS id 1D40DB54F5; Tue, 24 Dec 2019 15:09:48 +0900 (JST) Date: Tue, 24 Dec 2019 15:09:47 +0900 From: Itsuro ODA To: Yasufumi Ogawa Cc: spp@dpdk.org, ferruh.yigit@intel.com In-Reply-To: <9824326b-aab4-6d14-e13e-90edc9bdfee1@gmail.com> References: <20191223050036.30765-1-oda@valinux.co.jp> <9824326b-aab4-6d14-e13e-90edc9bdfee1@gmail.com> Message-Id: <20191224150947.8FF3.277DD91C@valinux.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.74.02 [ja] Subject: Re: [spp] [PATCH 0/3] revive vhost X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: spp-bounces@dpdk.org Sender: "spp" Hi Yasyfumi, Ok, I will divide patches and add tags. By the way, what should the tag of the common header (ex. src/shared/common.h) be ? Thanks. On Tue, 24 Dec 2019 14:57:08 +0900 Yasufumi Ogawa wrote: > On 2019/12/23 14:00, Itsuro Oda wrote: > > vhost PMD can not be used by secondary processes since DPDK 18.11. > > SPP project decided to have own vhost PMD which can be used by > > secondary processes at the moment. This vhost PMD is based on the > > original vhost PMD but is simplified very much only to support > > functions used by SPP. Thereby it becomes easy to fix the probrem. > Hi, > > Could you add tags, such as "docs", "spp_primary" or so, at the head of titles? I'd like to ask another thing is to divide your patches into more tiny ones to be easy to add the tags. Although some patches are very tiny, but it is helpful for finding the changes in future. > > Thanks, > Yasufumi > > > > Itsuro Oda (3): > > multi process supported vhost PMD for SPP > > make use of vhost PMD for SPP > > make robust against process start and termination > > > > src/Makefile | 1 + > > src/drivers/Makefile | 15 + > > src/drivers/vhost/Makefile | 28 + > > .../vhost/rte_pmd_spp_vhost_version.map | 4 + > > src/drivers/vhost/rte_spp_vhost.c | 588 ++++++++++++++++++ > > src/mirror/Makefile | 3 + > > src/nfv/Makefile | 3 + > > src/nfv/commands.h | 1 + > > src/nfv/main.c | 7 +- > > src/primary/Makefile | 3 + > > src/primary/main.c | 1 + > > src/shared/common.h | 2 +- > > src/shared/secondary/add_port.c | 8 + > > src/shared/secondary/add_port.h | 2 +- > > .../secondary/spp_worker_th/cmd_utils.c | 8 +- > > src/vf/Makefile | 3 + > > 16 files changed, 672 insertions(+), 5 deletions(-) > > create mode 100644 src/drivers/Makefile > > create mode 100644 src/drivers/vhost/Makefile > > create mode 100644 src/drivers/vhost/rte_pmd_spp_vhost_version.map > > create mode 100644 src/drivers/vhost/rte_spp_vhost.c > > -- Itsuro ODA