Skip to content

Commit

Permalink
Update syscall tables
Browse files Browse the repository at this point in the history
  • Loading branch information
hillu committed Jan 20, 2025
1 parent bfff555 commit d12ddfa
Show file tree
Hide file tree
Showing 9 changed files with 782 additions and 17 deletions.
5 changes: 4 additions & 1 deletion syscall-tables/aarch64_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,7 @@ _S(459, "lsm_get_self_attr")
_S(460, "lsm_set_self_attr")
_S(461, "lsm_list_modules")
_S(462, "mseal")

_S(463, "setxattrat")
_S(464, "getxattrat")
_S(465, "listxattrat")
_S(466, "removexattrat")
10 changes: 9 additions & 1 deletion syscall-tables/arm_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ _S(266, "statfs64")
_S(267, "fstatfs64")
_S(268, "tgkill")
_S(269, "utimes")
// originally arm_fadvise64_64, but let's maintain common naming
_S(270, "fadvise64_64")
_S(271, "pciconfig_iobase")
_S(272, "pciconfig_read")
Expand Down Expand Up @@ -321,15 +322,19 @@ _S(331, "symlinkat")
_S(332, "readlinkat")
_S(333, "fchmodat")
_S(334, "faccessat")
_S(335, "pselect6")
_S(336, "ppoll")
_S(337, "unshare")
_S(338, "set_robust_list")
_S(339, "get_robust_list")
_S(340, "splice")
// originally arm_sync_file_range, but let's maintain common naming
_S(341, "sync_file_range")
_S(342, "tee")
_S(343, "vmsplice")
_S(344, "move_pages")
_S(345, "getcpu")
_S(346, "epoll_pwait")
_S(347, "kexec_load")
_S(348, "utimensat")
_S(349, "signalfd")
Expand Down Expand Up @@ -443,4 +448,7 @@ _S(459, "lsm_get_self_attr")
_S(460, "lsm_set_self_attr")
_S(461, "lsm_list_modules")
_S(462, "mseal")

_S(463, "setxattrat")
_S(464, "getxattrat")
_S(465, "listxattrat")
_S(466, "removexattrat")
5 changes: 4 additions & 1 deletion syscall-tables/i386_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -474,4 +474,7 @@ _S(459, "lsm_get_self_attr")
_S(460, "lsm_set_self_attr")
_S(461, "lsm_list_modules")
_S(462, "mseal")

_S(463, "setxattrat")
_S(464, "getxattrat")
_S(465, "listxattrat")
_S(466, "removexattrat")
12 changes: 12 additions & 0 deletions syscall-tables/ppc_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* Steve Grubb <sgrubb@redhat.com>
*/

_S(0, "restart_syscall")
_S(1, "exit")
_S(2, "fork")
_S(3, "read")
Expand Down Expand Up @@ -274,6 +275,12 @@ _S(252, "statfs64")
_S(253, "fstatfs64")
_S(254, "fadvise64_64")
_S(255, "rtas")
_S(256, "sys_debug_setcontext")
// 257 reserved for vserver
_S(258, "migrate_pages")
_S(259, "mbind")
_S(260, "get_mempolicy")
_S(261, "set_mempolicy")
_S(262, "mq_open")
_S(263, "mq_unlink")
_S(264, "mq_timedsend")
Expand Down Expand Up @@ -378,6 +385,7 @@ _S(362, "execveat")
_S(363, "switch_endian")
_S(364, "userfaultfd")
_S(365, "membarrier")
// 366 - 377 originally left for IPC, now unused
_S(378, "mlock2")
_S(379, "copy_file_range")
_S(380, "preadv2")
Expand Down Expand Up @@ -458,4 +466,8 @@ _S(459, "lsm_get_self_attr")
_S(460, "lsm_set_self_attr")
_S(461, "lsm_list_modules")
_S(462, "mseal")
_S(463, "setxattrat")
_S(464, "getxattrat")
_S(465, "listxattrat")
_S(466, "removexattrat")

Loading

0 comments on commit d12ddfa

Please sign in to comment.