Skip to content

Commit

Permalink
perf session: Add file_offset to event delivery function
Browse files Browse the repository at this point in the history
Preparatory patch for ordered output of perf report -D

Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ian Munsie <imunsie@au1.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <20101207124550.818568607@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Thomas Gleixner authored and Arnaldo Carvalho de Melo committed Dec 9, 2010
1 parent e4c2df1 commit f74725d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tools/perf/util/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,8 @@ static void perf_session_free_sample_buffers(struct perf_session *session)
static int perf_session_deliver_event(struct perf_session *session,
event_t *event,
struct sample_data *sample,
struct perf_event_ops *ops);
struct perf_event_ops *ops,
u64 file_offset);

static void flush_sample_queue(struct perf_session *s,
struct perf_event_ops *ops)
Expand All @@ -485,7 +486,8 @@ static void flush_sample_queue(struct perf_session *s,
break;

event__parse_sample(iter->event, s, &sample);
perf_session_deliver_event(s, iter->event, &sample, ops);
perf_session_deliver_event(s, iter->event, &sample, ops,
iter->file_offset);

os->last_flush = iter->timestamp;
list_del(&iter->list);
Expand Down Expand Up @@ -699,7 +701,8 @@ static void dump_sample(struct perf_session *session, event_t *event,
static int perf_session_deliver_event(struct perf_session *session,
event_t *event,
struct sample_data *sample,
struct perf_event_ops *ops)
struct perf_event_ops *ops,
u64 file_offset __used)
{
switch (event->header.type) {
case PERF_RECORD_SAMPLE:
Expand Down Expand Up @@ -788,7 +791,8 @@ static int perf_session__process_event(struct perf_session *session,
return ret;
}

return perf_session_deliver_event(session, event, &sample, ops);
return perf_session_deliver_event(session, event, &sample, ops,
file_offset);
}

void perf_event_header__bswap(struct perf_event_header *self)
Expand Down

0 comments on commit f74725d

Please sign in to comment.