From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id A3BA76CCF for ; Fri, 14 Oct 2016 08:41:33 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 13 Oct 2016 23:41:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,491,1473145200"; d="scan'208";a="1064671628" Received: from irsmsx154.ger.corp.intel.com ([163.33.192.96]) by orsmga002.jf.intel.com with ESMTP; 13 Oct 2016 23:41:31 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.91]) by IRSMSX154.ger.corp.intel.com ([169.254.12.149]) with mapi id 14.03.0248.002; Fri, 14 Oct 2016 07:41:30 +0100 From: "Mcnamara, John" To: "Wiles, Keith" , "dev@dpdk.org" CC: "pmatilai@redhat.com" , "yuanhan.liu@linux.intel.com" , "Yigit, Ferruh" Thread-Topic: [dpdk-dev] [PATCH v9] drivers/net:new PMD using tun/tap host interface Thread-Index: AQHSJZ3I7KwY54RLzEW/nlv5OylPAqCngJvQ Date: Fri, 14 Oct 2016 06:41:30 +0000 Message-ID: References: <1474423220-10207-1-git-send-email-keith.wiles@intel.com> <1476396234-44694-1-git-send-email-keith.wiles@intel.com> In-Reply-To: <1476396234-44694-1-git-send-email-keith.wiles@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzA0MTBkY2ItNzdjNy00YTJhLWIyNDUtNTQ2ZjA0YzZmOTdjIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik14c3QwTzl0Z1hyVGRMUFJCUEZ3aWllQ3l4T1ZlNDlmeWwwV2JXem9jUGc9In0= x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v9] drivers/net:new PMD using tun/tap host interface X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Oct 2016 06:41:34 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Keith Wiles > Sent: Thursday, October 13, 2016 11:04 PM > To: dev@dpdk.org > Cc: pmatilai@redhat.com; yuanhan.liu@linux.intel.com; Yigit, Ferruh > > Subject: [dpdk-dev] [PATCH v9] drivers/net:new PMD using tun/tap host > interface >=20 > The rte_eth_tap.c PMD creates a device using TUN/TAP interfaces on the > local host. 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 > 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 For the doc part of the patch: Acked-by: John McNamara