Re: [PATCH V2 1/3] x86/Hyper-V: Fix definition of struct hv_vp_assist_page

2019-08-14 Thread Paolo Bonzini
On 14/08/19 15:26, Paolo Bonzini wrote: > On 14/08/19 09:34, lantianyu1...@gmail.com wrote: >> From: Tianyu Lan >> >> The struct hv_vp_assist_page was defined incorrectly. >> The "vtl_control" should be u64[3], "nested_enlightenments >> _control" should be a u64 and there is 7 reserved bytes >> fo

Re: [PATCH V2 1/3] x86/Hyper-V: Fix definition of struct hv_vp_assist_page

2019-08-14 Thread Paolo Bonzini
On 14/08/19 09:34, lantianyu1...@gmail.com wrote: > From: Tianyu Lan > > The struct hv_vp_assist_page was defined incorrectly. > The "vtl_control" should be u64[3], "nested_enlightenments > _control" should be a u64 and there is 7 reserved bytes > following "enlighten_vmentry". This patch is to f

[PATCH V2 1/3] x86/Hyper-V: Fix definition of struct hv_vp_assist_page

2019-08-14 Thread lantianyu1986
From: Tianyu Lan The struct hv_vp_assist_page was defined incorrectly. The "vtl_control" should be u64[3], "nested_enlightenments _control" should be a u64 and there is 7 reserved bytes following "enlighten_vmentry". This patch is to fix it. Signed-off-by: Tianyu Lan -- Change since v1: