From: Jeffrin Jose T Date: Tue, 29 May 2018 17:24:36 +0000 (+0530) Subject: selftest: intel_pstate: debug support message from aperf.c and return value X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d0103c5cb635f7ea3bf148d37bcf392fd228f0a5;p=linux.git selftest: intel_pstate: debug support message from aperf.c and return value Additional message along with an error message which is more verbose for debug support from aperf.c and updated with the new return value "KSFT_SKIP". Signed-off-by: Jeffrin Jose T [Rajagiri SET] Signed-off-by: Shuah Khan (Samsung OSG) --- diff --git a/tools/testing/selftests/intel_pstate/aperf.c b/tools/testing/selftests/intel_pstate/aperf.c index d21edea9c5601..f6cd03a87493c 100644 --- a/tools/testing/selftests/intel_pstate/aperf.c +++ b/tools/testing/selftests/intel_pstate/aperf.c @@ -9,6 +9,8 @@ #include #include #include +#include +#include "../kselftest.h" void usage(char *name) { printf ("Usage: %s cpunum\n", name); @@ -41,8 +43,8 @@ int main(int argc, char **argv) { fd = open(msr_file_name, O_RDONLY); if (fd == -1) { - perror("Failed to open"); - return 1; + printf("/dev/cpu/%d/msr: %s\n", cpu, strerror(errno)); + return KSFT_SKIP; } CPU_ZERO(&cpuset);