From nobody Sun May 19 01:26:38 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1491680072887646.9780445504094; Sat, 8 Apr 2017 12:34:32 -0700 (PDT) Received: from localhost ([::1]:56325 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cww7y-00067Z-SA for importer@patchew.org; Sat, 08 Apr 2017 15:34:30 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47029) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cww76-0005pG-Qb for qemu-devel@nongnu.org; Sat, 08 Apr 2017 15:33:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cww73-0006Sk-NP for qemu-devel@nongnu.org; Sat, 08 Apr 2017 15:33:36 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:55608) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cww73-0006SM-Gl for qemu-devel@nongnu.org; Sat, 08 Apr 2017 15:33:33 -0400 Received: from sf.home (host86-186-39-208.range86-186.btcentralplus.com [86.186.39.208]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: slyfox) by smtp.gentoo.org (Postfix) with ESMTPSA id DF76933FE7D; Sat, 8 Apr 2017 19:33:29 +0000 (UTC) Received: by sf.home (Postfix, from userid 1000) id 3620D1AE1606F; Sat, 8 Apr 2017 20:33:26 +0100 (BST) From: Sergei Trofimovich To: Riku Voipio Date: Sat, 8 Apr 2017 20:33:22 +0100 Message-Id: <20170408193322.16631-1-slyfox@gentoo.org> X-Mailer: git-send-email 2.12.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 140.211.166.183 Subject: [Qemu-devel] [PATCH] alpha-user: wire epoll_create, epoll_ctl, epoll_wait X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Maydell , qemu-devel@nongnu.org, Sergei Trofimovich Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Noticed when ran GHC on alpha: $ qemu-alpha -L /usr/alpha-unknown-linux-gnu/ /tmp/a qemu: Unsupported syscall: 407 linux-user/syscall.c does have 'epoll_create' wiring, but under nondeprecated name. Instead of defining both TARGET_NR_sys_epoll_create and TARGET_NR_epoll_create I've renamed former to later as old name is not used anywhere else in qemu. After this change GHC works fine under qemu-alpha: $ ./alpha-linux-user/qemu-alpha -L /usr/alpha-unknown-linux-gnu/ /tmp/a ... Cc: Peter Maydell Cc: Riku Voipio Cc: qemu-devel@nongnu.org Signed-off-by: Sergei Trofimovich Reviewed-by: Peter Maydell --- linux-user/alpha/syscall_nr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-user/alpha/syscall_nr.h b/linux-user/alpha/syscall_nr.h index 00e14bb6b3..e848154663 100644 --- a/linux-user/alpha/syscall_nr.h +++ b/linux-user/alpha/syscall_nr.h @@ -343,9 +343,9 @@ #define TARGET_NR_io_cancel 402 #define TARGET_NR_exit_group 405 #define TARGET_NR_lookup_dcookie 406 -#define TARGET_NR_sys_epoll_create 407 -#define TARGET_NR_sys_epoll_ctl 408 -#define TARGET_NR_sys_epoll_wait 409 +#define TARGET_NR_epoll_create 407 +#define TARGET_NR_epoll_ctl 408 +#define TARGET_NR_epoll_wait 409 #define TARGET_NR_remap_file_pages 410 #define TARGET_NR_set_tid_address 411 #define TARGET_NR_restart_syscall 412 --=20 2.12.2