diff options
author | Richard Henderson <rth@twiddle.net> | 2013-07-24 09:50:00 -1000 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2013-09-24 10:47:06 +0300 |
commit | 8070e7be8b2909b48b56b5e965fca209ba5969db (patch) | |
tree | 34a21413f931fa4bc648f5c32c1a265e2d04872c /linux-user/syscall.c | |
parent | f828a4c8faa118e0ebab3e353ac6840f3b2a0318 (diff) | |
download | qemu-8070e7be8b2909b48b56b5e965fca209ba5969db.zip qemu-8070e7be8b2909b48b56b5e965fca209ba5969db.tar.gz qemu-8070e7be8b2909b48b56b5e965fca209ba5969db.tar.bz2 |
alpha-linux-user: Fix umount syscall numbers
It has been pointed out on LKML that the alpha umount syscall numbers
are named wrong, and a patch to rectify that has been posted for 3.11.
Glibc works around this by treating NR_umount as NR_umount2 if
NR_oldumount exists. That's more complicated than we need in QEMU,
given that we control linux-user/*/syscall_nr.h.
This is the last instance of TARGET_NR_oldumount, so delete that from
the strace.list.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index c62d875..5c33e44 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5697,7 +5697,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, unlock_user(p, arg1, 0); } break; -#ifdef TARGET_NR_umount2 /* not on alpha */ +#ifdef TARGET_NR_umount2 case TARGET_NR_umount2: if (!(p = lock_user_string(arg1))) goto efault; |