From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5RWt-0008R3-Gh for qemu-devel@nongnu.org; Wed, 25 May 2016 01:38:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b5RWn-0003Rb-Mq for qemu-devel@nongnu.org; Wed, 25 May 2016 01:38:50 -0400 Received: from jessie.kos.to ([212.47.231.226]:56732 helo=pilvi.kos.to) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5RWn-0003Qj-GC for qemu-devel@nongnu.org; Wed, 25 May 2016 01:38:45 -0400 Received: from beaming.home (91-157-168-132.elisa-laajakaista.fi [91.157.168.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pilvi.kos.to (Postfix) with ESMTPSA id 786B02C2310 for ; Wed, 25 May 2016 05:38:40 +0000 (UTC) Date: Wed, 25 May 2016 08:38:39 +0300 From: Riku Voipio Message-ID: <20160525053839.GA25158@beaming.home> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PULL v2 3/8] linux-user: set ppc64/ppc64le default CPU to POWER8 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, Sorry ignore these "pull v2" mails, apparently I had some old files lying around.. On Wed, May 25, 2016 at 08:27:38AM +0300, riku.voipio@linaro.org wrote: > From: Laurent Vivier > > Set the default to the latest CPU version to have the > largest set of available features. > > It is also really needed in little-endian mode because > POWER7 is not really supported in this mode and some distros > (at least debian) generate POWER8 code for their ppc64le target. > > Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813698 > > Signed-off-by: Laurent Vivier > Reviewed-by: Alexander Graf > Reviewed-by: Michael Tokarev > Signed-off-by: Riku Voipio > --- > linux-user/main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/linux-user/main.c b/linux-user/main.c > index e719a2d..2a692e0 100644 > --- a/linux-user/main.c > +++ b/linux-user/main.c > @@ -4160,7 +4160,7 @@ int main(int argc, char **argv, char **envp) > cpu_model = "or1200"; > #elif defined(TARGET_PPC) > # ifdef TARGET_PPC64 > - cpu_model = "POWER7"; > + cpu_model = "POWER8"; > # else > cpu_model = "750"; > # endif > -- > 2.1.4 > >