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 A1512A0352 for ; Mon, 4 Nov 2019 15:18:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 91A0E316B; Mon, 4 Nov 2019 15:18:55 +0100 (CET) Received: from mail-pf1-f170.google.com (mail-pf1-f170.google.com [209.85.210.170]) by dpdk.org (Postfix) with ESMTP id 5C0B1316B for ; Mon, 4 Nov 2019 15:18:54 +0100 (CET) Received: by mail-pf1-f170.google.com with SMTP id c13so12281738pfp.5 for ; Mon, 04 Nov 2019 06:18:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=RnQiNihoFAwZd44ncSoYJosL3kneQ5PWaX462ByCj8o=; b=hxJVPTZG5dVNhg4cCxCz8UNS3WB8eEN/Kl3AUpQF93IS3TIEWx5cjRn8c9WxulBIYo gbNvIXgR/CusHoXGSeugIYn22k+5LRTlXPVpUE3k5YQqhvYW9gN8hEDPHlIJ2LtcHIBi cYPua/4PI4gizchaqa/dIPkyRNWz3TYKSYpYhEJxpk+tevpvrJOorUuiR4W2YNJpIdbB sVwUmpRxdMulzGO+skv/vueXxwniDgCnByylwBpOvgxr5i/+odNesBHPjTQxAu3c5UGP le4I242sUPHqQ8sFEblDGCZ/sxm1DvlMDKvdzGxZrwTDAKPjht/yiwnjWNWoX0rICzRh kkNA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=RnQiNihoFAwZd44ncSoYJosL3kneQ5PWaX462ByCj8o=; b=eWR1k2V+JjyZMlPFOaxUn3pxoipgCp2DfqadSgPoVagI1Bt+CYDspyl2S9axsJZMQt oMJOCK4qVYGC0Jv2VaEeDHtik+xjbTI0atWUXUSd3iBh8psozqY0lK0tL+ky5MGVyRn5 yRZykvImMZvuiju9WiujhnWTbDqJpb9mYVs0am3LeJqhZvlmRZENGQuDyWM4SiK/0CTZ jM0dOBUrA9Vd1arRuvXazus1CcsPcd6B7PHZxJH2i7rNcF+bQLezvmTdbC93FfY93IBX c24+4XP6FSY7RbFfXNLnJ0O1+HDlcSwkxeHX7DZsk7Gf5hm1bUEkfCj5GTso+an7t8Op Su2g== X-Gm-Message-State: APjAAAUn8mIh0vGF5pAKn9ggK0THl6u4qB5/IrZ9oEwA7i2Q+c84M6Vt c5QHhnQ775C0YbO+4cImPt+Wn1bsT9A= X-Google-Smtp-Source: APXvYqyaCUL07xt3+JaFbwVyjcKCT7I+YbLiYx1p9BQA3299c4iH6fAFMAM1jj8TZGrqqtcBlrKA7g== X-Received: by 2002:a63:6a86:: with SMTP id f128mr30077390pgc.295.1572877133392; Mon, 04 Nov 2019 06:18:53 -0800 (PST) Received: from localhost.localdomain ([2400:4050:c8c2:de00:b56f:8078:5747:1f8b]) by smtp.gmail.com with ESMTPSA id p7sm19193174pjp.4.2019.11.04.06.18.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 04 Nov 2019 06:18:52 -0800 (PST) From: Yasufumi Ogawa To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Mon, 4 Nov 2019 23:18:48 +0900 Message-Id: <20191104141848.30916-1-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 Subject: [spp] [PATCH] version: 19.08 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" This patch is to update SPP to v19.08. * Add forwarder thread in spp_primary because vhost PMD cannot be used from secondary from DPDK v19.11 or later. Vhost is added to spp_primary instead of secondary. VM or container can be connected with secondary via primary. * Change SPP CLI to wait spp_primary is ready. You do not need to type `status` until primary is ready anymore. * Update config params to launch spp_primary with two lcores for running forwarder thread as default. * To make building container image is done in a short time, separate building steps into two Dockerfiles, one is for installing packages with apt and another one is for compiling DPDP apps from source. First one is not required to run each time building image if the built image can be retrieved from Docker Hub. So, the second Dockerfile uses the image on Docker Hub without running first one. If you are in offline, you need to run first one to have the base image locally. * Update docs. Signed-off-by: Yasufumi Ogawa --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index e262c87..274f709 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Nippon Telegraph and Telephone Corporation -VERSION := 18.08.4 +VERSION := 19.08 ifneq ($(RTE_SDK),) # Default target, can be overriden by command line or environment -- 2.13.1