From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vasily Philipov Subject: Re: [PATCH v11] drivers/net:new TUN/TAP device PMD Date: Mon, 12 Dec 2016 12:39:10 +0000 Message-ID: References: <1476396234-44694-1-git-send-email-keith.wiles@intel.com> <20161209190519.2390-1-keith.wiles@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "pmatilai@redhat.com" , "yuanhan.liu@linux.intel.com" , "ferruh.yigit@intel.com" , "john.mcnamara@intel.com" To: Keith Wiles , "dev@dpdk.org" Return-path: Received: from EUR01-HE1-obe.outbound.protection.outlook.com (mail-he1eur01on0048.outbound.protection.outlook.com [104.47.0.48]) by dpdk.org (Postfix) with ESMTP id 1A8A42C8 for ; Mon, 12 Dec 2016 13:39:12 +0100 (CET) In-Reply-To: <20161209190519.2390-1-keith.wiles@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Keith Wiles > Sent: Friday, December 09, 2016 21:05 > To: dev@dpdk.org > Cc: pmatilai@redhat.com; yuanhan.liu@linux.intel.com; > ferruh.yigit@intel.com; john.mcnamara@intel.com > Subject: [dpdk-dev] [PATCH v11] drivers/net:new TUN/TAP device PMD >=20 > The PMD allows for DPDK and the host to communicate using a raw device > interface on the host and in the DPDK application. The device created is = a Tap > device with a L2 packet header. >=20 > v11- Add the tap.rst to the nic/index.rst file > v10- Change the string name used to allow for multiple devices. > v9 - Fix up the docs to use correct syntax > v8 - Fix issue with tap_tx_queue_setup() not return zero on success. > v7 - Reword the comment in common_base and fix the data->name issue > v6 - fixed the checkpatch issues > v5 - merge in changes from list review see related emails > fixed many minor edits > v4 - merge with latest driver changes > v3 - fix includes by removing ifdef for other type besides Linux > Fix the copyright notice in the Makefile > v2 - merge all of the patches into one patch > Fix a typo on naming the tap device > Update the maintainers list >=20 > Signed-off-by: Keith Wiles > --- > MAINTAINERS | 5 + > config/common_base | 9 + > config/common_linuxapp | 1 + > doc/guides/nics/index.rst | 1 + > doc/guides/nics/tap.rst | 136 ++++++ > drivers/net/Makefile | 1 + > drivers/net/tap/Makefile | 57 +++ > drivers/net/tap/rte_eth_tap.c | 765 > ++++++++++++++++++++++++++++++++ > drivers/net/tap/rte_pmd_tap_version.map | 4 + > mk/rte.app.mk | 1 + > 10 files changed, 980 insertions(+) Tested-by: Vasily Philipov