search for: send_mmio_req

Displaying 2 results from an estimated 2 matches for "send_mmio_req".

2005 Apr 02
1
[PATCH] VMX support for MMIO/PIO in VM8086 mode
...0xFFFF; + else + p->count = inst_decoder_regs->ecx; p->df = (inst_decoder_regs->eflags & EF_DF) ? 1 : 0; - } + } else + p->count = 1; + + if (pvalid) + p->u.pdata = (void *) gva_to_gpa(p->u.data); + +#if 0 + printf("send_mmio_req: eip 0x%lx:0x%lx, dir %d, pdata_valid %d, ", + inst_decoder_regs->cs, inst_decoder_regs->eip, p->dir, p->pdata_valid); + printf("port_mm %d, size %lld, addr 0x%llx, value 0x%lx, count %lld\n", + p->port_mm, p->size, p->addr, value, p->count); +#endif...
2005 Jun 30
0
[PATCH][2/10] Extend the VMX intercept mechanism to include mmio as well as portio.
...vmx_platform.c --- a/xen/arch/x86/vmx_platform.c Thu Jun 30 03:20:48 2005 +++ b/xen/arch/x86/vmx_platform.c Thu Jun 30 04:08:50 2005 @@ -606,12 +606,11 @@ if ((pvalid) && vmx_paging_enabled(current)) p->u.pdata = (void *) gva_to_gpa(p->u.data); -#if 0 - printf("send_mmio_req: eip 0x%lx:0x%lx, dir %d, pdata_valid %d, ", - inst_decoder_regs->cs, inst_decoder_regs->eip, p->dir, p->pdata_valid); - printf("port_mm %d, size %lld, addr 0x%llx, value 0x%lx, count %lld\n", - p->port_mm, p->size, p->addr, value, p->count); -#endif + i...