Merge branch 'patch-3' of dustdfg/dragora into master
[dragora.git] / patches / libaio / 0002-syscall-Fix-ia64-definitions-to-match-exactly-the-ke.patch
blob5ba6246d8732f09640fab38b0e407429f6f1d306
1 From e458ea6bf9526543c206fa4142ed5ef1c77530a6 Mon Sep 17 00:00:00 2001
2 From: Guillem Jover <guillem@hadrons.org>
3 Date: Sun, 12 Apr 2020 03:44:43 +0200
4 Subject: [PATCH libaio 02/11] syscall: Fix ia64 definitions to match exactly
5 the kernel
7 Otherwise we get preprocessor warnings due to the redefinitions.
9 Signed-off-by: Guillem Jover <guillem@hadrons.org>
10 ---
11 src/syscall-ia64.h | 11 ++++++-----
12 1 file changed, 6 insertions(+), 5 deletions(-)
14 diff --git a/src/syscall-ia64.h b/src/syscall-ia64.h
15 index a21e93b..765c423 100644
16 --- a/src/syscall-ia64.h
17 +++ b/src/syscall-ia64.h
18 @@ -1,5 +1,6 @@
19 -#define __NR_io_setup 1238
20 -#define __NR_io_destroy 1239
21 -#define __NR_io_getevents 1240
22 -#define __NR_io_submit 1241
23 -#define __NR_io_cancel 1242
24 +#define __NR_Linux 1024
25 +#define __NR_io_setup (__NR_Linux + 214)
26 +#define __NR_io_destroy (__NR_Linux + 215)
27 +#define __NR_io_getevents (__NR_Linux + 216)
28 +#define __NR_io_submit (__NR_Linux + 217)
29 +#define __NR_io_cancel (__NR_Linux + 218)
30 --
31 2.26.0.292.g33ef6b2f38