Skip to content

Commit

Permalink
new(driver,docs): bumped syscalls with latest version of 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 Oct 16, 2023
1 parent a803743 commit be89120
Show file tree
Hide file tree
Showing 7 changed files with 816 additions and 782 deletions.
768 changes: 385 additions & 383 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.1
2.12.2
4 changes: 3 additions & 1 deletion driver/ppm_events_public.h
Original file line number Diff line number Diff line change
Expand Up @@ -1870,7 +1870,9 @@ enum extra_event_prog_code
PPM_SC_X(S390_GUARDED_STORAGE, 411) \
PPM_SC_X(CACHESTAT, 412) \
PPM_SC_X(FCHMODAT2, 413) \
PPM_SC_X(MAP_SHADOW_STACK, 414)
PPM_SC_X(MAP_SHADOW_STACK, 414) \
PPM_SC_X(RISCV_FLUSH_ICACHE, 415) \
PPM_SC_X(RISCV_HWPROBE, 416)

typedef enum {
#define PPM_SC_X(name, value) PPM_SC_##name = (value),
Expand Down
24 changes: 24 additions & 0 deletions driver/syscall_compat_riscv64.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// SPDX-License-Identifier: GPL-2.0-only OR MIT
/*
Copyright (C) 2023 The Falco Authors.
This file is dual licensed under either the MIT or GPL 2. See MIT.txt
or GPL2.txt for full copies of the license.
*/

/*
* This file was automatically created by syscalls-bumper (https://github.com/falcosecurity/syscalls-bumper).")
* DO NOT EDIT THIS FILE MANUALLY.")
*/

#pragma once
#ifndef __NR_io_setup
#define __NR_io_setup 0
Expand Down Expand Up @@ -728,6 +743,9 @@
#ifndef __NR_recvmmsg
#define __NR_recvmmsg 243
#endif
#ifndef __NR_riscv_hwprobe
#define __NR_riscv_hwprobe 258
#endif
#ifndef __NR_riscv_flush_icache
#define __NR_riscv_flush_icache 259
#endif
Expand Down Expand Up @@ -917,3 +935,9 @@
#ifndef __NR_set_mempolicy_home_node
#define __NR_set_mempolicy_home_node 450
#endif
#ifndef __NR_cachestat
#define __NR_cachestat 451
#endif
#ifndef __NR_fchmodat2
#define __NR_fchmodat2 452
#endif
Loading

0 comments on commit be89120

Please sign in to comment.