From 386084ed1c448aec792ef12061cf713f58d70a72 Mon Sep 17 00:00:00 2001 From: Ivan Babrou Date: Wed, 24 Apr 2024 18:39:21 -0700 Subject: [PATCH] Update syscalls tables to v6.8 --- Makefile | 2 +- decoder/syscalls_amd64.go | 11 +++++++++++ decoder/syscalls_arm64.go | 11 +++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b3ea38c4..c5f19ad7 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,7 @@ tracing-demos: .PHONY: syscalls syscalls: - go run ./scripts/mksyscalls --strace.version v6.4 + go run ./scripts/mksyscalls --strace.version v6.8 .PHONY: clean clean: diff --git a/decoder/syscalls_amd64.go b/decoder/syscalls_amd64.go index 328029db..26f46519 100644 --- a/decoder/syscalls_amd64.go +++ b/decoder/syscalls_amd64.go @@ -368,4 +368,15 @@ var syscalls = map[uint64]string{ 448: "process_mrelease", 449: "futex_waitv", 450: "set_mempolicy_home_node", + 451: "cachestat", + 452: "fchmodat2", + 453: "map_shadow_stack", + 454: "futex_wake", + 455: "futex_wait", + 456: "futex_requeue", + 457: "statmount", + 458: "listmount", + 459: "lsm_get_self_attr", + 460: "lsm_set_self_attr", + 461: "lsm_list_modules", } diff --git a/decoder/syscalls_arm64.go b/decoder/syscalls_arm64.go index 2eac6410..247c784b 100644 --- a/decoder/syscalls_arm64.go +++ b/decoder/syscalls_arm64.go @@ -312,4 +312,15 @@ var syscalls = map[uint64]string{ 448: "process_mrelease", 449: "futex_waitv", 450: "set_mempolicy_home_node", + 451: "cachestat", + 452: "fchmodat2", + 453: "map_shadow_stack", + 454: "futex_wake", + 455: "futex_wait", + 456: "futex_requeue", + 457: "statmount", + 458: "listmount", + 459: "lsm_get_self_attr", + 460: "lsm_set_self_attr", + 461: "lsm_list_modules", }