about summary refs log tree commit diff
path: root/fs-tracer-ebpf/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'fs-tracer-ebpf/src/main.rs')
-rw-r--r--fs-tracer-ebpf/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs-tracer-ebpf/src/main.rs b/fs-tracer-ebpf/src/main.rs
index 18f22eb..e41285a 100644
--- a/fs-tracer-ebpf/src/main.rs
+++ b/fs-tracer-ebpf/src/main.rs
@@ -65,14 +65,14 @@ fn handle_syscall(
     match syscall_nr {
         1 => syscalls::write::handle_sys_write(ctx, syscall_type),
         257 => syscalls::open::handle_sys_open(ctx, syscall_type),
-        8 => {
+        /*8 => {
             Ok(0)
             //handle_sys_lseek(ctx);
         }
         3 => {
             Ok(0)
             //handle_sys_close(ctx);
-        }
+        }*/
         _ => {
             info!(&ctx, "unhandled syscall: {}", syscall_nr);
             Err(1)