From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f46.google.com (mail-pl0-f46.google.com [209.85.160.46]) by dpdk.org (Postfix) with ESMTP id 2DFD42082 for ; Thu, 1 Mar 2018 00:40:55 +0100 (CET) Received: by mail-pl0-f46.google.com with SMTP id c11-v6so2520470plo.0 for ; Wed, 28 Feb 2018 15:40:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=yUzSoVtKtA0atmhnJB1wBpNuGPnVxoODXGdSFzhxXsU=; b=iA4EzvhE3eXRhQ4tevkEvHywobh3CG9urkxvC5JFRmQY1FmpRXduWGTZ2G9iXqzcEI OiPoNNLU0T38QVZysG5p8jcellLGMpXV2N8mvTOBLQCJXrwXjwovwu0w6Qb4yPR/h7YP 7tB0zUFz6p0PH8fdWgqpSyyPE7mCEFKNFNVXAVqFFv3vmsSxGQ7pk3f3q6wBZ7DaF17B Tr5o6zqz8QgTzYrdMg8h0lpqkClLvHidJjwJLM55rhOaHdmkC4rBNN2Zi57loRQN6jf2 lcz+rhqIJDCZDWMF61oja0FYBlz3fQT1Ppj1cVscK3FlPiHoEjD/PKU1Jv3qMz4SDF+e 8oog== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=yUzSoVtKtA0atmhnJB1wBpNuGPnVxoODXGdSFzhxXsU=; b=IrWItOYRvwhDgp5O6ZimbFXhhNXkKhEiHmhdhtuqNUQGTF1569UCwtLISCT5568kMe EaPvS05WFQoz+ttVriMfre28De2AAiyFJYlaw5Gkc6AmiYGZdWWK0UX8DeKgra2bNOvW l7voJZWmSQxSmnFVejo9l55XV5b0LLPhsWKcwA06m6sW452h/tBPGcgIyqQRB6emFqxT eqmutIr7o2Vcx1ByIMjJQY7PWjIwYbMuao1aPW1+tqEvgsCOCWDDmpd4a66zHpvJxkXK vR+CFv/dcT6kklwdwY1kAQKmOCG2BXiA6XwNMH1EICWLXEKGb40fwdugbtBmlbCmeuGF lqAg== X-Gm-Message-State: APf1xPD6tvv5n4HDQG/DpMQ2T8x3GupFSOJw65cTYa1n8/ZIdigomKDr T6fHm0TWMl5wKjW1h9ORTJJMeQ== X-Google-Smtp-Source: AG47ELuGRaA4vbh2SznjHSnfWk86BVy/vRCGMT3O59qUTmlC1fVwXA/CTihs0OS35Nb3rK2b/EW8xQ== X-Received: by 2002:a17:902:7009:: with SMTP id y9-v6mr15803073plk.395.1519861254273; Wed, 28 Feb 2018 15:40:54 -0800 (PST) Received: from xeon-e3 (204-195-71-95.wavecable.com. [204.195.71.95]) by smtp.gmail.com with ESMTPSA id c18sm5469721pfd.100.2018.02.28.15.40.54 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 28 Feb 2018 15:40:54 -0800 (PST) Date: Wed, 28 Feb 2018 15:40:45 -0800 From: Stephen Hemminger To: Qi Zhang Cc: dev@dpdk.org, magnus.karlsson@intei.com, bjorn.topel@intel.com Message-ID: <20180228154045.14983f25@xeon-e3> In-Reply-To: <20180227093306.23854-2-qi.z.zhang@intel.com> References: <20180227093306.23854-1-qi.z.zhang@intel.com> <20180227093306.23854-2-qi.z.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [RFC 1/7] net/af_xdp: new PMD driver 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: Wed, 28 Feb 2018 23:40:55 -0000 On Tue, 27 Feb 2018 17:33:00 +0800 Qi Zhang wrote: > iff --git a/drivers/net/af_xdp/Makefile b/drivers/net/af_xdp/Makefile > new file mode 100644 > index 000000000..ac38e20bf > --- /dev/null > +++ b/drivers/net/af_xdp/Makefile > @@ -0,0 +1,56 @@ > +# BSD LICENSE > +# > +# Copyright(c) 2014 John W. Linville > +# Copyright(c) 2010-2014 Intel Corporation. All rights reserved. > +# Copyright(c) 2014 6WIND S.A. > +# All rights reserved. > +# > +# Redistribution and use in source and binary forms, with or without > +# modification, are permitted provided that the following conditions > +# are met: > +# > +# * Redistributions of source code must retain the above copyright > +# notice, this list of conditions and the following disclaimer. > +# * Redistributions in binary form must reproduce the above copyright > +# notice, this list of conditions and the following disclaimer in > +# the documentation and/or other materials provided with the > +# distribution. > +# * Neither the name of Intel Corporation nor the names of its > +# contributors may be used to endorse or promote products derived > +# from this software without specific prior written permission. > +# > +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS > +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT > +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR > +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT > +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, > +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT > +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, > +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY > +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT > +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE > +# OF THIS SOFTWARE, EVEN IF ADVI Please use SPDX on new files.