OSDN Git Service

KVM: add machine check counter to kvm_stat
authorQingFeng Hao <haoqf@linux.vnet.ibm.com>
Fri, 2 Mar 2018 10:56:47 +0000 (11:56 +0100)
committerChristian Borntraeger <borntraeger@de.ibm.com>
Wed, 14 Mar 2018 19:21:17 +0000 (19:21 +0000)
This counter can be used for administration, debug or test purposes.

Suggested-by: Vladislav Mironov <mironov@de.ibm.com>
Signed-off-by: QingFeng Hao <haoqf@linux.vnet.ibm.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
arch/s390/include/asm/kvm_host.h
arch/s390/kvm/interrupt.c
arch/s390/kvm/kvm-s390.c

index 22615af..77a49de 100644 (file)
@@ -320,6 +320,7 @@ struct kvm_vcpu_stat {
        u64 deliver_restart_signal;
        u64 deliver_program_int;
        u64 deliver_io_int;
+       u64 deliver_machine_check;
        u64 exit_wait_state;
        u64 instruction_epsw;
        u64 instruction_gs;
index b04616b..bde04a6 100644 (file)
@@ -595,6 +595,7 @@ static int __must_check __deliver_machine_check(struct kvm_vcpu *vcpu)
                trace_kvm_s390_deliver_interrupt(vcpu->vcpu_id,
                                                 KVM_S390_MCHK,
                                                 mchk.cr14, mchk.mcic);
+               vcpu->stat.deliver_machine_check++;
                rc = __write_machine_check(vcpu, &mchk);
        }
        return rc;
index 41adcfe..41615c9 100644 (file)
@@ -88,6 +88,7 @@ struct kvm_stats_debugfs_item debugfs_entries[] = {
        { "deliver_restart_signal", VCPU_STAT(deliver_restart_signal) },
        { "deliver_program_interruption", VCPU_STAT(deliver_program_int) },
        { "deliver_io_interrupt", VCPU_STAT(deliver_io_int) },
+       { "deliver_machine_check", VCPU_STAT(deliver_machine_check) },
        { "exit_wait_state", VCPU_STAT(exit_wait_state) },
        { "instruction_epsw", VCPU_STAT(instruction_epsw) },
        { "instruction_gs", VCPU_STAT(instruction_gs) },