]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
perf tests: Fix data symbol test with LTO builds
authorIan Rogers <irogers@google.com>
Wed, 26 Feb 2025 23:01:09 +0000 (15:01 -0800)
committerNamhyung Kim <namhyung@kernel.org>
Fri, 7 Mar 2025 22:07:07 +0000 (14:07 -0800)
With LTO builds, although regular builds could also see this as
all the code is in one file, the datasym workload can realize the
buf1.reserved data is never accessed. The compiler moves the
variable to bss and only keeps the data1 and data2 parts as
separate variables. This causes the symbol check to fail in the
test. Make the variable volatile to disable the more aggressive
optimization. Rename the variable to make which buf1 in perf is
being referred to.

Before:

  $ perf test -vv "data symbol"
  126: Test data symbol:
  --- start ---
  test child forked, pid 299808
  perf does not have symbol 'buf1'
  perf is missing symbols - skipping test
  ---- end(-2) ----
  126: Test data symbol                                                : Skip
  $ nm perf|grep buf1
  0000000000a5fa40 b buf1.0
  0000000000a5fa48 b buf1.1

After:

  $ nm perf|grep buf1
  0000000000a53a00 d buf1
  $ perf test -vv "data symbol"126: Test data symbol:
  --- start ---
  test child forked, pid 302166
   a53a00-a53a39 l buf1
  perf does have symbol 'buf1'
  Recording workload...
  Waiting for "perf record has started" message
  OK
  Cleaning up files...
  ---- end(0) ----
  126: Test data symbol                                                : Ok

Fixes: 3dfc01fe9d12 ("perf test: Add 'datasym' test workload")
Signed-off-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20250226230109.314580-1-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/tests/shell/test_data_symbol.sh
tools/perf/tests/workloads/datasym.c

index 1792b7ad4066f8cd381790656f7bff97dc052b73..bbe8277496aee5bb8e98e8bfc183341c1ddb8c5c 100755 (executable)
@@ -16,7 +16,7 @@ skip_if_no_mem_event() {
 
 skip_if_no_mem_event || exit 2
 
-skip_test_missing_symbol buf1
+skip_test_missing_symbol workload_datasym_buf1
 
 TEST_PROGRAM="perf test -w datasym"
 PERF_DATA=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
@@ -24,18 +24,19 @@ ERR_FILE=$(mktemp /tmp/__perf_test.stderr.XXXXX)
 
 check_result() {
        # The memory report format is as below:
-       #    99.92%  ...  [.] buf1+0x38
+       #    99.92%  ...  [.] workload_datasym_buf1+0x38
        result=$(perf mem report -i ${PERF_DATA} -s symbol_daddr -q 2>&1 |
-                awk '/buf1/ { print $4 }')
+                awk '/workload_datasym_buf1/ { print $4 }')
 
-       # Testing is failed if has no any sample for "buf1"
+       # Testing is failed if has no any sample for "workload_datasym_buf1"
        [ -z "$result" ] && return 1
 
        while IFS= read -r line; do
-               # The "data1" and "data2" fields in structure "buf1" have
-               # offset "0x0" and "0x38", returns failure if detect any
-               # other offset value.
-               if [ "$line" != "buf1+0x0" ] && [ "$line" != "buf1+0x38" ]; then
+               # The "data1" and "data2" fields in structure
+               # "workload_datasym_buf1" have offset "0x0" and "0x38", returns
+               # failure if detect any other offset value.
+               if [ "$line" != "workload_datasym_buf1+0x0" ] && \
+                  [ "$line" != "workload_datasym_buf1+0x38" ]; then
                        return 1
                fi
        done <<< "$result"
index 8ddb2aa6a049e343af9c09cd946008bbd74373d2..1d0b7d64e1ba1a317d1a08b4dd7ce482ac50a501 100644 (file)
@@ -10,7 +10,8 @@ typedef struct _buf {
        char data2;
 } buf __attribute__((aligned(64)));
 
-static buf buf1 = {
+/* volatile to try to avoid the compiler seeing reserved as unused. */
+static volatile buf workload_datasym_buf1 = {
        /* to have this in the data section */
        .reserved[0] = 1,
 };
@@ -34,8 +35,8 @@ static int datasym(int argc, const char **argv)
        alarm(sec);
 
        while (!done) {
-               buf1.data1++;
-               if (buf1.data1 == 123) {
+               workload_datasym_buf1.data1++;
+               if (workload_datasym_buf1.data1 == 123) {
                        /*
                         * Add some 'noise' in the loop to work around errata
                         * 1694299 on Arm N1.
@@ -49,9 +50,9 @@ static int datasym(int argc, const char **argv)
                         * longer a continuous repeating pattern that interacts
                         * badly with the bias.
                         */
-                       buf1.data1++;
+                       workload_datasym_buf1.data1++;
                }
-               buf1.data2 += buf1.data1;
+               workload_datasym_buf1.data2 += workload_datasym_buf1.data1;
        }
        return 0;
 }