DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright
@ 2019-07-26  9:29 Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
                   ` (12 more replies)
  0 siblings, 13 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev, Xiaolong Ye

This patchset replaces full BSD-3 license header with spdx tag for the
remaining files that have Intel copyright.

Xiaolong Ye (11):
  net/ixgbe: replace license text with SPDX tag
  net/i40e: replace license text with SPDX tag
  net/e1000: replace license text with SPDX tag
  net/vmxnet3: replace license text with SPDX tag
  examples/qos_sched: replace license text with SPDX tag
  app/test-eventdev: replace license text with SPDX tag
  ethdev: replace license text with SPDX tag
  lpm: replace license text with SPDX tag
  port: replace license text with SPDX tag
  hash: replace license text with SPDX tag
  eal: replace license text with SPDX tag

 app/test-eventdev/parser.c                    | 35 ++---------------
 drivers/net/e1000/base/README                 | 34 ++--------------
 drivers/net/i40e/base/README                  | 34 ++--------------
 drivers/net/ixgbe/base/README                 | 34 ++--------------
 drivers/net/vmxnet3/base/README               | 34 ++--------------
 examples/qos_sched/profile.cfg                | 30 +-------------
 examples/qos_sched/profile_ov.cfg             | 30 +-------------
 .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
 .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
 lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
 lib/librte_eal/freebsd/BSDmakefile.meson      | 31 +--------------
 lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
 lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
 lib/librte_hash/rte_jhash.h                   | 33 +---------------
 lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
 lib/librte_port/rte_port_kni.c                | 35 ++---------------
 lib/librte_port/rte_port_kni.h                | 35 ++---------------
 17 files changed, 43 insertions(+), 532 deletions(-)

-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-29 21:01   ` Stillwell Jr, Paul M
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 02/11] net/i40e: " Xiaolong Ye
                   ` (11 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Wenzhuo Lu, Konstantin Ananyev; +Cc: dev, Xiaolong Ye

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2247 bytes --]

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 drivers/net/ixgbe/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README
index 431be0260..b6b420e2f 100644
--- a/drivers/net/ixgbe/base/README
+++ b/drivers/net/ixgbe/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2018 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2018 Intel Corporation
+ */
 
 Intel® IXGBE driver
 ===================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 02/11] net/i40e: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-29 20:59   ` Stillwell Jr, Paul M
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 03/11] net/e1000: " Xiaolong Ye
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Beilei Xing, Qi Zhang; +Cc: dev, Xiaolong Ye

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2218 bytes --]

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 drivers/net/i40e/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README
index 84f191fad..8a5339cff 100644
--- a/drivers/net/i40e/base/README
+++ b/drivers/net/i40e/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-
-     Copyright(c) 2017 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation
+ */
 
 Intel® I40E driver
 ==================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 03/11] net/e1000: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 02/11] net/i40e: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-29 21:02   ` Stillwell Jr, Paul M
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: " Xiaolong Ye
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Wenzhuo Lu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 drivers/net/e1000/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/e1000/base/README b/drivers/net/e1000/base/README
index de1ae4cf7..56738d001 100644
--- a/drivers/net/e1000/base/README
+++ b/drivers/net/e1000/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2016 Intel Corporation
+ */
 
 This directory contains source code of FreeBSD em & igb drivers of version
 cid-shared-code.2016.11.22 released by ND. The sub-directory of base/
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (2 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 03/11] net/e1000: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26 10:11   ` Ferruh Yigit
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 05/11] examples/qos_sched: " Xiaolong Ye
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Yong Wang; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 drivers/net/vmxnet3/base/README | 34 +++------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/vmxnet3/base/README b/drivers/net/vmxnet3/base/README
index 599a3661e..87bcc2216 100644
--- a/drivers/net/vmxnet3/base/README
+++ b/drivers/net/vmxnet3/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
+ */
 
 Intel VMXNET3 driver
 ===================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 05/11] examples/qos_sched: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (3 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 06/11] app/test-eventdev: " Xiaolong Ye
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 examples/qos_sched/profile.cfg    | 30 +-----------------------------
 examples/qos_sched/profile_ov.cfg | 30 +-----------------------------
 2 files changed, 2 insertions(+), 58 deletions(-)

diff --git a/examples/qos_sched/profile.cfg b/examples/qos_sched/profile.cfg
index df7c6d1d8..d7fe539d1 100644
--- a/examples/qos_sched/profile.cfg
+++ b/examples/qos_sched/profile.cfg
@@ -1,33 +1,5 @@
-;   BSD LICENSE
-;
+;   SPDX-License-Identifier: BSD-3-Clause
 ;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
-;   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 ; This file enables the following hierarchical scheduler configuration for each
 ; 10GbE output port:
diff --git a/examples/qos_sched/profile_ov.cfg b/examples/qos_sched/profile_ov.cfg
index c0b7b3c3d..dcd45d65f 100644
--- a/examples/qos_sched/profile_ov.cfg
+++ b/examples/qos_sched/profile_ov.cfg
@@ -1,33 +1,5 @@
-;   BSD LICENSE
-;
+;   SPDX-License-Identifier: BSD-3-Clause
 ;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
-;   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 ; Port configuration
 [port]
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 06/11] app/test-eventdev: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (4 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 05/11] examples/qos_sched: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 07/11] ethdev: " Xiaolong Ye
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Jerin Jacob; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 app/test-eventdev/parser.c | 35 +++--------------------------------
 1 file changed, 3 insertions(+), 32 deletions(-)

diff --git a/app/test-eventdev/parser.c b/app/test-eventdev/parser.c
index 9de41bf4a..28e25312b 100644
--- a/app/test-eventdev/parser.c
+++ b/app/test-eventdev/parser.c
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Intel Corporation. All rights reserved.
- *   Copyright(c) 2017 Cavium, Inc. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Intel Corporation. All rights reserved.
+ * Copyright(c) 2017 Cavium, Inc. All rights reserved.
  */
 
 #include <stdint.h>
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 07/11] ethdev: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (5 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 06/11] app/test-eventdev: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 08/11] lpm: " Xiaolong Ye
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu, Thomas Monjalon, Andrew Rybchenko
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 lib/librte_ethdev/rte_mtr.h | 36 ++++--------------------------------
 lib/librte_ethdev/rte_tm.h  | 37 ++++---------------------------------
 2 files changed, 8 insertions(+), 65 deletions(-)

diff --git a/lib/librte_ethdev/rte_mtr.h b/lib/librte_ethdev/rte_mtr.h
index 6ba7d18ae..916a09c5c 100644
--- a/lib/librte_ethdev/rte_mtr.h
+++ b/lib/librte_ethdev/rte_mtr.h
@@ -1,35 +1,7 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright 2017 Intel Corporation
- *   Copyright 2017 NXP
- *   Copyright 2017 Cavium
- *
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2017 Intel Corporation
+ * Copyright 2017 NXP
+ * Copyright 2017 Cavium
  */
 
 #ifndef __INCLUDE_RTE_MTR_H__
diff --git a/lib/librte_ethdev/rte_tm.h b/lib/librte_ethdev/rte_tm.h
index 03eaa0004..f9c0cf3f9 100644
--- a/lib/librte_ethdev/rte_tm.h
+++ b/lib/librte_ethdev/rte_tm.h
@@ -1,36 +1,7 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2017 Intel Corporation.
- *   Copyright(c) 2017 Cavium.
- *   Copyright(c) 2017 NXP.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation.
+ * Copyright(c) 2017 Cavium.
+ * Copyright(c) 2017 NXP.
  */
 
 #ifndef __INCLUDE_RTE_TM_H__
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 08/11] lpm: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (6 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 07/11] ethdev: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 09/11] port: " Xiaolong Ye
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Jerin Jacob, Gavin Hu, Bruce Richardson,
	Vladimir Medvedkin
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 lib/librte_lpm/rte_lpm_neon.h | 39 +++--------------------------------
 1 file changed, 3 insertions(+), 36 deletions(-)

diff --git a/lib/librte_lpm/rte_lpm_neon.h b/lib/librte_lpm/rte_lpm_neon.h
index 28c815902..7d2f76323 100644
--- a/lib/librte_lpm/rte_lpm_neon.h
+++ b/lib/librte_lpm/rte_lpm_neon.h
@@ -1,39 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2015 Cavium, Inc. All rights reserved.
- *   All rights reserved.
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   All rights reserved.
- *
- *   Derived rte_lpm_lookupx4 implementation from lib/librte_lpm/rte_lpm_sse.h
- *
- *   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 Cavium, Inc 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2015 Cavium, Inc. All rights reserved.
+ * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  */
 
 #ifndef _RTE_LPM_NEON_H_
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 09/11] port: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (7 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 08/11] lpm: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 10/11] hash: " Xiaolong Ye
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 lib/librte_port/rte_port_kni.c | 35 +++-------------------------------
 lib/librte_port/rte_port_kni.h | 35 +++-------------------------------
 2 files changed, 6 insertions(+), 64 deletions(-)

diff --git a/lib/librte_port/rte_port_kni.c b/lib/librte_port/rte_port_kni.c
index 2515fb2ac..7b370f980 100644
--- a/lib/librte_port/rte_port_kni.c
+++ b/lib/librte_port/rte_port_kni.c
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
- *   Copyright(c) 2016 Intel Corporation.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
+ * Copyright(c) 2016 Intel Corporation.
  */
 #include <string.h>
 
