1
0
mirror of https://github.com/speed47/spectre-meltdown-checker synced 2024-06-26 15:12:08 +02:00

fix(mds): AMD confirms they're not vulnerable

This commit is contained in:
Stéphane Lesimple 2019-05-16 11:31:28 +02:00
parent 4f9ca803c8
commit 7d1f269bed

View File

@ -597,16 +597,12 @@ is_cpu_mds_free()
fi
fi
# official statement from AMD says none of their CPUs are vulnerable
# https://www.amd.com/en/corporate/product-security
# https://www.amd.com/system/files/documents/security-whitepaper.pdf
if is_amd; then
if [ "$cpu_family" = "18" ] || \
[ "$cpu_family" = "17" ] || \
[ "$cpu_family" = "16" ] || \
[ "$cpu_family" = "15" ]; then
return 0
fi
fi
if is_hygon; then
return 0
elif is_hygon; then
return 0
elif [ "$cpu_vendor" = CAVIUM ]; then
return 0