15 lines
319 B
C
15 lines
319 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/bpf.h>
|
|
#include <bpf/bpf_helpers.h>
|
|
#include <bpf/bpf_tracing.h>
|
|
|
|
volatile __u64 test_fmod_ret = 0;
|
|
SEC("fmod_ret/security_new_get_constant")
|
|
int BPF_PROG(fmod_ret_test, long val, int ret)
|
|
{
|
|
test_fmod_ret = 1;
|
|
return 120;
|
|
}
|
|
|
|
char _license[] SEC("license") = "GPL";
|