summaryrefslogtreecommitdiff
path: root/arch/mips
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2022-06-15 18:41:42 +0300
committerPeter Zijlstra <peterz@infradead.org>2022-06-24 10:48:55 +0300
commit7e6b9db27de9f69a705c1a046d45882c768e16c3 (patch)
tree4d17aca7fd1d19374a41639fede3095b1117bb0e /arch/mips
parentfdfd42892f311e2b3695852036e5be23661dc590 (diff)
downloadlinux-7e6b9db27de9f69a705c1a046d45882c768e16c3.tar.xz
jump_label: make initial NOP patching the special case
Instead of defaulting to patching NOP opcodes at init time, and leaving it to the architectures to override this if this is not needed, switch to a model where doing nothing is the default. This is the common case by far, as only MIPS requires NOP patching at init time. On all other architectures, the correct encodings are emitted by the compiler and so no initial patching is needed. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Mark Rutland <mark.rutland@arm.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20220615154142.1574619-4-ardb@kernel.org
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/include/asm/jump_label.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/include/asm/jump_label.h b/arch/mips/include/asm/jump_label.h
index 3185fd3220ec..c5c6864e64bc 100644
--- a/arch/mips/include/asm/jump_label.h
+++ b/arch/mips/include/asm/jump_label.h
@@ -8,6 +8,8 @@
#ifndef _ASM_MIPS_JUMP_LABEL_H
#define _ASM_MIPS_JUMP_LABEL_H
+#define arch_jump_label_transform_static arch_jump_label_transform
+
#ifndef __ASSEMBLY__
#include <linux/types.h>