From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRP4o-000657-1s for qemu-devel@nongnu.org; Thu, 04 Feb 2016 13:56:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRP4k-00045H-Ov for qemu-devel@nongnu.org; Thu, 04 Feb 2016 13:56:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53311) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRP4k-000455-Jn for qemu-devel@nongnu.org; Thu, 04 Feb 2016 13:56:18 -0500 From: Laurent Vivier Date: Thu, 4 Feb 2016 19:56:01 +0100 Message-Id: <1454612161-24396-1-git-send-email-lvivier@redhat.com> Subject: [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: Riku Voipio Cc: Laurent Vivier , peter.maydell@linaro.org, mjt@tls.msk.ru, agraf@suse.de, qemu-devel@nongnu.org, gkurz@linux.vnet.ibm.com 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 --- 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.5.0