mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
59c5ea8258
Benchmark data for vm.Fio.block_stress_rw on my hatch_helios: * without uring: read bw = 92047, write bw = 214790 * with uring: read bw = 114332, write bw = 266586 BUG=b:195468578 TEST=unit tests Change-Id: If02e4a8c7555d6a26f9b204d97bfb9533db55973 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3366173 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Anton Romanov <romanton@google.com>
34 lines
924 B
TOML
34 lines
924 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
uring = ["io-uring"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
async-task = "4"
|
|
data_model = { path = "../data_model" } # provided by ebuild
|
|
futures = { version = "0.3", default-features = false, features = ["alloc"] }
|
|
intrusive-collections = "0.9"
|
|
io-uring = { version = "0.5", optional = true, features = ["unstable"] }
|
|
memoffset = "0.5"
|
|
once_cell = "1.7"
|
|
slab = "0.4"
|
|
smallvec = { version = "1.6.1", default-features = false, features = ["union"] }
|
|
sync = { path = "../sync" } # provided by ebuild
|
|
thiserror = "1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
mio = { version = "0.7", features = ["os-ext"] }
|
|
sys_util = { path = "../sys_util" } # provided by ebuild
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "*", features = ["executor"] }
|
|
futures-executor = { version = "0.3", features = ["thread-pool"] }
|
|
futures-util = "0.3"
|
|
tempfile = "3"
|
|
|
|
[workspace]
|