From: Alexandru Isaila Date: Mon, 19 Feb 2018 13:07:06 +0000 (+0200) Subject: asm-x86/monitor: Add MONITOR_EVENT_INTERRUPT to common capabilities X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~555 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=454ae490487659a51d71adc77aa02892d0725235;p=xen.git asm-x86/monitor: Add MONITOR_EVENT_INTERRUPT to common capabilities Signed-off-by: Alexandru Isaila Acked-by: Razvan Cojocaru --- diff --git a/xen/include/asm-x86/monitor.h b/xen/include/asm-x86/monitor.h index 59a2610617..7a9e1e8ba7 100644 --- a/xen/include/asm-x86/monitor.h +++ b/xen/include/asm-x86/monitor.h @@ -80,13 +80,13 @@ static inline uint32_t arch_monitor_get_capabilities(struct domain *d) capabilities = ((1U << XEN_DOMCTL_MONITOR_EVENT_GUEST_REQUEST) | (1U << XEN_DOMCTL_MONITOR_EVENT_SOFTWARE_BREAKPOINT) | (1U << XEN_DOMCTL_MONITOR_EVENT_MOV_TO_MSR) | + (1U << XEN_DOMCTL_MONITOR_EVENT_INTERRUPT) | (1U << XEN_DOMCTL_MONITOR_EVENT_WRITE_CTRLREG)); if ( cpu_has_vmx ) { capabilities |= ((1U << XEN_DOMCTL_MONITOR_EVENT_DEBUG_EXCEPTION) | (1U << XEN_DOMCTL_MONITOR_EVENT_CPUID) | - (1U << XEN_DOMCTL_MONITOR_EVENT_INTERRUPT) | (1U << XEN_DOMCTL_MONITOR_EVENT_EMUL_UNIMPLEMENTED)); /* Since we know this is on VMX, we can just call the hvm func */