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;
13pub mod transport;
14
15pub use common::*;
16pub use transport::*;
17
18const QUEUE_MAX_SIZE: u16 = 0x40; // TODO: make queue size configurable