mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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>
This commit is contained in:
parent
f828a4c8fa
commit
8070e7be8b
3 changed files with 3 additions and 6 deletions
|
@ -20,7 +20,7 @@
|
|||
#define TARGET_NR_lseek 19
|
||||
#define TARGET_NR_getxpid 20
|
||||
#define TARGET_NR_osf_mount 21
|
||||
#define TARGET_NR_umount 22
|
||||
#define TARGET_NR_umount2 22
|
||||
#define TARGET_NR_setuid 23
|
||||
#define TARGET_NR_getxuid 24
|
||||
#define TARGET_NR_exec_with_loader 25 /* not implemented */
|
||||
|
@ -255,7 +255,7 @@
|
|||
#define TARGET_NR_sysinfo 318
|
||||
#define TARGET_NR__sysctl 319
|
||||
/* 320 was sys_idle. */
|
||||
#define TARGET_NR_oldumount 321
|
||||
#define TARGET_NR_umount 321
|
||||
#define TARGET_NR_swapon 322
|
||||
#define TARGET_NR_times 323
|
||||
#define TARGET_NR_personality 324
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue