From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjWq6-000252-T8 for qemu-devel@nongnu.org; Thu, 02 Mar 2017 14:56:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjWq3-0003w6-PW for qemu-devel@nongnu.org; Thu, 02 Mar 2017 14:56:38 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55632) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjWq3-0003vC-HQ for qemu-devel@nongnu.org; Thu, 02 Mar 2017 14:56:35 -0500 References: <20170130131517.8092-1-sw@weilnetz.de> From: David Hildenbrand Message-ID: Date: Thu, 2 Mar 2017 20:56:31 +0100 MIME-Version: 1.0 In-Reply-To: <20170130131517.8092-1-sw@weilnetz.de> Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] target/s390x: Fix broken user mode List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil , Richard Henderson , Alexander Graf Cc: Christian Borntraeger , qemu-devel@nongnu.org, David Hildenbrand , Cornelia Huck , Aurelien Jarno , Bruce Rogers Am 30.01.2017 um 14:15 schrieb Stefan Weil: > Returning NULL from get_max_cpu_model results in a SIGSEGV runtime error. > > Signed-off-by: Stefan Weil > --- > > v2: Re-sent as v1 was damaged by my mailer. > > This is also broken in Debian. > > In addition, there is no default CPU ("any"), so binfmt and related > actions currently don't work. I hacked my local installation by > duplicating the "qemu" cpu definition for "any", but maybe there is > a better solution. That should then already work. > > Regards > Stefan > > target/s390x/cpu_models.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c > index 2a894ee..6e34763 100644 > --- a/target/s390x/cpu_models.c > +++ b/target/s390x/cpu_models.c > @@ -660,7 +660,6 @@ static void check_compatibility(const S390CPUModel *max_model, > > static S390CPUModel *get_max_cpu_model(Error **errp) > { > -#ifndef CONFIG_USER_ONLY > static S390CPUModel max_model; > static bool cached; > > @@ -680,7 +679,6 @@ static S390CPUModel *get_max_cpu_model(Error **errp) > cached = true; > return &max_model; > } > -#endif > return NULL; > } > > I thought this was already picked up for stable... But looks like only the "any" model fixup got. So Acked-by: David Hildenbrand -- Thanks, David