From: Petar Jovanovic Date: Tue, 23 Jul 2013 17:00:10 +0000 (+0200) Subject: linux-user: correct argument number for sys_mremap and sys_splice X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~1531^2~2^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6064be7912ab262f0abd85ad042fafd435ad6651;p=sdk%2Femulator%2Fqemu.git linux-user: correct argument number for sys_mremap and sys_splice 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 Reviewed-by: Peter Maydell Signed-off-by: Michael Tokarev --- diff --git a/linux-user/main.c b/linux-user/main.c index 5309117..03859bc 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -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)