Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9986fad authored by David Ahern's avatar David Ahern Committed by Arnaldo Carvalho de Melo
Browse files

perf record: Move existing write_output into helper function



Code move only; no logic changes. In preparation for the mmap based
output option in the next patch.

Signed-off-by: default avatarDavid Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1383884605-30968-2-git-send-email-dsahern@gmail.com


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 410f1786
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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,