kvm: x86: avoid warning about potential shift wrapping bug
authorPaolo Bonzini <[email protected]>
Mon, 24 Nov 2014 13:35:24 +0000 (14:35 +0100)
committerPaolo Bonzini <[email protected]>
Mon, 24 Nov 2014 15:53:50 +0000 (16:53 +0100)
commit2b4a273b4266d9928d5b20154fea96f09ea5cb9a
tree521f290d8ade86e3524565513314abc99b6d3540
parentc9eab58f6466cef3d9cd760a96e4de5e060e5195
kvm: x86: avoid warning about potential shift wrapping bug

cs.base is declared as a __u64 variable and vector is a u32 so this
causes a static checker warning.  The user indeed can set "sipi_vector"
to any u32 value in kvm_vcpu_ioctl_x86_set_vcpu_events(), but the
value should really have 8-bit precision only.

Reported-by: Dan Carpenter <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
arch/x86/include/asm/kvm_host.h
arch/x86/kvm/lapic.c
arch/x86/kvm/x86.c