Re: [Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-30 Thread Wei Liu
On Fri, Nov 29, 2019 at 06:15:52PM +, Andrew Cooper wrote: > On 21/11/2019 18:50, Wei Liu wrote: > > Also replace xen_guest with running_on_hypervisor boolean. > > I agree with dropping xen_guest, but... > > > > > Signed-off-by: Wei Liu > > --- > > Changes in v4: > > 1. Access ->name

Re: [Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-29 Thread Andrew Cooper
On 21/11/2019 18:50, Wei Liu wrote: > Also replace xen_guest with running_on_hypervisor boolean. I agree with dropping xen_guest, but... > > Signed-off-by: Wei Liu > --- > Changes in v4: > 1. Access ->name directly. > 2. Drop Roger's review tag. > --- > xen/arch/x86/setup.c | 7 +-- > 1

Re: [Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-29 Thread Jan Beulich
On 29.11.2019 15:31, Jan Beulich wrote: > On 21.11.2019 19:50, Wei Liu wrote: >> @@ -763,7 +764,7 @@ void __init noreturn __start_xen(unsigned long mbi_p) >> * allocing any xenheap structures wanted in lower memory. */ >> kexec_early_calculations(); >> >> -hypervisor_probe(); >> +

Re: [Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-29 Thread Jan Beulich
On 21.11.2019 19:50, Wei Liu wrote: > @@ -763,7 +764,7 @@ void __init noreturn __start_xen(unsigned long mbi_p) > * allocing any xenheap structures wanted in lower memory. */ > kexec_early_calculations(); > > -hypervisor_probe(); > +running_on_hypervisor =

Re: [Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-22 Thread Durrant, Paul
> -Original Message- > From: Xen-devel On Behalf Of Wei > Liu > Sent: 21 November 2019 19:51 > To: Xen Development List > Cc: Wei Liu ; Wei Liu ; Andrew Cooper > ; Michael Kelley ; Jan > Beulich ; Roger Pau Monné > Subject: [Xen-devel] [PATCH v4 7/8] x86: b

[Xen-devel] [PATCH v4 7/8] x86: be more verbose when running on a hypervisor

2019-11-21 Thread Wei Liu
Also replace xen_guest with running_on_hypervisor boolean. Signed-off-by: Wei Liu --- Changes in v4: 1. Access ->name directly. 2. Drop Roger's review tag. --- xen/arch/x86/setup.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/setup.c