about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--README.md2
-rw-r--r--log19
3 files changed, 4 insertions, 19 deletions
diff --git a/.gitignore b/.gitignore
index ee56924..0ab5a1b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,5 @@ Cargo.lock
 .vscode/
 
 .direnv/
+
+log
diff --git a/README.md b/README.md
index 74f5ba3..c0ed209 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # fs-tracer
 
+Related: https://github.com/baitinq/fs-tracer-backend
+
 ## Prerequisites
 
 1. Install bpf-linker: `cargo install bpf-linker`
diff --git a/log b/log
deleted file mode 100644
index 1819b92..0000000
--- a/log
+++ /dev/null
@@ -1,19 +0,0 @@
-warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
-note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
-note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
-note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
-    Finished dev [unoptimized + debuginfo] target(s) in 0.05s
-     Running `target/debug/xtask run`
-   Compiling fs-tracer-common v0.1.0 (/home/baitinq/src/fs-tracer/fs-tracer-common)
-   Compiling fs-tracer-ebpf v0.1.0 (/home/baitinq/src/fs-tracer/fs-tracer-ebpf)
-error[E0308]: mismatched types
-  --> src/syscalls/open.rs:76:36
-   |
-76 |     if filename.as_ptr().add(0) == '/' as u8 {
-   |        ------------------------    ^^^^^^^^^ expected `*const u8`, found `u8`
-   |        |
-   |        expected because this is `*const u8`
-   |
-   = note: expected raw pointer `*const u8`
-                     found type `u8`
-