diff --git a/lib/librte_port/rte_port_kni.h b/lib/librte_port/rte_port_kni.h
index 4b60689c7..9d318af17 100644
--- a/lib/librte_port/rte_port_kni.h
+++ b/lib/librte_port/rte_port_kni.h
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
- *   Copyright(c) 2016 Intel Corporation.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
+ * Copyright(c) 2016 Intel Corporation.
  */
 
 #ifndef __INCLUDE_RTE_PORT_KNI_H__
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 10/11] hash: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (8 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 09/11] port: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 11/11] eal: " Xiaolong Ye
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Yipeng Wang, Sameh Gobriel, Bruce Richardson,
	Pablo de Lara
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 lib/librte_hash/rte_jhash.h | 33 ++-------------------------------
 1 file changed, 2 insertions(+), 31 deletions(-)

diff --git a/lib/librte_hash/rte_jhash.h b/lib/librte_hash/rte_jhash.h
index 42c45685b..bfb2bc196 100644
--- a/lib/librte_hash/rte_jhash.h
+++ b/lib/librte_hash/rte_jhash.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
  */
 
 #ifndef _RTE_JHASH_H
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 11/11] eal: replace license text with SPDX tag
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (9 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 10/11] hash: " Xiaolong Ye
@ 2019-07-26  9:29 ` Xiaolong Ye
  2019-07-26 10:15   ` Ferruh Yigit
  2019-07-26  9:43 ` [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Bruce Richardson
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26  9:29 UTC (permalink / raw)
  To: Ferruh Yigit, Bruce Richardson, Konstantin Ananyev; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 .../common/include/arch/x86/rte_atomic_32.h   | 33 ++-----------------
 .../common/include/arch/x86/rte_atomic_64.h   | 33 ++-----------------
 lib/librte_eal/common/include/rte_keepalive.h | 32 ++----------------
 lib/librte_eal/freebsd/BSDmakefile.meson      | 31 +----------------
 4 files changed, 7 insertions(+), 122 deletions(-)

diff --git a/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h b/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
index a932f3540..0bcb6003d 100644
--- a/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
+++ b/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  */
 
 /*
diff --git a/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h b/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
index e087c6c32..339626649 100644
--- a/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
+++ b/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  */
 
 /*
diff --git a/lib/librte_eal/common/include/rte_keepalive.h b/lib/librte_eal/common/include/rte_keepalive.h
index e9f8f083a..9e1160ee6 100644
--- a/lib/librte_eal/common/include/rte_keepalive.h
+++ b/lib/librte_eal/common/include/rte_keepalive.h
@@ -1,33 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright 2015-2016 Intel Shannon Ltd. 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2015-2016 Intel Shannon Ltd. All rights reserved.
  */
 
 /**
diff --git a/lib/librte_eal/freebsd/BSDmakefile.meson b/lib/librte_eal/freebsd/BSDmakefile.meson
index 42f5b2b9d..7123265a1 100644
--- a/lib/librte_eal/freebsd/BSDmakefile.meson
+++ b/lib/librte_eal/freebsd/BSDmakefile.meson
@@ -1,34 +1,5 @@
-#   BSD LICENSE
-#
+#   SPDX-License-Identifier: BSD-3-Clause
 #   Copyright(c) 2017 Intel Corporation. All rights reserved.
-#   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
 
 # makefile for building kernel modules using meson
 # takes parameters from the environment
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (10 preceding siblings ...)
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 11/11] eal: " Xiaolong Ye
@ 2019-07-26  9:43 ` Bruce Richardson
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
  12 siblings, 0 replies; 48+ messages in thread
From: Bruce Richardson @ 2019-07-26  9:43 UTC (permalink / raw)
  To: Xiaolong Ye; +Cc: Ferruh Yigit, dev

On Fri, Jul 26, 2019 at 05:29:30PM +0800, Xiaolong Ye wrote:
> This patchset replaces full BSD-3 license header with spdx tag for the
> remaining files that have Intel copyright.
> 
> Xiaolong Ye (11):
>   net/ixgbe: replace license text with SPDX tag
>   net/i40e: replace license text with SPDX tag
>   net/e1000: replace license text with SPDX tag
>   net/vmxnet3: replace license text with SPDX tag
>   examples/qos_sched: replace license text with SPDX tag
>   app/test-eventdev: replace license text with SPDX tag
>   ethdev: replace license text with SPDX tag
>   lpm: replace license text with SPDX tag
>   port: replace license text with SPDX tag
>   hash: replace license text with SPDX tag
>   eal: replace license text with SPDX tag
> 
Series-acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: replace license text with SPDX tag
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: " Xiaolong Ye
@ 2019-07-26 10:11   ` Ferruh Yigit
  2019-07-26 13:28     ` Ye Xiaolong
  0 siblings, 1 reply; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-26 10:11 UTC (permalink / raw)
  To: Xiaolong Ye, Yong Wang; +Cc: dev

On 7/26/2019 10:29 AM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  drivers/net/vmxnet3/base/README | 34 +++------------------------------
>  1 file changed, 3 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/net/vmxnet3/base/README b/drivers/net/vmxnet3/base/README
> index 599a3661e..87bcc2216 100644
> --- a/drivers/net/vmxnet3/base/README
> +++ b/drivers/net/vmxnet3/base/README
> @@ -1,34 +1,6 @@
> -..
> -     BSD LICENSE
> -   
> -     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
> -     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
> + */

I think we can remove " All rights reserved." part since this is what we did in
the previous files.

On it is own it doesn't hurt, but just for consistence and to avoid the
confusion/discussion to have or not have it again.

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

* Re: [dpdk-dev] [PATCH v1 11/11] eal: replace license text with SPDX tag
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 11/11] eal: " Xiaolong Ye
@ 2019-07-26 10:15   ` Ferruh Yigit
  2019-07-26 10:16     ` Bruce Richardson
  0 siblings, 1 reply; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-26 10:15 UTC (permalink / raw)
  To: Xiaolong Ye, Bruce Richardson, Konstantin Ananyev; +Cc: dev

On 7/26/2019 10:29 AM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>

<...>

> @@ -1,33 +1,5 @@
> -/*-
> - *   BSD LICENSE
> - *
> - *   Copyright 2015-2016 Intel Shannon Ltd. 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright 2015-2016 Intel Shannon Ltd. All rights reserved.
>   */

I don't know why "Intel Shannon Ltd." used for this case, I think this is the
only file with this copyright.

Bruce, Konstantin, any concern to replace it to "Intel Corporation" ?


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

* Re: [dpdk-dev] [PATCH v1 11/11] eal: replace license text with SPDX tag
  2019-07-26 10:15   ` Ferruh Yigit
@ 2019-07-26 10:16     ` Bruce Richardson
  0 siblings, 0 replies; 48+ messages in thread
From: Bruce Richardson @ 2019-07-26 10:16 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Xiaolong Ye, Konstantin Ananyev, dev

On Fri, Jul 26, 2019 at 11:15:00AM +0100, Ferruh Yigit wrote:
> On 7/26/2019 10:29 AM, Xiaolong Ye wrote:
> > Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> 
> <...>
> 
> > @@ -1,33 +1,5 @@
> > -/*-
> > - *   BSD LICENSE
> > - *
> > - *   Copyright 2015-2016 Intel Shannon Ltd. 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
> > +/* SPDX-License-Identifier: BSD-3-Clause
> > + * Copyright 2015-2016 Intel Shannon Ltd. All rights reserved.
> >   */
> 
> I don't know why "Intel Shannon Ltd." used for this case, I think this is the
> only file with this copyright.
> 
> Bruce, Konstantin, any concern to replace it to "Intel Corporation" ?
> 
No objections. It is indeed a strange one!

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

