From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9701 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 1/6] mips64: add recent linux syscall numbers Date: Sat, 19 Mar 2016 13:35:08 +0100 Message-ID: <56a1acbd1ec61eca50e9c81fe7e9a3780aedc470.1458390390.git.nsz@port70.net> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1458390960 13441 80.91.229.3 (19 Mar 2016 12:36:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 19 Mar 2016 12:36:00 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-9714-gllmg-musl=m.gmane.org@lists.openwall.com Sat Mar 19 13:36:00 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1ahG6p-0002yH-Q4 for gllmg-musl@m.gmane.org; Sat, 19 Mar 2016 13:35:59 +0100 Original-Received: (qmail 25903 invoked by uid 550); 19 Mar 2016 12:35:57 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 25684 invoked from network); 19 Mar 2016 12:35:20 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Xref: news.gmane.org gmane.linux.lib.musl.general:9701 Archived-At: add userfaultfd, membarrier and mlock2 system call numbers. --- arch/mips64/bits/syscall.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/mips64/bits/syscall.h b/arch/mips64/bits/syscall.h index d9b4f42..8c81882 100644 --- a/arch/mips64/bits/syscall.h +++ b/arch/mips64/bits/syscall.h @@ -314,6 +314,9 @@ #define __NR_memfd_create 5314 #define __NR_bpf 5315 #define __NR_execveat 5316 +#define __NR_userfaultfd 5317 +#define __NR_membarrier 5318 +#define __NR_mlock2 5319 #define SYS_read 5000 #define SYS_write 5001 @@ -631,3 +634,6 @@ #define SYS_memfd_create 5314 #define SYS_bpf 5315 #define SYS_execveat 5316 +#define SYS_userfaultfd 5317 +#define SYS_membarrier 5318 +#define SYS_mlock2 5319 -- 2.7.2