Lines Matching defs:RunnableLinuxVm
98 pub struct RunnableLinuxVm<V: VmArch, Vcpu: VcpuArch, I: IrqChipArch> { struct
99 pub vm: V,
100 pub resources: SystemAllocator,
101 pub exit_evt: Event,
102 pub vcpu_count: usize,
105 pub vcpus: Option<Vec<Vcpu>>,
106 pub vcpu_affinity: Option<VcpuAffinity>,
107 pub no_smt: bool,
108 pub irq_chip: I,
109 pub has_bios: bool,
110 pub io_bus: Bus,
111 pub mmio_bus: Bus,
112 pub pid_debug_label_map: BTreeMap<u32, String>,
113 pub suspend_evt: Event,
114 pub rt_cpus: Vec<usize>,
115 pub bat_control: Option<BatControl>,
117 pub gdb: Option<(u32, Tube)>,