diff options
Diffstat (limited to 'prevent-bounds-check-bypass-via-speculative-execution.patch')
-rw-r--r-- | prevent-bounds-check-bypass-via-speculative-execution.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prevent-bounds-check-bypass-via-speculative-execution.patch b/prevent-bounds-check-bypass-via-speculative-execution.patch index 275d3b039..aa19fc0d4 100644 --- a/prevent-bounds-check-bypass-via-speculative-execution.patch +++ b/prevent-bounds-check-bypass-via-speculative-execution.patch @@ -336,7 +336,7 @@ index 574dff4d2913..9b6f20cfaeb9 100644 + if (__builtin_constant_p(size)) { + if (unlikely(addr > limit - size)) + return true; -+ nospec_barrier(); ++ barrier_nospec(); + return false; + } @@ -346,7 +346,7 @@ index 574dff4d2913..9b6f20cfaeb9 100644 + if (unlikely(addr < size || addr > limit)) return true; - return unlikely(addr > limit); -+ nospec_barrier(); ++ barrier_nospec(); + return false; } |