diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-10 12:30:32 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-17 14:25:27 -0400 |
commit | e3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91 (patch) | |
tree | 57e47b6b751cd0945d5e7d8b3e1e287929b29e15 /arch/mips | |
parent | ade74e1433f32e3fb422e3700d5bab34c57f4f47 (diff) |
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 { |