Re: [PATCH] KVM: x86 emulator: Use opcode::execute for INS/OUTS

2011-11-27 Thread Avi Kivity
On 11/23/2011 05:27 AM, Takuya Yoshikawa wrote: > From: Takuya Yoshikawa > > INSB : 6C > INSW/INSD : 6D > OUTSB : 6E > OUTSW/OUTSD: 6F > > The I/O port address is read from the DX register when we decode the > operand because we see the SrcDX/DstDX flag is set. > > Thanks, applied. -

[PATCH] KVM: x86 emulator: Use opcode::execute for INS/OUTS

2011-11-22 Thread Takuya Yoshikawa
From: Takuya Yoshikawa INSB : 6C INSW/INSD : 6D OUTSB : 6E OUTSW/OUTSD: 6F The I/O port address is read from the DX register when we decode the operand because we see the SrcDX/DstDX flag is set. Signed-off-by: Takuya Yoshikawa --- arch/x86/kvm/emulate.c | 14 ++ 1 f