DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag
@ 2019-09-27  9:04 Hemant Agrawal
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
                   ` (5 more replies)
  0 siblings, 6 replies; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: Gowrishankar Muthukrishnan, Hemant Agrawal

Cc: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 lib/librte_eal/common/arch/ppc_64/rte_cycles.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/librte_eal/common/arch/ppc_64/rte_cycles.c b/lib/librte_eal/common/arch/ppc_64/rte_cycles.c
index 851fd0255..c96a2143b 100644
--- a/lib/librte_eal/common/arch/ppc_64/rte_cycles.c
+++ b/lib/librte_eal/common/arch/ppc_64/rte_cycles.c
@@ -1,3 +1,7 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (C) IBM Corporation 2019.
+ */
+
 #include "eal_private.h"
 
 uint64_t
-- 
2.17.1


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

* [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
@ 2019-09-27  9:04 ` Hemant Agrawal
  2019-11-07  9:12   ` [dpdk-dev] FW: " Hemant Agrawal
  2019-11-07 10:54   ` [dpdk-dev] " Andrew Rybchenko
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] examples/netmap_compat: replace license text with SPDX tag Hemant Agrawal
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: gdawar, Hemant Agrawal

Cc: gdawar@solarflare.com

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 drivers/net/sfc/base/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/sfc/base/meson.build b/drivers/net/sfc/base/meson.build
index 6c8030582..074112f16 100644
--- a/drivers/net/sfc/base/meson.build
+++ b/drivers/net/sfc/base/meson.build
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: BSD-3-Clause
 # Copyright (c) 2016-2018 Solarflare Communications Inc.
 # All rights reserved.
 #
-- 
2.17.1


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

