patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] eal/windows: add missing SPDX license tag
@ 2021-02-27 20:32 Dmitry Kozlyuk
  2021-03-01 10:03 ` [dpdk-stable] [dpdk-dev] " Nick Connolly
  2021-03-01 18:20 ` Ranjit Menon
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Kozlyuk @ 2021-02-27 20:32 UTC (permalink / raw)
  To: dev; +Cc: Dmitry Kozlyuk, stable, Stephen Hemminger

Fixes: c08bd191b13d ("eal/windows: initialize hugepage info")
Cc: stable@dpdk.org

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

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


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

* Re: [dpdk-stable] [dpdk-dev] [PATCH] eal/windows: add missing SPDX license tag
  2021-02-27 20:32 [dpdk-stable] [PATCH] eal/windows: add missing SPDX license tag Dmitry Kozlyuk
@ 2021-03-01 10:03 ` Nick Connolly
  2021-03-01 18:20 ` Ranjit Menon
  1 sibling, 0 replies; 4+ messages in thread
From: Nick Connolly @ 2021-03-01 10:03 UTC (permalink / raw)
  To: Dmitry Kozlyuk, dev; +Cc: stable, Stephen Hemminger


> Fixes: c08bd191b13d ("eal/windows: initialize hugepage info")
> Cc: stable@dpdk.org
>
> Reported-by: Stephen Hemminger <stephen@networkplumber.org>
> Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
>
Acked-by: Nick Connolly <nick.connolly@mayadata.io>


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

* Re: [dpdk-stable] [dpdk-dev] [PATCH] eal/windows: add missing SPDX license tag
  2021-02-27 20:32 [dpdk-stable] [PATCH] eal/windows: add missing SPDX license tag Dmitry Kozlyuk
  2021-03-01 10:03 ` [dpdk-stable] [dpdk-dev] " Nick Connolly
@ 2021-03-01 18:20 ` Ranjit Menon
  2021-03-16 10:29   ` Thomas Monjalon
  1 sibling, 1 reply; 4+ messages in thread
From: Ranjit Menon @ 2021-03-01 18:20 UTC (permalink / raw)
  To: Dmitry Kozlyuk, dev; +Cc: stable, Stephen Hemminger

On 2/27/2021 12:32 PM, Dmitry Kozlyuk wrote:
> Fixes: c08bd191b13d ("eal/windows: initialize hugepage info")
> Cc: stable@dpdk.org
>
> Reported-by: Stephen Hemminger <stephen@networkplumber.org>
> Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> ---
>   lib/librte_eal/windows/eal_hugepages.c | 4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/lib/librte_eal/windows/eal_hugepages.c b/lib/librte_eal/windows/eal_hugepages.c
> index 44dae985e..83a3d0ffc 100644
> --- a/lib/librte_eal/windows/eal_hugepages.c
> +++ b/lib/librte_eal/windows/eal_hugepages.c
> @@ -1,3 +1,7 @@
> +/* SPDX-License-Identifier: BSD-3-Clause
> + * Copyright (c) 2020 Dmitry Kozlyuk
> + */
> +
>   #include <rte_errno.h>
>   #include <rte_log.h>
>   #include <rte_memory.h>
Acked-by: Ranjit Menon <ranjit.menon@intel.com>

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

* Re: [dpdk-stable] [dpdk-dev] [PATCH] eal/windows: add missing SPDX license tag
  2021-03-01 18:20 ` Ranjit Menon
@ 2021-03-16 10:29   ` Thomas Monjalon
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2021-03-16 10:29 UTC (permalink / raw)
  To: Dmitry Kozlyuk; +Cc: dev, stable, Stephen Hemminger, Ranjit Menon

01/03/2021 19:20, Ranjit Menon:
> On 2/27/2021 12:32 PM, Dmitry Kozlyuk wrote:
> > Fixes: c08bd191b13d ("eal/windows: initialize hugepage info")
> > Cc: stable@dpdk.org
> >
> > Reported-by: Stephen Hemminger <stephen@networkplumber.org>
> > Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> > ---
> > --- a/lib/librte_eal/windows/eal_hugepages.c
> > +++ b/lib/librte_eal/windows/eal_hugepages.c
> > @@ -1,3 +1,7 @@
> > +/* SPDX-License-Identifier: BSD-3-Clause
> > + * Copyright (c) 2020 Dmitry Kozlyuk
> > + */
> > +
> Acked-by: Ranjit Menon <ranjit.menon@intel.com>

Applied, thanks



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

end of thread, other threads:[~2021-03-16 10:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-27 20:32 [dpdk-stable] [PATCH] eal/windows: add missing SPDX license tag Dmitry Kozlyuk
2021-03-01 10:03 ` [dpdk-stable] [dpdk-dev] " Nick Connolly
2021-03-01 18:20 ` Ranjit Menon
2021-03-16 10:29   ` Thomas Monjalon

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