Re: [Xen-devel] [PATCH v4] x86: wrap kexec feature with CONFIG_KEXEC

2015-09-01 Thread David Vrabel
On 31/08/15 22:32, Jonathan Creekmore wrote: > Add the appropriate #if checks around the kexec code in the x86 codebase > so that the feature can actually be turned off by the flag instead of > always required to be enabled on x86. Acked-by: David Vrabel David __

Re: [Xen-devel] [PATCH v4] x86: wrap kexec feature with CONFIG_KEXEC

2015-09-01 Thread Jan Beulich
>>> On 31.08.15 at 23:32, wrote: > @@ -71,6 +72,10 @@ endif > ifneq ($(max_phys_irqs),) > CFLAGS-y+= -DMAX_PHYS_IRQS=$(max_phys_irqs) > endif > +ifeq ($(HAS_KEXEC)$(kexec),yy) > +CONFIG_KEXEC := y Apart from this line not matching blank padding wide with the ones surrounding it

Re: [Xen-devel] [PATCH v4] x86: wrap kexec feature with CONFIG_KEXEC

2015-08-31 Thread Andrew Cooper
On 31/08/2015 22:32, Jonathan Creekmore wrote: > Add the appropriate #if checks around the kexec code in the x86 codebase > so that the feature can actually be turned off by the flag instead of > always required to be enabled on x86. > > Signed-off-by: Jonathan Creekmore Reviewed-by: Andrew Coope

[Xen-devel] [PATCH v4] x86: wrap kexec feature with CONFIG_KEXEC

2015-08-31 Thread Jonathan Creekmore
Add the appropriate #if checks around the kexec code in the x86 codebase so that the feature can actually be turned off by the flag instead of always required to be enabled on x86. Signed-off-by: Jonathan Creekmore --- Changed since v3: * Correct makefile to meet the standards for feature flag