From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1deerC-00009p-4f for qemu-devel@nongnu.org; Mon, 07 Aug 2017 06:01:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1deer9-0007Xf-4i for qemu-devel@nongnu.org; Mon, 07 Aug 2017 06:01:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41612) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1deer8-0007XR-UM for qemu-devel@nongnu.org; Mon, 07 Aug 2017 06:01:51 -0400 Date: Mon, 7 Aug 2017 11:52:09 +0200 From: Cornelia Huck Message-ID: <20170807115209.78687892@gondolin> In-Reply-To: <234d7d0e-c5ae-44b8-76f5-d94f4f918ac4@redhat.com> References: <20170804112946.5247-1-cohuck@redhat.com> <20170804112946.5247-8-cohuck@redhat.com> <234d7d0e-c5ae-44b8-76f5-d94f4f918ac4@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v4 7/9] s390x/pci: fence off instructions for non-pci List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Hildenbrand Cc: qemu-devel@nongnu.org, borntraeger@de.ibm.com, agraf@suse.de, thuth@redhat.com, pmorel@linux.vnet.ibm.com, zyimin@linux.vnet.ibm.com On Fri, 4 Aug 2017 15:17:25 +0200 David Hildenbrand wrote: > On 04.08.2017 13:29, Cornelia Huck wrote: > > If a guest running on a machine without zpci issues a pci instruction, > > throw them an exception. > > > > Reviewed-by: Thomas Huth > > Signed-off-by: Cornelia Huck > > --- > > target/s390x/kvm.c | 54 +++++++++++++++++++++++++++++++++++++++++------------- > > 1 file changed, 41 insertions(+), 13 deletions(-) > > > > diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c > > index bc62bba5b7..9de165d8b1 100644 > > --- a/target/s390x/kvm.c > > +++ b/target/s390x/kvm.c > > @@ -1191,7 +1191,11 @@ static int kvm_clp_service_call(S390CPU *cpu, struct kvm_run *run) > > { > > uint8_t r2 = (run->s390_sieic.ipb & 0x000f0000) >> 16; > > > > - return clp_service_call(cpu, r2); > > + if (s390_has_feat(S390_FEAT_ZPCI)) { > > + return clp_service_call(cpu, r2); > > + } else { > > + return -1; > > + } > > I am a fan of dropping these else case and returning directly. But that > is just my opinion. > > (applies to all changes in this patch) > > You are not the first to say that :) I do prefer this way around, though, and if there aren't strong objections, I'll keep it like this.