* Re: [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: replace license text with SPDX tag
  2019-07-26 10:11   ` Ferruh Yigit
@ 2019-07-26 13:28     ` Ye Xiaolong
  0 siblings, 0 replies; 48+ messages in thread
From: Ye Xiaolong @ 2019-07-26 13:28 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Yong Wang, dev

On 07/26, Ferruh Yigit wrote:
>On 7/26/2019 10:29 AM, Xiaolong Ye wrote:
>> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
>> ---
>>  drivers/net/vmxnet3/base/README | 34 +++------------------------------
>>  1 file changed, 3 insertions(+), 31 deletions(-)
>> 
>> diff --git a/drivers/net/vmxnet3/base/README b/drivers/net/vmxnet3/base/README
>> index 599a3661e..87bcc2216 100644
>> --- a/drivers/net/vmxnet3/base/README
>> +++ b/drivers/net/vmxnet3/base/README
>> @@ -1,34 +1,6 @@
>> -..
>> -     BSD LICENSE
>> -   
>> -     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
>> -     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
>> +/* SPDX-License-Identifier: BSD-3-Clause
>> + * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
>> + */
>
>I think we can remove " All rights reserved." part since this is what we did in
>the previous files.
>
>On it is own it doesn't hurt, but just for consistence and to avoid the
>confusion/discussion to have or not have it again.

Got it, I'll remove the "All rights reserved" phrase and reroll the series.

Thanks,
Xiaolong

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

* [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
                   ` (11 preceding siblings ...)
  2019-07-26  9:43 ` [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Bruce Richardson
@ 2019-07-26 16:43 ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
                     ` (12 more replies)
  12 siblings, 13 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev, Xiaolong Ye

This patchset replaces full BSD-3 license header with spdx tag for the
remaining files that have Intel copyright.


V2 changes:

1. remove "All rights reserved"
2. change "Intel shannon Ltd" to "Intel Corporation"
3. add ack tag from Bruce


Xiaolong Ye (11):
  net/ixgbe: replace license text with SPDX tag
  net/i40e: replace license text with SPDX tag
  net/e1000: replace license text with SPDX tag
  net/vmxnet3: replace license text with SPDX tag
  examples/qos_sched: replace license text with SPDX tag
  app/test-eventdev: replace license text with SPDX tag
  ethdev: replace license text with SPDX tag
  lpm: replace license text with SPDX tag
  port: replace license text with SPDX tag
  hash: replace license text with SPDX tag
  eal: replace license text with SPDX tag

 app/test-eventdev/parser.c                    | 35 ++---------------
 drivers/net/e1000/base/README                 | 34 ++--------------
 drivers/net/i40e/base/README                  | 34 ++--------------
 drivers/net/ixgbe/base/README                 | 34 ++--------------
 drivers/net/vmxnet3/base/README               | 34 ++--------------
 examples/qos_sched/profile.cfg                | 32 +--------------
 examples/qos_sched/profile_ov.cfg             | 32 +--------------
 .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
 .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
 lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
 lib/librte_eal/freebsd/BSDmakefile.meson      | 33 +---------------
 lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
 lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
 lib/librte_hash/rte_jhash.h                   | 33 +---------------
 lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
 lib/librte_port/rte_port_kni.c                | 35 ++---------------
 lib/librte_port/rte_port_kni.h                | 35 ++---------------
 17 files changed, 46 insertions(+), 535 deletions(-)

-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 01/11] net/ixgbe: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 02/11] net/i40e: " Xiaolong Ye
                     ` (11 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Wenzhuo Lu, Konstantin Ananyev; +Cc: dev, Xiaolong Ye

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2303 bytes --]

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/ixgbe/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README
index 431be0260..b6b420e2f 100644
--- a/drivers/net/ixgbe/base/README
+++ b/drivers/net/ixgbe/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2018 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2018 Intel Corporation
+ */
 
 Intel® IXGBE driver
 ===================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 02/11] net/i40e: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-29 21:03     ` Stillwell Jr, Paul M
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 03/11] net/e1000: " Xiaolong Ye
                     ` (10 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Beilei Xing, Qi Zhang; +Cc: dev, Xiaolong Ye

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2274 bytes --]

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/i40e/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README
index 84f191fad..8a5339cff 100644
--- a/drivers/net/i40e/base/README
+++ b/drivers/net/i40e/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-
-     Copyright(c) 2017 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation
+ */
 
 Intel® I40E driver
 ==================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 03/11] net/e1000: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 02/11] net/i40e: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 04/11] net/vmxnet3: " Xiaolong Ye
                     ` (9 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Wenzhuo Lu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/e1000/base/README | 34 +++-------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/e1000/base/README b/drivers/net/e1000/base/README
index de1ae4cf7..56738d001 100644
--- a/drivers/net/e1000/base/README
+++ b/drivers/net/e1000/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2016 Intel Corporation
+ */
 
 This directory contains source code of FreeBSD em & igb drivers of version
 cid-shared-code.2016.11.22 released by ND. The sub-directory of base/
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 04/11] net/vmxnet3: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (2 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 03/11] net/e1000: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: " Xiaolong Ye
                     ` (8 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Yong Wang; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/vmxnet3/base/README | 34 +++------------------------------
 1 file changed, 3 insertions(+), 31 deletions(-)

diff --git a/drivers/net/vmxnet3/base/README b/drivers/net/vmxnet3/base/README
index 599a3661e..aaf5d3086 100644
--- a/drivers/net/vmxnet3/base/README
+++ b/drivers/net/vmxnet3/base/README
@@ -1,34 +1,6 @@
-..
-     BSD LICENSE
-   
-     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
-     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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation.
+ */
 
 Intel VMXNET3 driver
 ===================
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (3 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 04/11] net/vmxnet3: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 18:10     ` Dumitrescu, Cristian
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 06/11] app/test-eventdev: " Xiaolong Ye
                     ` (7 subsequent siblings)
  12 siblings, 1 reply; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 examples/qos_sched/profile.cfg    | 32 ++-----------------------------
 examples/qos_sched/profile_ov.cfg | 32 ++-----------------------------
 2 files changed, 4 insertions(+), 60 deletions(-)

diff --git a/examples/qos_sched/profile.cfg b/examples/qos_sched/profile.cfg
index df7c6d1d8..a74b34180 100644
--- a/examples/qos_sched/profile.cfg
+++ b/examples/qos_sched/profile.cfg
@@ -1,33 +1,5 @@
-;   BSD LICENSE
-;
-;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
-;   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+;   SPDX-License-Identifier: BSD-3-Clause
+;   Copyright(c) 2010-2019 Intel Corporation.
 
 ; This file enables the following hierarchical scheduler configuration for each
 ; 10GbE output port:
diff --git a/examples/qos_sched/profile_ov.cfg b/examples/qos_sched/profile_ov.cfg
index c0b7b3c3d..1ad7e0559 100644
--- a/examples/qos_sched/profile_ov.cfg
+++ b/examples/qos_sched/profile_ov.cfg
@@ -1,33 +1,5 @@
-;   BSD LICENSE
-;
-;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
-;   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+;   SPDX-License-Identifier: BSD-3-Clause
+;   Copyright(c) 2010-2019 Intel Corporation.
 
 ; Port configuration
 [port]
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 06/11] app/test-eventdev: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (4 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
                     ` (6 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Jerin Jacob; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 app/test-eventdev/parser.c | 35 +++--------------------------------
 1 file changed, 3 insertions(+), 32 deletions(-)

diff --git a/app/test-eventdev/parser.c b/app/test-eventdev/parser.c
index 9de41bf4a..24f1855e9 100644
--- a/app/test-eventdev/parser.c
+++ b/app/test-eventdev/parser.c
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Intel Corporation. All rights reserved.
- *   Copyright(c) 2017 Cavium, Inc. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Intel Corporation.
+ * Copyright(c) 2017 Cavium, Inc.
  */
 
 #include <stdint.h>
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (5 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 06/11] app/test-eventdev: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 18:11     ` Dumitrescu, Cristian
                       ` (3 more replies)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 08/11] lpm: " Xiaolong Ye
                     ` (5 subsequent siblings)
  12 siblings, 4 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu, Thomas Monjalon, Andrew Rybchenko
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_ethdev/rte_mtr.h | 36 ++++--------------------------------
 lib/librte_ethdev/rte_tm.h  | 37 ++++---------------------------------
 2 files changed, 8 insertions(+), 65 deletions(-)

diff --git a/lib/librte_ethdev/rte_mtr.h b/lib/librte_ethdev/rte_mtr.h
index 6ba7d18ae..916a09c5c 100644
--- a/lib/librte_ethdev/rte_mtr.h
+++ b/lib/librte_ethdev/rte_mtr.h
@@ -1,35 +1,7 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright 2017 Intel Corporation
- *   Copyright 2017 NXP
- *   Copyright 2017 Cavium
- *
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2017 Intel Corporation
+ * Copyright 2017 NXP
+ * Copyright 2017 Cavium
  */
 
 #ifndef __INCLUDE_RTE_MTR_H__
diff --git a/lib/librte_ethdev/rte_tm.h b/lib/librte_ethdev/rte_tm.h
index 03eaa0004..f9c0cf3f9 100644
--- a/lib/librte_ethdev/rte_tm.h
+++ b/lib/librte_ethdev/rte_tm.h
@@ -1,36 +1,7 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2017 Intel Corporation.
- *   Copyright(c) 2017 Cavium.
- *   Copyright(c) 2017 NXP.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation.
+ * Copyright(c) 2017 Cavium.
+ * Copyright(c) 2017 NXP.
  */
 
 #ifndef __INCLUDE_RTE_TM_H__
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 08/11] lpm: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (6 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 09/11] port: " Xiaolong Ye
                     ` (4 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Jerin Jacob, Gavin Hu, Bruce Richardson,
	Vladimir Medvedkin
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_lpm/rte_lpm_neon.h | 39 +++--------------------------------
 1 file changed, 3 insertions(+), 36 deletions(-)

diff --git a/lib/librte_lpm/rte_lpm_neon.h b/lib/librte_lpm/rte_lpm_neon.h
index 28c815902..6c131d312 100644
--- a/lib/librte_lpm/rte_lpm_neon.h
+++ b/lib/librte_lpm/rte_lpm_neon.h
@@ -1,39 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2015 Cavium, Inc. All rights reserved.
- *   All rights reserved.
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   All rights reserved.
- *
- *   Derived rte_lpm_lookupx4 implementation from lib/librte_lpm/rte_lpm_sse.h
- *
- *   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 Cavium, Inc 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2015 Cavium, Inc.
+ * Copyright(c) 2010-2014 Intel Corporation.
  */
 
 #ifndef _RTE_LPM_NEON_H_
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 09/11] port: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (7 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 08/11] lpm: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 18:11     ` Dumitrescu, Cristian
  2019-07-29 11:15     ` Ferruh Yigit
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 10/11] hash: " Xiaolong Ye
                     ` (3 subsequent siblings)
  12 siblings, 2 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Cristian Dumitrescu; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_port/rte_port_kni.c | 35 +++-------------------------------
 lib/librte_port/rte_port_kni.h | 35 +++-------------------------------
 2 files changed, 6 insertions(+), 64 deletions(-)

