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 5FA79A0487 for ; Wed, 3 Jul 2019 07:04:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A5D1023D; Wed, 3 Jul 2019 07:04:26 +0200 (CEST) Received: from mail-pf1-f176.google.com (mail-pf1-f176.google.com [209.85.210.176]) by dpdk.org (Postfix) with ESMTP id 2E12023D for ; Wed, 3 Jul 2019 07:04:25 +0200 (CEST) Received: by mail-pf1-f176.google.com with SMTP id j2so594403pfe.6 for ; Tue, 02 Jul 2019 22:04:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=qZDro1hKurvRtzDzcqdPXvy5Brg8kpdc/Ctp1Z8rSJs=; b=VJWyDe4WbVazePFRme29Xvm8wOevoY+6vqbLnWReY+zqn9Itv0Av4PLTWF3Mpfcb1f N9nnhPWgyQRGZgLpmUHVl9nkDmXlzuRvymeXOUPnMOLG9vj+CUPzC1OqxAsJL1ZkrLKZ 9BlnA/S1HwS03bROZyrlyu3MYa9CgKuSbjjDZF8UAXjTZoHG/1yeb056rd4qAVA3DDjo EZtyaRroM+mj6b1tugo7lTBEyV7TxFv7OFiMWR9QKnJGMSySYQ03C4/OiQ0WoEy+OBHs zD3GgFCJHznzNTlGLj4YFe2IqYruX4vTyNZ0BVB1sckSXsiuge1jbRsqdb8gSjlLxF+h KNAw== 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=qZDro1hKurvRtzDzcqdPXvy5Brg8kpdc/Ctp1Z8rSJs=; b=iWN96sChlEbxEVESbYQSaQtYfUiwkcVh0mQUahxACG/R8L0LG3E/y+ZvMNcu1E7U/c YEF8UXltoOCNegV2y3jRaV0XHmvrsSpH5zob3G6U7c8kUsOCArmglvoaIhJkOwx1P+mv IplZkDR2K7CmGKWqpgrbgtB9vMXd9XOzFP6ZgnxA/+gFPHjRbuupIPkiODghQizMjvh/ EMy7uZQOYLj5K0NwuMxAK8GyeJ5aU+M84LcJShYRslqG/Occ27woqW/QLCtDKQMP0BLy 3YifqbYsDHaE8Qk3MdsRaX0UY6HVd90Y3433h+e5O3F2v4lcITuGab3fLja9ftZtGB21 1pxg== X-Gm-Message-State: APjAAAWPC5k9jwVetGsr54nhOAfHtnEaske89jLE5s+mAY6EVeI1C+cB xujcYcyfmkjYuu3NaWE4/94uwNzL X-Google-Smtp-Source: APXvYqypLTjRSdZOO29eTtTOkvgDFb2M6h7qU3+O4pUHYhTQ3Gtr9cqUoCA+hekNUWOQB5rQKIZRGg== X-Received: by 2002:a63:c24d:: with SMTP id l13mr25795428pgg.330.1562130264205; Tue, 02 Jul 2019 22:04:24 -0700 (PDT) Received: from localhost.localdomain ([192.47.164.146]) by smtp.gmail.com with ESMTPSA id g14sm881976pgn.8.2019.07.02.22.04.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 02 Jul 2019 22:04:23 -0700 (PDT) From: yasufum.o@gmail.com To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Wed, 3 Jul 2019 14:04:19 +0900 Message-Id: <20190703050419.32896-1-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 Subject: [spp] [PATCH] version: 18.08.3 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" From: Yasufumi Ogawa This patch is to update SPP to v18.08.3. * Add start up script and change permission of `spp.py` to be not executable. * Add REST APIs for getting CPU layout and CPU usage in spp-ctl. * Improve suggestion of CPUs for `pri; launch` command to consider CPU layout and usage. Lcores which are not used yet and on the same socket are suggested by using REST APIs. * Replace original version of burst function in spp_mirror and spp_pcap with DPDK's rte_eth_rx_burst() and rte_eth_tx_burst() because no need to use original one. By this update, performance is slightly improved. * Many refactoring for spp_vf, spp_mirror and spp_pcap. * Update documents for the changes listed bellow. Signed-off-by: Yasufumi Ogawa --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 4fa7740..09e638f 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.2 +VERSION := 18.08.3 ifneq ($(RTE_SDK),) # Default target, can be overriden by command line or environment -- 2.17.1