From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCZgL-0000pJ-Cx for qemu-devel@nongnu.org; Mon, 13 Jun 2016 17:46:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCZgF-0002D7-BU for qemu-devel@nongnu.org; Mon, 13 Jun 2016 17:46:04 -0400 Received: from mail-qk0-x242.google.com ([2607:f8b0:400d:c09::242]:35578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCZgF-0002D2-6z for qemu-devel@nongnu.org; Mon, 13 Jun 2016 17:45:59 -0400 Received: by mail-qk0-x242.google.com with SMTP id b136so4532060qkg.2 for ; Mon, 13 Jun 2016 14:45:59 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 13 Jun 2016 14:45:20 -0700 Message-Id: <1465854326-19160-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 0/6] linux-user: safe_syscall updates List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: riku.voipio@iki.fi, peter.maydell@linaro.org We added support for x86_64 in 4d330cee37a2; this adds support for 5 more hosts. Also, tweak the signal_pending test for x86_64. r~ Richard Henderson (6): linux-user: fix x86_64 safe_syscall linux-user: Provide safe_syscall for i386 linux-user: Provide safe_syscall for arm linux-user: Provide safe_syscall for aarch64 linux-user: Provide safe_syscall for s390x linux-user: Provide safe_syscall for ppc64 linux-user/host/aarch64/hostdep.h | 34 +++++++++ linux-user/host/aarch64/safe-syscall.inc.S | 72 +++++++++++++++++++ linux-user/host/arm/hostdep.h | 34 +++++++++ linux-user/host/arm/safe-syscall.inc.S | 86 ++++++++++++++++++++++ linux-user/host/i386/hostdep.h | 34 +++++++++ linux-user/host/i386/safe-syscall.inc.S | 110 +++++++++++++++++++++++++++++ linux-user/host/ppc64/hostdep.h | 34 +++++++++ linux-user/host/ppc64/safe-syscall.inc.S | 87 +++++++++++++++++++++++ linux-user/host/s390x/hostdep.h | 34 +++++++++ linux-user/host/s390x/safe-syscall.inc.S | 87 +++++++++++++++++++++++ linux-user/host/x86_64/safe-syscall.inc.S | 6 +- 11 files changed, 615 insertions(+), 3 deletions(-) create mode 100644 linux-user/host/aarch64/hostdep.h create mode 100644 linux-user/host/aarch64/safe-syscall.inc.S create mode 100644 linux-user/host/arm/hostdep.h create mode 100644 linux-user/host/arm/safe-syscall.inc.S create mode 100644 linux-user/host/i386/hostdep.h create mode 100644 linux-user/host/i386/safe-syscall.inc.S create mode 100644 linux-user/host/ppc64/hostdep.h create mode 100644 linux-user/host/ppc64/safe-syscall.inc.S create mode 100644 linux-user/host/s390x/hostdep.h create mode 100644 linux-user/host/s390x/safe-syscall.inc.S -- 2.5.5