GNU Linux-libre 4.14.290-gnu1
[releases.git] / arch / x86 / xen / suspend_hvm.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3
4 #include <xen/xen.h>
5 #include <xen/features.h>
6 #include <xen/interface/features.h>
7
8 #include "xen-ops.h"
9
10 void xen_hvm_post_suspend(int suspend_cancelled)
11 {
12         if (!suspend_cancelled) {
13                 xen_hvm_init_shared_info();
14                 xen_vcpu_restore();
15         }
16         xen_callback_vector();
17         xen_unplug_emulated_devices();
18 }