Blame view

lib/smp_processor_id.c 1.38 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
39c715b71   Ingo Molnar   [PATCH] smp_proce...
2
3
4
5
6
  /*
   * lib/smp_processor_id.c
   *
   * DEBUG_PREEMPT variant of smp_processor_id().
   */
8bc3bcc93   Paul Gortmaker   lib: reduce the u...
7
  #include <linux/export.h>
984640ce4   Masami Hiramatsu   kprobes: Prohibit...
8
  #include <linux/kprobes.h>
4e57b6817   Tim Schmielau   [PATCH] fix missi...
9
  #include <linux/sched.h>
39c715b71   Ingo Molnar   [PATCH] smp_proce...
10

126f21f0e   Thomas Gleixner   lib/smp_processor...
11
  noinstr static
984640ce4   Masami Hiramatsu   kprobes: Prohibit...
12
  unsigned int check_preemption_disabled(const char *what1, const char *what2)
39c715b71   Ingo Molnar   [PATCH] smp_proce...
13
  {
39c715b71   Ingo Molnar   [PATCH] smp_proce...
14
  	int this_cpu = raw_smp_processor_id();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
15

4a2b4b222   Peter Zijlstra   sched: Introduce ...
16
  	if (likely(preempt_count()))
39c715b71   Ingo Molnar   [PATCH] smp_proce...
17
18
19
20
21
22
23
24
25
  		goto out;
  
  	if (irqs_disabled())
  		goto out;
  
  	/*
  	 * Kernel threads bound to a single CPU can safely use
  	 * smp_processor_id():
  	 */
e950cca3f   Waiman Long   lib/smp_processor...
26
  	if (current->nr_cpus_allowed == 1)
39c715b71   Ingo Molnar   [PATCH] smp_proce...
27
28
29
30
31
  		goto out;
  
  	/*
  	 * It is valid to assume CPU-locality during early bootup:
  	 */
1c3c5eab1   Thomas Gleixner   sched/core: Enabl...
32
  	if (system_state < SYSTEM_SCHEDULING)
39c715b71   Ingo Molnar   [PATCH] smp_proce...
33
34
35
36
37
  		goto out;
  
  	/*
  	 * Avoid recursion:
  	 */
5568b139f   Steven Rostedt   ftrace: debug smp...
38
  	preempt_disable_notrace();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
39

126f21f0e   Thomas Gleixner   lib/smp_processor...
40
  	instrumentation_begin();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
41
42
  	if (!printk_ratelimit())
  		goto out_enable;
188a81409   Christoph Lameter   percpu: add preem...
43
44
45
  	printk(KERN_ERR "BUG: using %s%s() in preemptible [%08x] code: %s/%d
  ",
  		what1, what2, preempt_count() - 1, current->comm, current->pid);
d202d47b5   Sergey Senozhatsky   lib: do not use p...
46
47
  	printk("caller is %pS
  ", __builtin_return_address(0));
39c715b71   Ingo Molnar   [PATCH] smp_proce...
48
  	dump_stack();
126f21f0e   Thomas Gleixner   lib/smp_processor...
49
  	instrumentation_end();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
50
51
  
  out_enable:
5568b139f   Steven Rostedt   ftrace: debug smp...
52
  	preempt_enable_no_resched_notrace();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
53
54
55
  out:
  	return this_cpu;
  }
126f21f0e   Thomas Gleixner   lib/smp_processor...
56
  noinstr unsigned int debug_smp_processor_id(void)
188a81409   Christoph Lameter   percpu: add preem...
57
58
59
  {
  	return check_preemption_disabled("smp_processor_id", "");
  }
39c715b71   Ingo Molnar   [PATCH] smp_proce...
60
  EXPORT_SYMBOL(debug_smp_processor_id);
126f21f0e   Thomas Gleixner   lib/smp_processor...
61
  noinstr void __this_cpu_preempt_check(const char *op)
188a81409   Christoph Lameter   percpu: add preem...
62
63
64
65
  {
  	check_preemption_disabled("__this_cpu_", op);
  }
  EXPORT_SYMBOL(__this_cpu_preempt_check);