summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/trace-event-perl.h
diff options
context:
space:
mode:
authorTom Zanussi2009-11-30 08:18:48 +0100
committerIngo Molnar2009-11-30 09:04:00 +0100
commit61381de0504181368672a83d2e14c38dbaf3c136 (patch)
tree3c3ab8855ea2807b7eb354c79684200291a40ebe /tools/perf/util/trace-event-perl.h
parentperf trace/scripting: Ignore shadowed variable warning for perf-trace-perl.c (diff)
downloadkernel-qcow2-linux-61381de0504181368672a83d2e14c38dbaf3c136.tar.gz
kernel-qcow2-linux-61381de0504181368672a83d2e14c38dbaf3c136.tar.xz
kernel-qcow2-linux-61381de0504181368672a83d2e14c38dbaf3c136.zip
perf trace/scripting: Fix Perl common_* access functions
The common_* functions (e.g. common_pc(), etc) are exported as common_* but named get_common_*, resulting in unresolved subroutine errors when executing scripts. Make the internal and external names match. Signed-off-by: Tom Zanussi <tzanussi@gmail.com> Cc: fweisbec@gmail.com Cc: rostedt@goodmis.org Cc: anton@samba.org Cc: hch@infradead.org LKML-Reference: <1259565529-6407-4-git-send-email-tzanussi@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/trace-event-perl.h')
-rw-r--r--tools/perf/util/trace-event-perl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/trace-event-perl.h b/tools/perf/util/trace-event-perl.h
index 666a864f5dda..8fe0d866fe1a 100644
--- a/tools/perf/util/trace-event-perl.h
+++ b/tools/perf/util/trace-event-perl.h
@@ -44,8 +44,8 @@ struct scripting_context {
void *event_data;
};
-int get_common_pc(struct scripting_context *context);
-int get_common_flags(struct scripting_context *context);
-int get_common_lock_depth(struct scripting_context *context);
+int common_pc(struct scripting_context *context);
+int common_flags(struct scripting_context *context);
+int common_lock_depth(struct scripting_context *context);
#endif /* __PERF_TRACE_EVENT_PERL_H */