search for: vmx_io_intercept

Displaying 1 result from an estimated 1 matches for "vmx_io_intercept".

2005 Jun 30
0
[PATCH][2/10] Extend the VMX intercept mechanism to include mmio as well as portio.
...le to identify MMIO address space */ - if (mmio_space(gpa)) + if (mmio_space(gpa)){ handle_mmio(va, gpa); + return 1; + } result = shadow_fault(va, regs); @@ -451,10 +454,9 @@ p->port_mm = 0; /* Check if the packet needs to be intercepted */ - if (vmx_io_intercept(p)) { + if (vmx_portio_intercept(p)) /* no blocking & no evtchn notification */ return; - } set_bit(ARCH_VMX_IO_WAIT, &d->arch.arch_vmx.flags); p->state = STATE_IOREQ_READY; diff -r febfcd0a1a0a -r 9a43d5c12b95 xen/include/asm-x86/vmx_intercept.h --- a/xe...