vm-migration: Don't store the id as part of Snapshot structure

The information about the identifier related to a Snapshot is only
relevant from the BTreeMap perspective, which is why we can get rid of
the duplicated identifier in every Snapshot structure.

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2022-12-02 15:31:53 +01:00
parent 426ee39972
commit 748018ace3
32 changed files with 76 additions and 85 deletions

View File

@@ -154,7 +154,7 @@ impl Snapshottable for Gic {
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let vgic = self.vgic.as_ref().unwrap().clone(); let vgic = self.vgic.as_ref().unwrap().clone();
let state = vgic.lock().unwrap().state().unwrap(); let state = vgic.lock().unwrap().state().unwrap();
Snapshot::new_from_state(&self.id(), &state) Snapshot::new_from_state(&state)
} }
} }

View File

@@ -438,7 +438,7 @@ impl Snapshottable for Ioapic {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -328,7 +328,7 @@ impl Snapshottable for Gpio {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -334,7 +334,7 @@ impl Snapshottable for Serial {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -454,7 +454,7 @@ impl Snapshottable for Pl011 {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -1072,7 +1072,7 @@ impl Snapshottable for PciConfiguration {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -288,6 +288,6 @@ impl Snapshottable for MsiConfig {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -433,7 +433,7 @@ impl Snapshottable for MsixConfig {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -1235,20 +1235,19 @@ impl Snapshottable for VfioCommon {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut vfio_common_snapshot = let mut vfio_common_snapshot = Snapshot::new_from_versioned_state(&self.state())?;
Snapshot::new_from_versioned_state(&self.id(), &self.state())?;
// Snapshot PciConfiguration // Snapshot PciConfiguration
vfio_common_snapshot.add_snapshot(self.configuration.snapshot()?); vfio_common_snapshot.add_snapshot(self.configuration.id(), self.configuration.snapshot()?);
// Snapshot MSI // Snapshot MSI
if let Some(msi) = &mut self.interrupt.msi { if let Some(msi) = &mut self.interrupt.msi {
vfio_common_snapshot.add_snapshot(msi.cfg.snapshot()?); vfio_common_snapshot.add_snapshot(msi.cfg.id(), msi.cfg.snapshot()?);
} }
// Snapshot MSI-X // Snapshot MSI-X
if let Some(msix) = &mut self.interrupt.msix { if let Some(msix) = &mut self.interrupt.msix {
vfio_common_snapshot.add_snapshot(msix.bar.snapshot()?); vfio_common_snapshot.add_snapshot(msix.bar.id(), msix.bar.snapshot()?);
} }
Ok(vfio_common_snapshot) Ok(vfio_common_snapshot)
@@ -1740,10 +1739,10 @@ impl Snapshottable for VfioPciDevice {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut vfio_pci_dev_snapshot = Snapshot::new(&self.id); let mut vfio_pci_dev_snapshot = Snapshot::default();
// Snapshot VfioCommon // Snapshot VfioCommon
vfio_pci_dev_snapshot.add_snapshot(self.common.snapshot()?); vfio_pci_dev_snapshot.add_snapshot(self.common.id(), self.common.snapshot()?);
Ok(vfio_pci_dev_snapshot) Ok(vfio_pci_dev_snapshot)
} }

View File

@@ -535,10 +535,10 @@ impl Snapshottable for VfioUserPciDevice {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut vfio_pci_dev_snapshot = Snapshot::new(&self.id); let mut vfio_pci_dev_snapshot = Snapshot::default();
// Snapshot VfioCommon // Snapshot VfioCommon
vfio_pci_dev_snapshot.add_snapshot(self.common.snapshot()?); vfio_pci_dev_snapshot.add_snapshot(self.common.id(), self.common.snapshot()?);
Ok(vfio_pci_dev_snapshot) Ok(vfio_pci_dev_snapshot)
} }

View File

@@ -585,7 +585,7 @@ impl Snapshottable for Balloon {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Balloon {} impl Transportable for Balloon {}

View File

@@ -743,7 +743,7 @@ impl Snapshottable for Block {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Block {} impl Transportable for Block {}

View File

@@ -819,7 +819,7 @@ impl Snapshottable for Console {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Console {} impl Transportable for Console {}

View File

@@ -1109,7 +1109,7 @@ impl Snapshottable for Iommu {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Iommu {} impl Transportable for Iommu {}

View File

@@ -1014,7 +1014,7 @@ impl Snapshottable for Mem {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Mem {} impl Transportable for Mem {}

View File

@@ -857,7 +857,7 @@ impl Snapshottable for Net {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl Transportable for Net {} impl Transportable for Net {}

View File

@@ -467,7 +467,7 @@ impl Snapshottable for Pmem {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -323,7 +323,7 @@ impl Snapshottable for Rng {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -321,7 +321,7 @@ impl Snapshottable for VirtioPciCommonConfig {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id(), &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -1272,18 +1272,20 @@ impl Snapshottable for VirtioPciDevice {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut virtio_pci_dev_snapshot = let mut virtio_pci_dev_snapshot = Snapshot::new_from_versioned_state(&self.state())?;
Snapshot::new_from_versioned_state(&self.id, &self.state())?;
// Snapshot PciConfiguration // Snapshot PciConfiguration
virtio_pci_dev_snapshot.add_snapshot(self.configuration.snapshot()?); virtio_pci_dev_snapshot
.add_snapshot(self.configuration.id(), self.configuration.snapshot()?);
// Snapshot VirtioPciCommonConfig // Snapshot VirtioPciCommonConfig
virtio_pci_dev_snapshot.add_snapshot(self.common_config.snapshot()?); virtio_pci_dev_snapshot
.add_snapshot(self.common_config.id(), self.common_config.snapshot()?);
// Snapshot MSI-X // Snapshot MSI-X
if let Some(msix_config) = &self.msix_config { if let Some(msix_config) = &self.msix_config {
virtio_pci_dev_snapshot.add_snapshot(msix_config.lock().unwrap().snapshot()?); let mut msix_config = msix_config.lock().unwrap();
virtio_pci_dev_snapshot.add_snapshot(msix_config.id(), msix_config.snapshot()?);
} }
Ok(virtio_pci_dev_snapshot) Ok(virtio_pci_dev_snapshot)

View File

@@ -489,12 +489,9 @@ impl Snapshottable for Vdpa {
))); )));
} }
let snapshot = Snapshot::new_from_versioned_state( let snapshot = Snapshot::new_from_versioned_state(&self.state().map_err(|e| {
&self.id(), MigratableError::Snapshot(anyhow!("Error snapshotting vDPA device: {:?}", e))
&self.state().map_err(|e| { })?)?;
MigratableError::Snapshot(anyhow!("Error snapshotting vDPA device: {:?}", e))
})?,
)?;
// Force the vhost handler to be dropped in order to close the vDPA // Force the vhost handler to be dropped in order to close the vDPA
// file. This will ensure the device can be accessed if the VM is // file. This will ensure the device can be accessed if the VM is

View File

@@ -381,7 +381,7 @@ impl Snapshottable for Blk {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
self.vu_common.snapshot(&self.id(), &self.state()) self.vu_common.snapshot(&self.state())
} }
} }
impl Transportable for Blk {} impl Transportable for Blk {}

View File

@@ -651,7 +651,7 @@ impl Snapshottable for Fs {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
self.vu_common.snapshot(&self.id(), &self.state()) self.vu_common.snapshot(&self.state())
} }
} }
impl Transportable for Fs {} impl Transportable for Fs {}

View File

@@ -430,15 +430,11 @@ impl VhostUserCommon {
} }
} }
pub fn snapshot<T>( pub fn snapshot<T>(&mut self, state: &T) -> std::result::Result<Snapshot, MigratableError>
&mut self,
id: &str,
state: &T,
) -> std::result::Result<Snapshot, MigratableError>
where where
T: Versionize + VersionMapped, T: Versionize + VersionMapped,
{ {
let snapshot = Snapshot::new_from_versioned_state(id, state)?; let snapshot = Snapshot::new_from_versioned_state(state)?;
if self.migration_started { if self.migration_started {
self.shutdown(); self.shutdown();

View File

@@ -418,7 +418,7 @@ impl Snapshottable for Net {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
self.vu_common.snapshot(&self.id(), &self.state()) self.vu_common.snapshot(&self.state())
} }
} }
impl Transportable for Net {} impl Transportable for Net {}

View File

@@ -518,7 +518,7 @@ where
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }
impl<B> Transportable for Vsock<B> where B: VsockBackend + Sync + 'static {} impl<B> Transportable for Vsock<B> where B: VsockBackend + Sync + 'static {}

