perf intel-pt: pkt-decoder-test: Fix scope of test_data
authorAdrian Hunter <adrian.hunter@intel.com>
Mon, 24 Jan 2022 08:41:37 +0000 (10:41 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 15 Feb 2022 20:05:20 +0000 (17:05 -0300)
Make test_data 'static' otherwise it will conflict with any global
variable of the same name.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20220124084201.2699795-2-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/arch/x86/tests/intel-pt-pkt-decoder-test.c

index 2fc882a..395de44 100644 (file)
@@ -17,7 +17,7 @@
  * @new_ctx: expected new packet context
  * @ctx_unchanged: the packet context must not change
  */
-struct test_data {
+static struct test_data {
        int len;
        u8 bytes[INTEL_PT_PKT_MAX_SZ];
        enum intel_pt_pkt_ctx ctx;