mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
vmm: Only generate GED event when new DIMM added
Avoid the ACPI scan in the guest OS when no new DIMM is hotplugged. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
committed by
Samuel Ortiz
parent
211786ab42
commit
0ab22fea2c
@@ -500,14 +500,17 @@ impl Vm {
|
||||
}
|
||||
|
||||
if let Some(desired_memory) = desired_memory {
|
||||
self.memory_manager
|
||||
if self
|
||||
.memory_manager
|
||||
.lock()
|
||||
.unwrap()
|
||||
.resize(desired_memory)
|
||||
.map_err(Error::MemoryManager)?;
|
||||
self.devices
|
||||
.notify_hotplug(HotPlugNotificationFlags::MEMORY_DEVICES_CHANGED)
|
||||
.map_err(Error::DeviceManager)?;
|
||||
.map_err(Error::MemoryManager)?
|
||||
{
|
||||
self.devices
|
||||
.notify_hotplug(HotPlugNotificationFlags::MEMORY_DEVICES_CHANGED)
|
||||
.map_err(Error::DeviceManager)?;
|
||||
}
|
||||
self.config.lock().unwrap().memory.size = desired_memory;
|
||||
}
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user