[PATCH libaio 02/11] syscall: Fix ia64 definitions to match exactly the kernel
authorGuillem Jover <guillem@hadrons.org>
Sun, 12 Apr 2020 01:44:43 +0000 (03:44 +0200)
committerPeter Michael Green <plugwash@raspbian.org>
Mon, 15 Nov 2021 00:13:31 +0000 (00:13 +0000)
Otherwise we get preprocessor warnings due to the redefinitions.

Signed-off-by: Guillem Jover <guillem@hadrons.org>
Gbp-Pq: Name 0002-syscall-Fix-ia64-definitions-to-match-exactly-the-ke.patch

src/syscall-ia64.h

index a21e93b9883fd1ebd0818a02a0671c006435b7ee..765c4233a82ca9e57a761383c6136686051345fb 100644 (file)
@@ -1,5 +1,6 @@
-#define __NR_io_setup          1238
-#define __NR_io_destroy                1239
-#define __NR_io_getevents      1240
-#define __NR_io_submit         1241
-#define __NR_io_cancel         1242
+#define __NR_Linux             1024
+#define __NR_io_setup          (__NR_Linux + 214)
+#define __NR_io_destroy                (__NR_Linux + 215)
+#define __NR_io_getevents      (__NR_Linux + 216)
+#define __NR_io_submit         (__NR_Linux + 217)
+#define __NR_io_cancel         (__NR_Linux + 218)