virt_mshv_vtl/processor/mshv/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Processor support for Microsoft hypervisor-backed partitions.

pub mod arm64;
mod tlb_lock;
pub mod x64;

#[derive(Default, inspect::Inspect)]
pub(crate) struct VbsIsolatedVtl1State {
    #[inspect(with = "|flags| flags.map(|f| inspect::AsHex(u32::from(f)))")]
    default_vtl_protections: Option<hvdef::HvMapGpaFlags>,
    enable_vtl_protection: bool,
}