[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] Re: [PATCH 11/15] kvm: Rework inner loop of kvm_cpu_exec
From: |
Marcelo Tosatti |
Subject: |
[Qemu-devel] Re: [PATCH 11/15] kvm: Rework inner loop of kvm_cpu_exec |
Date: |
Fri, 11 Mar 2011 18:34:42 -0300 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Sat, Mar 05, 2011 at 07:12:50PM +0100, Jan Kiszka wrote:
> >> @@ -956,7 +956,6 @@ int kvm_cpu_exec(CPUState *env)
> >> abort();
> >> }
> >>
> >> - ret = 0; /* exit loop */
> >> switch (run->exit_reason) {
> >
> > Better keep ret assignment here so default behaviour is to
> > exit loop? EXCP_INTERRUPT.
>
> There is no real default behavior: in two cases we stay in the loop, in
> two others we leave, and the rest obtains ret from a return value.
> Moreover, if a new case misses to set ret, the compiler will complain.
>
> Jan
It will not complain because "ret" is used to store return value
of KVM_RUN.
[Qemu-devel] [PATCH 01/15] Break up user and system cpu_interrupt implementations, Jan Kiszka, 2011/03/04
[Qemu-devel] [PATCH 11/15] kvm: Rework inner loop of kvm_cpu_exec, Jan Kiszka, 2011/03/04
[Qemu-devel] [PATCH 04/15] kvm: Add in-kernel irqchip awareness to cpu_thread_is_idle, Jan Kiszka, 2011/03/04
[Qemu-devel] [PATCH 09/15] kvm: x86: Synchronize PAT MSR with the kernel, Jan Kiszka, 2011/03/04
[Qemu-devel] [PATCH 02/15] Redirect cpu_interrupt to callback handler, Jan Kiszka, 2011/03/04