diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/asm.h | 7 | ||||
-rw-r--r-- | arch/x86/kernel/paravirt.c | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/include/asm/asm.h b/arch/x86/include/asm/asm.h index 4582e8e1cd1a..7730c1c5c83a 100644 --- a/arch/x86/include/asm/asm.h +++ b/arch/x86/include/asm/asm.h | |||
@@ -57,6 +57,12 @@ | |||
57 | .long (from) - . ; \ | 57 | .long (from) - . ; \ |
58 | .long (to) - . + 0x7ffffff0 ; \ | 58 | .long (to) - . + 0x7ffffff0 ; \ |
59 | .popsection | 59 | .popsection |
60 | |||
61 | # define _ASM_NOKPROBE(entry) \ | ||
62 | .pushsection "_kprobe_blacklist","aw" ; \ | ||
63 | _ASM_ALIGN ; \ | ||
64 | _ASM_PTR (entry); \ | ||
65 | .popsection | ||
60 | #else | 66 | #else |
61 | # define _ASM_EXTABLE(from,to) \ | 67 | # define _ASM_EXTABLE(from,to) \ |
62 | " .pushsection \"__ex_table\",\"a\"\n" \ | 68 | " .pushsection \"__ex_table\",\"a\"\n" \ |
@@ -71,6 +77,7 @@ | |||
71 | " .long (" #from ") - .\n" \ | 77 | " .long (" #from ") - .\n" \ |
72 | " .long (" #to ") - . + 0x7ffffff0\n" \ | 78 | " .long (" #to ") - . + 0x7ffffff0\n" \ |
73 | " .popsection\n" | 79 | " .popsection\n" |
80 | /* For C file, we already have NOKPROBE_SYMBOL macro */ | ||
74 | #endif | 81 | #endif |
75 | 82 | ||
76 | #endif /* _ASM_X86_ASM_H */ | 83 | #endif /* _ASM_X86_ASM_H */ |
diff --git a/arch/x86/kernel/paravirt.c b/arch/x86/kernel/paravirt.c index 1b10af835c31..e136869ae42e 100644 --- a/arch/x86/kernel/paravirt.c +++ b/arch/x86/kernel/paravirt.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/efi.h> | 23 | #include <linux/efi.h> |
24 | #include <linux/bcd.h> | 24 | #include <linux/bcd.h> |
25 | #include <linux/highmem.h> | 25 | #include <linux/highmem.h> |
26 | #include <linux/kprobes.h> | ||
26 | 27 | ||
27 | #include <asm/bug.h> | 28 | #include <asm/bug.h> |
28 | #include <asm/paravirt.h> | 29 | #include <asm/paravirt.h> |
@@ -389,6 +390,9 @@ __visible struct pv_cpu_ops pv_cpu_ops = { | |||
389 | .end_context_switch = paravirt_nop, | 390 | .end_context_switch = paravirt_nop, |
390 | }; | 391 | }; |
391 | 392 | ||
393 | /* At this point, native_get_debugreg has a real function entry */ | ||
394 | NOKPROBE_SYMBOL(native_get_debugreg); | ||
395 | |||
392 | struct pv_apic_ops pv_apic_ops = { | 396 | struct pv_apic_ops pv_apic_ops = { |
393 | #ifdef CONFIG_X86_LOCAL_APIC | 397 | #ifdef CONFIG_X86_LOCAL_APIC |
394 | .startup_ipi_hook = paravirt_nop, | 398 | .startup_ipi_hook = paravirt_nop, |