MCPcopy Create free account
hub / github.com/cloud-hypervisor/cloud-hypervisor / dirty_log

Method dirty_log

vmm/src/vm.rs:3466–3471  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

3464 }
3465
3466 fn dirty_log(&mut self) -> std::result::Result<MemoryRangeTable, MigratableError> {
3467 Ok(MemoryRangeTable::new_from_tables(vec![
3468 self.memory_manager.lock().unwrap().dirty_log()?,
3469 self.device_manager.lock().unwrap().dirty_log()?,
3470 ]))
3471 }
3472
3473 fn start_migration(&mut self) -> std::result::Result<(), MigratableError> {
3474 self.memory_manager.lock().unwrap().start_migration()?;

Callers 2

do_memory_iterationsMethod · 0.45
do_memory_migrationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected