From nobody Sun May 5 13:30:02 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1557738882; cv=none; d=zoho.com; s=zohoarc; b=mKdR/QXdqpV5l8muJ7jjjpc4mvLIzMcYm8MsclX/BNIsgArfsIFEJYEiPdXAxEG8WwDmG1aoHYLHMmMRqkmnq8etGidCr8+YktzxXzg7EhiiLwhX9pucEdCUl8tIJ0QktLosvRW9dGrtO9PZkv9DCF9+vbiJDXQKK2vJaYQbRyI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557738882; h=Content-Type:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=HXHBFPDOiSX1pIMfd/9oUbhc/kpAWdX2ZutiLlAlaFI=; b=jkefcRTUX2LN2GiadWedRRcGRD112r3c0b61QRaGxH13qMuozWscmzqxHiSURimhBCKOaWEFkUzuJhDWCl1VbkYhEmS0eDeGGl0izZp+kcGy2474/itbiyo4KSMwAkx7Go9U9AuhRMvnO9VuWdCrhhZWx8fza9o1ZAYxu2yOal8= ARC-Authentication-Results: i=1; mx.zoho.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1557738882414171.4594158189483; Mon, 13 May 2019 02:14:42 -0700 (PDT) Received: from localhost ([127.0.0.1]:53750 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQ72R-0008J7-QG for importer@patchew.org; Mon, 13 May 2019 05:14:28 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35215) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQ6rJ-0001Gy-HV for qemu-devel@nongnu.org; Mon, 13 May 2019 05:02:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQ6rI-0006ys-Cf for qemu-devel@nongnu.org; Mon, 13 May 2019 05:02:57 -0400 Received: from mx2.suse.de ([195.135.220.15]:38554 helo=mx1.suse.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQ6rI-0006xU-6q for qemu-devel@nongnu.org; Mon, 13 May 2019 05:02:56 -0400 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 5F656AECD; Mon, 13 May 2019 09:02:54 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Andreas Schwab To: qemu-devel@nongnu.org X-Yow: HELLO KITTY gang terrorizes town, family STICKERED to death! Date: Mon, 13 May 2019 11:02:53 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-Received-From: 195.135.220.15 Subject: [Qemu-devel] [PATCH] linux-user: Implement membarrier syscall 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: Riku Voipio , Laurent Vivier Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Signed-off-by: Andreas Schwab Reviewed-by: Laurent Vivier --- linux-user/syscall.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index f5ff6f5dc8..80399f4eb0 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -313,6 +313,9 @@ _syscall3(int, getrandom, void *, buf, size_t, buflen, = unsigned int, flags) _syscall5(int, kcmp, pid_t, pid1, pid_t, pid2, int, type, unsigned long, idx1, unsigned long, idx2) #endif +#if defined(TARGET_NR_membarrier) && defined(__NR_membarrier) +_syscall2(int, membarrier, int, cmd, int, flags) +#endif =20 static bitmask_transtbl fcntl_flags_tbl[] =3D { { TARGET_O_ACCMODE, TARGET_O_WRONLY, O_ACCMODE, O_WRONLY, }, @@ -11620,6 +11623,10 @@ static abi_long do_syscall1(void *cpu_env, int num= , abi_long arg1, /* PowerPC specific. */ return do_swapcontext(cpu_env, arg1, arg2, arg3); #endif +#if defined TARGET_NR_membarrier && defined __NR_membarrier + case TARGET_NR_membarrier: + return get_errno(membarrier(arg1, arg2)); +#endif =20 default: qemu_log_mask(LOG_UNIMP, "Unsupported syscall: %d\n", num); --=20 2.21.0 --=20 Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint =3D 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different."