aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/perl
diff options
context:
space:
mode:
authorRamkumar Ramachandra <[email protected]>2013-07-09 10:00:30 +0000
committerArnaldo Carvalho de Melo <[email protected]>2013-07-10 16:47:00 +0000
commit750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac (patch)
treebc11a23330d1d1288c684c4f9a4e1bda18715a5e /tools/perf/scripts/perl
parentperf tools: Fix -ldw/-lelf link test when static linking (diff)
downloadkernel-750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac.tar.gz
kernel-750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac.zip
perf script: Fix broken include in Context.xs
765532c8 (perf script: Finish the rename from trace to script, 2010-12-23) made a mistake during find-and-replace replacing "../../../util/trace-event.h" with "../../../util/script-event.h", a non-existent file. Fix this include. Signed-off-by: Ramkumar Ramachandra <[email protected]> Cc: Namhyung Kim <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/scripts/perl')
-rw-r--r--tools/perf/scripts/perl/Perf-Trace-Util/Context.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/perl/Perf-Trace-Util/Context.xs b/tools/perf/scripts/perl/Perf-Trace-Util/Context.xs
index c1e2ed1ed34e..8c7ea42444d1 100644
--- a/tools/perf/scripts/perl/Perf-Trace-Util/Context.xs
+++ b/tools/perf/scripts/perl/Perf-Trace-Util/Context.xs
@@ -23,7 +23,7 @@
#include "perl.h"
#include "XSUB.h"
#include "../../../perf.h"
-#include "../../../util/script-event.h"
+#include "../../../util/trace-event.h"
MODULE = Perf::Trace::Context PACKAGE = Perf::Trace::Context
PROTOTYPES: ENABLE