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 3E454A055A for ; Thu, 27 Feb 2020 05:25:16 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0FCD63B5; Thu, 27 Feb 2020 05:25:16 +0100 (CET) Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id A747A3B5 for ; Thu, 27 Feb 2020 05:25:13 +0100 (CET) Received: by valinux.co.jp (Postfix, from userid 1000) id 3E2E9240CF0; Thu, 27 Feb 2020 13:25:12 +0900 (JST) From: Itsuro Oda To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Thu, 27 Feb 2020 13:25:09 +0900 Message-Id: <20200227042512.22098-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 v2 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. --- 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 | 247 ++++++++++++++++++++++++++++++++++++ 4 files changed, 292 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