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 /arch/mips | |
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 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/kvm_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/kvm_host.h b/arch/mips/include/asm/kvm_host.h index fca4547d580f..4245c082095f 100644 --- a/arch/mips/include/asm/kvm_host.h +++ b/arch/mips/include/asm/kvm_host.h @@ -109,7 +109,7 @@ static inline bool kvm_is_error_hva(unsigned long addr) } struct kvm_vm_stat { - ulong remote_tlb_flush; + u64 remote_tlb_flush; }; struct kvm_vcpu_stat { |