diff options
author | Alexander Graf <agraf@suse.de> | 2012-08-01 14:56:51 +0400 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-10-06 01:38:39 +0400 |
commit | cf1c5ca47319d9eb49166859921822fea354d4b3 (patch) | |
tree | a67c1d22e151a6ff3ed100d6870b8c813332ff8d /arch/powerpc/kvm | |
parent | f4800b1f4d23156e9080a08d6114e5d8bb767964 (diff) | |
download | linux-cf1c5ca47319d9eb49166859921822fea354d4b3.tar.xz |
KVM: PPC: BookE: Expose remote TLB flushes in debugfs
We're already counting remote TLB flushes in a variable, but don't export
it to user space yet. Do so, so we know what's going on.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r-- | arch/powerpc/kvm/booke.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c index 7ce2ed07831f..1d4ce9a80f55 100644 --- a/arch/powerpc/kvm/booke.c +++ b/arch/powerpc/kvm/booke.c @@ -63,6 +63,7 @@ struct kvm_stats_debugfs_item debugfs_entries[] = { { "halt_wakeup", VCPU_STAT(halt_wakeup) }, { "doorbell", VCPU_STAT(dbell_exits) }, { "guest doorbell", VCPU_STAT(gdbell_exits) }, + { "remote_tlb_flush", VM_STAT(remote_tlb_flush) }, { NULL } }; |