mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
KVM: x86 emulator: cleanup nop emulation
Make it more explicit what we are checking for. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
f0c13ef1a8
commit
b8a98945ea
@ -2799,8 +2799,8 @@ special_insn:
|
|||||||
goto done;
|
goto done;
|
||||||
break;
|
break;
|
||||||
case 0x90: /* nop / xchg r8,rax */
|
case 0x90: /* nop / xchg r8,rax */
|
||||||
if (!(c->rex_prefix & 1)) { /* nop */
|
if (c->dst.ptr == (unsigned long *)&c->regs[VCPU_REGS_RAX]) {
|
||||||
c->dst.type = OP_NONE;
|
c->dst.type = OP_NONE; /* nop */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 0x91 ... 0x97: /* xchg reg,rax */
|
case 0x91 ... 0x97: /* xchg reg,rax */
|
||||||
|
Loading…
Reference in New Issue
Block a user