1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018 Facebook */
4 #include <bpf/bpf_helpers.h>
6 SEC("raw_tracepoint/task_rename")
7 int prog(struct bpf_raw_tracepoint_args *ctx)
12 SEC("raw_tracepoint/fib_table_lookup")
13 int prog2(struct bpf_raw_tracepoint_args *ctx)
17 char _license[] SEC("license") = "GPL";