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 A1149A04B5; Wed, 4 Dec 2019 17:26:23 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 352591BF6F; Wed, 4 Dec 2019 17:26:23 +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 E37431BECF for ; Wed, 4 Dec 2019 17:26:21 +0100 (CET) Received: by mail-wr1-f68.google.com with SMTP id w15so9378950wru.4 for ; Wed, 04 Dec 2019 08:26:21 -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=/WxR/JGfxLSPDbAwTl+RL6L9ZtE6hUQZcU25LzKx9W8=; b=gs2hXwd88rnjaRGfLrLc1ct55OF5egWozT8L60652POevEbfJNdN7W+WfcFV7seAnJ z4P5n5fshPF3BLzP3RHXxN7q50QsIqGl3oJVQLsLlWDDOhj2wPKb1+kViv3cnqH8tXti Ngsb4P518dViit4v2Orbyp71PFC0ffIlP3rWtA7q0DihihmhId8VFx/IelB0ST1eB7dm XU24QAKl8oGZrXg4dmktpjUyvAo9hkeY67PbXZo0+F3JKALzrPlBHRaUQN53Wzi4/FcR k85yJNxUioYKSaEfx3ecjJDl+lNiYsoDw8mKAJ65n/vJnEJ042tZTd4cU94pa1EumTgM 9+1Q== X-Gm-Message-State: APjAAAXrRIqS22zi8MZc4at3XKwEFpgIk8ZiDmQ4verdL3xWqpN2Yo6a RSTRJHu+WIFds45dcbfaQybUrGoDaiA= X-Google-Smtp-Source: APXvYqzNKMaXq5elHdGnmlG0tQ0HYlcgDEx3D41qjfXdabgleqvIBepI2dsOrBFkKo6bqIftYQyVYw== X-Received: by 2002:adf:e3c1:: with SMTP id k1mr4784903wrm.151.1575476781631; Wed, 04 Dec 2019 08:26:21 -0800 (PST) Received: from [192.168.1.55] (host31-202-dynamic.33-79-r.retail.telecomitalia.it. [79.33.202.31]) by smtp.gmail.com with ESMTPSA id p9sm8631700wrs.55.2019.12.04.08.26.20 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Dec 2019 08:26:20 -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: <20191202083359.533678ad@hermes.lan> Date: Wed, 4 Dec 2019 17:26:19 +0100 Cc: dev@dpdk.org Content-Transfer-Encoding: quoted-printable Message-Id: <6418AD92-3624-40D5-86B6-CEC767A9A09F@ntop.org> References: <20191015082235.28639-1-cardigliano@ntop.org> <20191015082235.28639-3-cardigliano@ntop.org> <20191202083359.533678ad@hermes.lan> To: Stephen Hemminger X-Mailer: Apple Mail (2.3601.0.10) Subject: Re: [dpdk-dev] [PATCH v2 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" > On 2 Dec 2019, at 17:33, Stephen Hemminger = wrote: >=20 > On Tue, 15 Oct 2019 10:22:20 +0200 > Alfredo Cardigliano wrote: >=20 >> 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 = */ >=20 > This is not on the approved license list see license/README > and as Ferruh said would require special exception from DPDK governing = board. I am going to change the License to BSD-3 for all files, however we = would like to keep the current license for this specific header file = (ionic_if.h) which is shared with the Linux kernel driver. Do you think this is acceptable? Thanks, Alfredo=