diff --git a/lib/librte_port/rte_port_kni.c b/lib/librte_port/rte_port_kni.c
index 2515fb2ac..7b370f980 100644
--- a/lib/librte_port/rte_port_kni.c
+++ b/lib/librte_port/rte_port_kni.c
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
- *   Copyright(c) 2016 Intel Corporation.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
+ * Copyright(c) 2016 Intel Corporation.
  */
 #include <string.h>
 
diff --git a/lib/librte_port/rte_port_kni.h b/lib/librte_port/rte_port_kni.h
index 4b60689c7..9d318af17 100644
--- a/lib/librte_port/rte_port_kni.h
+++ b/lib/librte_port/rte_port_kni.h
@@ -1,35 +1,6 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
- *   Copyright(c) 2016 Intel Corporation.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
+ * Copyright(c) 2016 Intel Corporation.
  */
 
 #ifndef __INCLUDE_RTE_PORT_KNI_H__
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 10/11] hash: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (8 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 09/11] port: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 11/11] eal: " Xiaolong Ye
                     ` (2 subsequent siblings)
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Yipeng Wang, Sameh Gobriel, Bruce Richardson,
	Pablo de Lara
  Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_hash/rte_jhash.h | 33 ++-------------------------------
 1 file changed, 2 insertions(+), 31 deletions(-)

diff --git a/lib/librte_hash/rte_jhash.h b/lib/librte_hash/rte_jhash.h
index 42c45685b..7a1eeff74 100644
--- a/lib/librte_hash/rte_jhash.h
+++ b/lib/librte_hash/rte_jhash.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2015 Intel Corporation.
  */
 
 #ifndef _RTE_JHASH_H
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 11/11] eal: replace license text with SPDX tag
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (9 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 10/11] hash: " Xiaolong Ye
@ 2019-07-26 16:43   ` Xiaolong Ye
  2019-07-29  7:12   ` [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright Hemant Agrawal
  2019-07-29 12:17   ` Ferruh Yigit
  12 siblings, 0 replies; 48+ messages in thread
From: Xiaolong Ye @ 2019-07-26 16:43 UTC (permalink / raw)
  To: Ferruh Yigit, Bruce Richardson, Konstantin Ananyev; +Cc: dev, Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 .../common/include/arch/x86/rte_atomic_32.h   | 33 ++-----------------
 .../common/include/arch/x86/rte_atomic_64.h   | 33 ++-----------------
 lib/librte_eal/common/include/rte_keepalive.h | 32 ++----------------
 lib/librte_eal/freebsd/BSDmakefile.meson      | 33 ++-----------------
 4 files changed, 8 insertions(+), 123 deletions(-)

diff --git a/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h b/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
index a932f3540..f63b7fa27 100644
--- a/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
+++ b/lib/librte_eal/common/include/arch/x86/rte_atomic_32.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation.
  */
 
 /*
diff --git a/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h b/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
index e087c6c32..1335d92f4 100644
--- a/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
+++ b/lib/librte_eal/common/include/arch/x86/rte_atomic_64.h
@@ -1,34 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation.
  */
 
 /*
diff --git a/lib/librte_eal/common/include/rte_keepalive.h b/lib/librte_eal/common/include/rte_keepalive.h
index e9f8f083a..4bda7ca56 100644
--- a/lib/librte_eal/common/include/rte_keepalive.h
+++ b/lib/librte_eal/common/include/rte_keepalive.h
@@ -1,33 +1,5 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright 2015-2016 Intel Shannon Ltd. 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2015-2016 Intel Corporation.
  */
 
 /**
diff --git a/lib/librte_eal/freebsd/BSDmakefile.meson b/lib/librte_eal/freebsd/BSDmakefile.meson
index 42f5b2b9d..53c4e79c6 100644
--- a/lib/librte_eal/freebsd/BSDmakefile.meson
+++ b/lib/librte_eal/freebsd/BSDmakefile.meson
@@ -1,34 +1,5 @@
-#   BSD LICENSE
-#
-#   Copyright(c) 2017 Intel Corporation. All rights reserved.
-#   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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
+#   SPDX-License-Identifier: BSD-3-Clause
+#   Copyright(c) 2017 Intel Corporation.
 
 # makefile for building kernel modules using meson
 # takes parameters from the environment
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: " Xiaolong Ye
@ 2019-07-26 18:10     ` Dumitrescu, Cristian
  0 siblings, 0 replies; 48+ messages in thread
From: Dumitrescu, Cristian @ 2019-07-26 18:10 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh; +Cc: dev



> -----Original Message-----
> From: Ye, Xiaolong
> Sent: Friday, July 26, 2019 5:44 PM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Dumitrescu, Cristian
> <cristian.dumitrescu@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [PATCH v2 05/11] examples/qos_sched: replace license text with
> SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  examples/qos_sched/profile.cfg    | 32 ++-----------------------------
>  examples/qos_sched/profile_ov.cfg | 32 ++-----------------------------
>  2 files changed, 4 insertions(+), 60 deletions(-)
> 
> diff --git a/examples/qos_sched/profile.cfg
> b/examples/qos_sched/profile.cfg
> index df7c6d1d8..a74b34180 100644
> --- a/examples/qos_sched/profile.cfg
> +++ b/examples/qos_sched/profile.cfg
> @@ -1,33 +1,5 @@
> -;   BSD LICENSE
> -;
> -;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
> -;   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +;   SPDX-License-Identifier: BSD-3-Clause
> +;   Copyright(c) 2010-2019 Intel Corporation.
> 
>  ; This file enables the following hierarchical scheduler configuration for each
>  ; 10GbE output port:
> diff --git a/examples/qos_sched/profile_ov.cfg
> b/examples/qos_sched/profile_ov.cfg
> index c0b7b3c3d..1ad7e0559 100644
> --- a/examples/qos_sched/profile_ov.cfg
> +++ b/examples/qos_sched/profile_ov.cfg
> @@ -1,33 +1,5 @@
> -;   BSD LICENSE
> -;
> -;   Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
> -;   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +;   SPDX-License-Identifier: BSD-3-Clause
> +;   Copyright(c) 2010-2019 Intel Corporation.
> 
>  ; Port configuration
>  [port]
> --
> 2.17.1

Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>


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

* Re: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
@ 2019-07-26 18:11     ` Dumitrescu, Cristian
  2019-07-29 11:14     ` Ferruh Yigit
                       ` (2 subsequent siblings)
  3 siblings, 0 replies; 48+ messages in thread
From: Dumitrescu, Cristian @ 2019-07-26 18:11 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh, Thomas Monjalon, Andrew Rybchenko; +Cc: dev



> -----Original Message-----
> From: Ye, Xiaolong
> Sent: Friday, July 26, 2019 5:44 PM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Dumitrescu, Cristian
> <cristian.dumitrescu@intel.com>; Thomas Monjalon
> <thomas@monjalon.net>; Andrew Rybchenko
> <arybchenko@solarflare.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [PATCH v2 07/11] ethdev: replace license text with SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  lib/librte_ethdev/rte_mtr.h | 36 ++++--------------------------------
>  lib/librte_ethdev/rte_tm.h  | 37 ++++---------------------------------
>  2 files changed, 8 insertions(+), 65 deletions(-)
> 
> diff --git a/lib/librte_ethdev/rte_mtr.h b/lib/librte_ethdev/rte_mtr.h
> index 6ba7d18ae..916a09c5c 100644
> --- a/lib/librte_ethdev/rte_mtr.h
> +++ b/lib/librte_ethdev/rte_mtr.h
> @@ -1,35 +1,7 @@
> -/*-
> - *   BSD LICENSE
> - *
> - *   Copyright 2017 Intel Corporation
> - *   Copyright 2017 NXP
> - *   Copyright 2017 Cavium
> - *
> - *   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright 2017 Intel Corporation
> + * Copyright 2017 NXP
> + * Copyright 2017 Cavium
>   */
> 
>  #ifndef __INCLUDE_RTE_MTR_H__
> diff --git a/lib/librte_ethdev/rte_tm.h b/lib/librte_ethdev/rte_tm.h
> index 03eaa0004..f9c0cf3f9 100644
> --- a/lib/librte_ethdev/rte_tm.h
> +++ b/lib/librte_ethdev/rte_tm.h
> @@ -1,36 +1,7 @@
> -/*-
> - *   BSD LICENSE
> - *
> - *   Copyright(c) 2017 Intel Corporation.
> - *   Copyright(c) 2017 Cavium.
> - *   Copyright(c) 2017 NXP.
> - *   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2017 Intel Corporation.
> + * Copyright(c) 2017 Cavium.
> + * Copyright(c) 2017 NXP.
>   */
> 
>  #ifndef __INCLUDE_RTE_TM_H__
> --
> 2.17.1

Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>


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

* Re: [dpdk-dev] [PATCH v2 09/11] port: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 09/11] port: " Xiaolong Ye
@ 2019-07-26 18:11     ` Dumitrescu, Cristian
  2019-07-29 11:15     ` Ferruh Yigit
  1 sibling, 0 replies; 48+ messages in thread
