diff mbox

[PULL,16/16] linux-user: AArch64 has sync_file_range, not sync_file_range2

Message ID 29b9f30b1e3a158e0127c45ade959b7d943cf8f8.1468932683.git.riku.voipio@linaro.org
State Accepted
Commit c4e1cbd437776f99d45d7d2ddd7543ee3883ac98
Headers show

Commit Message

Riku Voipio July 19, 2016, 12:54 p.m. UTC
From: Peter Maydell <peter.maydell@linaro.org>


The AArch64 Linux ABI syscall 84 is sync_file_range, not
sync_file_range2 (in the kernel it uses the asm-generic
headers and does not define __ARCH_WANT_SYNC_FILE_RANGE2).
Update our TARGET_NR_* definitions accordingly.

This fixes the sync_file_range syscall which otherwise
gets its arguments in the wrong order.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Signed-off-by: Riku Voipio <riku.voipio@linaro.org>

---
 linux-user/aarch64/syscall_nr.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

-- 
2.1.4
diff mbox

Patch

diff --git a/linux-user/aarch64/syscall_nr.h b/linux-user/aarch64/syscall_nr.h
index 59511d8..a3c9a3b 100644
--- a/linux-user/aarch64/syscall_nr.h
+++ b/linux-user/aarch64/syscall_nr.h
@@ -86,8 +86,7 @@ 
 #define TARGET_NR_sync 81
 #define TARGET_NR_fsync 82
 #define TARGET_NR_fdatasync 83
-#define TARGET_NR_sync_file_range2 84
-/* #define TARGET_NR_sync_file_range 84 */
+#define TARGET_NR_sync_file_range 84
 #define TARGET_NR_timerfd_create 85
 #define TARGET_NR_timerfd_settime 86
 #define TARGET_NR_timerfd_gettime 87