aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bpf/bpftool/skeleton/profiler.bpf.c
diff options
context:
space:
mode:
authorAndrii Nakryiko <andriin@fb.com>2020-06-19 15:20:24 -0700
committerDaniel Borkmann <daniel@iogearbox.net>2020-06-20 00:27:19 +0200
commitbb8dc2695a7db4f35c1de94d212f86229bb4a5d2 (patch)
tree4d06e720c35c164566231e1c74966bd796b8834e /tools/bpf/bpftool/skeleton/profiler.bpf.c
parenttools/bpf: Add verifier tests for 32bit pointer/scalar arithmetic (diff)
downloadlinux-dev-bb8dc2695a7db4f35c1de94d212f86229bb4a5d2.tar.xz
linux-dev-bb8dc2695a7db4f35c1de94d212f86229bb4a5d2.zip
tools/bpftool: Relicense bpftool's BPF profiler prog as dual-license GPL/BSD
Relicense it to be compatible with the rest of bpftool files. Suggested-by: Quentin Monnet <quentin@isovalent.com> Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20200619222024.519774-1-andriin@fb.com
Diffstat (limited to '')
-rw-r--r--tools/bpf/bpftool/skeleton/profiler.bpf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bpf/bpftool/skeleton/profiler.bpf.c b/tools/bpf/bpftool/skeleton/profiler.bpf.c
index 20034c12f7c5..c9d196ddb670 100644
--- a/tools/bpf/bpftool/skeleton/profiler.bpf.c
+++ b/tools/bpf/bpftool/skeleton/profiler.bpf.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
// Copyright (c) 2020 Facebook
#include "profiler.h"
#include <linux/bpf.h>
@@ -116,4 +116,4 @@ int BPF_PROG(fexit_XXX)
return 0;
}
-char LICENSE[] SEC("license") = "GPL";
+char LICENSE[] SEC("license") = "Dual BSD/GPL";