From: Dumitrescu, Cristian @ 2019-07-26 18:11 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh; +Cc: dev



> -----Original Message-----
> From: Ye, Xiaolong
> Sent: Friday, July 26, 2019 5:44 PM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Dumitrescu, Cristian
> <cristian.dumitrescu@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [PATCH v2 09/11] port: replace license text with SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  lib/librte_port/rte_port_kni.c | 35 +++-------------------------------
>  lib/librte_port/rte_port_kni.h | 35 +++-------------------------------
>  2 files changed, 6 insertions(+), 64 deletions(-)
> 
> diff --git a/lib/librte_port/rte_port_kni.c b/lib/librte_port/rte_port_kni.c
> index 2515fb2ac..7b370f980 100644
> --- a/lib/librte_port/rte_port_kni.c
> +++ b/lib/librte_port/rte_port_kni.c
> @@ -1,35 +1,6 @@
> -/*-
> - *   BSD LICENSE
> - *
> - *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
> - *   Copyright(c) 2016 Intel Corporation.
> - *   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
> + * Copyright(c) 2016 Intel Corporation.
>   */
>  #include <string.h>
> 
> diff --git a/lib/librte_port/rte_port_kni.h b/lib/librte_port/rte_port_kni.h
> index 4b60689c7..9d318af17 100644
> --- a/lib/librte_port/rte_port_kni.h
> +++ b/lib/librte_port/rte_port_kni.h
> @@ -1,35 +1,6 @@
> -/*-
> - *   BSD LICENSE
> - *
> - *   Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
> - *   Copyright(c) 2016 Intel Corporation.
> - *   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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2016 Ethan Zhuang <zhuangwj@gmail.com>.
> + * Copyright(c) 2016 Intel Corporation.
>   */
> 
>  #ifndef __INCLUDE_RTE_PORT_KNI_H__
> --
> 2.17.1

Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>


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

* Re: [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (10 preceding siblings ...)
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 11/11] eal: " Xiaolong Ye
@ 2019-07-29  7:12   ` Hemant Agrawal
  2019-07-29  7:27     ` Ye Xiaolong
  2019-07-29  7:28     ` Hemant Agrawal
  2019-07-29 12:17   ` Ferruh Yigit
  12 siblings, 2 replies; 48+ messages in thread
From: Hemant Agrawal @ 2019-07-29  7:12 UTC (permalink / raw)
  To: Xiaolong Ye, Ferruh Yigit; +Cc: dev

> This patchset replaces full BSD-3 license header with spdx tag for the
> remaining files that have Intel copyright.

[Hemant]  Is it possible for you to also cover some of other remaining Intel copyright files. E.g.

drivers/net/i40e/i40e_rxtx_vec_avx2.c
doc/guides/eventdevs/opdl.rst

drivers/net/i40e/i40e_rxtx_vec_altivec.c

> 
> 
> V2 changes:
> 
> 1. remove "All rights reserved"
> 2. change "Intel shannon Ltd" to "Intel Corporation"
> 3. add ack tag from Bruce
> 
> 
> Xiaolong Ye (11):
>   net/ixgbe: replace license text with SPDX tag
>   net/i40e: replace license text with SPDX tag
>   net/e1000: replace license text with SPDX tag
>   net/vmxnet3: replace license text with SPDX tag
>   examples/qos_sched: replace license text with SPDX tag
>   app/test-eventdev: replace license text with SPDX tag
>   ethdev: replace license text with SPDX tag
>   lpm: replace license text with SPDX tag
>   port: replace license text with SPDX tag
>   hash: replace license text with SPDX tag
>   eal: replace license text with SPDX tag
> 
>  app/test-eventdev/parser.c                    | 35 ++---------------
>  drivers/net/e1000/base/README                 | 34 ++--------------
>  drivers/net/i40e/base/README                  | 34 ++--------------
>  drivers/net/ixgbe/base/README                 | 34 ++--------------
>  drivers/net/vmxnet3/base/README               | 34 ++--------------
>  examples/qos_sched/profile.cfg                | 32 +--------------
>  examples/qos_sched/profile_ov.cfg             | 32 +--------------
>  .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
>  .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
>  lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
>  lib/librte_eal/freebsd/BSDmakefile.meson      | 33 +---------------
>  lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
>  lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
>  lib/librte_hash/rte_jhash.h                   | 33 +---------------
>  lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
>  lib/librte_port/rte_port_kni.c                | 35 ++---------------
>  lib/librte_port/rte_port_kni.h                | 35 ++---------------
>  17 files changed, 46 insertions(+), 535 deletions(-)
> 
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-29  7:12   ` [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright Hemant Agrawal
@ 2019-07-29  7:27     ` Ye Xiaolong
  2019-07-29  7:28     ` Hemant Agrawal
  1 sibling, 0 replies; 48+ messages in thread
From: Ye Xiaolong @ 2019-07-29  7:27 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: Ferruh Yigit, dev

Hi, Hemant

On 07/29, Hemant Agrawal wrote:
>> This patchset replaces full BSD-3 license header with spdx tag for the
>> remaining files that have Intel copyright.
>
>[Hemant]  Is it possible for you to also cover some of other remaining Intel copyright files. E.g.
>
>drivers/net/i40e/i40e_rxtx_vec_avx2.c
>doc/guides/eventdevs/opdl.rst
>
>drivers/net/i40e/i40e_rxtx_vec_altivec.c

drivers/net/i40e/i40e_rxtx_vec_avx2.c and drivers/net/i40e/i40e_rxtx_vec_altivec.c has been handled
by https://patches.dpdk.org/patch/56985/ which has been merged in next-net tree.

I'll submit a new patch to address doc/guides/eventdevs/opdl.rst.

Thanks,
Xiaolong

>
>> 
>> 
>> V2 changes:
>> 
>> 1. remove "All rights reserved"
>> 2. change "Intel shannon Ltd" to "Intel Corporation"
>> 3. add ack tag from Bruce
>> 
>> 
>> Xiaolong Ye (11):
>>   net/ixgbe: replace license text with SPDX tag
>>   net/i40e: replace license text with SPDX tag
>>   net/e1000: replace license text with SPDX tag
>>   net/vmxnet3: replace license text with SPDX tag
>>   examples/qos_sched: replace license text with SPDX tag
>>   app/test-eventdev: replace license text with SPDX tag
>>   ethdev: replace license text with SPDX tag
>>   lpm: replace license text with SPDX tag
>>   port: replace license text with SPDX tag
>>   hash: replace license text with SPDX tag
>>   eal: replace license text with SPDX tag
>> 
>>  app/test-eventdev/parser.c                    | 35 ++---------------
>>  drivers/net/e1000/base/README                 | 34 ++--------------
>>  drivers/net/i40e/base/README                  | 34 ++--------------
>>  drivers/net/ixgbe/base/README                 | 34 ++--------------
>>  drivers/net/vmxnet3/base/README               | 34 ++--------------
>>  examples/qos_sched/profile.cfg                | 32 +--------------
>>  examples/qos_sched/profile_ov.cfg             | 32 +--------------
>>  .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
>>  .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
>>  lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
>>  lib/librte_eal/freebsd/BSDmakefile.meson      | 33 +---------------
>>  lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
>>  lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
>>  lib/librte_hash/rte_jhash.h                   | 33 +---------------
>>  lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
>>  lib/librte_port/rte_port_kni.c                | 35 ++---------------
>>  lib/librte_port/rte_port_kni.h                | 35 ++---------------
>>  17 files changed, 46 insertions(+), 535 deletions(-)
>> 
>> --
>> 2.17.1
>

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

* Re: [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-29  7:12   ` [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright Hemant Agrawal
  2019-07-29  7:27     ` Ye Xiaolong
@ 2019-07-29  7:28     ` Hemant Agrawal
  2019-07-29  7:37       ` Ye Xiaolong
  1 sibling, 1 reply; 48+ messages in thread
From: Hemant Agrawal @ 2019-07-29  7:28 UTC (permalink / raw)
  To: Hemant Agrawal, Xiaolong Ye, Ferruh Yigit; +Cc: dev, Bruce Richardson

> > This patchset replaces full BSD-3 license header with spdx tag for the
> > remaining files that have Intel copyright.
> 
> [Hemant]  Is it possible for you to also cover some of other remaining Intel
> copyright files. E.g.
> 
> drivers/net/i40e/i40e_rxtx_vec_avx2.c
> doc/guides/eventdevs/opdl.rst
> 
> drivers/net/i40e/i40e_rxtx_vec_altivec.c

[Hemant] Actually there are more files from Intel without SPDX tags (using:  grep -Lr "SPDX" *)

drivers/net/fm10k/base/fm10k_api.c
drivers/net/fm10k/base/fm10k_mbx.h
drivers/net/fm10k/base/fm10k_osdep.h
drivers/net/fm10k/base/fm10k_vf.c
drivers/net/fm10k/base/fm10k_mbx.c
drivers/net/fm10k/base/fm10k_api.h
drivers/net/fm10k/base/fm10k_type.h
drivers/net/fm10k/base/fm10k_common.h
drivers/net/fm10k/base/fm10k_common.c
drivers/net/fm10k/base/fm10k_pf.h
drivers/net/fm10k/base/fm10k_pf.c
drivers/net/fm10k/base/fm10k_vf.h
drivers/net/fm10k/base/fm10k_tlv.h
drivers/net/fm10k/base/fm10k_tlv.c

drivers/net/iavf/base/iavf_adminq.h
drivers/net/iavf/base/iavf_alloc.h
drivers/net/iavf/base/iavf_type.h
drivers/net/iavf/base/iavf_hmc.h
drivers/net/iavf/base/iavf_adminq_cmd.h
drivers/net/iavf/base/iavf_register.h
drivers/net/iavf/base/iavf_devids.h
drivers/net/iavf/base/iavf_adminq.c
drivers/net/iavf/base/iavf_common.c
drivers/net/iavf/base/iavf_lan_hmc.h
drivers/net/iavf/base/virtchnl.h
drivers/net/iavf/base/iavf_status.h
drivers/net/iavf/base/iavf_prototype.h

drivers/net/e1000/base/e1000_hw.h
drivers/net/e1000/base/e1000_osdep.h
drivers/net/e1000/base/e1000_82571.c
drivers/net/e1000/base/e1000_mbx.c
drivers/net/e1000/base/e1000_mbx.h
drivers/net/e1000/base/e1000_api.h
drivers/net/e1000/base/e1000_82543.h
drivers/net/e1000/base/e1000_defines.h
drivers/net/e1000/base/e1000_regs.h
drivers/net/e1000/base/e1000_82541.c
drivers/net/e1000/base/e1000_phy.h
drivers/net/e1000/base/e1000_mac.c
drivers/net/e1000/base/e1000_vf.h
drivers/net/e1000/base/e1000_api.c
drivers/net/e1000/base/e1000_80003es2lan.h
drivers/net/e1000/base/e1000_80003es2lan.c
drivers/net/e1000/base/e1000_ich8lan.c
drivers/net/e1000/base/e1000_osdep.c
drivers/net/e1000/base/e1000_manage.h
drivers/net/e1000/base/e1000_ich8lan.h
drivers/net/e1000/base/e1000_vf.c
drivers/net/e1000/base/e1000_nvm.h
drivers/net/e1000/base/e1000_82571.h
drivers/net/e1000/base/e1000_i210.h
drivers/net/e1000/base/e1000_phy.c
drivers/net/e1000/base/e1000_manage.c
drivers/net/e1000/base/e1000_82541.h
drivers/net/e1000/base/e1000_82540.c
drivers/net/e1000/base/e1000_82543.c
drivers/net/e1000/base/e1000_82575.h
drivers/net/e1000/base/e1000_82575.c
drivers/net/e1000/base/e1000_nvm.c
drivers/net/e1000/base/e1000_mac.h
drivers/net/e1000/base/e1000_82542.c
drivers/net/e1000/base/e1000_i210.c

 
> >
> >
> > V2 changes:
> >
> > 1. remove "All rights reserved"
> > 2. change "Intel shannon Ltd" to "Intel Corporation"
> > 3. add ack tag from Bruce
> >
> >
> > Xiaolong Ye (11):
> >   net/ixgbe: replace license text with SPDX tag
> >   net/i40e: replace license text with SPDX tag
> >   net/e1000: replace license text with SPDX tag
> >   net/vmxnet3: replace license text with SPDX tag
> >   examples/qos_sched: replace license text with SPDX tag
> >   app/test-eventdev: replace license text with SPDX tag
> >   ethdev: replace license text with SPDX tag
> >   lpm: replace license text with SPDX tag
> >   port: replace license text with SPDX tag
> >   hash: replace license text with SPDX tag
> >   eal: replace license text with SPDX tag
> >
> >  app/test-eventdev/parser.c                    | 35 ++---------------
> >  drivers/net/e1000/base/README                 | 34 ++--------------
> >  drivers/net/i40e/base/README                  | 34 ++--------------
> >  drivers/net/ixgbe/base/README                 | 34 ++--------------
> >  drivers/net/vmxnet3/base/README               | 34 ++--------------
> >  examples/qos_sched/profile.cfg                | 32 +--------------
> >  examples/qos_sched/profile_ov.cfg             | 32 +--------------
> >  .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
> >  .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
> >  lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
> >  lib/librte_eal/freebsd/BSDmakefile.meson      | 33 +---------------
> >  lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
> >  lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
> >  lib/librte_hash/rte_jhash.h                   | 33 +---------------
> >  lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
> >  lib/librte_port/rte_port_kni.c                | 35 ++---------------
> >  lib/librte_port/rte_port_kni.h                | 35 ++---------------
> >  17 files changed, 46 insertions(+), 535 deletions(-)
> >
> > --
> > 2.17.1


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

* Re: [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-29  7:28     ` Hemant Agrawal
@ 2019-07-29  7:37       ` Ye Xiaolong
  0 siblings, 0 replies; 48+ messages in thread
From: Ye Xiaolong @ 2019-07-29  7:37 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: Ferruh Yigit, dev, Bruce Richardson

Hi, Hemant

On 07/29, Hemant Agrawal wrote:
>> > This patchset replaces full BSD-3 license header with spdx tag for the
>> > remaining files that have Intel copyright.
>> 
>> [Hemant]  Is it possible for you to also cover some of other remaining Intel
>> copyright files. E.g.
>> 
>> drivers/net/i40e/i40e_rxtx_vec_avx2.c
>> doc/guides/eventdevs/opdl.rst
>> 
>> drivers/net/i40e/i40e_rxtx_vec_altivec.c
>
>[Hemant] Actually there are more files from Intel without SPDX tags (using:  grep -Lr "SPDX" *)
>

They have been addressed by patchset http://mails.dpdk.org/archives/dev/2019-July/139370.html which
has been merged into next-net tree.

Thanks,
Xiaolong


>drivers/net/fm10k/base/fm10k_api.c
>drivers/net/fm10k/base/fm10k_mbx.h
>drivers/net/fm10k/base/fm10k_osdep.h
>drivers/net/fm10k/base/fm10k_vf.c
>drivers/net/fm10k/base/fm10k_mbx.c
>drivers/net/fm10k/base/fm10k_api.h
>drivers/net/fm10k/base/fm10k_type.h
>drivers/net/fm10k/base/fm10k_common.h
>drivers/net/fm10k/base/fm10k_common.c
>drivers/net/fm10k/base/fm10k_pf.h
>drivers/net/fm10k/base/fm10k_pf.c
>drivers/net/fm10k/base/fm10k_vf.h
>drivers/net/fm10k/base/fm10k_tlv.h
>drivers/net/fm10k/base/fm10k_tlv.c
>
>drivers/net/iavf/base/iavf_adminq.h
>drivers/net/iavf/base/iavf_alloc.h
>drivers/net/iavf/base/iavf_type.h
>drivers/net/iavf/base/iavf_hmc.h
>drivers/net/iavf/base/iavf_adminq_cmd.h
>drivers/net/iavf/base/iavf_register.h
>drivers/net/iavf/base/iavf_devids.h
>drivers/net/iavf/base/iavf_adminq.c
>drivers/net/iavf/base/iavf_common.c
>drivers/net/iavf/base/iavf_lan_hmc.h
>drivers/net/iavf/base/virtchnl.h
>drivers/net/iavf/base/iavf_status.h
>drivers/net/iavf/base/iavf_prototype.h
>
>drivers/net/e1000/base/e1000_hw.h
>drivers/net/e1000/base/e1000_osdep.h
>drivers/net/e1000/base/e1000_82571.c
>drivers/net/e1000/base/e1000_mbx.c
>drivers/net/e1000/base/e1000_mbx.h
>drivers/net/e1000/base/e1000_api.h
>drivers/net/e1000/base/e1000_82543.h
>drivers/net/e1000/base/e1000_defines.h
>drivers/net/e1000/base/e1000_regs.h
>drivers/net/e1000/base/e1000_82541.c
>drivers/net/e1000/base/e1000_phy.h
>drivers/net/e1000/base/e1000_mac.c
>drivers/net/e1000/base/e1000_vf.h
>drivers/net/e1000/base/e1000_api.c
>drivers/net/e1000/base/e1000_80003es2lan.h
>drivers/net/e1000/base/e1000_80003es2lan.c
>drivers/net/e1000/base/e1000_ich8lan.c
>drivers/net/e1000/base/e1000_osdep.c
>drivers/net/e1000/base/e1000_manage.h
>drivers/net/e1000/base/e1000_ich8lan.h
>drivers/net/e1000/base/e1000_vf.c
>drivers/net/e1000/base/e1000_nvm.h
>drivers/net/e1000/base/e1000_82571.h
>drivers/net/e1000/base/e1000_i210.h
>drivers/net/e1000/base/e1000_phy.c
>drivers/net/e1000/base/e1000_manage.c
>drivers/net/e1000/base/e1000_82541.h
>drivers/net/e1000/base/e1000_82540.c
>drivers/net/e1000/base/e1000_82543.c
>drivers/net/e1000/base/e1000_82575.h
>drivers/net/e1000/base/e1000_82575.c
>drivers/net/e1000/base/e1000_nvm.c
>drivers/net/e1000/base/e1000_mac.h
>drivers/net/e1000/base/e1000_82542.c
>drivers/net/e1000/base/e1000_i210.c
>
> 
>> >
>> >
>> > V2 changes:
>> >
>> > 1. remove "All rights reserved"
>> > 2. change "Intel shannon Ltd" to "Intel Corporation"
>> > 3. add ack tag from Bruce
>> >
>> >
>> > Xiaolong Ye (11):
>> >   net/ixgbe: replace license text with SPDX tag
>> >   net/i40e: replace license text with SPDX tag
>> >   net/e1000: replace license text with SPDX tag
>> >   net/vmxnet3: replace license text with SPDX tag
>> >   examples/qos_sched: replace license text with SPDX tag
>> >   app/test-eventdev: replace license text with SPDX tag
>> >   ethdev: replace license text with SPDX tag
>> >   lpm: replace license text with SPDX tag
>> >   port: replace license text with SPDX tag
>> >   hash: replace license text with SPDX tag
>> >   eal: replace license text with SPDX tag
>> >
>> >  app/test-eventdev/parser.c                    | 35 ++---------------
>> >  drivers/net/e1000/base/README                 | 34 ++--------------
>> >  drivers/net/i40e/base/README                  | 34 ++--------------
>> >  drivers/net/ixgbe/base/README                 | 34 ++--------------
>> >  drivers/net/vmxnet3/base/README               | 34 ++--------------
>> >  examples/qos_sched/profile.cfg                | 32 +--------------
>> >  examples/qos_sched/profile_ov.cfg             | 32 +--------------
>> >  .../common/include/arch/x86/rte_atomic_32.h   | 33 +---------------
>> >  .../common/include/arch/x86/rte_atomic_64.h   | 33 +---------------
>> >  lib/librte_eal/common/include/rte_keepalive.h | 32 +--------------
>> >  lib/librte_eal/freebsd/BSDmakefile.meson      | 33 +---------------
>> >  lib/librte_ethdev/rte_mtr.h                   | 36 ++---------------
>> >  lib/librte_ethdev/rte_tm.h                    | 37 ++----------------
>> >  lib/librte_hash/rte_jhash.h                   | 33 +---------------
>> >  lib/librte_lpm/rte_lpm_neon.h                 | 39 ++-----------------
>> >  lib/librte_port/rte_port_kni.c                | 35 ++---------------
>> >  lib/librte_port/rte_port_kni.h                | 35 ++---------------
>> >  17 files changed, 46 insertions(+), 535 deletions(-)
>> >
>> > --
>> > 2.17.1
>

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

* Re: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
  2019-07-26 18:11     ` Dumitrescu, Cristian
@ 2019-07-29 11:14     ` Ferruh Yigit
  2019-07-29 11:26     ` Hemant Agrawal
  2019-07-29 13:04     ` Jerin Jacob Kollanukkaran
  3 siblings, 0 replies; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-29 11:14 UTC (permalink / raw)
  To: Xiaolong Ye, Cristian Dumitrescu, Thomas Monjalon, Andrew Rybchenko
  Cc: dev, Jerin Jacob Kollanukkaran, Hemant Agrawal

On 7/26/2019 5:43 PM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Hi Jerin, Hemant,

Can you please check this patch, it requires both your ack?

Thanks,
ferruh

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

* Re: [dpdk-dev] [PATCH v2 09/11] port: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 09/11] port: " Xiaolong Ye
  2019-07-26 18:11     ` Dumitrescu, Cristian
@ 2019-07-29 11:15     ` Ferruh Yigit
  2019-09-30 16:05       ` Yigit, Ferruh
  1 sibling, 1 reply; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-29 11:15 UTC (permalink / raw)
  To: Ethan Zhuang; +Cc: Xiaolong Ye, Cristian Dumitrescu, dev

On 7/26/2019 5:43 PM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Hi Ethan,

Can you please check this patch, this is switching license representation (not
license itself) to SPDX tags, as a copyright owner, the change requires ack.

Thanks,
ferruh

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

* Re: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
  2019-07-26 18:11     ` Dumitrescu, Cristian
  2019-07-29 11:14     ` Ferruh Yigit
@ 2019-07-29 11:26     ` Hemant Agrawal
  2019-07-29 13:04     ` Jerin Jacob Kollanukkaran
  3 siblings, 0 replies; 48+ messages in thread
From: Hemant Agrawal @ 2019-07-29 11:26 UTC (permalink / raw)
  To: Xiaolong Ye, Ferruh Yigit, Cristian Dumitrescu, Thomas Monjalon,
	Andrew Rybchenko
  Cc: dev

Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>

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

* Re: [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright
  2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
                     ` (11 preceding siblings ...)
  2019-07-29  7:12   ` [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright Hemant Agrawal
@ 2019-07-29 12:17   ` Ferruh Yigit
  12 siblings, 0 replies; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-29 12:17 UTC (permalink / raw)
  To: Xiaolong Ye; +Cc: dev

On 7/26/2019 5:43 PM, Xiaolong Ye wrote:
> This patchset replaces full BSD-3 license header with spdx tag for the
> remaining files that have Intel copyright.
> 
> 
> V2 changes:
> 
> 1. remove "All rights reserved"
> 2. change "Intel shannon Ltd" to "Intel Corporation"
> 3. add ack tag from Bruce
> 
> 
> Xiaolong Ye (11):
>   net/ixgbe: replace license text with SPDX tag
>   net/i40e: replace license text with SPDX tag
>   net/e1000: replace license text with SPDX tag
>   net/vmxnet3: replace license text with SPDX tag
>   examples/qos_sched: replace license text with SPDX tag
>   app/test-eventdev: replace license text with SPDX tag
>   ethdev: replace license text with SPDX tag
>   lpm: replace license text with SPDX tag
>   port: replace license text with SPDX tag
>   hash: replace license text with SPDX tag
>   eal: replace license text with SPDX tag

Series applied to dpdk-next-net/master, thanks.

Except from [07/11] & [09/11] which are missing ack from copyright owners.

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

* Re: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
                       ` (2 preceding siblings ...)
  2019-07-29 11:26     ` Hemant Agrawal
@ 2019-07-29 13:04     ` Jerin Jacob Kollanukkaran
  2019-07-29 13:32       ` Ferruh Yigit
  3 siblings, 1 reply; 48+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-07-29 13:04 UTC (permalink / raw)
  To: Xiaolong Ye, Ferruh Yigit, Cristian Dumitrescu, Thomas Monjalon,
	Andrew Rybchenko
  Cc: dev



> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
> Sent: Friday, July 26, 2019 10:14 PM
> To: Ferruh Yigit <ferruh.yigit@intel.com>; Cristian Dumitrescu
> <cristian.dumitrescu@intel.com>; Thomas Monjalon
> <thomas@monjalon.net>; Andrew Rybchenko
> <arybchenko@solarflare.com>
> Cc: dev@dpdk.org; Xiaolong Ye <xiaolong.ye@intel.com>
> Subject: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX
> tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>


Acked-by: Jerin Jacob <jerinj@marvell.com>

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

* Re: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX tag
  2019-07-29 13:04     ` Jerin Jacob Kollanukkaran
@ 2019-07-29 13:32       ` Ferruh Yigit
  0 siblings, 0 replies; 48+ messages in thread
From: Ferruh Yigit @ 2019-07-29 13:32 UTC (permalink / raw)
  To: Jerin Jacob Kollanukkaran, Xiaolong Ye, Cristian Dumitrescu,
	Thomas Monjalon, Andrew Rybchenko
  Cc: dev

On 7/29/2019 2:04 PM, Jerin Jacob Kollanukkaran wrote:
> 
> 
>> -----Original Message-----
>> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
>> Sent: Friday, July 26, 2019 10:14 PM
>> To: Ferruh Yigit <ferruh.yigit@intel.com>; Cristian Dumitrescu
>> <cristian.dumitrescu@intel.com>; Thomas Monjalon
>> <thomas@monjalon.net>; Andrew Rybchenko
>> <arybchenko@solarflare.com>
>> Cc: dev@dpdk.org; Xiaolong Ye <xiaolong.ye@intel.com>
>> Subject: [dpdk-dev] [PATCH v2 07/11] ethdev: replace license text with SPDX
>> tag
>>
>> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
>> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> 
> 
> Acked-by: Jerin Jacob <jerinj@marvell.com>
> 

Applied to dpdk-next-net/master, thanks.

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

* Re: [dpdk-dev] [PATCH v1 02/11] net/i40e: replace license text with SPDX tag
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 02/11] net/i40e: " Xiaolong Ye
@ 2019-07-29 20:59   ` Stillwell Jr, Paul M
  0 siblings, 0 replies; 48+ messages in thread
From: Stillwell Jr, Paul M @ 2019-07-29 20:59 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh, Xing, Beilei, Zhang, Qi Z; +Cc: dev, Ye, Xiaolong


> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
> Sent: Friday, July 26, 2019 2:30 AM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Xing, Beilei
> <beilei.xing@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [dpdk-dev] [PATCH v1 02/11] net/i40e: replace license text with
> SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  drivers/net/i40e/base/README | 34 +++-------------------------------
>  1 file changed, 3 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README
> index 84f191fad..8a5339cff 100644
> --- a/drivers/net/i40e/base/README
> +++ b/drivers/net/i40e/base/README
> @@ -1,34 +1,6 @@
> -..
> -     BSD LICENSE
> -
> -     Copyright(c) 2017 Intel Corporation. All rights reserved.
> -     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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2017 Intel Corporation

Shouldn't the year be 2019?

> + */
> 
>  Intel® I40E driver
>  ==================
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
@ 2019-07-29 21:01   ` Stillwell Jr, Paul M
  0 siblings, 0 replies; 48+ messages in thread
From: Stillwell Jr, Paul M @ 2019-07-29 21:01 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh, Lu, Wenzhuo, Ananyev, Konstantin
  Cc: dev, Ye, Xiaolong

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
> Sent: Friday, July 26, 2019 2:30 AM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Lu, Wenzhuo
> <wenzhuo.lu@intel.com>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with
> SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  drivers/net/ixgbe/base/README | 34 +++-------------------------------
>  1 file changed, 3 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/net/ixgbe/base/README
> b/drivers/net/ixgbe/base/README index 431be0260..b6b420e2f 100644
> --- a/drivers/net/ixgbe/base/README
> +++ b/drivers/net/ixgbe/base/README
> @@ -1,34 +1,6 @@
> -..
> -     BSD LICENSE
> -
> -     Copyright(c) 2010-2018 Intel Corporation. All rights reserved.
> -     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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2010-2018 Intel Corporation  */

The year should be 2019

> 
>  Intel® IXGBE driver
>  ===================
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v1 03/11] net/e1000: replace license text with SPDX tag
  2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 03/11] net/e1000: " Xiaolong Ye
@ 2019-07-29 21:02   ` Stillwell Jr, Paul M
  0 siblings, 0 replies; 48+ messages in thread
From: Stillwell Jr, Paul M @ 2019-07-29 21:02 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh, Lu, Wenzhuo; +Cc: dev, Ye, Xiaolong

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
> Sent: Friday, July 26, 2019 2:30 AM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Lu, Wenzhuo
> <wenzhuo.lu@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [dpdk-dev] [PATCH v1 03/11] net/e1000: replace license text with
> SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  drivers/net/e1000/base/README | 34 +++-------------------------------
>  1 file changed, 3 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/net/e1000/base/README
> b/drivers/net/e1000/base/README index de1ae4cf7..56738d001 100644
> --- a/drivers/net/e1000/base/README
> +++ b/drivers/net/e1000/base/README
> @@ -1,34 +1,6 @@
> -..
> -     BSD LICENSE
> -
> -     Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
> -     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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2010-2016 Intel Corporation  */

The year should be 2019

> 
>  This directory contains source code of FreeBSD em & igb drivers of version
>  cid-shared-code.2016.11.22 released by ND. The sub-directory of base/
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v2 02/11] net/i40e: replace license text with SPDX tag
  2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 02/11] net/i40e: " Xiaolong Ye
@ 2019-07-29 21:03     ` Stillwell Jr, Paul M
  0 siblings, 0 replies; 48+ messages in thread
From: Stillwell Jr, Paul M @ 2019-07-29 21:03 UTC (permalink / raw)
  To: Ye, Xiaolong, Yigit, Ferruh, Xing, Beilei, Zhang, Qi Z; +Cc: dev, Ye, Xiaolong

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Xiaolong Ye
> Sent: Friday, July 26, 2019 9:44 AM
> To: Yigit, Ferruh <ferruh.yigit@intel.com>; Xing, Beilei
> <beilei.xing@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>
> Cc: dev@dpdk.org; Ye, Xiaolong <xiaolong.ye@intel.com>
> Subject: [dpdk-dev] [PATCH v2 02/11] net/i40e: replace license text with
> SPDX tag
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  drivers/net/i40e/base/README | 34 +++-------------------------------
>  1 file changed, 3 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README
> index 84f191fad..8a5339cff 100644
> --- a/drivers/net/i40e/base/README
> +++ b/drivers/net/i40e/base/README
> @@ -1,34 +1,6 @@
> -..
> -     BSD LICENSE
> -
> -     Copyright(c) 2017 Intel Corporation. All rights reserved.
> -     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 ADVISED OF THE POSSIBILITY OF SUCH
> DAMAGE.
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright(c) 2017 Intel Corporation

The year should be 2019

> + */
> 
>  Intel® I40E driver
>  ==================
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v2 09/11] port: replace license text with SPDX tag
  2019-07-29 11:15     ` Ferruh Yigit
@ 2019-09-30 16:05       ` Yigit, Ferruh
  2019-11-28  1:28         ` Thomas Monjalon
  0 siblings, 1 reply; 48+ messages in thread
From: Yigit, Ferruh @ 2019-09-30 16:05 UTC (permalink / raw)
  To: Ferruh Yigit, Ethan Zhuang; +Cc: Xiaolong Ye, Cristian Dumitrescu, dev

On 7/29/2019 12:15 PM, Ferruh Yigit wrote:
> On 7/26/2019 5:43 PM, Xiaolong Ye wrote:
>> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
>> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> 
> Hi Ethan,
> 
> Can you please check this patch, this is switching license representation (not
> license itself) to SPDX tags, as a copyright owner, the change requires ack.
> 
> Thanks,
> ferruh
> 

Carrying Ethan's private response to the mail list:

"
Sorry for the late response!
I confirm this change.
"

And converting it to an explicit ack J:
Acked-by: Ethan Zhuang <zhuangwj@gmail.com>

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

* Re: [dpdk-dev] [PATCH v2 09/11] port: replace license text with SPDX tag
  2019-09-30 16:05       ` Yigit, Ferruh
@ 2019-11-28  1:28         ` Thomas Monjalon
  0 siblings, 0 replies; 48+ messages in thread
From: Thomas Monjalon @ 2019-11-28  1:28 UTC (permalink / raw)
  To: Ethan Zhuang, Xiaolong Ye
  Cc: dev, Yigit, Ferruh, Ferruh Yigit, Cristian Dumitrescu

30/09/2019 18:05, Yigit, Ferruh:
> On 7/29/2019 12:15 PM, Ferruh Yigit wrote:
> > On 7/26/2019 5:43 PM, Xiaolong Ye wrote:
> >> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> >> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> > 
> > Hi Ethan,
> > 
> > Can you please check this patch, this is switching license representation (not
> > license itself) to SPDX tags, as a copyright owner, the change requires ack.
> > 
> > Thanks,
> > ferruh
> > 
> 
> Carrying Ethan's private response to the mail list:
> 
> "
> Sorry for the late response!
> I confirm this change.
> "
> 
> And converting it to an explicit ack J:
> Acked-by: Ethan Zhuang <zhuangwj@gmail.com>

Applied, thanks




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

end of thread, other threads:[~2019-11-28  1:28 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-26  9:29 [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
2019-07-29 21:01   ` Stillwell Jr, Paul M
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 02/11] net/i40e: " Xiaolong Ye
2019-07-29 20:59   ` Stillwell Jr, Paul M
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 03/11] net/e1000: " Xiaolong Ye
2019-07-29 21:02   ` Stillwell Jr, Paul M
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 04/11] net/vmxnet3: " Xiaolong Ye
2019-07-26 10:11   ` Ferruh Yigit
2019-07-26 13:28     ` Ye Xiaolong
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 05/11] examples/qos_sched: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 06/11] app/test-eventdev: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 07/11] ethdev: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 08/11] lpm: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 09/11] port: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 10/11] hash: " Xiaolong Ye
2019-07-26  9:29 ` [dpdk-dev] [PATCH v1 11/11] eal: " Xiaolong Ye
2019-07-26 10:15   ` Ferruh Yigit
2019-07-26 10:16     ` Bruce Richardson
2019-07-26  9:43 ` [dpdk-dev] [PATCH v1 00/11] add SPDX tags to files with Intel copyright Bruce Richardson
2019-07-26 16:43 ` [dpdk-dev] [PATCH v2 " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 01/11] net/ixgbe: replace license text with SPDX tag Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 02/11] net/i40e: " Xiaolong Ye
2019-07-29 21:03     ` Stillwell Jr, Paul M
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 03/11] net/e1000: " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 04/11] net/vmxnet3: " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 05/11] examples/qos_sched: " Xiaolong Ye
2019-07-26 18:10     ` Dumitrescu, Cristian
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 06/11] app/test-eventdev: " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 07/11] ethdev: " Xiaolong Ye
2019-07-26 18:11     ` Dumitrescu, Cristian
2019-07-29 11:14     ` Ferruh Yigit
2019-07-29 11:26     ` Hemant Agrawal
2019-07-29 13:04     ` Jerin Jacob Kollanukkaran
2019-07-29 13:32       ` Ferruh Yigit
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 08/11] lpm: " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 09/11] port: " Xiaolong Ye
2019-07-26 18:11     ` Dumitrescu, Cristian
2019-07-29 11:15     ` Ferruh Yigit
2019-09-30 16:05       ` Yigit, Ferruh
2019-11-28  1:28         ` Thomas Monjalon
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 10/11] hash: " Xiaolong Ye
2019-07-26 16:43   ` [dpdk-dev] [PATCH v2 11/11] eal: " Xiaolong Ye
2019-07-29  7:12   ` [dpdk-dev] [PATCH v2 00/11] add SPDX tags to files with Intel copyright Hemant Agrawal
2019-07-29  7:27     ` Ye Xiaolong
2019-07-29  7:28     ` Hemant Agrawal
2019-07-29  7:37       ` Ye Xiaolong
2019-07-29 12:17   ` Ferruh Yigit

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).