RE: [PATCH 3/9] xen/arm: introduce CONFIG_STATIC_ALLOCATION

2021-07-04 Thread Penny Zheng
Hi Julien > -Original Message- > From: Julien Grall > Sent: Thursday, July 1, 2021 1:45 AM > To: Penny Zheng ; xen-devel@lists.xenproject.org; > sstabell...@kernel.org; jbeul...@suse.com > Cc: Bertrand Marquis ; Wei Chen > > Subject: Re: [PATCH

Re: [PATCH 3/9] xen/arm: introduce CONFIG_STATIC_ALLOCATION

2021-06-30 Thread Julien Grall
Hi Penny, On 07/06/2021 03:43, Penny Zheng wrote: For now, since the feature of Domain on Static Allocation is only supported on ARM Architecture, this commit introduces new CONFIG_STATIC_ALLOCATION to avoid bringing dead codes in other archs. Similarly to patch #2, I think it would be better

Re: [PATCH 3/9] xen/arm: introduce CONFIG_STATIC_ALLOCATION

2021-06-06 Thread Jan Beulich
On 07.06.2021 04:43, Penny Zheng wrote: > --- a/xen/arch/arm/Kconfig > +++ b/xen/arch/arm/Kconfig > @@ -278,6 +278,9 @@ config ARM64_ERRATUM_1286807 > > If unsure, say Y. > > +config STATIC_ALLOCATION > +def_bool y > + > endmenu > > config ARM64_HARDEN_BRANCH_PREDICTOR Nit: Whi

[PATCH 3/9] xen/arm: introduce CONFIG_STATIC_ALLOCATION

2021-06-06 Thread Penny Zheng
For now, since the feature of Domain on Static Allocation is only supported on ARM Architecture, this commit introduces new CONFIG_STATIC_ALLOCATION to avoid bringing dead codes in other archs. Signed-off-by: Penny Zheng --- changes v2: - new commit --- xen/arch/arm/Kconfig | 3 +++ 1 file chang