perf scripting perl: Shorten function signatures

Removing unused parameters.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-b7r7o80o2xwwtlzgqxv50foe@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent b7fff6b5
...@@ -257,12 +257,9 @@ static inline struct event_format *find_cache_event(struct perf_evsel *evsel) ...@@ -257,12 +257,9 @@ static inline struct event_format *find_cache_event(struct perf_evsel *evsel)
return event; return event;
} }
static void perl_process_tracepoint(union perf_event *perf_event __maybe_unused, static void perl_process_tracepoint(struct perf_sample *sample,
struct perf_sample *sample,
struct perf_evsel *evsel, struct perf_evsel *evsel,
struct machine *machine __maybe_unused, struct thread *thread)
struct thread *thread,
struct addr_location *al)
{ {
struct format_field *field; struct format_field *field;
static char handler[256]; static char handler[256];
...@@ -349,10 +346,7 @@ static void perl_process_tracepoint(union perf_event *perf_event __maybe_unused, ...@@ -349,10 +346,7 @@ static void perl_process_tracepoint(union perf_event *perf_event __maybe_unused,
static void perl_process_event_generic(union perf_event *event, static void perl_process_event_generic(union perf_event *event,
struct perf_sample *sample, struct perf_sample *sample,
struct perf_evsel *evsel, struct perf_evsel *evsel)
struct machine *machine __maybe_unused,
struct thread *thread __maybe_unused,
struct addr_location *al __maybe_unused)
{ {
dSP; dSP;
...@@ -377,12 +371,12 @@ static void perl_process_event_generic(union perf_event *event, ...@@ -377,12 +371,12 @@ static void perl_process_event_generic(union perf_event *event,
static void perl_process_event(union perf_event *event, static void perl_process_event(union perf_event *event,
struct perf_sample *sample, struct perf_sample *sample,
struct perf_evsel *evsel, struct perf_evsel *evsel,
struct machine *machine, struct machine *machine __maybe_unused,
struct thread *thread, struct thread *thread,
struct addr_location *al) struct addr_location *al __maybe_unused)
{ {
perl_process_tracepoint(event, sample, evsel, machine, thread, al); perl_process_tracepoint(sample, evsel, thread);
perl_process_event_generic(event, sample, evsel, machine, thread, al); perl_process_event_generic(event, sample, evsel);
} }
static void run_start_sub(void) static void run_start_sub(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment