From: Szabolcs Nagy Date: Thu, 9 May 2019 20:20:24 +0000 (+0000) Subject: mips64: fix syscall numbers of io_pgetevents and rseq X-Git-Tag: v1.1.23~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b574de5bf3baeb9f1a54b4c05660830e36e5fca2;p=oweals%2Fmusl.git mips64: fix syscall numbers of io_pgetevents and rseq the numbers added in commit d149e69c02eb558114f20ea718810e95538a3b2f add io_pgetevents and rseq syscall numbers from linux v4.18 were incorrect. --- diff --git a/arch/mips64/bits/syscall.h.in b/arch/mips64/bits/syscall.h.in index f814aa48..9eebbb6a 100644 --- a/arch/mips64/bits/syscall.h.in +++ b/arch/mips64/bits/syscall.h.in @@ -324,6 +324,6 @@ #define __NR_pkey_alloc 5324 #define __NR_pkey_free 5325 #define __NR_statx 5326 -#define __NR_rseq 4327 -#define __NR_io_pgetevents 4328 +#define __NR_rseq 5327 +#define __NR_io_pgetevents 5328