Commit 51b09186 authored by Adrian Hunter's avatar Adrian Hunter Committed by Arnaldo Carvalho de Melo

perf intel-pt: Add CBR value to decoder state

For convenience, add the core-to-bus ratio (CBR) value to the decoder
state.
Signed-off-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/20190622093248.581-4-adrian.hunter@intel.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 91de8684
...@@ -2633,6 +2633,7 @@ const struct intel_pt_state *intel_pt_decode(struct intel_pt_decoder *decoder) ...@@ -2633,6 +2633,7 @@ const struct intel_pt_state *intel_pt_decode(struct intel_pt_decoder *decoder)
} }
decoder->state.type |= INTEL_PT_CBR_CHG; decoder->state.type |= INTEL_PT_CBR_CHG;
decoder->state.cbr_payload = decoder->cbr_payload; decoder->state.cbr_payload = decoder->cbr_payload;
decoder->state.cbr = decoder->cbr;
} }
if (intel_pt_sample_time(decoder->pkt_state)) { if (intel_pt_sample_time(decoder->pkt_state)) {
intel_pt_update_sample_time(decoder); intel_pt_update_sample_time(decoder);
......
...@@ -213,6 +213,7 @@ struct intel_pt_state { ...@@ -213,6 +213,7 @@ struct intel_pt_state {
uint64_t pwre_payload; uint64_t pwre_payload;
uint64_t pwrx_payload; uint64_t pwrx_payload;
uint64_t cbr_payload; uint64_t cbr_payload;
uint32_t cbr;
uint32_t flags; uint32_t flags;
enum intel_pt_insn_op insn_op; enum intel_pt_insn_op insn_op;
int insn_len; int insn_len;
......
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