diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-10 15:55:14 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-10 15:55:14 +0000 |
commit | becfc3904194e76436ad0a60c2dde148e1927e4c (patch) | |
tree | a2649f5ff53bdfb590c28825ab4356dd3b944558 /kvm-all.c | |
parent | 57951c27422fc41586a5d4032e05bb300cced78d (diff) |
KVM: simplify kvm_cpu_exec hook
We don't need to use cpu_loop_exit() because we never use the
condition codes so everything can be folded into a single case.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5669 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'kvm-all.c')
-rw-r--r-- | kvm-all.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -298,6 +298,11 @@ int kvm_cpu_exec(CPUState *env) } } while (ret > 0); + if ((env->interrupt_request & CPU_INTERRUPT_EXIT)) { + env->interrupt_request &= ~CPU_INTERRUPT_EXIT; + env->exception_index = EXCP_INTERRUPT; + } + return ret; } |