From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39170) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVJ0Y-0005dk-IO for qemu-devel@nongnu.org; Mon, 15 Feb 2016 08:16:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVJ0T-0003rz-II for qemu-devel@nongnu.org; Mon, 15 Feb 2016 08:16:06 -0500 Received: from jessie.kos.to ([212.47.231.226]:56780 helo=pilvi.kos.to) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVJ0T-0003ra-9S for qemu-devel@nongnu.org; Mon, 15 Feb 2016 08:16:01 -0500 From: Riku Voipio Date: Mon, 15 Feb 2016 15:15:55 +0200 MIME-Version: 1.0 Message-ID: <403b326e-4546-412c-832a-447545b5984f@iki.fi> In-Reply-To: <1454612161-24396-1-git-send-email-lvivier@redhat.com> References: <1454612161-24396-1-git-send-email-lvivier@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] linux-user: set ppc64/ppc64le default CPU to POWER8 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier Cc: qemu-devel@nongnu.org On torstaina 4. helmikuuta 2016 20.56.01 EET, Laurent Vivier wrote: > 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. Applied, thanks.=20 > Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D813698 > > Signed-off-by: Laurent Vivier > --- > 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 =3D "or1200"; > #elif defined(TARGET_PPC) > # ifdef TARGET_PPC64 > - cpu_model =3D "POWER7"; > + cpu_model =3D "POWER8"; > # else > cpu_model =3D "750"; > # endif