[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 3/3] arm/hvf: Add a WFI handler
From: |
Peter Collingbourne |
Subject: |
Re: [PATCH v3 3/3] arm/hvf: Add a WFI handler |
Date: |
Wed, 2 Dec 2020 12:02:02 -0800 |
On Wed, Dec 2, 2020 at 10:49 AM Alexander Graf <agraf@csgraf.de> wrote:
>
>
> On 02.12.20 05:44, Peter Collingbourne wrote:
> > Sleep on WFI until the VTIMER is due but allow ourselves to be woken
> > up on IPI.
> >
> > Signed-off-by: Peter Collingbourne <pcc@google.com>
> > ---
> > v3:
> > - move the simplified locking to a separate patch
> > - spin on sleep <2ms
> >
> > v2:
> > - simplify locking further
> > - wait indefinitely on disabled or masked timers
> >
> > accel/hvf/hvf-cpus.c | 4 +--
> > include/sysemu/hvf_int.h | 1 +
> > target/arm/hvf/hvf.c | 56 ++++++++++++++++++++++++++++++++++++++++
> > 3 files changed, 59 insertions(+), 2 deletions(-)
> >
> > diff --git a/accel/hvf/hvf-cpus.c b/accel/hvf/hvf-cpus.c
> > index e613c22ad0..b2c8fb57f6 100644
> > --- a/accel/hvf/hvf-cpus.c
> > +++ b/accel/hvf/hvf-cpus.c
> > @@ -344,8 +344,8 @@ static int hvf_init_vcpu(CPUState *cpu)
> > sigact.sa_handler = dummy_signal;
> > sigaction(SIG_IPI, &sigact, NULL);
> >
> > - pthread_sigmask(SIG_BLOCK, NULL, &set);
> > - sigdelset(&set, SIG_IPI);
> > + pthread_sigmask(SIG_BLOCK, NULL, &cpu->hvf->unblock_ipi_mask);
> > + sigdelset(&cpu->hvf->unblock_ipi_mask, SIG_IPI);
>
>
> That turns set into an unused variable, no? I'll fix it up while
> applying though. The rest looks great, I'll push it as part of my next
> patch set.
Yes, thanks for spotting that, your fixup looks good.
Peter