View File

@@ -419,7 +419,7 @@ impl Snapshottable for Watchdog {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Snapshot::new_from_versioned_state(&self.id, &self.state()) Snapshot::new_from_versioned_state(&self.state())
} }
} }

View File

@@ -139,9 +139,6 @@ impl SnapshotData {
/// the actual device snapshot data. /// the actual device snapshot data.
#[derive(Clone, Default, Deserialize, Serialize)] #[derive(Clone, Default, Deserialize, Serialize)]
pub struct Snapshot { pub struct Snapshot {
/// The Snapshottable component id.
pub id: String,
/// The Snapshottable component snapshots. /// The Snapshottable component snapshots.
pub snapshots: std::collections::BTreeMap<String, Snapshot>, pub snapshots: std::collections::BTreeMap<String, Snapshot>,
@@ -151,39 +148,31 @@ pub struct Snapshot {
} }
impl Snapshot { impl Snapshot {
/// Create an empty Snapshot.
pub fn new(id: &str) -> Self {
Snapshot {
id: id.to_string(),
..Default::default()
}
}
/// Create from state that can be serialized /// Create from state that can be serialized
pub fn new_from_state<T>(id: &str, state: &T) -> Result<Self, MigratableError> pub fn new_from_state<T>(state: &T) -> Result<Self, MigratableError>
where where
T: Serialize, T: Serialize,
{ {
let mut snapshot_data = Snapshot::new(id); let mut snapshot_data = Snapshot::default();
snapshot_data.add_data_section(SnapshotData::new_from_state(state)?); snapshot_data.add_data_section(SnapshotData::new_from_state(state)?);
Ok(snapshot_data) Ok(snapshot_data)
} }
/// Create from versioned state /// Create from versioned state
pub fn new_from_versioned_state<T>(id: &str, state: &T) -> Result<Self, MigratableError> pub fn new_from_versioned_state<T>(state: &T) -> Result<Self, MigratableError>
where where
T: Versionize + VersionMapped, T: Versionize + VersionMapped,
{ {
let mut snapshot_data = Snapshot::new(id); let mut snapshot_data = Snapshot::default();
snapshot_data.add_data_section(SnapshotData::new_from_versioned_state(state)?); snapshot_data.add_data_section(SnapshotData::new_from_versioned_state(state)?);
Ok(snapshot_data) Ok(snapshot_data)
} }
/// Add a sub-component's Snapshot to the Snapshot. /// Add a sub-component's Snapshot to the Snapshot.
pub fn add_snapshot(&mut self, snapshot: Snapshot) { pub fn add_snapshot(&mut self, id: String, snapshot: Snapshot) {
self.snapshots.insert(snapshot.id.clone(), snapshot); self.snapshots.insert(id, snapshot);
} }
/// Add a SnapshotData to the component snapshot data. /// Add a SnapshotData to the component snapshot data.
@@ -240,7 +229,7 @@ pub trait Snapshottable: Pausable {
/// Take a component snapshot. /// Take a component snapshot.
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
Ok(Snapshot::new("")) Ok(Snapshot::default())
} }
} }
@@ -271,7 +260,7 @@ pub trait Transportable: Pausable + Snapshottable {
/// * `source_url` - The source URL to fetch the snapshot from. This could be an HTTP /// * `source_url` - The source URL to fetch the snapshot from. This could be an HTTP
/// endpoint, a TCP address or a local file. /// endpoint, a TCP address or a local file.
fn recv(&self, _source_url: &str) -> std::result::Result<Snapshot, MigratableError> { fn recv(&self, _source_url: &str) -> std::result::Result<Snapshot, MigratableError> {
Ok(Snapshot::new("")) Ok(Snapshot::default())
} }
} }

