blob: d6a0b3086b9065e229020b4bdce0a7fc9b8ddc92 (
plain)
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
|
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2021 Facebook */
#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
extern const int bpf_testmod_ksym_percpu __ksym;
int out_mod_ksym_global = 0;
bool triggered = false;
SEC("raw_tp/sys_enter")
int handler(const void *ctx)
{
int *val;
__u32 cpu;
val = (int *)bpf_this_cpu_ptr(&bpf_testmod_ksym_percpu);
out_mod_ksym_global = *val;
triggered = true;
return 0;
}
char LICENSE[] SEC("license") = "GPL";
|