We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d423c6 commit 4bde74bCopy full SHA for 4bde74b
src/hyperlight_host/src/hypervisor/hyperv_linux.rs
@@ -109,6 +109,10 @@ impl HypervLinuxDriver {
109
let vm_fd = mshv.create_vm_with_config(&pr)?;
110
#[cfg(mshv3)]
111
let vm_fd = {
112
+ // It's important to avoid create_vm() and explicitly use
113
+ // create_vm_with_args() with an empty arguments structure
114
+ // here, because otherwise the partition is set up with a SynIC.
115
+
116
let vm_fd = mshv.create_vm_with_args(&pr)?;
117
let features: hv_partition_synthetic_processor_features = Default::default();
118
vm_fd.hvcall_set_partition_property(
0 commit comments