A76 vulnerable to variant 4

All arch 8 cortex A57-A76 are vulnerable to variant 4.

https://developer.arm.com/support/arm-security-updates/speculative-processor-vulnerability
This commit is contained in:
Rob Gill 2018-06-12 07:50:16 +10:00 committed by GitHub
parent 556dd02591
commit ecff9b929e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -382,8 +382,8 @@ is_cpu_vulnerable()
fi
# for variant4, only A57-72-73-75 are vulnerable
if [ "$cpuarch" = 8 ] && echo "$cpupart" | grep -Eq '^0xd0[789a]$'; then
_debug "checking cpu$i: arm A57-A72-A73-A75 vulnerable to variant4"
if [ "$cpuarch" = 8 ]; then
_debug "checking cpu$i: arm A57-A72-A73-A75-A76 vulnerable to variant4"
variant4=vuln
else
_debug "checking cpu$i: this arm non vulnerable to variant4"