diff options
author | Avi Kivity <avi@qumranet.com> | 2007-03-04 07:17:08 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-05-03 03:52:24 -0400 |
commit | 8eb7d334bd8e693340ee198280f7d45035cdab8c (patch) | |
tree | 438ec0b6b6c7714e436884576a3fdce84507813f /drivers/kvm/vmx.c | |
parent | b4e63f560beb187cffdaf706e534a1e2f9effb66 (diff) |
KVM: Fold kvm_run::exit_type into kvm_run::exit_reason
Currently, userspace is told about the nature of the last exit from the
guest using two fields, exit_type and exit_reason, where exit_type has
just two enumerations (and no need for more). So fold exit_type into
exit_reason, reducing the complexity of determining what really happened.
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r-- | drivers/kvm/vmx.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index 71410a65bb90..cf9568fbe8a5 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c | |||
@@ -1922,10 +1922,10 @@ again: | |||
1922 | 1922 | ||
1923 | asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS)); | 1923 | asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS)); |
1924 | 1924 | ||
1925 | kvm_run->exit_type = 0; | ||
1926 | if (fail) { | 1925 | if (fail) { |
1927 | kvm_run->exit_type = KVM_EXIT_TYPE_FAIL_ENTRY; | 1926 | kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
1928 | kvm_run->exit_reason = vmcs_read32(VM_INSTRUCTION_ERROR); | 1927 | kvm_run->fail_entry.hardware_entry_failure_reason |
1928 | = vmcs_read32(VM_INSTRUCTION_ERROR); | ||
1929 | r = 0; | 1929 | r = 0; |
1930 | } else { | 1930 | } else { |
1931 | /* | 1931 | /* |
@@ -1935,7 +1935,6 @@ again: | |||
1935 | profile_hit(KVM_PROFILING, (void *)vmcs_readl(GUEST_RIP)); | 1935 | profile_hit(KVM_PROFILING, (void *)vmcs_readl(GUEST_RIP)); |
1936 | 1936 | ||
1937 | vcpu->launched = 1; | 1937 | vcpu->launched = 1; |
1938 | kvm_run->exit_type = KVM_EXIT_TYPE_VM_EXIT; | ||
1939 | r = kvm_handle_exit(kvm_run, vcpu); | 1938 | r = kvm_handle_exit(kvm_run, vcpu); |
1940 | if (r > 0) { | 1939 | if (r > 0) { |
1941 | /* Give scheduler a change to reschedule. */ | 1940 | /* Give scheduler a change to reschedule. */ |