From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [RFC 6/7] net/af_xdp: load BPF file Date: Wed, 28 Feb 2018 18:10:50 -0800 Message-ID: <20180228181050.41d20eb4@xeon-e3> References: <20180227093306.23854-1-qi.z.zhang@intel.com> <20180227093306.23854-7-qi.z.zhang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, magnus.karlsson@intei.com, bjorn.topel@intel.com To: Qi Zhang Return-path: Received: from mail-pf0-f182.google.com (mail-pf0-f182.google.com [209.85.192.182]) by dpdk.org (Postfix) with ESMTP id 457124C9B for ; Thu, 1 Mar 2018 03:10:54 +0100 (CET) Received: by mail-pf0-f182.google.com with SMTP id y186so1835206pfb.2 for ; Wed, 28 Feb 2018 18:10:54 -0800 (PST) In-Reply-To: <20180227093306.23854-7-qi.z.zhang@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 27 Feb 2018 17:33:05 +0800 Qi Zhang wrote: > include $(RTE_SDK)/mk/rte.lib.mk > diff --git a/drivers/net/af_xdp/bpf_load.c b/drivers/net/af_xdp/bpf_load.c > new file mode 100644 > index 000000000..aa632207f > --- /dev/null > +++ b/drivers/net/af_xdp/bpf_load.c > @@ -0,0 +1,798 @@ > +// SPDX-License-Identifier: GPL-2.0 Sorry all DPDK drivers must be BSD licensed. You can't use GPL-2.0 code. Either get the code dual licensed or write a new loader.