* [dpdk-dev] [PATCH] examples/netmap_compat: replace license text with SPDX tag
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
@ 2019-09-27  9:04 ` Hemant Agrawal
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic Hemant Agrawal
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: bruce.richardson, Hemant Agrawal

Cc: bruce.richardson@intel.com

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 examples/netmap_compat/netmap/netmap.h      | 30 +--------------------
 examples/netmap_compat/netmap/netmap_user.h | 30 +--------------------
 2 files changed, 2 insertions(+), 58 deletions(-)

diff --git a/examples/netmap_compat/netmap/netmap.h b/examples/netmap_compat/netmap/netmap.h
index 677c8a9fb..c2cfdd512 100644
--- a/examples/netmap_compat/netmap/netmap.h
+++ b/examples/netmap_compat/netmap/netmap.h
@@ -1,33 +1,5 @@
-/*
+/* SPDX-License-Identifier: BSD-3-Clause
  * Copyright (C) 2011 Matteo Landi, Luigi Rizzo. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *   1. Redistributions of source code must retain the above copyright
- *      notice, this list of conditions and the following disclaimer.
- *
- *   2. 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.
- *
- *   3. Neither the name of the authors nor the names of their contributors
- *      may be used to endorse or promote products derived from this
- *      software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY MATTEO LANDI 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 MATTEO LANDI 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.
  */
 
 /*
diff --git a/examples/netmap_compat/netmap/netmap_user.h b/examples/netmap_compat/netmap/netmap_user.h
index f369592e3..6b3a4f1ce 100644
--- a/examples/netmap_compat/netmap/netmap_user.h
+++ b/examples/netmap_compat/netmap/netmap_user.h
@@ -1,33 +1,5 @@
-/*
+/* SPDX-License-Identifier: BSD-3-Clause
  * Copyright (C) 2011 Matteo Landi, Luigi Rizzo. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *   1. Redistributions of source code must retain the above copyright
- *      notice, this list of conditions and the following disclaimer.
- *
- *   2. 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.
- *
- *   3. Neither the name of the authors nor the names of their contributors
- *      may be used to endorse or promote products derived from this
- *      software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY MATTEO LANDI 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 MATTEO LANDI 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.
  */
 
 /*
-- 
2.17.1


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

* [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] examples/netmap_compat: replace license text with SPDX tag Hemant Agrawal
@ 2019-09-27  9:04 ` Hemant Agrawal
  2019-10-11 13:10   ` Ed Czeck
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic Hemant Agrawal
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: Ed Czeck, John Miller, Hemant Agrawal

Cc: Ed Czeck <ed.czeck@atomicrules.com>
Cc: John Miller <john.miller@atomicrules.com>

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 doc/guides/nics/ark.rst | 29 +----------------------------
 1 file changed, 1 insertion(+), 28 deletions(-)

diff --git a/doc/guides/nics/ark.rst b/doc/guides/nics/ark.rst
index 6c135eeba..06e8c3374 100644
--- a/doc/guides/nics/ark.rst
+++ b/doc/guides/nics/ark.rst
@@ -1,34 +1,7 @@
-.. BSD LICENSE
-
+.. SPDX-License-Identifier: BSD-3-Clause
     Copyright (c) 2015-2017 Atomic Rules LLC
     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 Atomic Rules LLC 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.
-
 ARK Poll Mode Driver
 ====================
 
-- 
2.17.1


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

* [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
                   ` (2 preceding siblings ...)
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic Hemant Agrawal
@ 2019-09-27  9:04 ` Hemant Agrawal
  2019-09-27 11:00   ` Legacy, Allain
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic Hemant Agrawal
  2019-09-27 23:45 ` [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag David Christensen
  5 siblings, 1 reply; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: Allain Legacy, Matt Peters, Hemant Agrawal

Cc: Allain Legacy <allain.legacy@windriver.com>
Cc: Matt Peters <matt.peters@windriver.com>

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 doc/guides/nics/avp.rst | 28 +---------------------------
 1 file changed, 1 insertion(+), 27 deletions(-)

diff --git a/doc/guides/nics/avp.rst b/doc/guides/nics/avp.rst
index 1fcba66ce..b724d97dd 100644
--- a/doc/guides/nics/avp.rst
+++ b/doc/guides/nics/avp.rst
@@ -1,33 +1,7 @@
-..  BSD LICENSE
+..  SPDX-License-Identifier: BSD-3-Clause
     Copyright(c) 2017 Wind River Systems, Inc. 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.
-
 AVP Poll Mode Driver
 =================================================================
 
-- 
2.17.1


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

* [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
                   ` (3 preceding siblings ...)
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic Hemant Agrawal
@ 2019-09-27  9:04 ` Hemant Agrawal
  2019-11-06 13:19   ` Alejandro Lucero
  2019-09-27 23:45 ` [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag David Christensen
  5 siblings, 1 reply; 17+ messages in thread
From: Hemant Agrawal @ 2019-09-27  9:04 UTC (permalink / raw)
  To: dev; +Cc: Alejandro Lucero, Hemant Agrawal

Cc: Alejandro Lucero <alejandro.lucero@netronome.com>

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 doc/guides/nics/nfp.rst | 28 +---------------------------
 1 file changed, 1 insertion(+), 27 deletions(-)

diff --git a/doc/guides/nics/nfp.rst b/doc/guides/nics/nfp.rst
index 309fa5d39..5f2a0698f 100644
--- a/doc/guides/nics/nfp.rst
+++ b/doc/guides/nics/nfp.rst
@@ -1,33 +1,7 @@
-..  BSD LICENSE
+..  SPDX-License-Identifier: BSD-3-Clause
     Copyright(c) 2015-2017 Netronome Systems, 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.
-
 NFP poll mode driver library
 ============================
 
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic Hemant Agrawal
@ 2019-09-27 11:00   ` Legacy, Allain
  2019-10-14  9:27     ` Ferruh Yigit
  0 siblings, 1 reply; 17+ messages in thread
From: Legacy, Allain @ 2019-09-27 11:00 UTC (permalink / raw)
  To: Hemant Agrawal, dev; +Cc: Peters, Matt

> -----Original Message-----
> From: Hemant Agrawal [mailto:hemant.agrawal@nxp.com]
> Sent: Friday, September 27, 2019 5:05 AM
> To: dev@dpdk.org
> Cc: Legacy, Allain; Peters, Matt; Hemant Agrawal
> Subject: [PATCH] doc: replace license text with SPDX tag for AVP nic
> 
> Cc: Allain Legacy <allain.legacy@windriver.com>
> Cc: Matt Peters <matt.peters@windriver.com>
> 
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  doc/guides/nics/avp.rst | 28 +---------------------------
>  1 file changed, 1 insertion(+), 27 deletions(-)
> 
Acked-by: Allain Legacy <allain.legacy@windriver.com>

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

* Re: [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag
  2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
                   ` (4 preceding siblings ...)
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic Hemant Agrawal
@ 2019-09-27 23:45 ` David Christensen
  2019-10-17  5:01   ` David Marchand
  5 siblings, 1 reply; 17+ messages in thread
