From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cornelia Huck Subject: Re: [PATCH 2/2] KVM: s390: diagnoses are instructions as well Date: Wed, 24 Jan 2018 15:51:13 +0100 Message-ID: <20180124155113.4bb3308a.cohuck@redhat.com> References: <20180124113235.31485-1-borntraeger@de.ibm.com> <20180124113235.31485-3-borntraeger@de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: KVM , linux-s390 , Janosch Frank , David Hildenbrand To: Christian Borntraeger Return-path: Received: from mx1.redhat.com ([209.132.183.28]:41418 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933763AbeAXOvg (ORCPT ); Wed, 24 Jan 2018 09:51:36 -0500 In-Reply-To: <20180124113235.31485-3-borntraeger@de.ibm.com> Sender: kvm-owner@vger.kernel.org List-ID: On Wed, 24 Jan 2018 12:32:35 +0100 Christian Borntraeger wrote: > make the diagnose counters also appear as instruction counters. s/make/Make/ > > Signed-off-by: Christian Borntraeger > --- > arch/s390/kvm/kvm-s390.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c > index 3abe177..1f30087 100644 > --- a/arch/s390/kvm/kvm-s390.c > +++ b/arch/s390/kvm/kvm-s390.c > @@ -132,12 +132,12 @@ struct kvm_stats_debugfs_item debugfs_entries[] = { > { "instruction_sigp_cpu_reset", VCPU_STAT(instruction_sigp_cpu_reset) }, > { "instruction_sigp_init_cpu_reset", VCPU_STAT(instruction_sigp_init_cpu_reset) }, > { "instruction_sigp_unknown", VCPU_STAT(instruction_sigp_unknown) }, > - { "diagnose_10", VCPU_STAT(diagnose_10) }, > - { "diagnose_44", VCPU_STAT(diagnose_44) }, > - { "diagnose_9c", VCPU_STAT(diagnose_9c) }, > - { "diagnose_258", VCPU_STAT(diagnose_258) }, > - { "diagnose_308", VCPU_STAT(diagnose_308) }, > - { "diagnose_500", VCPU_STAT(diagnose_500) }, > + { "instruction_diag_10", VCPU_STAT(diagnose_10) }, > + { "instruction_diag_44", VCPU_STAT(diagnose_44) }, > + { "instruction_diag_9c", VCPU_STAT(diagnose_9c) }, > + { "instruction_diag_258", VCPU_STAT(diagnose_258) }, > + { "instruction_diag_308", VCPU_STAT(diagnose_308) }, > + { "instruction_diag_500", VCPU_STAT(diagnose_500) }, > { NULL } > }; > Reviewed-by: Cornelia Huck