From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 098DBA04F8; Tue, 17 Dec 2019 20:46:39 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3E8291BEC4; Tue, 17 Dec 2019 20:46:39 +0100 (CET) Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by dpdk.org (Postfix) with ESMTP id 99E3C1BEB2 for ; Tue, 17 Dec 2019 20:46:38 +0100 (CET) Received: by mail-wr1-f68.google.com with SMTP id q6so12590128wro.9 for ; Tue, 17 Dec 2019 11:46:38 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=zRYvPNX/LQWnviRe9yFUVIMypaSUZLpXbFCaynwyock=; b=RVuIi3v2QLK5LqOotDgar1B3+uCSADzaPJmXAWsYx+Ho1Vjm1UVp/hizdtwv61Ek2z CiNTrQY3uXrGDkAKb4+BaOxDKBAFPpu2ktnVlnZy0GMSvN3j5w9CFIfOaAb25tRzgpml 3ydIupWlZmZfFkJeqAs2f+cJvP4N+S2d4AXS8aeRCT+8YYpzuCgJOOdAjS1CL5qGnDIP ujVm/kpekGMszOakPqE/0MWsyNaEs/ZK+hJWBUJTypuRLG0V0LU1dKpvqjxttX3+FGF/ +vI2ft3EZIA0QnYvdzyn8tV+vYmFwOYroSujXhIbGDIYMOY7JLvMGjyzu0rGb9RoSQI8 0VZA== X-Gm-Message-State: APjAAAUH0llbTz6MJp7P5gbZKzuU6/pubaNnFQc3UIV7r3Fd3QrxeL5S Pq229pFKDIHS6A6aJnfFxFk= X-Google-Smtp-Source: APXvYqz7R5nPWyRyjRVdSx+RPfKKFggx5YiESO8yZds7G/uujfWfByc98DfkHXWj6w3MZ0yBFzF/Sg== X-Received: by 2002:adf:ef49:: with SMTP id c9mr38304552wrp.292.1576611998336; Tue, 17 Dec 2019 11:46:38 -0800 (PST) Received: from [192.168.1.153] (host31-202-dynamic.33-79-r.retail.telecomitalia.it. [79.33.202.31]) by smtp.gmail.com with ESMTPSA id q19sm3918852wmc.12.2019.12.17.11.46.36 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Dec 2019 11:46:37 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3601.0.10\)) From: Alfredo Cardigliano In-Reply-To: Date: Tue, 17 Dec 2019 20:46:36 +0100 Cc: Ferruh Yigit , "dev@dpdk.org" , Stephen Hemminger Content-Transfer-Encoding: quoted-printable Message-Id: <24E53590-B4E0-4E3D-BBBD-9228BA06601B@ntop.org> References: <20191209214656.27347-1-cardigliano@ntop.org> <20191209214656.27347-3-cardigliano@ntop.org> To: Hemant Agrawal X-Mailer: Apple Mail (2.3601.0.10) Subject: Re: [dpdk-dev] [PATCH v3 02/17] net/ionic: add hardware structures definitions 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" I will add "BSD-3-Clause" to ionic_if.h with the next V4 patch-set = coming soon. I will keep "GPL-2.0 OR BSD-3-Clause" for the other files as in my = understanding that seems to work. Thank you Alfredo > On 13 Dec 2019, at 11:25, Hemant Agrawal = wrote: >=20 > Hi Ferruh >=20 >> -----Original Message----- >> From: Ferruh Yigit >> Sent: Wednesday, December 11, 2019 12:19 AM >> To: Alfredo Cardigliano >> Cc: dev@dpdk.org; Hemant Agrawal ; Stephen >> Hemminger >> Subject: Re: [dpdk-dev] [PATCH v3 02/17] net/ionic: add hardware = structures >> definitions >> Importance: High >>=20 >> On 12/9/2019 9:46 PM, Alfredo Cardigliano wrote: >>> Add hardware structures and message commands definitions for = Pensando >>> network adapters. >>>=20 >>> Signed-off-by: Alfredo Cardigliano >>> Reviewed-by: Shannon Nelson >>> --- >>> drivers/net/ionic/ionic_if.h | 2491 >>> ++++++++++++++++++++++++++++++++++ >>> 1 file changed, 2491 insertions(+) >>> create mode 100644 drivers/net/ionic/ionic_if.h >>>=20 >>> diff --git a/drivers/net/ionic/ionic_if.h >>> b/drivers/net/ionic/ionic_if.h new file mode 100644 index >>> 000000000..5f31ec034 >>> --- /dev/null >>> +++ b/drivers/net/ionic/ionic_if.h >>> @@ -0,0 +1,2491 @@ >>> +/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB OR BSD-2-Clause >>> +*/ >>> +/* Copyright (c) 2017-2019 Pensando Systems, Inc. All rights >>> +reserved. */ >>=20 >> May need to add this one to the license exceptions, = license/exceptions.txt. >>=20 >> cc'ing Hemant & Stephen for guidance. >>=20 > [Hemant] " GPL-2.0 OR Linux-OpenIB OR BSD-2-Clause" is not a approved = license. =20 > 1. DPDK need at least one license to be BSD-3-Clause to go for = exception approval > 2. Can you make it " GPL-2.0 OR BSD-3-Clause" - it will same time for = all to go for approvals.=20 >=20