2018-05-25 02:21:56 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/version.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <uapi/linux/bpf.h>
|
2020-01-20 21:06:49 +08:00
|
|
|
#include <bpf/bpf_helpers.h>
|
2018-05-25 02:21:56 +08:00
|
|
|
|
2019-02-27 15:52:26 +08:00
|
|
|
SEC("kprobe/blk_mq_start_request")
|
2018-05-25 02:21:56 +08:00
|
|
|
int bpf_prog1(struct pt_regs *ctx)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-09-11 21:03:30 +08:00
|
|
|
SEC("kretprobe/__blk_account_io_done")
|
2018-05-25 02:21:56 +08:00
|
|
|
int bpf_prog2(struct pt_regs *ctx)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
char _license[] SEC("license") = "GPL";
|
|
|
|
u32 _version SEC("version") = LINUX_VERSION_CODE;
|