qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] accel/tcg: mttcg remove false-negative halted assertion


From: Nicholas Piggin
Subject: Re: [PATCH] accel/tcg: mttcg remove false-negative halted assertion
Date: Wed, 27 Sep 2023 20:38:42 +1000

On Fri Sep 22, 2023 at 4:25 AM AEST, Michael Tokarev wrote:
> 29.08.2023 04:06, Nicholas Piggin wrote:
> > mttcg asserts that an execution ending with EXCP_HALTED must have
> > cpu->halted. However between the event or instruction that sets
> > cpu->halted and requests exit and the assertion here, an
> > asynchronous event could clear cpu->halted.
> > 
> > This leads to crashes running AIX on ppc/pseries because it uses
> > H_CEDE/H_PROD hcalls, where H_CEDE sets self->halted = 1 and
> > H_PROD sets other cpu->halted = 0 and kicks it.
> > 
> > H_PROD could be turned into an interrupt to wake, but several other
> > places in ppc, sparc, and semihosting follow what looks like a similar
> > pattern setting halted = 0 directly. So remove this assertion.
> > 
> > Reported-by: Ivan Warren <ivan@vmfacility.fr>
> > Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
>
> This one also smells like a stable material, is it not?

Yeah I would say it is.

Thanks,
Nick

>
> Thanks,
>
> /mjt
>
> > diff --git a/accel/tcg/tcg-accel-ops-mttcg.c 
> > b/accel/tcg/tcg-accel-ops-mttcg.c
> > index b276262007..d0b6f288d9 100644
> > --- a/accel/tcg/tcg-accel-ops-mttcg.c
> > +++ b/accel/tcg/tcg-accel-ops-mttcg.c
> > @@ -98,17 +98,6 @@ static void *mttcg_cpu_thread_fn(void *arg)
> >               case EXCP_DEBUG:
> >                   cpu_handle_guest_debug(cpu);
> >                   break;
> > -            case EXCP_HALTED:
> > -                /*
> > -                 * during start-up the vCPU is reset and the thread is
> > -                 * kicked several times. If we don't ensure we go back
> > -                 * to sleep in the halted state we won't cleanly
> > -                 * start-up when the vCPU is enabled.
> > -                 *
> > -                 * cpu->halted should ensure we sleep in wait_io_event
> > -                 */
> > -                g_assert(cpu->halted);
> > -                break;
> >               case EXCP_ATOMIC:
> >                   qemu_mutex_unlock_iothread();
> >                   cpu_exec_step_atomic(cpu);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]