From: Arnaldo Carvalho de Melo Date: Wed, 3 Dec 2025 14:50:03 +0000 (-0300) Subject: perf auxtrace: Include sys/types.h for pid_t X-Git-Tag: ceph-for-6.19-rc5~155^2~35 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e28f834f57131be2cfd60a1c9c580f0a71995dc9;p=ceph-client.git perf auxtrace: Include sys/types.h for pid_t In 754187ad73b73bcb ("perf build: Remove NO_AUXTRACE build option") sys/types.h was removed, which broke the build in all Alpine Linux releases, as musl libc has pid_t defined via sys/types.h, add it back. Fixes: 754187ad73b73bcb ("perf build: Remove NO_AUXTRACE build option") Signed-off-by: Arnaldo Carvalho de Melo Reviewed-by: Ian Rogers Signed-off-by: Namhyung Kim --- diff --git a/tools/perf/util/auxtrace.h b/tools/perf/util/auxtrace.h index eee2c11f7666..6947f3f284c0 100644 --- a/tools/perf/util/auxtrace.h +++ b/tools/perf/util/auxtrace.h @@ -7,6 +7,7 @@ #ifndef __PERF_AUXTRACE_H #define __PERF_AUXTRACE_H +#include #include // FILE #include #include