search for: _vmx_intercept_h

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

2005 Jun 30
0
[PATCH][2/10] Extend the VMX intercept mechanism to include mmio as well as portio.
...d->arch.arch_vmx.flags); p->state = STATE_IOREQ_READY; diff -r febfcd0a1a0a -r 9a43d5c12b95 xen/include/asm-x86/vmx_intercept.h --- a/xen/include/asm-x86/vmx_intercept.h Thu Jun 30 03:20:48 2005 +++ b/xen/include/asm-x86/vmx_intercept.h Thu Jun 30 04:08:50 2005 @@ -1,4 +1,3 @@ - #ifndef _VMX_INTERCEPT_H #define _VMX_INTERCEPT_H @@ -13,18 +12,45 @@ typedef int (*intercept_action_t)(ioreq_t*); +enum {PORTIO, MMIO}; + struct vmx_handler_t { int num_slot; struct { unsigned long addr; + int type; unsigned long offset; intercept_action_t...