diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-06-25 18:24:41 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-07-29 09:01:14 +0200 |
commit | ac0a48c39af31fe27bdb1afca7b26f109ff1c704 (patch) | |
tree | 2c2d3cecadd5333b8ed8fa147b2e61ed2d5bced4 /arch/x86/include/asm | |
parent | a343c9b7673e2228bc8a9ac65aae42140f6f9977 (diff) | |
download | blackbird-op-linux-ac0a48c39af31fe27bdb1afca7b26f109ff1c704.tar.gz blackbird-op-linux-ac0a48c39af31fe27bdb1afca7b26f109ff1c704.zip |
KVM: x86: rename EMULATE_DO_MMIO
The next patch will reuse it for other userspace exits than MMIO,
namely debug events.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 531f47cbf1f8..f5df0a84e51c 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -803,8 +803,8 @@ extern u32 kvm_min_guest_tsc_khz; extern u32 kvm_max_guest_tsc_khz; enum emulation_result { - EMULATE_DONE, /* no further processing */ - EMULATE_DO_MMIO, /* kvm_run filled with mmio request */ + EMULATE_DONE, /* no further processing */ + EMULATE_USER_EXIT, /* kvm_run ready for userspace exit */ EMULATE_FAIL, /* can't emulate this instruction */ }; |