summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorPeter Zijlstra <peterz@infradead.org>2021-05-06 21:33:58 +0200
committerIngo Molnar <mingo@kernel.org>2021-05-12 14:54:55 +0200
commitfa5e5dc39669b4427830c546ede8709323b8276c (patch)
tree9277ff40e9c2908a6a78b8e887c0740cc5a86251 /arch/x86
parentjump_label, x86: Improve error when we fail expected text (diff)
downloadlinux-fa5e5dc39669b4427830c546ede8709323b8276c.tar.xz
linux-fa5e5dc39669b4427830c546ede8709323b8276c.zip
jump_label, x86: Introduce jump_entry_size()
This allows architectures to have variable sized jumps. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20210506194157.786777050@infradead.org
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/jump_label.h4
-rw-r--r--arch/x86/kernel/jump_label.c7
2 files changed, 9 insertions, 2 deletions
diff --git a/arch/x86/include/asm/jump_label.h b/arch/x86/include/asm/jump_label.h
index dfdc2b1c17dd..d85802a00629 100644
--- a/arch/x86/include/asm/jump_label.h
+++ b/arch/x86/include/asm/jump_label.h
@@ -4,8 +4,6 @@
#define HAVE_JUMP_LABEL_BATCH
-#define JUMP_LABEL_NOP_SIZE 5
-
#include <asm/asm.h>
#include <asm/nops.h>
@@ -47,6 +45,8 @@ l_yes:
return true;
}
+extern int arch_jump_entry_size(struct jump_entry *entry);
+
#endif /* __ASSEMBLY__ */
#endif
diff --git a/arch/x86/kernel/jump_label.c b/arch/x86/kernel/jump_label.c
index 638d3b9be0ad..a29eecc14c94 100644
--- a/arch/x86/kernel/jump_label.c
+++ b/arch/x86/kernel/jump_label.c
@@ -16,6 +16,13 @@
#include <asm/alternative.h>
#include <asm/text-patching.h>
+#define JUMP_LABEL_NOP_SIZE JMP32_INSN_SIZE
+
+int arch_jump_entry_size(struct jump_entry *entry)
+{
+ return JMP32_INSN_SIZE;
+}
+
static const void *
__jump_label_set_jump_code(struct jump_entry *entry, enum jump_label_type type)
{