Re: [PATCH 07/14] KVM: Don't block+unblock when halt-polling is successful

From: Paolo Bonzini
Date: Sun Sep 26 2021 - 02:27:49 EST


On 25/09/21 11:50, Marc Zyngier wrote:
there is no need for arm64 to put/load
the vGIC as KVM hasn't relinquished control of the vCPU in any way.

This doesn't mean that there is no requirement for any state
change. The put/load on GICv4 is crucial for performance, and the VMCR
resync is a correctness requirement.

I wouldn't even say it's crucial for performance: halt polling cannot work and is a waste of time without (the current implementation of) put/load.

However, is activating the doorbell necessary? If possible, polling the VGIC directly for pending VLPIs without touching the ITS (for example by emulating IAR reads) may make sense. IIUC that must be done at EL2 though, so maybe it would even make sense to move all of halt polling to EL2 for the nVHE case. It all depends on benchmark results, of course.

Sorry for the many stupid questions I'm asking lately, but I'm trying to pay more attention to ARM and understand the VGIC and EL1/EL2 split better.

Paolo