diff options
author | Alan Maguire <[email protected]> | 2024-08-10 10:35:04 +0100 |
---|---|---|
committer | Andrii Nakryiko <[email protected]> | 2024-08-12 13:18:25 -0700 |
commit | 4a4c013d3385b0db85dc361203dc42ff048b6fd6 (patch) | |
tree | 656177167d9e68ee1f889a5e755f6813bdfa6034 | |
parent | f63ea3e075620f35fa87ccfe821d4d0273df0456 (diff) |
libbpf: Fix license for btf_relocate.c
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 <[email protected]>
Signed-off-by: Alan Maguire <[email protected]>
Signed-off-by: Andrii Nakryiko <[email protected]>
Acked-by: Yonghong Song <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r-- | tools/lib/bpf/btf_relocate.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |