From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44353) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbmGi-00017p-Qd for qemu-devel@nongnu.org; Mon, 13 May 2013 02:29:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UbmGg-0008OP-1v for qemu-devel@nongnu.org; Mon, 13 May 2013 02:29:56 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:62769) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbmGf-0008OE-TE for qemu-devel@nongnu.org; Mon, 13 May 2013 02:29:54 -0400 Received: by mail-pa0-f47.google.com with SMTP id kl13so4362006pab.20 for ; Sun, 12 May 2013 23:29:53 -0700 (PDT) From: John Rigby Date: Mon, 13 May 2013 00:29:10 -0600 Message-Id: <1368426557-27416-6-git-send-email-john.rigby@linaro.org> In-Reply-To: <1368426557-27416-1-git-send-email-john.rigby@linaro.org> References: <1368426557-27416-1-git-send-email-john.rigby@linaro.org> Subject: [Qemu-devel] [PATCH v3 05/12] linux-user: Don't treat aarch64 cpu names specially List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: 'Peter Maydell , John Rigby , Riku Voipio , Alexander Graf From: Alexander Graf 32-bit ARM has a lot of different names for different types of CPUs it supports. On AArch64, we don't have this, so we really don't want to execute the 32-bit logic. Stub it out for AArch64 linux-user guests. Signed-off-by: Alexander Graf Signed-off-by: John Rigby --- linux-user/cpu-uname.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-user/cpu-uname.c b/linux-user/cpu-uname.c index 59cd647..89bdb91 100644 --- a/linux-user/cpu-uname.c +++ b/linux-user/cpu-uname.c @@ -30,7 +30,8 @@ * return here */ const char *cpu_to_uname_machine(void *cpu_env) { -#ifdef TARGET_ARM +#if defined(TARGET_ARM) && !defined(TARGET_AARCH64) + /* utsname machine name on linux arm is CPU arch name + endianness, e.g. * armv7l; to get a list of CPU arch names from the linux source, use: * grep arch_name: -A1 linux/arch/arm/mm/proc-*.S -- 1.8.2.2