DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags
@ 2020-07-14 23:50 Stephen Hemminger
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Stephen Hemminger @ 2020-07-14 23:50 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

Fix some recent gaps in SPDX license information.

Stephen Hemminger (3):
  eal/windows: add missing SPDX license tag
  net/qede/base: add missing license information
  doc: add missing SPDX license tags

 doc/guides/custom.css                            | 1 +
 doc/guides/linux_gsg/nic_perf_intel_platform.rst | 3 +++
 doc/guides/prog_guide/build-sdk-meson.rst        | 3 +++
 drivers/net/qede/base/ecore_hsi_func_common.h    | 6 ++++++
 lib/librte_eal/windows/eal_hugepages.c           | 4 ++++
 5 files changed, 17 insertions(+)

-- 
2.27.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag
  2020-07-14 23:50 [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags Stephen Hemminger
@ 2020-07-14 23:50 ` Stephen Hemminger
  2020-07-30 22:15   ` Thomas Monjalon
  2020-07-30 22:40   ` Dmitry Kozlyuk
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information Stephen Hemminger
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Stephen Hemminger @ 2020-07-14 23:50 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

This file was added without license information.
Add BSD SPDX license with copyright assigned to the original
author (as was done for other files in Windows EAL).

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 lib/librte_eal/windows/eal_hugepages.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/librte_eal/windows/eal_hugepages.c b/lib/librte_eal/windows/eal_hugepages.c
index 44dae985e5d3..83a3d0ffc66c 100644
--- a/lib/librte_eal/windows/eal_hugepages.c
+++ b/lib/librte_eal/windows/eal_hugepages.c
@@ -1,3 +1,7 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2020 Dmitry Kozlyuk
+ */
+
 #include <rte_errno.h>
 #include <rte_log.h>
 #include <rte_memory.h>
-- 
2.27.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information
  2020-07-14 23:50 [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags Stephen Hemminger
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
@ 2020-07-14 23:50 ` Stephen Hemminger
  2020-07-30 22:14   ` Thomas Monjalon
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags Stephen Hemminger
  2020-08-12  0:49 ` [dpdk-dev] [PATCH 0/3] Add " Stephen Hemminger
  3 siblings, 1 reply; 9+ messages in thread
From: Stephen Hemminger @ 2020-07-14 23:50 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

Add SPDX header that is the same as other files in the
same qede/base directory.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 drivers/net/qede/base/ecore_hsi_func_common.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/net/qede/base/ecore_hsi_func_common.h b/drivers/net/qede/base/ecore_hsi_func_common.h
index 2cd175163bcc..0e1187ba20a2 100644
--- a/drivers/net/qede/base/ecore_hsi_func_common.h
+++ b/drivers/net/qede/base/ecore_hsi_func_common.h
@@ -1,3 +1,9 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2016 - 2018 Cavium Inc.
+ * All rights reserved.
+ * www.cavium.com
+ */
+
 #ifndef _HSI_FUNC_COMMON_H
 #define _HSI_FUNC_COMMON_H
 
-- 
2.27.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags
  2020-07-14 23:50 [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags Stephen Hemminger
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information Stephen Hemminger
@ 2020-07-14 23:50 ` Stephen Hemminger
  2020-07-17 13:02   ` Bruce Richardson
  2020-08-12  0:49 ` [dpdk-dev] [PATCH 0/3] Add " Stephen Hemminger
  3 siblings, 1 reply; 9+ messages in thread
From: Stephen Hemminger @ 2020-07-14 23:50 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

A few files in doc directory were missing license tag info.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 doc/guides/custom.css                            | 1 +
 doc/guides/linux_gsg/nic_perf_intel_platform.rst | 3 +++
 doc/guides/prog_guide/build-sdk-meson.rst        | 3 +++
 3 files changed, 7 insertions(+)

diff --git a/doc/guides/custom.css b/doc/guides/custom.css
index c87c60611929..a1572eaf9da6 100644
--- a/doc/guides/custom.css
+++ b/doc/guides/custom.css
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
 /* Override readthedocs theme */
 
 /* Spacing before a list item must be bigger than spacing inside the item.
diff --git a/doc/guides/linux_gsg/nic_perf_intel_platform.rst b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
index 08be5d58b9bb..3ca52c4c65fb 100644
--- a/doc/guides/linux_gsg/nic_perf_intel_platform.rst
+++ b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
@@ -1,3 +1,6 @@
+..  SPDX-License-Identifier: BSD-3-Clause
+    Copyright(c) 2010-2019 Intel Corporation.
+
 How to get best performance with NICs on Intel platforms
 ========================================================
 
diff --git a/doc/guides/prog_guide/build-sdk-meson.rst b/doc/guides/prog_guide/build-sdk-meson.rst
index 44d1cafdf035..ac3b89c3009d 100644
--- a/doc/guides/prog_guide/build-sdk-meson.rst
+++ b/doc/guides/prog_guide/build-sdk-meson.rst
@@ -1,3 +1,6 @@
+..  SPDX-License-Identifier: BSD-3-Clause
+    Copyright(c) 2019-2020 Intel Corporation.
+
 Installing DPDK Using the meson build system
 ============================================
 
-- 
2.27.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags Stephen Hemminger
@ 2020-07-17 13:02   ` Bruce Richardson
  0 siblings, 0 replies; 9+ messages in thread
From: Bruce Richardson @ 2020-07-17 13:02 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

On Tue, Jul 14, 2020 at 04:50:11PM -0700, Stephen Hemminger wrote:
> A few files in doc directory were missing license tag info.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---

For Intel copyright parts:
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

>  doc/guides/custom.css                            | 1 +
>  doc/guides/linux_gsg/nic_perf_intel_platform.rst | 3 +++
>  doc/guides/prog_guide/build-sdk-meson.rst        | 3 +++
>  3 files changed, 7 insertions(+)
> 
> diff --git a/doc/guides/custom.css b/doc/guides/custom.css
> index c87c60611929..a1572eaf9da6 100644
> --- a/doc/guides/custom.css
> +++ b/doc/guides/custom.css
> @@ -1,3 +1,4 @@
> +/* SPDX-License-Identifier: BSD-3-Clause */
>  /* Override readthedocs theme */
>  
>  /* Spacing before a list item must be bigger than spacing inside the item.
> diff --git a/doc/guides/linux_gsg/nic_perf_intel_platform.rst b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
> index 08be5d58b9bb..3ca52c4c65fb 100644
> --- a/doc/guides/linux_gsg/nic_perf_intel_platform.rst
> +++ b/doc/guides/linux_gsg/nic_perf_intel_platform.rst
> @@ -1,3 +1,6 @@
> +..  SPDX-License-Identifier: BSD-3-Clause
> +    Copyright(c) 2010-2019 Intel Corporation.
> +
>  How to get best performance with NICs on Intel platforms
>  ========================================================
>  
> diff --git a/doc/guides/prog_guide/build-sdk-meson.rst b/doc/guides/prog_guide/build-sdk-meson.rst
> index 44d1cafdf035..ac3b89c3009d 100644
> --- a/doc/guides/prog_guide/build-sdk-meson.rst
> +++ b/doc/guides/prog_guide/build-sdk-meson.rst
> @@ -1,3 +1,6 @@
> +..  SPDX-License-Identifier: BSD-3-Clause
> +    Copyright(c) 2019-2020 Intel Corporation.
> +
>  Installing DPDK Using the meson build system
>  ============================================
>  
> -- 
> 2.27.0
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information Stephen Hemminger
@ 2020-07-30 22:14   ` Thomas Monjalon
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2020-07-30 22:14 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, Rasesh Mody, Shahed Shaikh, jerinj

+Cc maintainers

15/07/2020 01:50, Stephen Hemminger:
> Add SPDX header that is the same as other files in the
> same qede/base directory.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  drivers/net/qede/base/ecore_hsi_func_common.h | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/drivers/net/qede/base/ecore_hsi_func_common.h b/drivers/net/qede/base/ecore_hsi_func_common.h
> index 2cd175163bcc..0e1187ba20a2 100644
> --- a/drivers/net/qede/base/ecore_hsi_func_common.h
> +++ b/drivers/net/qede/base/ecore_hsi_func_common.h
> @@ -1,3 +1,9 @@
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright (c) 2016 - 2018 Cavium Inc.
> + * All rights reserved.
> + * www.cavium.com
> + */
> +
>  #ifndef _HSI_FUNC_COMMON_H
>  #define _HSI_FUNC_COMMON_H
>  
> 






^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
@ 2020-07-30 22:15   ` Thomas Monjalon
  2020-07-30 22:40   ` Dmitry Kozlyuk
  1 sibling, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2020-07-30 22:15 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev, Dmitry Kozlyuk

+Cc Dmitry

15/07/2020 01:50, Stephen Hemminger:
> This file was added without license information.
> Add BSD SPDX license with copyright assigned to the original
> author (as was done for other files in Windows EAL).
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  lib/librte_eal/windows/eal_hugepages.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/lib/librte_eal/windows/eal_hugepages.c b/lib/librte_eal/windows/eal_hugepages.c
> index 44dae985e5d3..83a3d0ffc66c 100644
> --- a/lib/librte_eal/windows/eal_hugepages.c
> +++ b/lib/librte_eal/windows/eal_hugepages.c
> @@ -1,3 +1,7 @@
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright (c) 2020 Dmitry Kozlyuk
> + */
> +
>  #include <rte_errno.h>
>  #include <rte_log.h>
>  #include <rte_memory.h>
> 






^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
  2020-07-30 22:15   ` Thomas Monjalon
@ 2020-07-30 22:40   ` Dmitry Kozlyuk
  1 sibling, 0 replies; 9+ messages in thread
From: Dmitry Kozlyuk @ 2020-07-30 22:40 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dpdk-dev

On Wed, Jul 15, 2020 at 2:50 AM Stephen Hemminger
<stephen@networkplumber.org> wrote:
>
> This file was added without license information.
> Add BSD SPDX license with copyright assigned to the original
> author (as was done for other files in Windows EAL).
>
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
[snip]

Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags
  2020-07-14 23:50 [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags Stephen Hemminger
                   ` (2 preceding siblings ...)
  2020-07-14 23:50 ` [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags Stephen Hemminger
@ 2020-08-12  0:49 ` Stephen Hemminger
  3 siblings, 0 replies; 9+ messages in thread
From: Stephen Hemminger @ 2020-08-12  0:49 UTC (permalink / raw)
  To: dev

On Tue, 14 Jul 2020 16:50:08 -0700
Stephen Hemminger <stephen@networkplumber.org> wrote:

> Fix some recent gaps in SPDX license information.
> 
> Stephen Hemminger (3):
>   eal/windows: add missing SPDX license tag
>   net/qede/base: add missing license information
>   doc: add missing SPDX license tags
> 
>  doc/guides/custom.css                            | 1 +
>  doc/guides/linux_gsg/nic_perf_intel_platform.rst | 3 +++
>  doc/guides/prog_guide/build-sdk-meson.rst        | 3 +++
>  drivers/net/qede/base/ecore_hsi_func_common.h    | 6 ++++++
>  lib/librte_eal/windows/eal_hugepages.c           | 4 ++++
>  5 files changed, 17 insertions(+)
> 

Ping, what happened to these, didn't see them in 20.08

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-08-12  0:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-14 23:50 [dpdk-dev] [PATCH 0/3] Add missing SPDX license tags Stephen Hemminger
2020-07-14 23:50 ` [dpdk-dev] [PATCH 1/3] eal/windows: add missing SPDX license tag Stephen Hemminger
2020-07-30 22:15   ` Thomas Monjalon
2020-07-30 22:40   ` Dmitry Kozlyuk
2020-07-14 23:50 ` [dpdk-dev] [PATCH 2/3] net/qede/base: add missing license information Stephen Hemminger
2020-07-30 22:14   ` Thomas Monjalon
2020-07-14 23:50 ` [dpdk-dev] [PATCH 3/3] doc: add missing SPDX license tags Stephen Hemminger
2020-07-17 13:02   ` Bruce Richardson
2020-08-12  0:49 ` [dpdk-dev] [PATCH 0/3] Add " Stephen Hemminger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).