Skip to content

Commit

Permalink
update(driver): manually bumped generic syscalls through syscalls-bum…
Browse files Browse the repository at this point in the history
…per.

Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Nov 7, 2023
1 parent dc5f0d9 commit 660477f
Show file tree
Hide file tree
Showing 10 changed files with 744 additions and 680 deletions.
563 changes: 283 additions & 280 deletions docs/report.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion driver/SCHEMA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.2
2.12.3
5 changes: 4 additions & 1 deletion driver/ppm_events_public.h
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,10 @@ enum extra_event_prog_code
PPM_SC_X(FCHMODAT2, 413) \
PPM_SC_X(MAP_SHADOW_STACK, 414) \
PPM_SC_X(RISCV_FLUSH_ICACHE, 415) \
PPM_SC_X(RISCV_HWPROBE, 416)
PPM_SC_X(RISCV_HWPROBE, 416) \
PPM_SC_X(FUTEX_WAKE, 417) \
PPM_SC_X(FUTEX_REQUEUE, 418) \
PPM_SC_X(FUTEX_WAIT, 419)

typedef enum {
#define PPM_SC_X(name, value) PPM_SC_##name = (value),
Expand Down
12 changes: 12 additions & 0 deletions driver/syscall_compat_aarch64.h
Original file line number Diff line number Diff line change
Expand Up @@ -938,3 +938,15 @@ or GPL2.txt for full copies of the license.
#ifndef __NR_fchmodat2
#define __NR_fchmodat2 452
#endif
#ifndef __NR_map_shadow_stack
#define __NR_map_shadow_stack 453
#endif
#ifndef __NR_futex_wake
#define __NR_futex_wake 454
#endif
#ifndef __NR_futex_wait
#define __NR_futex_wait 455
#endif
#ifndef __NR_futex_requeue
#define __NR_futex_requeue 456
#endif
12 changes: 12 additions & 0 deletions driver/syscall_compat_riscv64.h
Original file line number Diff line number Diff line change
Expand Up @@ -941,3 +941,15 @@ or GPL2.txt for full copies of the license.
#ifndef __NR_fchmodat2
#define __NR_fchmodat2 452
#endif
#ifndef __NR_map_shadow_stack
#define __NR_map_shadow_stack 453
#endif
#ifndef __NR_futex_wake
#define __NR_futex_wake 454
#endif
#ifndef __NR_futex_wait
#define __NR_futex_wait 455
#endif
#ifndef __NR_futex_requeue
#define __NR_futex_requeue 456
#endif
12 changes: 12 additions & 0 deletions driver/syscall_compat_s390x.h
Original file line number Diff line number Diff line change
Expand Up @@ -1121,3 +1121,15 @@ or GPL2.txt for full copies of the license.
#ifndef __NR_fchmodat2
#define __NR_fchmodat2 452
#endif
#ifndef __NR_map_shadow_stack
#define __NR_map_shadow_stack 453
#endif
#ifndef __NR_futex_wake
#define __NR_futex_wake 454
#endif
#ifndef __NR_futex_wait
#define __NR_futex_wait 455
#endif
#ifndef __NR_futex_requeue
#define __NR_futex_requeue 456
#endif
9 changes: 9 additions & 0 deletions driver/syscall_compat_x86_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -1094,3 +1094,12 @@ or GPL2.txt for full copies of the license.
#ifndef __NR_map_shadow_stack
#define __NR_map_shadow_stack 453
#endif
#ifndef __NR_futex_wake
#define __NR_futex_wake 454
#endif
#ifndef __NR_futex_wait
#define __NR_futex_wait 455
#endif
#ifndef __NR_futex_requeue
#define __NR_futex_requeue 456
#endif
Loading

0 comments on commit 660477f

Please sign in to comment.