aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/suspend_hvm.c
diff options
context:
space:
mode:
authorVitaly Kuznetsov <vkuznets@redhat.com>2017-03-14 18:35:49 +0100
committerJuergen Gross <jgross@suse.com>2017-05-02 11:09:17 +0200
commit9963236d7c753cf89be2e0366af185e51f150c79 (patch)
tree13918252137440a1f3504cd8b4da2f5af85fde16 /arch/x86/xen/suspend_hvm.c
parentx86/xen: split off mmu_pv.c (diff)
downloadlinux-dev-9963236d7c753cf89be2e0366af185e51f150c79.tar.xz
linux-dev-9963236d7c753cf89be2e0366af185e51f150c79.zip
x86/xen: split suspend.c for PV and PVHVM guests
Slit the code in suspend.c into suspend_pv.c and suspend_hvm.c. Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com> Reviewed-by: Juergen Gross <jgross@suse.com> Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen/suspend_hvm.c')
-rw-r--r--arch/x86/xen/suspend_hvm.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/x86/xen/suspend_hvm.c b/arch/x86/xen/suspend_hvm.c
new file mode 100644
index 000000000000..01afcadde50a
--- /dev/null
+++ b/arch/x86/xen/suspend_hvm.c
@@ -0,0 +1,22 @@
+#include <linux/types.h>
+
+#include <xen/xen.h>
+#include <xen/features.h>
+#include <xen/interface/features.h>
+
+#include "xen-ops.h"
+
+void xen_hvm_post_suspend(int suspend_cancelled)
+{
+ int cpu;
+
+ if (!suspend_cancelled)
+ xen_hvm_init_shared_info();
+ xen_callback_vector();
+ xen_unplug_emulated_devices();
+ if (xen_feature(XENFEAT_hvm_safe_pvclock)) {
+ for_each_online_cpu(cpu) {
+ xen_setup_runstate_info(cpu);
+ }
+ }
+}