From c5e2ba03bd4e660b9711fb78326445d126771c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 5 Mar 2014 03:39:49 +0100 Subject: [PATCH] core: notify xenstored about domain resume Otherwise it will not fire further domain suspend/death watches against this domain - so xl will not cleanup the domain. --- core-modules/000QubesVm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core-modules/000QubesVm.py b/core-modules/000QubesVm.py index fe175fdb..f3a4bb8c 100644 --- a/core-modules/000QubesVm.py +++ b/core-modules/000QubesVm.py @@ -1655,6 +1655,7 @@ class QubesVm(object): if xc_info['shutdown_reason'] == 2: # suspended xc.domain_resume(xc_info['domid'], 1) + xs.resume_domain(xc_info['domid']) else: self.unpause()