Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions openhcl/underhill_core/src/dispatch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ impl LoadedVm {
}
};

self.stop().await;
let _client_notify_send = self.partition_unit.teardown().await;

// Terminate the vmbus relay before vmbus to avoid sending channel
Expand Down
1 change: 1 addition & 0 deletions openvmm/openvmm_core/src/worker/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3964,6 +3964,7 @@ impl LoadedVm {
}
}

self.pause().await;
self.inner.partition_unit.teardown().await;
if let Some(vmbus) = self.inner.vmbus_server {
vmbus.remove().await.shutdown().await;
Expand Down
Loading