Skip to content

Commit

Permalink
perf tools: Moving code in some files
Browse files Browse the repository at this point in the history
Needed for later changes. No modified functionality.

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1323248577-11268-4-git-send-email-robert.richter@amd.com
Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Robert Richter authored and Arnaldo Carvalho de Melo committed Dec 23, 2011
1 parent 002c4fd commit 1b54950
Show file tree
Hide file tree
Showing 2 changed files with 264 additions and 267 deletions.
36 changes: 18 additions & 18 deletions tools/perf/builtin-buildid-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,6 @@ static const struct option options[] = {
OPT_END()
};

static int perf_session__list_build_ids(void)
{
struct perf_session *session;

session = perf_session__new(input_name, O_RDONLY, force, false,
&build_id__mark_dso_hit_ops);
if (session == NULL)
return -1;

if (with_hits)
perf_session__process_events(session, &build_id__mark_dso_hit_ops);

perf_session__fprintf_dsos_buildid(session, stdout, with_hits);

perf_session__delete(session);
return 0;
}

static int sysfs__fprintf_build_id(FILE *fp)
{
u8 kallsyms_build_id[BUILD_ID_SIZE];
Expand Down Expand Up @@ -85,6 +67,24 @@ static int filename__fprintf_build_id(const char *name, FILE *fp)
return fprintf(fp, "%s\n", sbuild_id);
}

static int perf_session__list_build_ids(void)
{
struct perf_session *session;

session = perf_session__new(input_name, O_RDONLY, force, false,
&build_id__mark_dso_hit_ops);
if (session == NULL)
return -1;

if (with_hits)
perf_session__process_events(session, &build_id__mark_dso_hit_ops);

perf_session__fprintf_dsos_buildid(session, stdout, with_hits);

perf_session__delete(session);
return 0;
}

static int __cmd_buildid_list(void)
{
if (show_kernel)
Expand Down
Loading

0 comments on commit 1b54950

Please sign in to comment.