summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/smp_processor_id.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/smp_processor_id.c b/lib/smp_processor_id.c
index 85925aaa4fff..157d9e31f6c2 100644
--- a/lib/smp_processor_id.c
+++ b/lib/smp_processor_id.c
@@ -5,10 +5,11 @@
5 * DEBUG_PREEMPT variant of smp_processor_id(). 5 * DEBUG_PREEMPT variant of smp_processor_id().
6 */ 6 */
7#include <linux/export.h> 7#include <linux/export.h>
8#include <linux/kprobes.h>
8#include <linux/sched.h> 9#include <linux/sched.h>
9 10
10notrace static unsigned int check_preemption_disabled(const char *what1, 11notrace static nokprobe_inline
11 const char *what2) 12unsigned int check_preemption_disabled(const char *what1, const char *what2)
12{ 13{
13 int this_cpu = raw_smp_processor_id(); 14 int this_cpu = raw_smp_processor_id();
14 15
@@ -56,9 +57,11 @@ notrace unsigned int debug_smp_processor_id(void)
56 return check_preemption_disabled("smp_processor_id", ""); 57 return check_preemption_disabled("smp_processor_id", "");
57} 58}
58EXPORT_SYMBOL(debug_smp_processor_id); 59EXPORT_SYMBOL(debug_smp_processor_id);
60NOKPROBE_SYMBOL(debug_smp_processor_id);
59 61
60notrace void __this_cpu_preempt_check(const char *op) 62notrace void __this_cpu_preempt_check(const char *op)
61{ 63{
62 check_preemption_disabled("__this_cpu_", op); 64 check_preemption_disabled("__this_cpu_", op);
63} 65}
64EXPORT_SYMBOL(__this_cpu_preempt_check); 66EXPORT_SYMBOL(__this_cpu_preempt_check);
67NOKPROBE_SYMBOL(__this_cpu_preempt_check);