From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id ECC7D1B0F9 for ; Wed, 28 Nov 2018 03:49:43 +0100 (CET) Received: from vc2.ecl.ntt.co.jp (vc2.ecl.ntt.co.jp [129.60.86.154]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id wAS2ngKE018101; Wed, 28 Nov 2018 11:49:42 +0900 Received: from vc2.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id 1C591638ACF; Wed, 28 Nov 2018 11:49:42 +0900 (JST) Received: from jcms-pop21.ecl.ntt.co.jp (jcms-pop21.ecl.ntt.co.jp [129.60.87.134]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id 10D41638065; Wed, 28 Nov 2018 11:49:42 +0900 (JST) Received: from [IPv6:::1] (watercress.nslab.ecl.ntt.co.jp [129.60.13.73]) by jcms-pop21.ecl.ntt.co.jp (Postfix) with ESMTPSA id 095854008CB; Wed, 28 Nov 2018 11:49:42 +0900 (JST) References: <201811210136.wAL1aHpl009755@imss03.silk.ntt-tx.co.jp> From: Yasufumi Ogawa Message-ID: Date: Wed, 28 Nov 2018 11:47:19 +0900 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <201811210136.wAL1aHpl009755@imss03.silk.ntt-tx.co.jp> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-CC-Mail-RelayStamp: 1 To: x-fn-spp@sl.ntt-tx.co.jp Cc: ferruh.yigit@intel.com, spp@dpdk.org X-TM-AS-MML: disable Subject: Re: [spp] [PATCH 0/3] introduce new feature SPP Mirror 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: , X-List-Received-Date: Wed, 28 Nov 2018 02:49:44 -0000 > This series patches is to provide new feature called > SPP Mirror. > > spp_mirror is a new secondary process for mirroring incoming packets. > This secondary process is intended to use as a TaaS1 of OpenStack. > > [1]https://docs.openstack.org/dragonflow/latest/specs/tap_as_a_service.html > > This patch series only provide source code. Related document > patch set will be provided soon. Series of patches is applied. Thanks! Acked-by: Yasufumi Ogawa > > Hideyuki Yamashita (3): > spp_mirror: add spp_mirror common define and func > spp_mirror: add spp_mirror > spp_mirror: add Makefile for spp_mirror > > src/Makefile | 1 + > src/mirror/Makefile | 35 ++ > src/mirror/spp_mirror.c | 721 +++++++++++++++++++++++++++++++++++ > src/mirror/spp_mirror.h | 54 +++ > src/vf/common/command_dec.c | 6 + > src/vf/common/command_proc.c | 9 + > src/vf/common/spp_proc.c | 6 + > src/vf/common/spp_proc.h | 17 +- > 8 files changed, 842 insertions(+), 7 deletions(-) > create mode 100644 src/mirror/Makefile > create mode 100644 src/mirror/spp_mirror.c > create mode 100644 src/mirror/spp_mirror.h