x86, bts: correctly report invalid bts records
authorMarkus Metzger <markus.t.metzger@intel.com>
Tue, 16 Dec 2008 14:53:11 +0000 (15:53 +0100)
committerIngo Molnar <mingo@elte.hu>
Tue, 16 Dec 2008 17:28:37 +0000 (18:28 +0100)
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>
arch/x86/kernel/ds.c

index 0dc7959..98d271e 100644 (file)
@@ -484,6 +484,9 @@ static int bts_read(struct bts_tracer *tracer, const void *at,
                out->qualifier = bts_branch;
                out->variant.lbr.from = bts_get(at, bts_from);
                out->variant.lbr.to   = bts_get(at, bts_to);
+
+               if (!out->variant.lbr.from && !out->variant.lbr.to)
+                       out->qualifier = bts_invalid;
        }
 
        return ds_cfg.sizeof_rec[ds_bts];