Merge tag 'usb-4.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux-2.6/btrfs-unstable.git] / samples / bpf / test_overhead_raw_tp_kern.c
blobd2af8bc1c8051bfa4600f8821c4b7dd804a89c6b
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018 Facebook */
3 #include <uapi/linux/bpf.h>
4 #include "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";