-
Notifications
You must be signed in to change notification settings - Fork 192
RFE: Update syscalls.csv to kernel version v7.0-rc7 #485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
9e2dcd2
47c429f
fe598f0
a6b1840
3091542
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -283,6 +283,9 @@ | |
| #define __PNR_getpagesize -10249 | ||
| #define __PNR_riscv_hwprobe -10250 | ||
| #define __PNR_uretprobe -10251 | ||
| #define __PNR_uprobe -10252 | ||
| #define __PNR_rseq_slice_yield -10253 | ||
| #define __PNR_listns -10254 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, it looks like
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment as above. 32-bit s390 needs it. This is one reason I was tempted to ditch s390 now. The other reason is that syscalls table tool has generated some different syscall numbers from libseccomp's |
||
|
|
||
| /* | ||
| * libseccomp syscall definitions | ||
|
|
@@ -648,6 +651,9 @@ | |
|
|
||
| #define __SNR_fgetxattr __NR_fgetxattr | ||
|
|
||
| #define __SNR_file_getattr __NR_file_getattr | ||
| #define __SNR_file_setattr __NR_file_setattr | ||
|
|
||
| #define __SNR_finit_module __NR_finit_module | ||
|
|
||
| #define __SNR_flistxattr __NR_flistxattr | ||
|
|
@@ -1082,6 +1088,8 @@ | |
|
|
||
| #define __SNR_listmount __NR_listmount | ||
|
|
||
| #define __SNR_listns __NR_listns | ||
|
|
||
| #define __SNR_listxattr __NR_listxattr | ||
|
|
||
| #define __SNR_listxattrat __NR_listxattrat | ||
|
|
@@ -1356,6 +1364,8 @@ | |
| #define __SNR_open_tree __PNR_open_tree | ||
| #endif | ||
|
|
||
| #define __SNR_open_tree_attr __NR_open_tree_attr | ||
|
|
||
| #define __SNR_openat __NR_openat | ||
|
|
||
| #define __SNR_openat2 __NR_openat2 | ||
|
|
@@ -1614,6 +1624,8 @@ | |
| #define __SNR_rseq __PNR_rseq | ||
| #endif | ||
|
|
||
| #define __SNR_rseq_slice_yield __NR_rseq_slice_yield | ||
|
|
||
| #define __SNR_rt_sigaction __NR_rt_sigaction | ||
|
|
||
| #define __SNR_rt_sigpending __NR_rt_sigpending | ||
|
|
@@ -2304,6 +2316,12 @@ | |
|
|
||
| #define __SNR_unshare __NR_unshare | ||
|
|
||
| #ifdef __NR_uprobe | ||
| #define __SNR_uprobe __NR_uprobe | ||
| #else | ||
| #define __SNR_uprobe __PNR_uprobe | ||
| #endif | ||
|
|
||
| #ifdef __NR_uretprobe | ||
| #define __SNR_uretprobe __NR_uretprobe | ||
| #else | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on the macros below it looks like
__PNR_rseq_slice_yieldisn't necessary as__NR_rseq_slice_yieldis defined for all arches/ABIs?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
32-bit s390 isn't getting updates, so it needs
__PNR_rseq_slice_yield