Commit 7365be55 authored by Don Zickus's avatar Don Zickus Committed by Jiri Olsa

perf tools: Add cpumode to struct hist_entry

The next patch needs to sort on cpumode, so add it to hist_entry to be tracked.
Signed-off-by: default avatarDon Zickus <dzickus@redhat.com>
Link: http://lkml.kernel.org/r/1401208087-181977-6-git-send-email-dzickus@redhat.comSigned-off-by: default avatarJiri Olsa <jolsa@kernel.org>
parent 75e906c9
...@@ -439,9 +439,10 @@ struct hist_entry *__hists__add_entry(struct hists *hists, ...@@ -439,9 +439,10 @@ struct hist_entry *__hists__add_entry(struct hists *hists,
.map = al->map, .map = al->map,
.sym = al->sym, .sym = al->sym,
}, },
.cpu = al->cpu, .cpu = al->cpu,
.ip = al->addr, .cpumode = al->cpumode,
.level = al->level, .ip = al->addr,
.level = al->level,
.stat = { .stat = {
.nr_events = 1, .nr_events = 1,
.period = period, .period = period,
......
...@@ -89,6 +89,7 @@ struct hist_entry { ...@@ -89,6 +89,7 @@ struct hist_entry {
u64 ip; u64 ip;
u64 transaction; u64 transaction;
s32 cpu; s32 cpu;
u8 cpumode;
struct hist_entry_diff diff; struct hist_entry_diff diff;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment