(&mut self)
| 3454 | |
| 3455 | impl Migratable for Vm { |
| 3456 | fn start_dirty_log(&mut self) -> std::result::Result<(), MigratableError> { |
| 3457 | self.memory_manager.lock().unwrap().start_dirty_log()?; |
| 3458 | self.device_manager.lock().unwrap().start_dirty_log() |
| 3459 | } |
| 3460 | |
| 3461 | fn stop_dirty_log(&mut self) -> std::result::Result<(), MigratableError> { |
| 3462 | self.memory_manager.lock().unwrap().stop_dirty_log()?; |