Commit fea52953 authored by Sasikantha babu's avatar Sasikantha babu Committed by Avi Kivity

KVM: PMU: Fix integer constant is too large warning in kvm_pmu_set_msr()

Signed-off-by: default avatarSasikantha babu <sasikanth.v19@gmail.com>
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 7d6e1cb7
......@@ -369,7 +369,7 @@ int kvm_pmu_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
case MSR_CORE_PERF_FIXED_CTR_CTRL:
if (pmu->fixed_ctr_ctrl == data)
return 0;
if (!(data & 0xfffffffffffff444)) {
if (!(data & 0xfffffffffffff444ull)) {
reprogram_fixed_counters(pmu, data);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment