Re: [Xen-devel] [PATCH for-next v3 5/9] x86: introduce hypervisor framework

2019-11-21 Thread Wei Liu
On Fri, Nov 15, 2019 at 02:48:18PM +0100, Jan Beulich wrote: > On 21.10.2019 17:57, Wei Liu wrote: > > --- /dev/null > > +++ b/xen/arch/x86/guest/hypervisor.c > > @@ -0,0 +1,45 @@ > > +/** > > + *

Re: [Xen-devel] [PATCH for-next v3 5/9] x86: introduce hypervisor framework

2019-11-15 Thread Jan Beulich
On 21.10.2019 17:57, Wei Liu wrote: > --- /dev/null > +++ b/xen/arch/x86/guest/hypervisor.c > @@ -0,0 +1,45 @@ > +/** > + * arch/x86/guest/hypervisor.c > + * > + * Support for detecting and running under a hypervisor. > +

Re: [Xen-devel] [PATCH for-next v3 5/9] x86: introduce hypervisor framework

2019-10-23 Thread Paul Durrant
On Mon, 21 Oct 2019 at 17:01, Wei Liu wrote: > > We will soon implement Hyper-V support for Xen. Add a framework for > that. > > This requires moving some of the hypervisor_* functions from xen.h to > hypervisor.h. > > Signed-off-by: Wei Liu Reviewed-by: Paul Durrant > --- >

[Xen-devel] [PATCH for-next v3 5/9] x86: introduce hypervisor framework

2019-10-21 Thread Wei Liu
We will soon implement Hyper-V support for Xen. Add a framework for that. This requires moving some of the hypervisor_* functions from xen.h to hypervisor.h. Signed-off-by: Wei Liu --- xen/arch/x86/guest/Makefile| 2 + xen/arch/x86/guest/hypervisor.c| 45