Re: [Xen-devel] [PATCH 06/22] mini-os: setup hypercall page for HVMlite

2016-08-23 Thread Juergen Gross
On 23/08/16 23:03, Samuel Thibault wrote: > hello, > > Juergen Gross, on Tue 23 Aug 2016 17:15:52 +0200, wrote: >> When running in HVMlite mode we need to setup the hypercall page by >> ourself. >> >> Signed-off-by: Juergen Gross >> --- >> >> +#else /* ifdef __x86_64__ */ >> +#error "Unsupporte

Re: [Xen-devel] [PATCH 06/22] mini-os: setup hypercall page for HVMlite

2016-08-23 Thread Samuel Thibault
hello, Juergen Gross, on Tue 23 Aug 2016 17:15:52 +0200, wrote: > When running in HVMlite mode we need to setup the hypercall page by > ourself. > > Signed-off-by: Juergen Gross > --- > > +#else /* ifdef __x86_64__ */ > +#error "Unsupported architecture" > +#endif > + > #define wrmsr(msr,val1

[Xen-devel] [PATCH 06/22] mini-os: setup hypercall page for HVMlite

2016-08-23 Thread Juergen Gross
When running in HVMlite mode we need to setup the hypercall page by ourself. Signed-off-by: Juergen Gross --- arch/x86/events.c | 4 ++-- arch/x86/setup.c | 26 ++ include/x86/os.h | 22 +- 3 files changed, 45 insertions(+), 7 deletions(-) diff --g