aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/power/x86/turbostat/turbostat.c
diff options
context:
space:
mode:
authorPrarit Bhargava <prarit@redhat.com>2022-12-15 10:18:16 -0500
committerLen Brown <len.brown@intel.com>2023-03-17 11:23:38 -0400
commit40aafc7d58d3544f152a863a0e9863014b6d5d8c (patch)
treecd13fff24b6b11fc2b7d93011b431f5f2c994ed9 /tools/power/x86/turbostat/turbostat.c
parenttools/power turbostat: Provide better debug messages for failed capabilities accesses (diff)
downloadwireguard-linux-40aafc7d58d3544f152a863a0e9863014b6d5d8c.tar.xz
wireguard-linux-40aafc7d58d3544f152a863a0e9863014b6d5d8c.zip
tools/power turbostat: Fix /dev/cpu_dma_latency warnings
When running as non-root the following error is seen in turbostat: turbostat: fopen /dev/cpu_dma_latency : Permission denied turbostat and the man page have information on how to avoid other permission errors, so these can be fixed the same way. Provide better /dev/cpu_dma_latency warnings that provide instructions on how to avoid the error, and update the man page. Signed-off-by: Prarit Bhargava <prarit@redhat.com> Cc: linux-pm@vger.kernel.org Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to '')
-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 d246ef6153dc..9aed2620a2d2 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -5482,7 +5482,7 @@ void print_dev_latency(void)
retval = read(fd, (void *)&value, sizeof(int));
if (retval != sizeof(int)) {
- warn("read %s\n", path);
+ warn("read failed %s\n", path);
close(fd);
return;
}