projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5aea2f7
)
tools/power turbostat: correct output for MSR_NHM_SNB_PKG_CST_CFG_CTL dump
author
Len Brown
<len.brown@intel.com>
Sun, 13 Mar 2016 07:21:22 +0000
(
03:21
-0400)
committer
Len Brown
<len.brown@intel.com>
Sun, 13 Mar 2016 08:22:47 +0000
(
04:22
-0400)
MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x1e008008 (...pkg-cstate-limit=0: unlimited)
should print as
MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x1e008008 (...pkg-cstate-limit=8: unlimited)
Signed-off-by: Len Brown <len.brown@intel.com>
tools/power/x86/turbostat/turbostat.c
patch
|
blob
|
history
diff --git
a/tools/power/x86/turbostat/turbostat.c
b/tools/power/x86/turbostat/turbostat.c
index
b34241c
..
a551630
100644
(file)
--- a/
tools/power/x86/turbostat/turbostat.c
+++ b/
tools/power/x86/turbostat/turbostat.c
@@
-1532,7
+1532,7
@@
dump_nhm_cst_cfg(void)
(msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
(msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
(msr & (1 << 15)) ? "" : "UN",
- (unsigned int)msr &
7
,
+ (unsigned int)msr &
0xF
,
pkg_cstate_limit_strings[pkg_cstate_limit]);
return;
}