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>
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user