From patchwork Tue Mar 28 09:45:10 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Junfeng Guo X-Patchwork-Id: 125560 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 874FE42858; Tue, 28 Mar 2023 11:52:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 569E942B8C; Tue, 28 Mar 2023 11:52:47 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 85A7D410EE for ; Tue, 28 Mar 2023 11:52:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679997165; x=1711533165; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=adxa7mdom1iY7HmMWbd7igYRKhicVD/l0lDe8+ck40E=; b=XOVjRO2E24dUMuew+Lqu/7J+4/6nh6GiQ3cBv6Q0HCdeQ3Xzub577Ewj mcThjraUjK4FHkV3LyIi5lVU3MGSu6tehagdltmnmCWFbj3ut9R3fpu3Y Yq4c4mzVtvvaSbaMBqwcyDm0O0AAG+hPQItzT+3w+XxxEB9CCFtR0fB9f 9/7yO8b7y8Y+lVMDJLwCBa+o8/a0qxPrQ9RclGulyLcajaVC5TCCwFBLc O73b/KprHRcemE1SlDTSWikoYCYJLKwfb4X09pKLf/ogNNyjfP3itS77n 9PzHK+tgXxzd1gSN+gGWSyCYcZzr/mNoxH8uXvB4a9/qasfQSkellRSS5 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="368281596" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="368281596" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2023 02:52:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="677308091" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="677308091" Received: from dpdk-jf-ntb-one.sh.intel.com ([10.67.111.104]) by orsmga007.jf.intel.com with ESMTP; 28 Mar 2023 02:52:42 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, ferruh.yigit@amd.com, beilei.xing@intel.com Cc: dev@dpdk.org, Junfeng Guo , Rushil Gupta , Joshua Washington , Jeroen de Borst Subject: [PATCH v3 1/3] net/gve: switch license from MIT to BSD-3 Date: Tue, 28 Mar 2023 17:45:10 +0800 Message-Id: <20230328094512.1796648-2-junfeng.guo@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230328094512.1796648-1-junfeng.guo@intel.com> References: <20230328092843.1775431-1-junfeng.guo@intel.com> <20230328094512.1796648-1-junfeng.guo@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Switch license from MIT to BSD-3 for GVE base code. In the meantime, remove MIT license exception for GVE driver. Signed-off-by: Rushil Gupta Signed-off-by: Joshua Washington Signed-off-by: Junfeng Guo Signed-off-by: Jeroen de Borst --- .mailmap | 1 + drivers/net/gve/base/gve.h | 5 ++--- drivers/net/gve/base/gve_adminq.c | 5 ++--- drivers/net/gve/base/gve_adminq.h | 5 ++--- drivers/net/gve/base/gve_desc.h | 5 ++--- drivers/net/gve/base/gve_desc_dqo.h | 5 ++--- drivers/net/gve/base/gve_osdep.h | 2 +- drivers/net/gve/base/gve_register.h | 5 ++--- license/exceptions.txt | 1 - 9 files changed, 14 insertions(+), 20 deletions(-) diff --git a/.mailmap b/.mailmap index dc30369117..9d66fa727c 100644 --- a/.mailmap +++ b/.mailmap @@ -588,6 +588,7 @@ Jens Freimann Jeremy Plsek Jeremy Spewock Jerin Jacob +Jeroen de Borst Jerome Jutteau Jerry Hao OS Jerry Lilijun diff --git a/drivers/net/gve/base/gve.h b/drivers/net/gve/base/gve.h index 2dc4507acb..55b7c2688e 100644 --- a/drivers/net/gve/base/gve.h +++ b/drivers/net/gve/base/gve.h @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ #ifndef _GVE_H_ diff --git a/drivers/net/gve/base/gve_adminq.c b/drivers/net/gve/base/gve_adminq.c index e745b709b2..3519a2217f 100644 --- a/drivers/net/gve/base/gve_adminq.c +++ b/drivers/net/gve/base/gve_adminq.c @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ #include "../gve_ethdev.h" diff --git a/drivers/net/gve/base/gve_adminq.h b/drivers/net/gve/base/gve_adminq.h index 05550119de..e6907fc16f 100644 --- a/drivers/net/gve/base/gve_adminq.h +++ b/drivers/net/gve/base/gve_adminq.h @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ #ifndef _GVE_ADMINQ_H diff --git a/drivers/net/gve/base/gve_desc.h b/drivers/net/gve/base/gve_desc.h index 006b36442f..c62563f754 100644 --- a/drivers/net/gve/base/gve_desc.h +++ b/drivers/net/gve/base/gve_desc.h @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ /* GVE Transmit Descriptor formats */ diff --git a/drivers/net/gve/base/gve_desc_dqo.h b/drivers/net/gve/base/gve_desc_dqo.h index ee1afdecb8..d0887778d3 100644 --- a/drivers/net/gve/base/gve_desc_dqo.h +++ b/drivers/net/gve/base/gve_desc_dqo.h @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ /* GVE DQO Descriptor formats */ diff --git a/drivers/net/gve/base/gve_osdep.h b/drivers/net/gve/base/gve_osdep.h index 7cb73002f4..f7d87fec16 100644 --- a/drivers/net/gve/base/gve_osdep.h +++ b/drivers/net/gve/base/gve_osdep.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC */ #ifndef _GVE_OSDEP_H_ diff --git a/drivers/net/gve/base/gve_register.h b/drivers/net/gve/base/gve_register.h index c674167f31..615ceffc88 100644 --- a/drivers/net/gve/base/gve_register.h +++ b/drivers/net/gve/base/gve_register.h @@ -1,6 +1,5 @@ -/* SPDX-License-Identifier: MIT - * Google Virtual Ethernet (gve) driver - * Copyright (C) 2015-2022 Google, Inc. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2022-2023 Google LLC */ #ifndef _GVE_REGISTER_H_ diff --git a/license/exceptions.txt b/license/exceptions.txt index 1ded290eee..1bd4dbf8f7 100644 --- a/license/exceptions.txt +++ b/license/exceptions.txt @@ -16,5 +16,4 @@ SPDX Identifier TB Approval Date GB Approval Date File name 2.BSD-2-Clause 10/23/2019 12/18/2019 lib/eal/windows/include/getopt.h 3.ISC AND BSD-2-Clause 10/23/2019 12/18/2019 lib/eal/windows/getopt.c -4. MIT 10/19/2022 10/18/2022 drivers/net/gve/base/* --------------------------------------------------------------------------------------------------- From patchwork Tue Mar 28 09:45:11 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Junfeng Guo X-Patchwork-Id: 125561 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1D48A42858; Tue, 28 Mar 2023 11:52:58 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7F47C427F2; Tue, 28 Mar 2023 11:52:50 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id EC91542686 for ; Tue, 28 Mar 2023 11:52:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679997169; x=1711533169; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=yAb6WWELfHfbXIYiFkVP/roJThL8gt+8dE3Au9G4wfU=; b=Ikbp/r9q8NheRvIDw3REWHXxk8TIf8tas76eWuwFhvMjxZJ+AL+3+ZWP yn8lhbxQ6hzTMJKP7Uwf2vys/BaKfoNojgDgTQ3eEFkl6VpHeAYx0c+9k qWNr/6Fe0RL2Lj4OXf5QMrWr0O+W3qANlfdYdy0XZdbi3tQSHF3tU2g5M mPou8emg6b81+agYvGr5GyHF84BEi+5ODKmUFo9v0WvDHF2DjBG6ou+iW AcTDCTL3EQOR3+NCdRq5sfEhGiZHi+nLdtzVru5ojL7OXM+T45zk2FSdc PS+URYfcyvjxVOUMdM24JE1VIUOGXPKdl7Z4JCIgeKgWNmGQyqGT0AOe2 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="368281606" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="368281606" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2023 02:52:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="677308106" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="677308106" Received: from dpdk-jf-ntb-one.sh.intel.com ([10.67.111.104]) by orsmga007.jf.intel.com with ESMTP; 28 Mar 2023 02:52:45 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, ferruh.yigit@amd.com, beilei.xing@intel.com Cc: dev@dpdk.org, Junfeng Guo , Rushil Gupta , Joshua Washington , Jeroen de Borst Subject: [PATCH v3 2/3] net/gve: update copyright holders Date: Tue, 28 Mar 2023 17:45:11 +0800 Message-Id: <20230328094512.1796648-3-junfeng.guo@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230328094512.1796648-1-junfeng.guo@intel.com> References: <20230328092843.1775431-1-junfeng.guo@intel.com> <20230328094512.1796648-1-junfeng.guo@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add Google LLC as one of the copyright holders for GVE. Signed-off-by: Rushil Gupta Signed-off-by: Joshua Washington Signed-off-by: Junfeng Guo Signed-off-by: Jeroen de Borst Acked-by: Ferruh Yigit Acked-by: Rushil Gupta --- drivers/net/gve/gve_ethdev.c | 3 ++- drivers/net/gve/gve_ethdev.h | 3 ++- drivers/net/gve/gve_logs.h | 3 ++- drivers/net/gve/gve_rx.c | 3 ++- drivers/net/gve/gve_tx.c | 3 ++- drivers/net/gve/meson.build | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/drivers/net/gve/gve_ethdev.c b/drivers/net/gve/gve_ethdev.c index cf28a4a3b7..e1998cc864 100644 --- a/drivers/net/gve/gve_ethdev.c +++ b/drivers/net/gve/gve_ethdev.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC + * Copyright (c) 2022-2023 Intel Corporation */ #include "gve_ethdev.h" diff --git a/drivers/net/gve/gve_ethdev.h b/drivers/net/gve/gve_ethdev.h index 42a02cf5d4..64d5bb0f78 100644 --- a/drivers/net/gve/gve_ethdev.h +++ b/drivers/net/gve/gve_ethdev.h @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC + * Copyright (c) 2022-2023 Intel Corporation */ #ifndef _GVE_ETHDEV_H_ diff --git a/drivers/net/gve/gve_logs.h b/drivers/net/gve/gve_logs.h index 0d02da46e1..997a508f22 100644 --- a/drivers/net/gve/gve_logs.h +++ b/drivers/net/gve/gve_logs.h @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC + * Copyright (c) 2022-2023 Intel Corporation */ #ifndef _GVE_LOGS_H_ diff --git a/drivers/net/gve/gve_rx.c b/drivers/net/gve/gve_rx.c index 8d8f94efff..e8d5a8723b 100644 --- a/drivers/net/gve/gve_rx.c +++ b/drivers/net/gve/gve_rx.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC + * Copyright (c) 2022-2023 Intel Corporation */ #include "gve_ethdev.h" diff --git a/drivers/net/gve/gve_tx.c b/drivers/net/gve/gve_tx.c index fee3b939c7..bbb954c9ea 100644 --- a/drivers/net/gve/gve_tx.c +++ b/drivers/net/gve/gve_tx.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(C) 2022 Intel Corporation + * Copyright (c) 2022-2023 Google LLC + * Copyright (c) 2022-2023 Intel Corporation */ #include "gve_ethdev.h" diff --git a/drivers/net/gve/meson.build b/drivers/net/gve/meson.build index af0010c01c..9cacccf2aa 100644 --- a/drivers/net/gve/meson.build +++ b/drivers/net/gve/meson.build @@ -1,5 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(C) 2022 Intel Corporation +# Copyright (c) 2022-2023 Google LLC +# Copyright (c) 2022-2023 Intel Corporation if is_windows build = false From patchwork Tue Mar 28 09:45:12 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Junfeng Guo X-Patchwork-Id: 125562 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D785642858; Tue, 28 Mar 2023 11:53:03 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9E26442BC9; Tue, 28 Mar 2023 11:52:52 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 33A5442BC9 for ; Tue, 28 Mar 2023 11:52:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679997171; x=1711533171; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=tmi0KGaRC6kB9PIse9tXPPI4UP0bbVI+bWrV1gTCOIQ=; b=m0XM2NcQtux1EM+KMeRCgP2Bkn8rQqUbcjKcZFZOhovPMFIwwCiz7GKy UppEz3RcVtGjdOd5eH2C1DlKg4DjDDqRkqGPjbQwy4jaxmly5kGJlgNe2 hwXZfoxIA8t9pSKw1fTvWXCUCHRuxd8erZGJ/yVDxr5S9oQqmdtZjkQRv RQqGD6dS7JxX+blZ+GOiB3xAsVTQ+HG2yWwo+01eXMML/+8okp5YUdDVq FY6Ddnrvc9oyrfng8Lmi581v59p8IQUkyyMALsBe56KG3Ocs+RRauOwa6 6uibYg9Yayzne5EGMKJrh0M0Dunomwla7HES6uAy84MiQjbVrzwbILm28 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="368281617" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="368281617" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2023 02:52:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="677308118" X-IronPort-AV: E=Sophos;i="5.98,297,1673942400"; d="scan'208";a="677308118" Received: from dpdk-jf-ntb-one.sh.intel.com ([10.67.111.104]) by orsmga007.jf.intel.com with ESMTP; 28 Mar 2023 02:52:47 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, ferruh.yigit@amd.com, beilei.xing@intel.com Cc: dev@dpdk.org, Junfeng Guo Subject: [PATCH v3 3/3] net/gve: add maintainers for GVE Date: Tue, 28 Mar 2023 17:45:12 +0800 Message-Id: <20230328094512.1796648-4-junfeng.guo@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230328094512.1796648-1-junfeng.guo@intel.com> References: <20230328092843.1775431-1-junfeng.guo@intel.com> <20230328094512.1796648-1-junfeng.guo@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add maintainers from Google for GVE. Signed-off-by: Junfeng Guo --- MAINTAINERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 1a33ad8592..988c7aecfa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -714,6 +714,9 @@ F: doc/guides/nics/features/enic.ini Google Virtual Ethernet M: Junfeng Guo +M: Jeroen de Borst +M: Rushil Gupta +M: Joshua Washington F: drivers/net/gve/ F: doc/guides/nics/gve.rst F: doc/guides/nics/features/gve.ini