aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power/x86
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2018-07-25 17:25:29 -0400
committerLen Brown <len.brown@intel.com>2018-07-26 14:20:59 -0400
commitcfce494db3bfccd2a0774652b95f286639acef36 (patch)
treedfd2213367dcb11ee4f976c53730cb129f64cced /tools/power/x86
parenttools/power turbostat: fix bogus summary values (diff)
downloadlinux-dev-cfce494db3bfccd2a0774652b95f286639acef36.tar.xz
linux-dev-cfce494db3bfccd2a0774652b95f286639acef36.zip
tools/power turbostat: fix x2apic debug message output file
A recently added x2apic debug message was hard-coded to stderr. That doesn't work with "-o outfile". Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86')
-rw-r--r--tools/power/x86/turbostat/turbostat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index 1b53a2489ebb..02e71accad16 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -1690,7 +1690,7 @@ void get_apic_id(struct thread_data *t)
t->x2apic_id = edx;
if (debug && (t->apic_id != t->x2apic_id))
- fprintf(stderr, "cpu%d: apic 0x%x x2apic 0x%x\n", t->cpu_id, t->apic_id, t->x2apic_id);
+ fprintf(outf, "cpu%d: apic 0x%x x2apic 0x%x\n", t->cpu_id, t->apic_id, t->x2apic_id);
}
/*