diff options
author | Nathan Ciobanu <nathan.d.ciobanu@linux.intel.com> | 2018-06-13 22:51:34 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2018-06-20 13:55:05 -0400 |
commit | 9ce80578d5f5279545c272563851d059a2359f3e (patch) | |
tree | 903d7c22685389ab6cfbdfab601b870826456cef /tools | |
parent | cc4816503f835c7cea184776fe8ae5bb3f505083 (diff) |
tools/power turbostat: add the missing command line switches
Document the missing command line tokens in the help() function.
Signed-off-by: Nathan Ciobanu <nathan.d.ciobanu@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 2dcc05f3ee6f..108c3bf2a67c 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c | |||
@@ -528,14 +528,28 @@ void help(void) | |||
528 | " eg. --add msr0x10,u64,cpu,delta,MY_TSC\n" | 528 | " eg. --add msr0x10,u64,cpu,delta,MY_TSC\n" |
529 | " -c, --cpu cpu-set limit output to summary plus cpu-set:\n" | 529 | " -c, --cpu cpu-set limit output to summary plus cpu-set:\n" |
530 | " {core | package | j,k,l..m,n-p }\n" | 530 | " {core | package | j,k,l..m,n-p }\n" |
531 | " -d, --debug displays usec, Time_Of_Day_Seconds and more debugging\n" | ||
532 | " -D, --Dump displays the raw counter values\n" | ||
533 | " -e, --enable [all | column]\n" | ||
534 | " shows all or the specified disabled column\n" | ||
535 | " -H, --hide [column|column,column,...]\n" | ||
536 | " hide the specified column(s)\n" | ||
531 | " -i, --interval sec.subsec\n" | 537 | " -i, --interval sec.subsec\n" |
532 | " Override default 5-second measurement interval\n" | 538 | " Override default 5-second measurement interval\n" |
539 | " -J, --Joules displays energy in Joules instead of Watts\n" | ||
533 | " -l, --list list column headers only\n" | 540 | " -l, --list list column headers only\n" |
534 | " -n, --num_iterations num\n" | 541 | " -n, --num_iterations num\n" |
535 | " number of the measurement iterations\n" | 542 | " number of the measurement iterations\n" |
536 | " -o, --out file\n" | 543 | " -o, --out file\n" |
537 | " create or truncate \"file\" for all output\n" | 544 | " create or truncate \"file\" for all output\n" |
538 | " -q, --quiet skip decoding system configuration header\n" | 545 | " -q, --quiet skip decoding system configuration header\n" |
546 | " -s, --show [column|column,column,...]\n" | ||
547 | " show only the specified column(s)\n" | ||
548 | " -S, --Summary\n" | ||
549 | " limits output to 1-line system summary per interval\n" | ||
550 | " -T, --TCC temperature\n" | ||
551 | " sets the Thermal Control Circuit temperature in\n" | ||
552 | " degrees Celsius\n" | ||
539 | " -h, --help print this help message\n" | 553 | " -h, --help print this help message\n" |
540 | " -v, --version print version information\n" | 554 | " -v, --version print version information\n" |
541 | "\n" | 555 | "\n" |