mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
8405abf7f5
This CL adds an initial implementation of trace points for passthroughfs and also adds an initial stub for tracing our fuse server implementation too. BUG=b:261641906 TEST=ran crosvm with virtiofs and saw trace points being hit Change-Id: I88502f33997db0030c53405b5f9fbed84aabc773 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4110129 Reviewed-by: Christian Blichmann <cblichmann@google.com> Commit-Queue: Keiichi Watanabe <keiichiw@chromium.org> Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Auto-Submit: Morg <morg@chromium.org>
20 lines
358 B
TOML
20 lines
358 B
TOML
[package]
|
|
name = "fuse"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
base = "*"
|
|
bitflags = "1"
|
|
crossbeam-utils = "0.8"
|
|
cros_tracing = { path = "../cros_tracing" }
|
|
data_model = { path = "../common/data_model" }
|
|
enumn = "0.1.0"
|
|
libc = "*"
|
|
remain = "0.2"
|
|
thiserror = "1.0.20"
|
|
zerocopy = "*"
|