fix(variant4): add another detection way for Red Hat kernel

This commit is contained in:
Stéphane Lesimple 2018-05-23 22:47:54 +02:00
parent 85d46b2799
commit f4d51e7e53
1 changed files with 1 additions and 1 deletions

View File

@ -2928,7 +2928,7 @@ check_variant4()
if [ "$opt_sysfs_only" != 1 ]; then
_info_nol " * Kernel supports speculation store bypass: "
if [ "$opt_live" = 1 ]; then
if grep -q 'Speculation.Store.Bypass:' /proc/self/status 2>/dev/null; then
if grep -Eq 'Speculation.?Store.?Bypass:' /proc/self/status 2>/dev/null; then
kernel_ssb='found in /proc/self/status'
_debug "found Speculation.Store.Bypass: in /proc/self/status"
fi