From 21de4bd9b5a9660ccf9adda60e4b8cf04b8b51b1 Mon Sep 17 00:00:00 2001 From: Pau Ruiz Safont Date: Thu, 6 Oct 2022 13:28:50 +0100 Subject: [PATCH] CA-370140: shut down swtpm after qemu Qemu sends a signal to swtpm to cleanly shut down the guest, this needs Qemu being shut down last Signed-off-by: Pau Ruiz Safont --- ocaml/xenopsd/xc/device.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocaml/xenopsd/xc/device.ml b/ocaml/xenopsd/xc/device.ml index 653ee5fa5f8..ad0196e54a1 100644 --- a/ocaml/xenopsd/xc/device.ml +++ b/ocaml/xenopsd/xc/device.ml @@ -2267,7 +2267,7 @@ module Dm_Common = struct Service.Varstored.stop ~xs domid ; Xenops_sandbox.Varstore_guard.stop dbg ~domid ~vm_uuid in - stop_vgpu () ; stop_varstored () ; stop_swptm () ; stop_qemu () + stop_vgpu () ; stop_varstored () ; stop_qemu () ; stop_swptm () type disk_type_args = int * string * Media.t -> string list