From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:39456 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725786AbgDVHoq (ORCPT ); Wed, 22 Apr 2020 03:44:46 -0400 Subject: Re: [kvm-unit-tests PATCH v5 02/10] s390x: Use PSW bits definitions in cstart References: <1582200043-21760-1-git-send-email-pmorel@linux.ibm.com> <1582200043-21760-3-git-send-email-pmorel@linux.ibm.com> From: David Hildenbrand Message-ID: Date: Wed, 22 Apr 2020 09:44:37 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Sender: linux-s390-owner@vger.kernel.org List-ID: To: Janosch Frank , Pierre Morel , kvm@vger.kernel.org Cc: linux-s390@vger.kernel.org, thuth@redhat.com, cohuck@redhat.com >> diff --git a/s390x/cstart64.S b/s390x/cstart64.S >> index 45da523..2885a36 100644 >> --- a/s390x/cstart64.S >> +++ b/s390x/cstart64.S >> @@ -12,6 +12,7 @@ >> */ >> #include >> #include >> +#include >> =20 >> .section .init >> =20 >> @@ -214,19 +215,19 @@ svc_int: >> =20 >> .align 8 >> reset_psw: >> - .quad 0x0008000180000000 >> + .quad PSW_EXCEPTION_MASK >=20 > That won't work, this is a short PSW and you're removing the short > indication here. Notice the 0008 at the front. Good catch! Guess it would have bailed out when testing. --=20 Thanks, David / dhildenb