fix: tsx: rtm feature bit is in EBX(11)

This commit is contained in:
Stéphane Lesimple 2019-12-02 19:07:10 +01:00
parent 6e799e8b01
commit 71129d6b48
1 changed files with 2 additions and 2 deletions

View File

@ -2923,11 +2923,11 @@ check_cpu()
ret=1
cpuid_rtm=0
if is_intel; then
read_cpuid 0x7 $EDX 11 1 1; ret=$?
read_cpuid 0x7 $EBX 11 1 1; ret=$?
fi
if [ $ret -eq 0 ]; then
cpuid_rtm=1
pstatus green YES
pstatus green YES "RTM feature bit"
elif [ $ret -eq 2 ]; then
cpuid_rtm=-1
pstatus yellow UNKNOWN "is cpuid kernel module available?"