RE: [PATCH] WHPX: refactor load library

2019-11-13 Thread Sunil Muthuswamy
> Making it easier for other people to test WHPX would be nice. Yes, we understand the concerns and I generally agree here. I am trying to connect the different teams involved here (legal, SDK here) and connect the dots for them, to see what can be done here. > But in case this is not sorted ou

RE: [PATCH] WHPX: refactor load library

2019-11-13 Thread Sunil Muthuswamy
> Can we wait for approval from the Microsoft legal department first? > So we can start testing WHPX builds, and reduce the possibilities to > introduce regressions. > > Testing is ready, we are waiting for Microsoft to merge, see: > https://nam06.safelinks.protection.outlook.com/?url=https%3A%

RE: [PATCH] WHPX: refactor load library

2019-11-13 Thread Sunil Muthuswamy
> -Original Message- > From: Paolo Bonzini > Sent: Wednesday, November 13, 2019 7:00 AM > To: Sunil Muthuswamy ; Richard Henderson > ; Eduardo Habkost ; > Stefan Weil > Cc: qemu-devel@nongnu.org; Justin Terry (VM) > Subject: Re: [PATCH] WHPX: refactor load lib

Re: [PATCH] WHPX: refactor load library

2019-11-13 Thread Eduardo Habkost
om: Sunil Muthuswamy > > > > Sent: Friday, November 8, 2019 12:32 PM > > > > To: 'Paolo Bonzini' ; 'Richard Henderson' > > > > ; 'Eduardo Habkost' ; 'Stefan > > > > Weil' > > > > Cc: 'qemu-

Re: [PATCH] WHPX: refactor load library

2019-11-13 Thread Philippe Mathieu-Daudé
27; ; 'Stefan Weil' Cc: 'qemu-devel@nongnu.org' ; Justin Terry (VM) Subject: [PATCH] WHPX: refactor load library This refactors the load library of WHV libraries to make it more modular. It makes a helper routine that can be called on demand. This allows future expansion of lo

Re: [PATCH] WHPX: refactor load library

2019-11-13 Thread Paolo Bonzini
On 08/11/19 21:31, Sunil Muthuswamy wrote: > > +typedef enum WHPFunctionList { > +WINHV_PLATFORM_FNS_DEFAULT, > +WINHV_EMULATION_FNS_DEFAULT, > +} WHPFunctionList; > What does "default" stand for? I assume you have more changes to this function in the future. > + * Load the functions

Re: [PATCH] WHPX: refactor load library

2019-11-12 Thread Eduardo Habkost
Habkost' ; 'Stefan > > Weil' > > Cc: 'qemu-devel@nongnu.org' ; Justin Terry (VM) > > > > Subject: [PATCH] WHPX: refactor load library > > > > This refactors the load library of WHV libraries to make it more > > modula

RE: [PATCH] WHPX: refactor load library

2019-11-12 Thread Sunil Muthuswamy
> -Original Message- > From: Sunil Muthuswamy > Sent: Friday, November 8, 2019 12:32 PM > To: 'Paolo Bonzini' ; 'Richard Henderson' > ; 'Eduardo Habkost' ; 'Stefan > Weil' > Cc: 'qemu-devel@nongnu.org' ; Justin

[PATCH] WHPX: refactor load library

2019-11-08 Thread Sunil Muthuswamy
This refactors the load library of WHV libraries to make it more modular. It makes a helper routine that can be called on demand. This allows future expansion of load library/functions to support functionality that is depenedent on some feature being available. Signed-off-by: Sunil Muthuswamy ---