diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-10 18:30:32 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-17 20:25:27 +0200 |
commit | e3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91 (patch) | |
tree | 57e47b6b751cd0945d5e7d8b3e1e287929b29e15 /virt | |
parent | KVM: x86/mmu: Grab nx_lpage_splits as an unsigned long before division (diff) | |
download | linux-e3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91.tar.xz linux-e3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91.zip |
KVM: switch per-VM stats to u64
Make them the same type as vCPU stats. There is no reason
to limit the counters to unsigned long.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/kvm_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index fc35ba0ea5d3..ed4d1581d502 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -4833,14 +4833,14 @@ static int kvm_debugfs_release(struct inode *inode, struct file *file) static int kvm_get_stat_per_vm(struct kvm *kvm, size_t offset, u64 *val) { - *val = *(ulong *)((void *)kvm + offset); + *val = *(u64 *)((void *)kvm + offset); return 0; } static int kvm_clear_stat_per_vm(struct kvm *kvm, size_t offset) { - *(ulong *)((void *)kvm + offset) = 0; + *(u64 *)((void *)kvm + offset) = 0; return 0; } |