aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/test_overhead.c
blob: ef06b2693f96225ead0bed4485e0fe10d81429ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2019 Facebook */
#include <linux/bpf.h>
#include "bpf_helpers.h"
#include "bpf_tracing.h"

SEC("kprobe/__set_task_comm")
int prog1(struct pt_regs *ctx)
{
	return 0;
}

SEC("kretprobe/__set_task_comm")
int prog2(struct pt_regs *ctx)
{
	return 0;
}

SEC("raw_tp/task_rename")
int prog3(struct bpf_raw_tracepoint_args *ctx)
{
	return 0;
}

struct __set_task_comm_args {
	struct task_struct *tsk;
	const char *buf;
	ku8 exec;
};

SEC("fentry/__set_task_comm")
int prog4(struct __set_task_comm_args *ctx)
{
	return 0;
}

SEC("fexit/__set_task_comm")
int prog5(struct __set_task_comm_args *ctx)
{
	return 0;
}

char _license[] SEC("license") = "GPL";