perf record: Move existing write_output into helper function
authorDavid Ahern <[email protected]>
Fri, 8 Nov 2013 04:23:24 +0000 (21:23 -0700)
committerArnaldo Carvalho de Melo <[email protected]>
Mon, 11 Nov 2013 18:56:40 +0000 (15:56 -0300)
Code move only; no logic changes. In preparation for the mmap based
output option in the next patch.

Signed-off-by: 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: 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-record.c

index 8f5af32d64517156fd938e82f591a0f26e153498..880227eae20f33941023bb5885fc5cfb82a9cdb0 100644 (file)
@@ -76,7 +76,7 @@ struct perf_record {
        long                    samples;
 };
 
-static int write_output(struct perf_record *rec, void *buf, size_t size)
+static int do_write_output(struct perf_record *rec, void *buf, size_t size)
 {
        struct perf_data_file *file = &rec->file;
 
@@ -97,6 +97,11 @@ static int write_output(struct perf_record *rec, void *buf, size_t size)
        return 0;
 }
 
+static int write_output(struct perf_record *rec, void *buf, size_t size)
+{
+       return do_write_output(rec, buf, size);
+}
+
 static int process_synthesized_event(struct perf_tool *tool,
                                     union perf_event *event,
                                     struct perf_sample *sample __maybe_unused,