aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/manage.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/manage.c')
-rw-r--r--drivers/xen/manage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c
index 6ce6b91e7645..134eb73ca596 100644
--- a/drivers/xen/manage.c
+++ b/drivers/xen/manage.c
@@ -61,7 +61,7 @@ static int xen_hvm_suspend(void *data)
61 */ 61 */
62 si->cancelled = HYPERVISOR_suspend(si->arg); 62 si->cancelled = HYPERVISOR_suspend(si->arg);
63 63
64 xen_hvm_post_suspend(si->cancelled); 64 xen_arch_hvm_post_suspend(si->cancelled);
65 gnttab_resume(); 65 gnttab_resume();
66 66
67 if (!si->cancelled) { 67 if (!si->cancelled) {
@@ -91,7 +91,7 @@ static int xen_suspend(void *data)
91 91
92 xen_mm_pin_all(); 92 xen_mm_pin_all();
93 gnttab_suspend(); 93 gnttab_suspend();
94 xen_pre_suspend(); 94 xen_arch_pre_suspend();
95 95
96 /* 96 /*
97 * This hypercall returns 1 if suspend was cancelled 97 * This hypercall returns 1 if suspend was cancelled
@@ -100,7 +100,7 @@ static int xen_suspend(void *data)
100 */ 100 */
101 si->cancelled = HYPERVISOR_suspend(si->arg); 101 si->cancelled = HYPERVISOR_suspend(si->arg);
102 102
103 xen_post_suspend(si->cancelled); 103 xen_arch_post_suspend(si->cancelled);
104 gnttab_resume(); 104 gnttab_resume();
105 xen_mm_unpin_all(); 105 xen_mm_unpin_all();
106 106