mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-18 10:35:23 +00:00
hypervisor: kvm: Update TDX command INIT_VM
Definition of kvm_tdx_init_vm used by INIT_VM has been updated in latest kernel, needing an update on the Cloud Hypervisor side as well. Update structure TdxInitVm to fit this change and avoid -EINVAL to be returned by the kernel. Signed-off-by: Jiaqi Gao <jiaqi.gao@intel.com> Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
parent
f3793c08b5
commit
a90260ffb6
@ -486,15 +486,23 @@ impl vm::Vm for KvmVm {
|
|||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
struct TdxInitVm {
|
struct TdxInitVm {
|
||||||
max_vcpus: u32,
|
max_vcpus: u32,
|
||||||
reserved: u32,
|
tsc_khz: u32,
|
||||||
attributes: u64,
|
attributes: u64,
|
||||||
cpuid: u64,
|
cpuid: u64,
|
||||||
|
mrconfigid: [u64; 6],
|
||||||
|
mrowner: [u64; 6],
|
||||||
|
mrownerconfig: [u64; 6],
|
||||||
|
reserved: [u64; 43],
|
||||||
}
|
}
|
||||||
let data = TdxInitVm {
|
let data = TdxInitVm {
|
||||||
max_vcpus,
|
max_vcpus,
|
||||||
reserved: 0,
|
tsc_khz: 0,
|
||||||
attributes: 1, // TDX1_TD_ATTRIBUTE_DEBUG,
|
attributes: 1, // TDX1_TD_ATTRIBUTE_DEBUG,
|
||||||
cpuid: cpuid.as_fam_struct_ptr() as u64,
|
cpuid: cpuid.as_fam_struct_ptr() as u64,
|
||||||
|
mrconfigid: [0; 6],
|
||||||
|
mrowner: [0; 6],
|
||||||
|
mrownerconfig: [0; 6],
|
||||||
|
reserved: [0; 43],
|
||||||
};
|
};
|
||||||
|
|
||||||
tdx_command(
|
tdx_command(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user