* [PATCH bpf-next] libbpf: fix license for btf_relocate.c
@ 2024-08-10 9:35 Alan Maguire
2024-08-12 18:45 ` Neill Kapron
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Alan Maguire @ 2024-08-10 9:35 UTC (permalink / raw)
To: andrii
Cc: ast, daniel, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf, Alan Maguire,
Neill Kapron
License should be
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
...as with other libbpf files.
Fixes: 19e00c897d50 ("libbpf: Split BTF relocation")
Reported-by: Neill Kapron <nkapron@google.com>
Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
---
tools/lib/bpf/btf_relocate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/lib/bpf/btf_relocate.c b/tools/lib/bpf/btf_relocate.c
index 17f8b32f94a0..4f7399d85eab 100644
--- a/tools/lib/bpf/btf_relocate.c
+++ b/tools/lib/bpf/btf_relocate.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
/* Copyright (c) 2024, Oracle and/or its affiliates. */
#ifndef _GNU_SOURCE
--
2.43.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH bpf-next] libbpf: fix license for btf_relocate.c
2024-08-10 9:35 [PATCH bpf-next] libbpf: fix license for btf_relocate.c Alan Maguire
@ 2024-08-12 18:45 ` Neill Kapron
2024-08-12 20:57 ` Andrii Nakryiko
2024-08-12 19:19 ` Yonghong Song
2024-08-12 21:00 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 5+ messages in thread
From: Neill Kapron @ 2024-08-12 18:45 UTC (permalink / raw)
To: Alan Maguire
Cc: andrii, ast, daniel, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf
On Sat, Aug 10, 2024 at 10:35:04AM +0100, Alan Maguire wrote:
> License should be
>
> // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
>
> ...as with other libbpf files.
>
> Fixes: 19e00c897d50 ("libbpf: Split BTF relocation")
> Reported-by: Neill Kapron <nkapron@google.com>
> Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
> ---
> tools/lib/bpf/btf_relocate.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/lib/bpf/btf_relocate.c b/tools/lib/bpf/btf_relocate.c
> index 17f8b32f94a0..4f7399d85eab 100644
> --- a/tools/lib/bpf/btf_relocate.c
> +++ b/tools/lib/bpf/btf_relocate.c
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0
> +// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
> /* Copyright (c) 2024, Oracle and/or its affiliates. */
>
> #ifndef _GNU_SOURCE
> --
> 2.43.5
>
Thanks Alan. Patch LGTM, but I'm not certain of the legal aspect of
relicencing, so will leave reviewed-by to others.
Neill
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH bpf-next] libbpf: fix license for btf_relocate.c
2024-08-10 9:35 [PATCH bpf-next] libbpf: fix license for btf_relocate.c Alan Maguire
2024-08-12 18:45 ` Neill Kapron
@ 2024-08-12 19:19 ` Yonghong Song
2024-08-12 21:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 5+ messages in thread
From: Yonghong Song @ 2024-08-12 19:19 UTC (permalink / raw)
To: Alan Maguire, andrii
Cc: ast, daniel, martin.lau, eddyz87, song, john.fastabend, kpsingh,
sdf, haoluo, jolsa, bpf, Neill Kapron
On 8/10/24 2:35 AM, Alan Maguire wrote:
> License should be
>
> // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
>
> ...as with other libbpf files.
>
> Fixes: 19e00c897d50 ("libbpf: Split BTF relocation")
> Reported-by: Neill Kapron <nkapron@google.com>
> Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH bpf-next] libbpf: fix license for btf_relocate.c
2024-08-12 18:45 ` Neill Kapron
@ 2024-08-12 20:57 ` Andrii Nakryiko
0 siblings, 0 replies; 5+ messages in thread
From: Andrii Nakryiko @ 2024-08-12 20:57 UTC (permalink / raw)
To: Neill Kapron
Cc: Alan Maguire, andrii, ast, daniel, martin.lau, eddyz87, song,
yonghong.song, john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf
On Mon, Aug 12, 2024 at 11:45 AM Neill Kapron <nkapron@google.com> wrote:
>
> On Sat, Aug 10, 2024 at 10:35:04AM +0100, Alan Maguire wrote:
> > License should be
> >
> > // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
> >
> > ...as with other libbpf files.
> >
> > Fixes: 19e00c897d50 ("libbpf: Split BTF relocation")
> > Reported-by: Neill Kapron <nkapron@google.com>
> > Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
> > ---
> > tools/lib/bpf/btf_relocate.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tools/lib/bpf/btf_relocate.c b/tools/lib/bpf/btf_relocate.c
> > index 17f8b32f94a0..4f7399d85eab 100644
> > --- a/tools/lib/bpf/btf_relocate.c
> > +++ b/tools/lib/bpf/btf_relocate.c
> > @@ -1,4 +1,4 @@
> > -// SPDX-License-Identifier: GPL-2.0
> > +// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
> > /* Copyright (c) 2024, Oracle and/or its affiliates. */
> >
> > #ifndef _GNU_SOURCE
> > --
> > 2.43.5
> >
>
> Thanks Alan. Patch LGTM, but I'm not certain of the legal aspect of
> relicencing, so will leave reviewed-by to others.
Given Alan is the sole person who contributed to this file, it's
enough to have his SOB to re-license. Applied to bpf-next, thanks.
>
> Neill
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH bpf-next] libbpf: fix license for btf_relocate.c
2024-08-10 9:35 [PATCH bpf-next] libbpf: fix license for btf_relocate.c Alan Maguire
2024-08-12 18:45 ` Neill Kapron
2024-08-12 19:19 ` Yonghong Song
@ 2024-08-12 21:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-08-12 21:00 UTC (permalink / raw)
To: Alan Maguire
Cc: andrii, ast, daniel, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf, nkapron
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko <andrii@kernel.org>:
On Sat, 10 Aug 2024 10:35:04 +0100 you wrote:
> License should be
>
> // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
>
> ...as with other libbpf files.
>
> Fixes: 19e00c897d50 ("libbpf: Split BTF relocation")
> Reported-by: Neill Kapron <nkapron@google.com>
> Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
>
> [...]
Here is the summary with links:
- [bpf-next] libbpf: fix license for btf_relocate.c
https://git.kernel.org/bpf/bpf-next/c/4a4c013d3385
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-12 21:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-10 9:35 [PATCH bpf-next] libbpf: fix license for btf_relocate.c Alan Maguire
2024-08-12 18:45 ` Neill Kapron
2024-08-12 20:57 ` Andrii Nakryiko
2024-08-12 19:19 ` Yonghong Song
2024-08-12 21:00 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox