aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/examples/bpf/empty.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2018-05-04 12:23:29 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-05-15 14:31:23 -0300
commitdd8e4ead6e983acea959d10252688ef1471106fe (patch)
treed5bd2697f2da73fe19477a08694cf0148ab0db52 /tools/perf/examples/bpf/empty.c
parentperf bpf: Add 'examples' directories (diff)
downloadlinux-dev-dd8e4ead6e983acea959d10252688ef1471106fe.tar.xz
linux-dev-dd8e4ead6e983acea959d10252688ef1471106fe.zip
perf bpf: Add bpf.h to be used in eBPF proggies
So, the first helper is the one shortening a variable/function section attribute, from, for instance: char _license[] __attribute__((section("license"), used)) = "GPL"; to: char _license[] SEC("license") = "GPL"; Convert empty.c to that and it becomes: # cat ~acme/lib/examples/perf/bpf/empty.c #include <bpf.h> char _license[] SEC("license") = "GPL"; int _version SEC("version") = LINUX_VERSION_CODE; # Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-zmeg52dlvy51rdlhyumfl5yf@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/examples/bpf/empty.c')
-rw-r--r--tools/perf/examples/bpf/empty.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/examples/bpf/empty.c b/tools/perf/examples/bpf/empty.c
index 78754df53ac1..86f97763355d 100644
--- a/tools/perf/examples/bpf/empty.c
+++ b/tools/perf/examples/bpf/empty.c
@@ -1,2 +1,4 @@
-char _license[] __attribute__((section("license"), used)) = "GPL";
-int _version __attribute__((section("version"), used)) = LINUX_VERSION_CODE;
+#include <bpf.h>
+
+char _license[] SEC("license") = "GPL";
+int _version SEC("version") = LINUX_VERSION_CODE;