diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2023-10-25 17:02:04 +0300 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-12-14 13:49:17 +0300 |
commit | d8b0f5465012538cc4bb10ddc4affadbab73465b (patch) | |
tree | fd571e8091183084286d280a9186336fc228ef0b /include/uapi/asm-generic | |
parent | b4c2bea8ceaa50cd42a8f73667389d801a3ecf2d (diff) | |
download | linux-d8b0f5465012538cc4bb10ddc4affadbab73465b.tar.xz |
wire up syscalls for statmount/listmount
Wire up all archs.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Link: https://lore.kernel.org/r/20231025140205.3586473-7-mszeredi@redhat.com
Reviewed-by: Ian Kent <raven@themaw.net>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include/uapi/asm-generic')
-rw-r--r-- | include/uapi/asm-generic/unistd.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/uapi/asm-generic/unistd.h b/include/uapi/asm-generic/unistd.h index 756b013fb832..b67b18e71fbd 100644 --- a/include/uapi/asm-generic/unistd.h +++ b/include/uapi/asm-generic/unistd.h @@ -829,8 +829,14 @@ __SYSCALL(__NR_futex_wait, sys_futex_wait) #define __NR_futex_requeue 456 __SYSCALL(__NR_futex_requeue, sys_futex_requeue) +#define __NR_statmount 457 +__SYSCALL(__NR_statmount, sys_statmount) + +#define __NR_listmount 458 +__SYSCALL(__NR_listmount, sys_listmount) + #undef __NR_syscalls -#define __NR_syscalls 457 +#define __NR_syscalls 459 /* * 32 bit systems traditionally used different |