summaryrefslogtreecommitdiff
path: root/src/basic/missing_syscalls.py
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-28 10:46:48 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-28 15:41:34 +0200
commit9899580a586522330bdb657bf228402638b6dbc2 (patch)
tree03642011e45fd4b8758dc26d5833b4bcf151cff4 /src/basic/missing_syscalls.py
parent302beee342e388b771085bb4d19f271af9cbb235 (diff)
downloadsystemd-9899580a586522330bdb657bf228402638b6dbc2.tar.gz
basic/missing-syscall: sort syscalls alphabetically and add numbers for mount_setattr, move_mount, open_tree
Diffstat (limited to 'src/basic/missing_syscalls.py')
-rw-r--r--src/basic/missing_syscalls.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/basic/missing_syscalls.py b/src/basic/missing_syscalls.py
index adfe53d025..0234e6fc44 100644
--- a/src/basic/missing_syscalls.py
+++ b/src/basic/missing_syscalls.py
@@ -9,16 +9,20 @@ SYSCALLS = [
'bpf',
'close_range',
'copy_file_range',
+ 'epoll_pwait2',
'getrandom',
'memfd_create',
+ 'mount_setattr',
+ 'move_mount',
'name_to_handle_at',
+ 'open_tree',
'pidfd_open',
'pidfd_send_signal',
'pkey_mprotect',
'renameat2',
'setns',
'statx',
- 'epoll_pwait2']
+]
def dictify(f):
def wrap(*args, **kwargs):