]> git.proxmox.com Git - qemu.git/commit
target-arm: Fix incorrect check of kvm_vcpu_ioctl return value
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 3 May 2013 17:47:22 +0000 (18:47 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 3 May 2013 17:47:22 +0000 (18:47 +0100)
commit536f25e4c77592b936e50728c83894c23f4f61c8
tree12d0f528b01a2b97c93cd252df9e159a2b8dcfc9
parent743bddb4b35ceaaf6f95aea581a4130dcae6205a
target-arm: Fix incorrect check of kvm_vcpu_ioctl return value

kvm_vcpu_ioctl() returns -ETHING on error, not ETHING -- correct
an incorrect check in kvm_arch_init_vcpu(). This would not have
had any significant ill-effects -- we would just have propagated
the less useful ENOENT up to the caller rather than the more
accurate EINVAL in the unlikely case that the kernel didn't
have VFP-D32 support.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target-arm/kvm.c