Re: [Xen-devel] [PATCH for-next 3/7] x86/hyperv: extract more information from Hyper-V

2019-12-10 Thread Jan Beulich
On 25.10.2019 11:16, Wei Liu wrote: > --- a/xen/arch/x86/guest/hyperv/hyperv.c > +++ b/xen/arch/x86/guest/hyperv/hyperv.c > @@ -21,6 +21,9 @@ > #include > > #include > +#include > + > +struct ms_hyperv_info ms_hyperv; > > bool __init hyperv_probe(void) > { > @@ -36,6 +39,17 @@ bool __ini

[Xen-devel] [PATCH for-next 3/7] x86/hyperv: extract more information from Hyper-V

2019-10-25 Thread Wei Liu
Provide a structure to store that information. The structure will be accessed from other places later so make it public. Signed-off-by: Wei Liu --- xen/arch/x86/guest/hyperv/hyperv.c | 14 ++ xen/include/asm-x86/guest/hyperv.h | 12 2 files changed, 26 insertions(+) dif