diff options
Diffstat (limited to 'fs-tracer-ebpf/src/main.rs')
-rw-r--r-- | fs-tracer-ebpf/src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs-tracer-ebpf/src/main.rs b/fs-tracer-ebpf/src/main.rs index e41285a..d6d6640 100644 --- a/fs-tracer-ebpf/src/main.rs +++ b/fs-tracer-ebpf/src/main.rs @@ -7,13 +7,13 @@ mod vmlinux; mod syscalls; use core::str; -use aya_bpf::cty::{c_int, c_long}; -use aya_bpf::maps::HashMap; -use aya_bpf::{ +use aya_ebpf::cty::{c_int, c_long}; +use aya_ebpf::maps::HashMap; +use aya_ebpf::{ macros::{map, tracepoint}, maps::PerfEventArray, programs::TracePointContext, - BpfContext, + EbpfContext, }; use aya_log_ebpf::info; use fs_tracer_common::{SyscallInfo, WriteSyscallBPF}; |