Commit feb19c87 authored by Max Filippov's avatar Max Filippov Committed by Luis Henriques

xtensa: re-wire umount syscall to sys_oldumount

commit 2651cc69 upstream.

Userspace actually passes single parameter (path name) to the umount
syscall, so new umount just fails. Fix it by requesting old umount
syscall implementation and re-wiring umount to it.
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarLuis Henriques <luis.henriques@canonical.com>
parent e370dd4c
...@@ -384,7 +384,8 @@ __SYSCALL(174, sys_chroot, 1) ...@@ -384,7 +384,8 @@ __SYSCALL(174, sys_chroot, 1)
#define __NR_pivot_root 175 #define __NR_pivot_root 175
__SYSCALL(175, sys_pivot_root, 2) __SYSCALL(175, sys_pivot_root, 2)
#define __NR_umount 176 #define __NR_umount 176
__SYSCALL(176, sys_umount, 2) __SYSCALL(176, sys_oldumount, 1)
#define __ARCH_WANT_SYS_OLDUMOUNT
#define __NR_swapoff 177 #define __NR_swapoff 177
__SYSCALL(177, sys_swapoff, 1) __SYSCALL(177, sys_swapoff, 1)
#define __NR_sync 178 #define __NR_sync 178
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment