diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index f05a3f7b5d4c..50341a322cb8 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c | |||
@@ -1528,7 +1528,8 @@ void check_dev_msr() | |||
1528 | struct stat sb; | 1528 | struct stat sb; |
1529 | 1529 | ||
1530 | if (stat("/dev/cpu/0/msr", &sb)) | 1530 | if (stat("/dev/cpu/0/msr", &sb)) |
1531 | err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" "); | 1531 | if (system("/sbin/modprobe msr > /dev/null 2>&1")) |
1532 | err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" "); | ||
1532 | } | 1533 | } |
1533 | 1534 | ||
1534 | void check_permissions() | 1535 | void check_permissions() |
@@ -2713,7 +2714,7 @@ int get_and_dump_counters(void) | |||
2713 | } | 2714 | } |
2714 | 2715 | ||
2715 | void print_version() { | 2716 | void print_version() { |
2716 | fprintf(stderr, "turbostat version 4.2 23 Mar, 2015" | 2717 | fprintf(stderr, "turbostat version 4.3 24 Mar, 2015" |
2717 | " - Len Brown <lenb@kernel.org>\n"); | 2718 | " - Len Brown <lenb@kernel.org>\n"); |
2718 | } | 2719 | } |
2719 | 2720 | ||