View File

@@ -387,11 +387,10 @@ impl Vcpu {
} }
} }
const VCPU_SNAPSHOT_ID: &str = "vcpu";
impl Pausable for Vcpu {} impl Pausable for Vcpu {}
impl Snapshottable for Vcpu { impl Snapshottable for Vcpu {
fn id(&self) -> String { fn id(&self) -> String {
VCPU_SNAPSHOT_ID.to_string() self.id.to_string()
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
@@ -400,9 +399,7 @@ impl Snapshottable for Vcpu {
.state() .state()
.map_err(|e| MigratableError::Pause(anyhow!("Could not get vCPU state {:?}", e)))?; .map_err(|e| MigratableError::Pause(anyhow!("Could not get vCPU state {:?}", e)))?;
// TODO: The special format of the CPU id can be removed once ready to let mut vcpu_snapshot = Snapshot::default();
// break live upgrade.
let mut vcpu_snapshot = Snapshot::new(&format!("{:03}", self.id));
vcpu_snapshot.add_data_section(SnapshotData::new_from_state(&saved_state)?); vcpu_snapshot.add_data_section(SnapshotData::new_from_state(&saved_state)?);
self.saved_state = Some(saved_state); self.saved_state = Some(saved_state);
@@ -776,7 +773,7 @@ impl CpuManager {
cpu_id, cpu_id,
// TODO: The special format of the CPU id can be removed once // TODO: The special format of the CPU id can be removed once
// ready to break live upgrade. // ready to break live upgrade.
snapshot_from_id(snapshot.as_ref(), &format!("{:03}", cpu_id)), snapshot_from_id(snapshot.as_ref(), cpu_id.to_string().as_str()),
)?); )?);
} }
@@ -2076,12 +2073,12 @@ impl Snapshottable for CpuManager {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut cpu_manager_snapshot = Snapshot::new(CPU_MANAGER_SNAPSHOT_ID); let mut cpu_manager_snapshot = Snapshot::default();
// The CpuManager snapshot is a collection of all vCPUs snapshots. // The CpuManager snapshot is a collection of all vCPUs snapshots.
for vcpu in &self.vcpus { for vcpu in &self.vcpus {
let cpu_snapshot = vcpu.lock().unwrap().snapshot()?; let mut vcpu = vcpu.lock().unwrap();
cpu_manager_snapshot.add_snapshot(cpu_snapshot); cpu_manager_snapshot.add_snapshot(vcpu.id(), vcpu.snapshot()?);
} }
Ok(cpu_manager_snapshot) Ok(cpu_manager_snapshot)

View File

@@ -4445,13 +4445,13 @@ impl Snapshottable for DeviceManager {
} }
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
let mut snapshot = Snapshot::new(DEVICE_MANAGER_SNAPSHOT_ID); let mut snapshot = Snapshot::default();
// We aggregate all devices snapshots. // We aggregate all devices snapshots.
for (_, device_node) in self.device_tree.lock().unwrap().iter() { for (_, device_node) in self.device_tree.lock().unwrap().iter() {
if let Some(migratable) = &device_node.migratable { if let Some(migratable) = &device_node.migratable {
let device_snapshot = migratable.lock().unwrap().snapshot()?; let mut migratable = migratable.lock().unwrap();
snapshot.add_snapshot(device_snapshot); snapshot.add_snapshot(migratable.id(), migratable.snapshot()?);
} }
} }

