Re: [PATCH v3 18/70] arch: hookup listns() system call
From: Arnd Bergmann
Date: Fri Oct 24 2025 - 10:13:09 EST
On Fri, Oct 24, 2025, at 12:52, Christian Brauner wrote:
> Add the listns() system call to all architectures.
>
> Signed-off-by: Christian Brauner <brauner@xxxxxxxxxx>
This looks correct to me,
Reviewed-by: Arnd Bergmann <arnd@xxxxxxxx>
> diff --git a/include/uapi/asm-generic/unistd.h
> b/include/uapi/asm-generic/unistd.h
> index 04e0077fb4c9..942370b3f5d2 100644
> --- a/include/uapi/asm-generic/unistd.h
> +++ b/include/uapi/asm-generic/unistd.h
> @@ -857,9 +857,11 @@ __SYSCALL(__NR_open_tree_attr, sys_open_tree_attr)
> __SYSCALL(__NR_file_getattr, sys_file_getattr)
> #define __NR_file_setattr 469
> __SYSCALL(__NR_file_setattr, sys_file_setattr)
> +#define __NR_listns 470
> +__SYSCALL(__NR_listns, sys_listns)
>
> #undef __NR_syscalls
> -#define __NR_syscalls 470
> +#define __NR_syscalls 471
>
I still need to remove this unused file, but that is my problem,
not yours. No need to add patch 71 to your series ;-)
Arnd