diff options
author | Christoph Hellwig <hch@lst.de> | 2020-09-17 11:22:34 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-09-23 06:45:57 +0300 |
commit | 028abd9222df0cf5855dab5014a5ebaf06f90565 (patch) | |
tree | 7272f3e75ef22d0ad16f69b50df7defa8785756a /tools/include/uapi/asm-generic | |
parent | 67e306c6906137020267eb9bbdbc127034da3627 (diff) | |
download | linux-028abd9222df0cf5855dab5014a5ebaf06f90565.tar.xz |
fs: remove compat_sys_mount
compat_sys_mount is identical to the regular sys_mount now, so remove it
and use the native version everywhere.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'tools/include/uapi/asm-generic')
-rw-r--r-- | tools/include/uapi/asm-generic/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/include/uapi/asm-generic/unistd.h b/tools/include/uapi/asm-generic/unistd.h index 995b36c2ea7d..fc98c9437609 100644 --- a/tools/include/uapi/asm-generic/unistd.h +++ b/tools/include/uapi/asm-generic/unistd.h @@ -140,7 +140,7 @@ __SYSCALL(__NR_renameat, sys_renameat) #define __NR_umount2 39 __SYSCALL(__NR_umount2, sys_umount) #define __NR_mount 40 -__SC_COMP(__NR_mount, sys_mount, compat_sys_mount) +__SYSCALL(__NR_mount, sys_mount) #define __NR_pivot_root 41 __SYSCALL(__NR_pivot_root, sys_pivot_root) |