View File

@@ -2428,7 +2428,7 @@ impl Snapshottable for MemoryManager {
} }
fn snapshot(&mut self) -> result::Result<Snapshot, MigratableError> { fn snapshot(&mut self) -> result::Result<Snapshot, MigratableError> {
let mut memory_manager_snapshot = Snapshot::new(MEMORY_MANAGER_SNAPSHOT_ID); let mut memory_manager_snapshot = Snapshot::default();
let memory_ranges = self.memory_range_table(true)?; let memory_ranges = self.memory_range_table(true)?;

View File

@@ -2508,7 +2508,7 @@ impl Snapshottable for Vm {
})? })?
}; };
let mut vm_snapshot = Snapshot::new(VM_SNAPSHOT_ID); let mut vm_snapshot = Snapshot::default();
let vm_snapshot_data = serde_json::to_vec(&VmSnapshot { let vm_snapshot_data = serde_json::to_vec(&VmSnapshot {
#[cfg(all(feature = "kvm", target_arch = "x86_64"))] #[cfg(all(feature = "kvm", target_arch = "x86_64"))]
clock: self.saved_clock, clock: self.saved_clock,
@@ -2517,10 +2517,21 @@ impl Snapshottable for Vm {
}) })
.map_err(|e| MigratableError::Snapshot(e.into()))?; .map_err(|e| MigratableError::Snapshot(e.into()))?;
vm_snapshot.add_snapshot(self.cpu_manager.lock().unwrap().snapshot()?); let (id, snapshot) = {
vm_snapshot.add_snapshot(self.memory_manager.lock().unwrap().snapshot()?); let mut cpu_manager = self.cpu_manager.lock().unwrap();
(cpu_manager.id(), cpu_manager.snapshot()?)
vm_snapshot.add_snapshot(self.device_manager.lock().unwrap().snapshot()?); };
vm_snapshot.add_snapshot(id, snapshot);
let (id, snapshot) = {
let mut memory_manager = self.memory_manager.lock().unwrap();
(memory_manager.id(), memory_manager.snapshot()?)
};
vm_snapshot.add_snapshot(id, snapshot);
let (id, snapshot) = {
let mut device_manager = self.device_manager.lock().unwrap();
(device_manager.id(), device_manager.snapshot()?)
};
vm_snapshot.add_snapshot(id, snapshot);
vm_snapshot.add_data_section(SnapshotData(vm_snapshot_data)); vm_snapshot.add_data_section(SnapshotData(vm_snapshot_data));
event!("vm", "snapshotted"); event!("vm", "snapshotted");