Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 223912
b: refs/heads/master
c: f74725d
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner authored and Arnaldo Carvalho de Melo committed Dec 9, 2010
1 parent d8ace8a commit 870ddcd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e4c2df132fef60a28b851abc1859a531e64f350c
refs/heads/master: f74725dcf2f6931c26bc65e77e34e693eeb8441c
12 changes: 8 additions & 4 deletions trunk/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 870ddcd

Please sign in to comment.