Re: [PATCH] hvf: Use standard CR0 and CR4 register definitions

2022-02-08 Thread Cameron Esfahani
Ping Cameron > On Oct 28, 2021, at 11:09 PM, Philippe Mathieu-Daudé > wrote: > > On 10/29/21 03:33, Cameron Esfahani wrote: >> No need to have our own definitions of these registers. >> >> Signed-off-by: Cameron Esfahani >> --- >> target/i386/hvf/vmx.h | 17 + >> target/i

Re: [PATCH] hvf: Use standard CR0 and CR4 register definitions

2021-10-28 Thread Philippe Mathieu-Daudé
On 10/29/21 03:33, Cameron Esfahani wrote: > No need to have our own definitions of these registers. > > Signed-off-by: Cameron Esfahani > --- > target/i386/hvf/vmx.h | 17 + > target/i386/hvf/x86.c | 6 +++--- > target/i386/hvf/x86.h | 34

[PATCH] hvf: Use standard CR0 and CR4 register definitions

2021-10-28 Thread Cameron Esfahani
No need to have our own definitions of these registers. Signed-off-by: Cameron Esfahani --- target/i386/hvf/vmx.h | 17 + target/i386/hvf/x86.c | 6 +++--- target/i386/hvf/x86.h | 34 -- target/i386/hvf/x86_mmu.c | 2 +- target/i3