mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Reuse global validate_bounds() operation helper instead of having a local implementation in vhd/worker/common.rs Signed-off-by: Alexander Lvov <alexander.lvov.git@gmail.com>
13 lines
330 B
Rust
13 lines
330 B
Rust
// Copyright 2026 The Cloud Hypervisor Authors. All rights reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//! Sync/async I/O workers for fixed VHD images.
|
|
//!
|
|
//! Thin wrappers around the raw workers that clamp I/O to the
|
|
//! virtual disk size.
|
|
|
|
#[cfg(feature = "io_uring")]
|
|
pub(crate) mod async_uring;
|
|
pub(crate) mod sync;
|