From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56708) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1uyU-0002Tg-TD for qemu-devel@nongnu.org; Sat, 11 Jan 2014 04:35:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W1uyM-0004Kl-7H for qemu-devel@nongnu.org; Sat, 11 Jan 2014 04:35:26 -0500 From: pavel.zbitskiy@gmail.com Date: Sat, 11 Jan 2014 13:34:09 +0400 Message-Id: <1389432851-11420-2-git-send-email-pavel.zbitskiy@gmail.com> In-Reply-To: <1389432851-11420-1-git-send-email-pavel.zbitskiy@gmail.com> References: <1389432851-11420-1-git-send-email-pavel.zbitskiy@gmail.com> Subject: [Qemu-devel] [PATCH 1/3] linux-user: fixed s390x clone() argument order List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Pavel Zbitskiy From: Pavel Zbitskiy It was broken by 4ce6243dc6216e35b5b691078ffa856463bfa8db, where TARGET_CLONE_BACKWARDS was specified instead of TARGET_CLONE_BACKWARDS2. Signed-off-by: Pavel Zbitskiy --- linux-user/s390x/syscall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-user/s390x/syscall.h b/linux-user/s390x/syscall.h index ea8c304..e5ce30b 100644 --- a/linux-user/s390x/syscall.h +++ b/linux-user/s390x/syscall.h @@ -22,4 +22,4 @@ struct target_pt_regs { #define UNAME_MACHINE "s390x" -#define TARGET_CLONE_BACKWARDS +#define TARGET_CLONE_BACKWARDS2 -- 1.7.10.4