From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 57101532C for ; Thu, 30 Nov 2017 17:54:05 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B351E20C61; Thu, 30 Nov 2017 11:54:04 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 30 Nov 2017 11:54:04 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=08qhELLXyeMxDe5G+Xs6QI/qMZ zAKNOFkieLp3XXhL0=; b=Bt8bZ7FIaVInHhdgzmFbRriIsmqjwP0RCniFyLpNPa vXP9ZZ/rcS3ALThHaKzNFpUdcheeJ6x9v7d7jUFL9mQElYeMSCXXhkXPmjnBEUn3 xhAtGf1ck8XnIlMfWW1TPk3/Zk0y9dQRZfjD1HFXSBt0mODJOdCAuMdKsZ8NLjMM A= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=08qhEL LXyeMxDe5G+Xs6QI/qMZzAKNOFkieLp3XXhL0=; b=iXk9zQM0VlaVH5+43tzjxE gkSnbY7MiL2KW0eGZpHsU7ngmwHF283Lp0ryN25yYT4BN33UhXaF+k0W9fFERn3e XdxJLU24aWNNLk6nQK5udqKdQ+/cpE7xZyUo1tVrbPquFgA+ciVsDXTFhsdP5fTX YO8yQR6jM7X/RhBU4eneVVg0sfP5NirnilRWHKw6g6xfHzoWr2PPD00HpCX4ln4z izDdRW9qHr5tXWLhuTvHtB4bYXcQxhG06Q+uwuhPI/DiNnZB6abwVCLqiggDuRws F/8WBmjEczp2/H/+N9zBO5z254W4yrm8W94XSNAhKGs5VQrePU9NY5oMWyMhxfVg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 5CF5625007; Thu, 30 Nov 2017 11:54:04 -0500 (EST) From: Thomas Monjalon To: Stephen Hemminger , Ophir Munk Cc: dev@dpdk.org, Olga Shern , Pascal Mazon Date: Thu, 30 Nov 2017 17:54:03 +0100 Message-ID: <1957516.jeWhpFXUaF@xps> In-Reply-To: <20171130084736.6a04c2ed@xeon-e3> References: <1512028870-13597-1-git-send-email-ophirmu@mellanox.com> <20171130084736.6a04c2ed@xeon-e3> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [RFC 1/2] net/tap: add eBPF to TAP device X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Nov 2017 16:54:05 -0000 30/11/2017 17:47, Stephen Hemminger: > On Thu, 30 Nov 2017 08:01:09 +0000 > Ophir Munk wrote: > > > diff --git a/drivers/net/tap/tap_bpf_elf.h b/drivers/net/tap/tap_bpf_elf.h > > new file mode 100644 > > index 0000000..f3db1bf > > --- /dev/null > > +++ b/drivers/net/tap/tap_bpf_elf.h > > @@ -0,0 +1,56 @@ > > +/******************************************************************************* > > + > > + Copyright (C) 2015 Daniel Borkmann > > + > > + Copied from iproute2's include/bpf_elf.h, available at: > > + https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git > > + > > + This file is licensed under GNU General Public License (GPL) v2. > > + > > + The full GNU General Public License is included in this distribution in > > + the file called "LICENSE.GPL". > > + > > +*******************************************************************************/ > > + > > + > > +#ifndef __BPF_ELF__ > > +#define __BPF_ELF__ > > + > > +#include > > You can't mix BSD and GPL licenses in DPDK. > That includes headers. Yes Anyway these headers must removed because they do not seem needed.