Re: [PATCH 15/56] KVM: arm64: Add build rules for separate VHE/nVHE object files

2021-05-18 Thread Marc Zyngier
Hi Eric, On Tue, 18 May 2021 12:48:41 +0100, Auger Eric wrote: > > Hi David, Marc, > [...] > >> --- a/scripts/kallsyms.c > >> +++ b/scripts/kallsyms.c > >> @@ -109,6 +109,7 @@ static bool is_ignored_symbol(const char *name, char > >> type) > >>".LASANPC", /* s390

Re: [PATCH v5 1/4] KVM: stats: Separate common stats from architecture specific ones

2021-05-18 Thread David Matlack
On Mon, May 17, 2021 at 9:24 AM Jing Zhang wrote: > > Put all common statistics in a separate structure to ease > statistics handling for the incoming new statistics API. > > No functional change intended. > > Signed-off-by: Jing Zhang > --- > arch/arm64/include/asm/kvm_host.h | 9 ++---

Re: [PATCH 15/56] KVM: arm64: Add build rules for separate VHE/nVHE object files

2021-05-18 Thread Auger Eric
Hi David, Marc, On 5/4/21 4:47 PM, Auger Eric wrote: > Hi David, Marc, > > On 8/5/20 7:56 PM, Marc Zyngier wrote: >> From: David Brazdil >> >> Add new folders arch/arm64/kvm/hyp/{vhe,nvhe} and Makefiles for building code >> that runs in EL2 under VHE/nVHE KVM, repsectivelly. Add an include

Re: [PATCH v3 1/9] irqchip/gic: Split vGIC probing information from the GIC code

2021-05-18 Thread Alexandru Elisei
Hi Marc, On 5/10/21 2:48 PM, Marc Zyngier wrote: > The vGIC advertising code is unsurprisingly very much tied to > the GIC implementations. However, we are about to extend the > support to lesser implementations. > > Let's dissociate the vgic registration from the GIC code and > move it into KVM,

Re: [PATCH v5 1/4] KVM: stats: Separate common stats from architecture specific ones

2021-05-18 Thread Krish Sadhukhan
On 5/18/21 10:25 AM, Jing Zhang wrote: Hi David, On Tue, May 18, 2021 at 11:27 AM David Matlack wrote: On Mon, May 17, 2021 at 5:10 PM Jing Zhang wrote: Actually the definition of kvm_{vcpu,vm}_stat are arch specific. There is no real structure for arch agnostic stats. Most of the stats

Re: [PATCH v5 1/4] KVM: stats: Separate common stats from architecture specific ones

2021-05-18 Thread David Matlack
On Mon, May 17, 2021 at 5:10 PM Jing Zhang wrote: > Actually the definition of kvm_{vcpu,vm}_stat are arch specific. There is > no real structure for arch agnostic stats. Most of the stats in common > structures are arch agnostic, but not all of them. > There are some benefits to put all common

Re: [PATCH v5 1/4] KVM: stats: Separate common stats from architecture specific ones

2021-05-18 Thread Jing Zhang
Hi David, On Tue, May 18, 2021 at 11:27 AM David Matlack wrote: > > On Mon, May 17, 2021 at 5:10 PM Jing Zhang wrote: > > > Actually the definition of kvm_{vcpu,vm}_stat are arch specific. There is > > no real structure for arch agnostic stats. Most of the stats in common > > structures are