diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-04-28 10:46:48 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-04-28 15:41:34 +0200 |
commit | 9899580a586522330bdb657bf228402638b6dbc2 (patch) | |
tree | 03642011e45fd4b8758dc26d5833b4bcf151cff4 /src/basic/missing_syscalls.py | |
parent | basic/missing-syscall: add numbers for riscv (64-bit) (diff) | |
download | systemd-9899580a586522330bdb657bf228402638b6dbc2.tar.xz systemd-9899580a586522330bdb657bf228402638b6dbc2.zip |
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.py | 6 |
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): |