mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2025-01-03 01:55:51 +01:00
fix: taa: CPUs having TAA_NO bit set are not vulnerable
This commit is contained in:
parent
4fc2afe1bc
commit
4993b04922
@ -682,7 +682,7 @@ is_cpu_taa_free()
|
|||||||
if ! is_intel; then
|
if ! is_intel; then
|
||||||
return 0
|
return 0
|
||||||
# is intel
|
# is intel
|
||||||
elif [ "$capabilities_taa_no" = 0 ] || [ "$cpuid_rtm" = 0 ]; then
|
elif [ "$capabilities_taa_no" = 1 ] || [ "$cpuid_rtm" = 0 ]; then
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user