usb: typec: altmodes: displayport: Supply missing displayport.h include file
[linux/fpc-iii.git] / samples / bpf / test_overhead_raw_tp_kern.c
blob8763181a32f37a419dfe6a530acf7a9e308c080d
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018 Facebook */
3 #include <uapi/linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
6 SEC("raw_tracepoint/task_rename")
7 int prog(struct bpf_raw_tracepoint_args *ctx)
9 return 0;
12 SEC("raw_tracepoint/urandom_read")
13 int prog2(struct bpf_raw_tracepoint_args *ctx)
15 return 0;
17 char _license[] SEC("license") = "GPL";