commit | 2b4a273b4266d9928d5b20154fea96f09ea5cb9a | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Mon Nov 24 14:35:24 2014 +0100 |
committer | Paolo Bonzini <pbonzini@redhat.com> | Mon Nov 24 16:53:50 2014 +0100 |
tree | 521f290d8ade86e3524565513314abc99b6d3540 | |
parent | c9eab58f6466cef3d9cd760a96e4de5e060e5195 [diff] |
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 <dan.carpenter@oracle.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>