summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBorislav Petkov (AMD) <bp@alien8.de>2024-06-07 13:16:56 +0200
committerBorislav Petkov (AMD) <bp@alien8.de>2024-06-11 18:20:41 +0200
commitd2d302b1bbe28dba3bd8da855ac9c16aa5dbd00e (patch)
treeb5a162f0bf0773b8b0f61004e3217f86adb4a6b8
parent719ac02347ee5f94a9f3d5c2fe84640f855432a9 (diff)
downloadlwn-d2d302b1bbe28dba3bd8da855ac9c16aa5dbd00e.tar.gz
lwn-d2d302b1bbe28dba3bd8da855ac9c16aa5dbd00e.zip
x86/alternative: Convert ALTERNATIVE_TERNARY()
The C macro. Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20240607111701.8366-10-bp@kernel.org
-rw-r--r--arch/x86/include/asm/alternative.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/include/asm/alternative.h b/arch/x86/include/asm/alternative.h
index bc260f27d7f1..007baab32c14 100644
--- a/arch/x86/include/asm/alternative.h
+++ b/arch/x86/include/asm/alternative.h
@@ -274,15 +274,9 @@ static inline int alternatives_text_reserved(void *start, void *end)
/* If @feature is set, patch in @newinstr_yes, otherwise @newinstr_no. */
#define ALTERNATIVE_TERNARY(oldinstr, ft_flags, newinstr_yes, newinstr_no) \
- ALTERNATIVE_2(oldinstr, newinstr_no, X86_FEATURE_ALWAYS, \
- newinstr_yes, ft_flags)
-
-/* If @feature is set, patch in @newinstr_yes, otherwise @newinstr_no. */
-#define N_ALTERNATIVE_TERNARY(oldinstr, ft_flags, newinstr_yes, newinstr_no) \
N_ALTERNATIVE_2(oldinstr, newinstr_no, X86_FEATURE_ALWAYS, \
newinstr_yes, ft_flags)
-
#define ALTERNATIVE_3(oldinsn, newinsn1, ft_flags1, newinsn2, ft_flags2, \
newinsn3, ft_flags3) \
OLDINSTR_3(oldinsn, 1, 2, 3) \