From e36a35763c91a2871199534b6e9686842eabfe2a Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Wed, 7 Feb 2018 14:39:47 -0800 Subject: [PATCH] API rename --- prevent-bounds-check-bypass-via-speculative-execution.patch | 4 ++-- 1 file 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; }