diff options
| author | Baitinq <[email protected]> | 2024-05-27 23:56:27 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-05-27 23:56:27 +0200 |
| commit | 98b6bda358b99602b606725359c0a45acdf30f32 (patch) | |
| tree | 9c7fe53c68ee0508e3c890ac90a5e340cd19e60c | |
| parent | Add todo (diff) | |
| download | fs-tracer-98b6bda358b99602b606725359c0a45acdf30f32.tar.gz fs-tracer-98b6bda358b99602b606725359c0a45acdf30f32.tar.bz2 fs-tracer-98b6bda358b99602b606725359c0a45acdf30f32.zip | |
misc: Update readme
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | log | 19 |
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` - |