On Mon, Aug 12, 2024 at 11:45 AM Neill Kapron <nkapron@xxxxxxxxxx> 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@xxxxxxxxxx> > > Signed-off-by: Alan Maguire <alan.maguire@xxxxxxxxxx> > > --- > > 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