From 34bd00e90a5a5a7b24ef1c15d0b3adbd4682d105 Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Tue, 20 Nov 2007 08:46:24 -0700 Subject: [PATCH] [IA64] vti save-restore: fix vacpi_save() Always returned 0. Signed-off-by: Isaku Yamahata --- xen/arch/ia64/vmx/vacpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/vmx/vacpi.c b/xen/arch/ia64/vmx/vacpi.c index 49d3ca380f..d71ec011c2 100644 --- a/xen/arch/ia64/vmx/vacpi.c +++ b/xen/arch/ia64/vmx/vacpi.c @@ -234,7 +234,7 @@ static int vacpi_save(struct domain *d, hvm_domain_context_t *h) spin_unlock(&s->lock); pmt_timer_callback(d);//XXX This might change the domain state. - return 0; + return rc; } static int vacpi_load(struct domain *d, hvm_domain_context_t *h) -- 2.39.5