virtio/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Core virtio device infrastructure
5
6#![expect(missing_docs)]
7
8mod common;
9pub mod queue;
10pub mod resolve;
11pub mod resolver;
12pub mod spec;
13mod tests;
14pub mod transport;
15
16pub use common::*;
17pub use transport::*;
18
19const QUEUE_MAX_SIZE: u16 = 0x40; // TODO: make queue size configurable