summaryrefslogtreecommitdiff
path: root/arch/powerpc/include/asm/kvm_host.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-06-10 19:30:32 +0300
committerPaolo Bonzini <pbonzini@redhat.com>2021-06-17 21:25:27 +0300
commite3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91 (patch)
tree57e47b6b751cd0945d5e7d8b3e1e287929b29e15 /arch/powerpc/include/asm/kvm_host.h
parentade74e1433f32e3fb422e3700d5bab34c57f4f47 (diff)
downloadlinux-e3cb6fa0e2bf4ffc6225a55851f0cf2b93b50f91.tar.xz
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/powerpc/include/asm/kvm_host.h')
-rw-r--r--arch/powerpc/include/asm/kvm_host.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h
index 7f2e90db2050..ae3d4af61b66 100644
--- a/arch/powerpc/include/asm/kvm_host.h
+++ b/arch/powerpc/include/asm/kvm_host.h
@@ -81,9 +81,9 @@ struct kvmppc_book3s_shadow_vcpu;
struct kvm_nested_guest;
struct kvm_vm_stat {
- ulong remote_tlb_flush;
- ulong num_2M_pages;
- ulong num_1G_pages;
+ u64 remote_tlb_flush;
+ u64 num_2M_pages;
+ u64 num_1G_pages;
};
struct kvm_vcpu_stat {