perf inject: Remove unused parameter
authorAdrian Hunter <[email protected]>
Thu, 4 Jul 2013 13:20:20 +0000 (16:20 +0300)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 12 Jul 2013 16:52:47 +0000 (13:52 -0300)
The 'machine' parameter is unused in 'perf_event__repipe_synth()' and
some callers pass NULL anyway.  So remove it.

Signed-off-by: Adrian Hunter <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/builtin-inject.c

index 84ad6abe42586a3bcb6d04aa5696cae6bf59b043..f299ddf29967d6ce32fc41899a442d7bf0484652 100644 (file)
@@ -38,8 +38,7 @@ struct event_entry {
 };
 
 static int perf_event__repipe_synth(struct perf_tool *tool,
-                                   union perf_event *event,
-                                   struct machine *machine __maybe_unused)
+                                   union perf_event *event)
 {
        struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
        uint32_t size;
@@ -65,20 +64,20 @@ static int perf_event__repipe_op2_synth(struct perf_tool *tool,
                                        struct perf_session *session
                                        __maybe_unused)
 {
-       return perf_event__repipe_synth(tool, event, NULL);
+       return perf_event__repipe_synth(tool, event);
 }
 
 static int perf_event__repipe_event_type_synth(struct perf_tool *tool,
                                               union perf_event *event)
 {
-       return perf_event__repipe_synth(tool, event, NULL);
+       return perf_event__repipe_synth(tool, event);
 }
 
 static int perf_event__repipe_tracing_data_synth(union perf_event *event,
                                                 struct perf_session *session
                                                 __maybe_unused)
 {
-       return perf_event__repipe_synth(NULL, event, NULL);
+       return perf_event__repipe_synth(NULL, event);
 }
 
 static int perf_event__repipe_attr(union perf_event *event,
@@ -89,15 +88,15 @@ static int perf_event__repipe_attr(union perf_event *event,
        if (ret)
                return ret;
 
-       return perf_event__repipe_synth(NULL, event, NULL);
+       return perf_event__repipe_synth(NULL, event);
 }
 
 static int perf_event__repipe(struct perf_tool *tool,
                              union perf_event *event,
                              struct perf_sample *sample __maybe_unused,
-                             struct machine *machine)
+                             struct machine *machine __maybe_unused)
 {
-       return perf_event__repipe_synth(tool, event, machine);
+       return perf_event__repipe_synth(tool, event);
 }
 
 typedef int (*inject_handler)(struct perf_tool *tool,
@@ -119,7 +118,7 @@ static int perf_event__repipe_sample(struct perf_tool *tool,
 
        build_id__mark_dso_hit(tool, event, sample, evsel, machine);
 
-       return perf_event__repipe_synth(tool, event, machine);
+       return perf_event__repipe_synth(tool, event);
 }
 
 static int perf_event__repipe_mmap(struct perf_tool *tool,
@@ -153,7 +152,7 @@ static int perf_event__repipe_tracing_data(union perf_event *event,
 {
        int err;
 
-       perf_event__repipe_synth(NULL, event, NULL);
+       perf_event__repipe_synth(NULL, event);
        err = perf_event__process_tracing_data(event, session);
 
        return err;