From: Mirela Simonovic <mirela.simono...@aggios.com> Freeze and thaw of domains is reused as implemented for x86. In addition, system_state variable is updated to represent the actual state of the system.
Signed-off-by: Mirela Simonovic <mirela.simono...@aggios.com> Signed-off-by: Saeed Nowshadi <saeed.nowsh...@xilinx.com> --- xen/arch/arm/suspend.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/xen/arch/arm/suspend.c b/xen/arch/arm/suspend.c index b09bf319d0..2b94816b63 100644 --- a/xen/arch/arm/suspend.c +++ b/xen/arch/arm/suspend.c @@ -137,6 +137,14 @@ static long system_suspend(void *data) { BUG_ON(system_state != SYS_STATE_active); + system_state = SYS_STATE_suspend; + freeze_domains(); + + system_state = SYS_STATE_resume; + + thaw_domains(); + system_state = SYS_STATE_active; + return -ENOSYS; } -- 2.37.1