From: David Christensen @ 2019-09-27 23:45 UTC (permalink / raw)
  To: dev

> Cc: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>
> 
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>   lib/librte_eal/common/arch/ppc_64/rte_cycles.c | 4 ++++
>   1 file changed, 4 insertions(+)

Reviewed-by: David Christensen <drc@linux.vnet.ibm.com>

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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic Hemant Agrawal
@ 2019-10-11 13:10   ` Ed Czeck
  2019-10-14  9:26     ` Ferruh Yigit
  0 siblings, 1 reply; 17+ messages in thread
From: Ed Czeck @ 2019-10-11 13:10 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: dev, John Miller, Ferruh Yigit

Thanks.    Do not hesitate to message me directly about needed ACKs.

Acked-by: Ed Czeck <ed.czeck@atomicrules.com>

On Fri, Sep 27, 2019 at 5:06 AM Hemant Agrawal <hemant.agrawal@nxp.com>
wrote:

> Cc: Ed Czeck <ed.czeck@atomicrules.com>
> Cc: John Miller <john.miller@atomicrules.com>
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  doc/guides/nics/ark.rst | 29 +----------------------------
>  1 file changed, 1 insertion(+), 28 deletions(-)
>
> diff --git a/doc/guides/nics/ark.rst b/doc/guides/nics/ark.rst
> index 6c135eeba..06e8c3374 100644
> --- a/doc/guides/nics/ark.rst
> +++ b/doc/guides/nics/ark.rst
> @@ -1,34 +1,7 @@
> -.. BSD LICENSE
> -
> +.. SPDX-License-Identifier: BSD-3-Clause
>      Copyright (c) 2015-2017 Atomic Rules LLC
>      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 Atomic Rules LLC 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.
> -
>  ARK Poll Mode Driver
>  ====================
>
> --
> 2.17.1
>
>

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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic
  2019-10-11 13:10   ` Ed Czeck
@ 2019-10-14  9:26     ` Ferruh Yigit
  0 siblings, 0 replies; 17+ messages in thread
From: Ferruh Yigit @ 2019-10-14  9:26 UTC (permalink / raw)
  To: Ed Czeck, Hemant Agrawal; +Cc: dev, John Miller

On 10/11/2019 2:10 PM, Ed Czeck wrote:
> Thanks.    Do not hesitate to message me directly about needed ACKs.
> 
> Acked-by: Ed Czeck <ed.czeck@atomicrules.com>

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

> 
> On Fri, Sep 27, 2019 at 5:06 AM Hemant Agrawal <hemant.agrawal@nxp.com>
> wrote:
> 
>> Cc: Ed Czeck <ed.czeck@atomicrules.com>
>> Cc: John Miller <john.miller@atomicrules.com>
>>
>> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>

<...>


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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic
  2019-09-27 11:00   ` Legacy, Allain
@ 2019-10-14  9:27     ` Ferruh Yigit
  0 siblings, 0 replies; 17+ messages in thread
From: Ferruh Yigit @ 2019-10-14  9:27 UTC (permalink / raw)
  To: Legacy, Allain, Hemant Agrawal, dev; +Cc: Peters, Matt

On 9/27/2019 12:00 PM, Legacy, Allain wrote:
>> -----Original Message-----
>> From: Hemant Agrawal [mailto:hemant.agrawal@nxp.com]
>> Sent: Friday, September 27, 2019 5:05 AM
>> To: dev@dpdk.org
>> Cc: Legacy, Allain; Peters, Matt; Hemant Agrawal
>> Subject: [PATCH] doc: replace license text with SPDX tag for AVP nic
>>
>> Cc: Allain Legacy <allain.legacy@windriver.com>
>> Cc: Matt Peters <matt.peters@windriver.com>
>>
>> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
>> ---
>>  doc/guides/nics/avp.rst | 28 +---------------------------
>>  1 file changed, 1 insertion(+), 27 deletions(-)
>>
> Acked-by: Allain Legacy <allain.legacy@windriver.com>
> 

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

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

