From ab3d6ea0da59b32f7fa9103a219f6565b1964212 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Tue, 26 Mar 2019 10:18:10 +0100 Subject: [PATCH] cputest: Add support for MSR features to cpu-gather.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch adds an inline python code for reading MSR features. Since reading MSRs is a privileged operation, we have to read them from /dev/cpu/*/msr if it is readable (i.e., the script runs as root) or fallback to using KVM ioctl which can be done by any user that can start virtual machines. The python code is inlined rather than provided in a separate script because whenever there's an issue with proper detection of CPU features, we ask the reporter to run cpu-gather.sh script to give us all data we need to know about the host CPU. Asking them to run several scripts would likely result in one of them being ignored or forgotten. Signed-off-by: Jiri Denemark Reviewed-by: Ján Tomko --- tests/cputestdata/cpu-gather.sh | 49 ++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/tests/cputestdata/cpu-gather.sh b/tests/cputestdata/cpu-gather.sh index 9c696f57bd..cefd1b0d0d 100755 --- a/tests/cputestdata/cpu-gather.sh +++ b/tests/cputestdata/cpu-gather.sh @@ -7,8 +7,55 @@ grep 'model name' /proc/cpuinfo | head -n1 cpuid -1r - echo + +for python in python3 python2; do + $python <