On Tue, Jul 01, 2025 at 07:28:31PM +0200, Magnus Kulke wrote: > Add the main vCPU execution loop for MSHV using the MSHV_RUN_VP ioctl. > > A translate_gva() hypercall is implemented. The execution loop handles > guest entry and VM exits. There are handlers for memory r/w, PIO and > MMIO to which the exit events are dispatched. > > In case of MMIO the i386 instruction decoder/emulator is invoked to > perform the operation in user space. > > Signed-off-by: Magnus Kulke <magnusku...@linux.microsoft.com> > --- [...] > + > +typedef struct X64Registers { > + const uint32_t *names; > + const uint64_t *values; > + uintptr_t count;
Need four spaces for indentation. Wei.