diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2008-12-16 09:53:11 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-16 12:28:37 -0500 |
commit | d072c25f531c6513994960401d2c7f059434c0d2 (patch) | |
tree | af9631b5f00a48e79b0837311e70fbbb26ba61a0 /arch/x86/kernel/ds.c | |
parent | cc1dc6d039ced64c2f8b8457bf1cccf4ecfc5942 (diff) |
x86, bts: correctly report invalid bts records
Impact: change the reporting of empty BTS records
Correctly report a cleared BTS record as invalid. Used to be reported
as branch from 0 to 0.
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/ds.c')
-rw-r--r-- | arch/x86/kernel/ds.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/ds.c b/arch/x86/kernel/ds.c index 0dc795951d73..98d271e60e08 100644 --- a/arch/x86/kernel/ds.c +++ b/arch/x86/kernel/ds.c | |||
@@ -484,6 +484,9 @@ static int bts_read(struct bts_tracer *tracer, const void *at, | |||
484 | out->qualifier = bts_branch; | 484 | out->qualifier = bts_branch; |
485 | out->variant.lbr.from = bts_get(at, bts_from); | 485 | out->variant.lbr.from = bts_get(at, bts_from); |
486 | out->variant.lbr.to = bts_get(at, bts_to); | 486 | out->variant.lbr.to = bts_get(at, bts_to); |
487 | |||
488 | if (!out->variant.lbr.from && !out->variant.lbr.to) | ||
489 | out->qualifier = bts_invalid; | ||
487 | } | 490 | } |
488 | 491 | ||
489 | return ds_cfg.sizeof_rec[ds_bts]; | 492 | return ds_cfg.sizeof_rec[ds_bts]; |