[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 6/8] x86/HVM: Hook up miscellaneous AVIC functions
From: Suravee Suthikulpanit <suravee.suthikulpanit@xxxxxxx> This patch modifies the hvm_function_table.virtual_intr_delivery_enabled() to become a bool variable as both VMX and SVM simply return static value. Also, this patch hooks up virtual_intr_delivery_enabled and deliver_posted_intr functions when AVIC is enabled. Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@xxxxxxx> --- xen/arch/x86/hvm/svm/svm.c | 3 +++ xen/arch/x86/hvm/vlapic.c | 12 ++---------- xen/arch/x86/hvm/vmx/vmx.c | 8 ++------ xen/include/asm-x86/hvm/hvm.h | 4 +++- 4 files changed, 10 insertions(+), 17 deletions(-) diff --git a/xen/arch/x86/hvm/svm/svm.c b/xen/arch/x86/hvm/svm/svm.c index 09b5676b32..fdbe8e3008 100644 --- a/xen/arch/x86/hvm/svm/svm.c +++ b/xen/arch/x86/hvm/svm/svm.c @@ -1711,7 +1711,10 @@ const struct hvm_function_table * __init start_svm(void) svm_avic = 0; if ( svm_avic ) + { svm_function_table.deliver_posted_intr = svm_avic_deliver_posted_intr; + svm_function_table.virtual_intr_delivery_enabled = svm_avic; + } #define P(p,s) if ( p ) { printk(" - %s\n", s); printed = 1; } P(cpu_has_svm_npt, "Nested Page Tables (NPT)"); diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index 64c4e8dd93..664082e034 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -1258,14 +1258,6 @@ void vlapic_adjust_i8259_target(struct domain *d) pt_adjust_global_vcpu_target(v); } -int vlapic_virtual_intr_delivery_enabled(void) -{ - if ( hvm_funcs.virtual_intr_delivery_enabled ) - return hvm_funcs.virtual_intr_delivery_enabled(); - else - return 0; -} - int vlapic_has_pending_irq(struct vcpu *v) { struct vlapic *vlapic = vcpu_vlapic(v); @@ -1278,7 +1270,7 @@ int vlapic_has_pending_irq(struct vcpu *v) if ( irr == -1 ) return -1; - if ( vlapic_virtual_intr_delivery_enabled() && + if ( hvm_funcs.virtual_intr_delivery_enabled && !nestedhvm_vcpu_in_guestmode(v) ) return irr; @@ -1316,7 +1308,7 @@ int vlapic_ack_pending_irq(struct vcpu *v, int vector, bool_t force_ack) int isr; if ( !force_ack && - vlapic_virtual_intr_delivery_enabled() ) + hvm_funcs.virtual_intr_delivery_enabled ) return 1; /* If there's no chance of using APIC assist then bail now. */ diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c index b2fdbf0ef0..1834dc8bd1 100644 --- a/xen/arch/x86/hvm/vmx/vmx.c +++ b/xen/arch/x86/hvm/vmx/vmx.c @@ -1898,11 +1898,6 @@ static void vmx_update_eoi_exit_bitmap(struct vcpu *v, u8 vector, u8 trig) vmx_clear_eoi_exit_bitmap(v, vector); } -static int vmx_virtual_intr_delivery_enabled(void) -{ - return cpu_has_vmx_virtual_intr_delivery; -} - static void vmx_process_isr(int isr, struct vcpu *v) { unsigned long status; @@ -2281,7 +2276,6 @@ static struct hvm_function_table __initdata vmx_function_table = { .nhvm_intr_blocked = nvmx_intr_blocked, .nhvm_domain_relinquish_resources = nvmx_domain_relinquish_resources, .update_eoi_exit_bitmap = vmx_update_eoi_exit_bitmap, - .virtual_intr_delivery_enabled = vmx_virtual_intr_delivery_enabled, .process_isr = vmx_process_isr, .deliver_posted_intr = vmx_deliver_posted_intr, .sync_pir_to_irr = vmx_sync_pir_to_irr, @@ -2421,6 +2415,8 @@ const struct hvm_function_table * __init start_vmx(void) vmx_function_table.process_isr = NULL; vmx_function_table.handle_eoi = NULL; } + else + vmx_function_table.virtual_intr_delivery_enabled = true; if ( cpu_has_vmx_posted_intr_processing ) { diff --git a/xen/include/asm-x86/hvm/hvm.h b/xen/include/asm-x86/hvm/hvm.h index 2376ed6912..522362775e 100644 --- a/xen/include/asm-x86/hvm/hvm.h +++ b/xen/include/asm-x86/hvm/hvm.h @@ -97,6 +97,9 @@ struct hvm_function_table { /* Necessary hardware support for alternate p2m's? */ bool altp2m_supported; + /* Hardware virtual interrupt delivery enable? */ + bool virtual_intr_delivery_enabled; + /* Indicate HAP capabilities. */ unsigned int hap_capabilities; @@ -195,7 +198,6 @@ struct hvm_function_table { /* Virtual interrupt delivery */ void (*update_eoi_exit_bitmap)(struct vcpu *v, u8 vector, u8 trig); - int (*virtual_intr_delivery_enabled)(void); void (*process_isr)(int isr, struct vcpu *v); void (*deliver_posted_intr)(struct vcpu *v, u8 vector); void (*sync_pir_to_irr)(struct vcpu *v); -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |