From 13673ddccaa7e34da16454fca0da5e3f198fd8fe Mon Sep 17 00:00:00 2001 From: William Cohen Date: Mon, 5 Feb 2024 14:37:18 -0500 Subject: [PATCH] Update the aux_syscall.stp tapset to directly include The linux kernel git commit 6dfeff09d5ad33190 removes the include for from . The kernel has had header for over a dozen years (kernel git commit 607ca46e97a1b65) and systemtap should just use that directly. The downside of this change is that systemtap will require a Linux 3.7 or newer kernel. --- tapset/linux/aux_syscalls.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tapset/linux/aux_syscalls.stp b/tapset/linux/aux_syscalls.stp index cf54aa152..e773ba7c2 100644 --- a/tapset/linux/aux_syscalls.stp +++ b/tapset/linux/aux_syscalls.stp @@ -1515,7 +1515,7 @@ function _msync_flag_str:string(f:long) %} %{ -#include +#include static const _stp_val_array _stp_wait4_op_list[] = { V(WNOHANG), -- 2.43.5