1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: GPL-2.0

#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
#include <bpf/usdt.bpf.h>

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

int count;

SEC("usdt")
int usdt0(struct pt_regs *ctx)
{
	count++;
	return 0;
}
当你的天空 突然 下起了大雨 那是我 在为你 炸乌云