]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
perf test type profiling: Remote typedef on struct
authorIan Rogers <irogers@google.com>
Mon, 2 Mar 2026 23:58:21 +0000 (15:58 -0800)
committerNamhyung Kim <namhyung@kernel.org>
Wed, 4 Mar 2026 06:37:48 +0000 (22:37 -0800)
The typedef creates an issue where the struct or the typedef may
appear in the output and cause the "perf data type profiling tests" to
fail. Let's remove the typedef to keep the test passing.

Fixes: 335047109d7d ("perf tests: Test annotate with data type profiling and C")
Signed-off-by: Ian Rogers <irogers@google.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/tests/shell/data_type_profiling.sh
tools/perf/tests/workloads/datasym.c

index 2a7f8f7c42d094a25734922456a3f36f7f1a68c1..fb47b7213b33531430378ae961458cc7e8d78168 100755 (executable)
@@ -8,7 +8,7 @@ set -e
 # data type profiling manifestation
 
 # Values in testtypes and testprogs should match
-testtypes=("# data-type: struct Buf" "# data-type: struct _buf")
+testtypes=("# data-type: struct Buf" "# data-type: struct buf")
 testprogs=("perf test -w code_with_type" "perf test -w datasym")
 
 err=0
index 1d0b7d64e1ba1a317d1a08b4dd7ce482ac50a501..19242c7255c0c0f289e930b684c0e5873d5a10fe 100644 (file)
@@ -4,14 +4,14 @@
 #include <linux/compiler.h>
 #include "../tests.h"
 
-typedef struct _buf {
+struct buf {
        char data1;
        char reserved[55];
        char data2;
-} buf __attribute__((aligned(64)));
+} __attribute__((aligned(64)));
 
 /* volatile to try to avoid the compiler seeing reserved as unused. */
-static volatile buf workload_datasym_buf1 = {
+static volatile struct buf workload_datasym_buf1 = {
        /* to have this in the data section */
        .reserved[0] = 1,
 };