hv1_hypercall

Trait EnableVpVtl

Source
pub trait EnableVpVtl<T> {
    // Required method
    fn enable_vp_vtl(
        &mut self,
        partition_id: u64,
        vp_index: u32,
        vtl: Vtl,
        vp_context: &T,
    ) -> HvResult<()>;
}
Expand description

Implements the HvEnableVpVtl hypercall.

Required Methods§

Source

fn enable_vp_vtl( &mut self, partition_id: u64, vp_index: u32, vtl: Vtl, vp_context: &T, ) -> HvResult<()>

Enable the specified VTL.

Implementors§