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 0400AA0565 for ; Mon, 2 Mar 2020 01:00:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 942621C06D; Mon, 2 Mar 2020 01:00:39 +0100 (CET) Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id 619501C06A for ; Mon, 2 Mar 2020 01:00:38 +0100 (CET) Received: by valinux.co.jp (Postfix, from userid 1000) id 79E57240CF7; Mon, 2 Mar 2020 09:00:37 +0900 (JST) From: Itsuro Oda To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Mon, 2 Mar 2020 09:00:34 +0900 Message-Id: <20200302000037.30578-1-oda@valinux.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200226020245.3037-1-oda@valinux.co.jp> References: <20200226020245.3037-1-oda@valinux.co.jp> Subject: [spp] [PATCH v3 0/3] add vdev_test 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" vdev_test is a simple tool to perform packet forwarding for virtual ethernet devices. It is mainly to test pipe PMD because testpmd can not be secondary process but vdev_test can be. --- v3: * fix checkpatches.sh errors. v2: * move directory src to tools. Itsuro Oda (3): vdev_test: simple tool to perform packet forwarding for vdev tools: add Makefile for vdev_test makefile: add make of tools directory GNUmakefile | 5 + tools/Makefile | 15 +++ tools/vdev_test/Makefile | 25 ++++ tools/vdev_test/vdev_test.c | 235 ++++++++++++++++++++++++++++++++++++ 4 files changed, 280 insertions(+) create mode 100644 tools/Makefile create mode 100644 tools/vdev_test/Makefile create mode 100644 tools/vdev_test/vdev_test.c -- 2.17.1