Re: merge bouyer-xenpvh to HEAD

Joerg Sonnenberger <[email protected]> Sun, 26 Apr 2020 14:53:50 +0200
Newsgroups gmane.os.netbsd.ports.x86-64,gmane.os.netbsd.ports.i386
Message-ID <[email protected]>
On Sun, Apr 26, 2020 at 01:25:45PM +0200, Maxime Villard wrote:
> In locore.S:
> 
> 	+	movl	$VM_GUEST_XENPV, _C_LABEL(vm_guest)
> 
> vm_guest being an enum, I don't know if the "movl" is correct. The compiler
> could make vm_guest an uint8_t. I think it should be switched to a fixed-
> size type.

Not in C, in C they are int unless the largest enum value forces it to a
larger type.

Joerg