]> git.proxmox.com Git - mirror_qemu.git/commitdiff
linux-user: correct argument number for sys_mremap and sys_splice
authorPetar Jovanovic <petar.jovanovic@imgtec.com>
Tue, 23 Jul 2013 17:00:10 +0000 (19:00 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Sun, 28 Jul 2013 22:37:14 +0000 (00:37 +0200)
sys_mremap missed 5th argument (new_address), which caused examples that
remap to a specific address to fail.
sys_splice missed 5th and 6th argument which caused different examples to
fail.
This change has an effect on MIPS target only.

Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
linux-user/main.c

index 5309117034aba8de7007edbd6b2fd960bb868c38..03859bcc23adb407e897e442275fd6aafb6fd7cf 100644 (file)
@@ -1920,7 +1920,7 @@ static const uint8_t mips_syscall_args[] = {
        MIPS_SYS(sys_sched_get_priority_min, 1)
        MIPS_SYS(sys_sched_rr_get_interval, 2)  /* 4165 */
        MIPS_SYS(sys_nanosleep, 2)
-       MIPS_SYS(sys_mremap     , 4)
+       MIPS_SYS(sys_mremap     , 5)
        MIPS_SYS(sys_accept     , 3)
        MIPS_SYS(sys_bind       , 3)
        MIPS_SYS(sys_connect    , 3)    /* 4170 */
@@ -2057,7 +2057,7 @@ static const uint8_t mips_syscall_args[] = {
        MIPS_SYS(sys_pselect6, 6)
        MIPS_SYS(sys_ppoll, 5)
        MIPS_SYS(sys_unshare, 1)
-       MIPS_SYS(sys_splice, 4)
+       MIPS_SYS(sys_splice, 6)
        MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
        MIPS_SYS(sys_tee, 4)
        MIPS_SYS(sys_vmsplice, 4)