aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2013-04-19 12:31:18 +0200
committerJan Beulich <jbeulich@suse.com>2013-04-19 12:31:18 +0200
commite4e1e0ecc023caf4cf3b87a4aa4d5e210760f4e8 (patch)
treef2a3368f0cfba4017c6e29322699e53ab7f08c84
parent9aa356bc9f7533c3cb7f02c823f532532876d444 (diff)
downloadxen-e4e1e0ecc023caf4cf3b87a4aa4d5e210760f4e8.tar.gz
xen-e4e1e0ecc023caf4cf3b87a4aa4d5e210760f4e8.tar.bz2
xen-e4e1e0ecc023caf4cf3b87a4aa4d5e210760f4e8.zip
VMX: adjust correct table when there's no posted interrupt support
The caller of start_vmx() will overwrite hvm_funcs, so there's no point in adjusting that table in start_vmx(). Signed-off-by: Jan Beulich <jbeulich@suse.com>
-rw-r--r--xen/arch/x86/hvm/vmx/vmx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c
index 799b60e31c..6866cd080b 100644
--- a/xen/arch/x86/hvm/vmx/vmx.c
+++ b/xen/arch/x86/hvm/vmx/vmx.c
@@ -1585,8 +1585,8 @@ struct hvm_function_table * __init start_vmx(void)
alloc_direct_apic_vector(&posted_intr_vector, event_check_interrupt);
else
{
- hvm_funcs.deliver_posted_intr = NULL;
- hvm_funcs.sync_pir_to_irr = NULL;
+ vmx_function_table.deliver_posted_intr = NULL;
+ vmx_function_table.sync_pir_to_irr = NULL;
}
setup_vmcs_dump();