We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adb0443 commit a46a50eCopy full SHA for a46a50e
vmm/src/lib.rs
@@ -1983,6 +1983,10 @@ impl RequestHandler for Vmm {
1983
) -> result::Result<(), VmError> {
1984
self.vm_config.as_ref().ok_or(VmError::VmNotCreated)?;
1985
1986
+ if desired_vcpus.is_some() {
1987
+ todo!("doesn't work currently with our thread-local KVM_RUN approach");
1988
+ }
1989
+
1990
if let Some(ref mut vm) = self.vm {
1991
if let Err(e) = vm.resize(desired_vcpus, desired_ram, desired_balloon) {
1992
error!("Error when resizing VM: {:?}", e);
0 commit comments