diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2018-02-23 07:57:33 +0000 |
---|---|---|
committer | Christian Borntraeger <borntraeger@de.ibm.com> | 2018-03-14 19:21:11 +0000 |
commit | a5e0acea9ed644d622281a4a8fde94a2e24ec7e8 (patch) | |
tree | b95edc129c05fca067662d141115fc6c9317dd4c /arch/s390/include | |
parent | 5c2b4d5b78144dfe3e8769b52ae89f34d0efe3af (diff) | |
download | linux-a5e0acea9ed644d622281a4a8fde94a2e24ec7e8.tar.bz2 |
KVM: s390: add exit io request stats and simplify code
We want to count IO exit requests in kvm_stat. At the same time
we can get rid of the handle_noop function.
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/kvm_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h index 27918b15a8ba..22615af0b6e6 100644 --- a/arch/s390/include/asm/kvm_host.h +++ b/arch/s390/include/asm/kvm_host.h @@ -294,6 +294,7 @@ struct kvm_vcpu_stat { u64 exit_userspace; u64 exit_null; u64 exit_external_request; + u64 exit_io_request; u64 exit_external_interrupt; u64 exit_stop_request; u64 exit_validity; |