Re: [Qemu-devel] [PATCH] i386: make 'hv-spinlocks' a regular uint32 property

2019-06-18 Thread Eduardo Habkost
On Tue, Jun 18, 2019 at 11:07:06AM +, Roman Kagan wrote: > X86CPU.hv-spinlocks is a uint32 property that has a special setter > validating the value to be no less than 0xFFF and no bigger than > UINT_MAX. The latter check is redundant; as for the former, there > appears to be no reason to proh

[Qemu-devel] [PATCH] i386: make 'hv-spinlocks' a regular uint32 property

2019-06-18 Thread Roman Kagan
X86CPU.hv-spinlocks is a uint32 property that has a special setter validating the value to be no less than 0xFFF and no bigger than UINT_MAX. The latter check is redundant; as for the former, there appears to be no reason to prohibit the user from setting it to a lower value. So nuke the dedicate