From 4993b04922ad33cc3b2943d343955d19cbf8d76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Mon, 25 Nov 2019 21:14:54 +0100 Subject: [PATCH] fix: taa: CPUs having TAA_NO bit set are not vulnerable --- spectre-meltdown-checker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spectre-meltdown-checker.sh b/spectre-meltdown-checker.sh index 7862a73..8bd194b 100755 --- a/spectre-meltdown-checker.sh +++ b/spectre-meltdown-checker.sh @@ -682,7 +682,7 @@ is_cpu_taa_free() if ! is_intel; then return 0 # is intel - elif [ "$capabilities_taa_no" = 0 ] || [ "$cpuid_rtm" = 0 ]; then + elif [ "$capabilities_taa_no" = 1 ] || [ "$cpuid_rtm" = 0 ]; then return 0 fi