* Re: [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag
  2019-09-27 23:45 ` [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag David Christensen
@ 2019-10-17  5:01   ` David Marchand
  0 siblings, 0 replies; 17+ messages in thread
From: David Marchand @ 2019-10-17  5:01 UTC (permalink / raw)
  To: David Christensen; +Cc: dev

On Sat, Sep 28, 2019 at 1:45 AM David Christensen
<drc@linux.vnet.ibm.com> wrote:
>
> > Cc: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>
> >
> > Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> > ---
> >   lib/librte_eal/common/arch/ppc_64/rte_cycles.c | 4 ++++
> >   1 file changed, 4 insertions(+)
>
> Reviewed-by: David Christensen <drc@linux.vnet.ibm.com>

As discussed offlist, changed this to an ack.

Applied, thanks.



--
David Marchand


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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic Hemant Agrawal
@ 2019-11-06 13:19   ` Alejandro Lucero
  2019-11-06 14:04     ` Ferruh Yigit
  0 siblings, 1 reply; 17+ messages in thread
From: Alejandro Lucero @ 2019-11-06 13:19 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: dev

On Fri, Sep 27, 2019 at 10:06 AM Hemant Agrawal <hemant.agrawal@nxp.com>
wrote:

> Cc: Alejandro Lucero <alejandro.lucero@netronome.com>
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  doc/guides/nics/nfp.rst | 28 +---------------------------
>  1 file changed, 1 insertion(+), 27 deletions(-)
>
> diff --git a/doc/guides/nics/nfp.rst b/doc/guides/nics/nfp.rst
> index 309fa5d39..5f2a0698f 100644
> --- a/doc/guides/nics/nfp.rst
> +++ b/doc/guides/nics/nfp.rst
> @@ -1,33 +1,7 @@
> -..  BSD LICENSE
> +..  SPDX-License-Identifier: BSD-3-Clause
>      Copyright(c) 2015-2017 Netronome Systems, 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.
> -
>  NFP poll mode driver library
>  ============================
>
> --
> 2.17.1
>
>
Acked-by: Alejandro Lucero <alejandro.lucero@netronome.com>

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

* Re: [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic
  2019-11-06 13:19   ` Alejandro Lucero
@ 2019-11-06 14:04     ` Ferruh Yigit
  0 siblings, 0 replies; 17+ messages in thread
From: Ferruh Yigit @ 2019-11-06 14:04 UTC (permalink / raw)
  To: Alejandro Lucero, Hemant Agrawal; +Cc: dev

On 11/6/2019 1:19 PM, Alejandro Lucero wrote:
> On Fri, Sep 27, 2019 at 10:06 AM Hemant Agrawal <hemant.agrawal@nxp.com>
> wrote:
> 
>> Cc: Alejandro Lucero <alejandro.lucero@netronome.com>
>>
>> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
>> ---
>>  doc/guides/nics/nfp.rst | 28 +---------------------------
>>  1 file changed, 1 insertion(+), 27 deletions(-)
>>
>> diff --git a/doc/guides/nics/nfp.rst b/doc/guides/nics/nfp.rst
>> index 309fa5d39..5f2a0698f 100644
>> --- a/doc/guides/nics/nfp.rst
>> +++ b/doc/guides/nics/nfp.rst
>> @@ -1,33 +1,7 @@
>> -..  BSD LICENSE
>> +..  SPDX-License-Identifier: BSD-3-Clause
>>      Copyright(c) 2015-2017 Netronome Systems, 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.
>> -
>>  NFP poll mode driver library
>>  ============================
>>
>> --
>> 2.17.1
>>
>>
> Acked-by: Alejandro Lucero <alejandro.lucero@netronome.com>
> 

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

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

* [dpdk-dev] FW: [PATCH] net/sfc: add SPDX tag in meson build
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
@ 2019-11-07  9:12   ` Hemant Agrawal
  2019-11-07 10:54   ` [dpdk-dev] " Andrew Rybchenko
  1 sibling, 0 replies; 17+ messages in thread
From: Hemant Agrawal @ 2019-11-07  9:12 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: Ferruh Yigit, dev

Andrew, can you ack this patch from solarflare side? 

> -----Original Message-----
> From: Hemant Agrawal <hemant.agrawal@nxp.com>
> Sent: Friday, September 27, 2019 2:34 PM
> To: dev@dpdk.org
> Cc: gdawar@solarflare.com; Hemant Agrawal <hemant.agrawal@nxp.com>
> Subject: [PATCH] net/sfc: add SPDX tag in meson build
> Importance: High
> 
> Cc: gdawar@solarflare.com
> 
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  drivers/net/sfc/base/meson.build | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/sfc/base/meson.build
> b/drivers/net/sfc/base/meson.build
> index 6c8030582..074112f16 100644
> --- a/drivers/net/sfc/base/meson.build
> +++ b/drivers/net/sfc/base/meson.build
> @@ -1,3 +1,4 @@
> +# SPDX-License-Identifier: BSD-3-Clause
>  # Copyright (c) 2016-2018 Solarflare Communications Inc.
>  # All rights reserved.
>  #
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build
  2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
  2019-11-07  9:12   ` [dpdk-dev] FW: " Hemant Agrawal
@ 2019-11-07 10:54   ` Andrew Rybchenko
  2019-11-07 15:32     ` Ferruh Yigit
  1 sibling, 1 reply; 17+ messages in thread
From: Andrew Rybchenko @ 2019-11-07 10:54 UTC (permalink / raw)
  To: Hemant Agrawal, dev; +Cc: gdawar

On 9/27/19 12:04 PM, Hemant Agrawal wrote:
> Cc: gdawar@solarflare.com
>
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  drivers/net/sfc/base/meson.build | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/sfc/base/meson.build b/drivers/net/sfc/base/meson.build
> index 6c8030582..074112f16 100644
> --- a/drivers/net/sfc/base/meson.build
> +++ b/drivers/net/sfc/base/meson.build
> @@ -1,3 +1,4 @@
> +# SPDX-License-Identifier: BSD-3-Clause
>  # Copyright (c) 2016-2018 Solarflare Communications Inc.
>  # All rights reserved.
>  #

Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>


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

* Re: [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build
  2019-11-07 10:54   ` [dpdk-dev] " Andrew Rybchenko
@ 2019-11-07 15:32     ` Ferruh Yigit
  0 siblings, 0 replies; 17+ messages in thread
From: Ferruh Yigit @ 2019-11-07 15:32 UTC (permalink / raw)
  To: Andrew Rybchenko, Hemant Agrawal, dev; +Cc: gdawar

On 11/7/2019 10:54 AM, Andrew Rybchenko wrote:
> On 9/27/19 12:04 PM, Hemant Agrawal wrote:
>> Cc: gdawar@solarflare.com
>>
>> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
>> ---
>>  drivers/net/sfc/base/meson.build | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/net/sfc/base/meson.build b/drivers/net/sfc/base/meson.build
>> index 6c8030582..074112f16 100644
>> --- a/drivers/net/sfc/base/meson.build
>> +++ b/drivers/net/sfc/base/meson.build
>> @@ -1,3 +1,4 @@
>> +# SPDX-License-Identifier: BSD-3-Clause
>>  # Copyright (c) 2016-2018 Solarflare Communications Inc.
>>  # All rights reserved.
>>  #
> 
> Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
> 

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

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

end of thread, other threads:[~2019-11-07 15:32 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-27  9:04 [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag Hemant Agrawal
2019-09-27  9:04 ` [dpdk-dev] [PATCH] net/sfc: add SPDX tag in meson build Hemant Agrawal
2019-11-07  9:12   ` [dpdk-dev] FW: " Hemant Agrawal
2019-11-07 10:54   ` [dpdk-dev] " Andrew Rybchenko
2019-11-07 15:32     ` Ferruh Yigit
2019-09-27  9:04 ` [dpdk-dev] [PATCH] examples/netmap_compat: replace license text with SPDX tag Hemant Agrawal
2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag in ARK nic Hemant Agrawal
2019-10-11 13:10   ` Ed Czeck
2019-10-14  9:26     ` Ferruh Yigit
2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for AVP nic Hemant Agrawal
2019-09-27 11:00   ` Legacy, Allain
2019-10-14  9:27     ` Ferruh Yigit
2019-09-27  9:04 ` [dpdk-dev] [PATCH] doc: replace license text with SPDX tag for NFP nic Hemant Agrawal
2019-11-06 13:19   ` Alejandro Lucero
2019-11-06 14:04     ` Ferruh Yigit
2019-09-27 23:45 ` [dpdk-dev] [PATCH] eal/ppc_64: add SPDX license tag David Christensen
2019-10-17  5:01   ` David Marchand

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