diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2021-10-06 12:17:24 +0000 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-18 14:07:18 -0400 |
commit | 01c7d2672a84dbdfa8050d073c3ea466437578fd (patch) | |
tree | 873a9e6ba4bb7a465de118621a6374f50e117ef2 /tools/kvm/kvm_stat | |
parent | 9139a7a64581c80d157027ae20e86f2f24d4292c (diff) | |
download | linux-stable-01c7d2672a84dbdfa8050d073c3ea466437578fd.tar.gz linux-stable-01c7d2672a84dbdfa8050d073c3ea466437578fd.tar.bz2 linux-stable-01c7d2672a84dbdfa8050d073c3ea466437578fd.zip |
KVM: kvm_stat: do not show halt_wait_ns
Similar to commit 111d0bda8eeb ("tools/kvm_stat: Exempt time-based
counters"), we should not show timer values in kvm_stat. Remove the new
halt_wait_ns.
Fixes: 87bcc5fa092f ("KVM: stats: Add halt_wait_ns stats for all architectures")
Cc: Jing Zhang <jingzhangos@google.com>
Cc: Stefan Raspl <raspl@de.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Stefan Raspl <raspl@linux.ibm.com>
Message-Id: <20211006121724.4154-1-borntraeger@de.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/kvm/kvm_stat')
-rwxr-xr-x | tools/kvm/kvm_stat/kvm_stat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/kvm/kvm_stat/kvm_stat b/tools/kvm/kvm_stat/kvm_stat index b0bf56c5f120..5a5bd74f55bd 100755 --- a/tools/kvm/kvm_stat/kvm_stat +++ b/tools/kvm/kvm_stat/kvm_stat @@ -742,7 +742,7 @@ class DebugfsProvider(Provider): The fields are all available KVM debugfs files """ - exempt_list = ['halt_poll_fail_ns', 'halt_poll_success_ns'] + exempt_list = ['halt_poll_fail_ns', 'halt_poll_success_ns', 'halt_wait_ns'] fields = [field for field in self.walkdir(PATH_DEBUGFS_KVM)[2] if field not in exempt_list] |