Blame view

lib/smp_processor_id.c 1.34 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>
4e57b6817   Tim Schmielau   [PATCH] fix missi...
8
  #include <linux/sched.h>
39c715b71   Ingo Molnar   [PATCH] smp_proce...
9

188a81409   Christoph Lameter   percpu: add preem...
10
11
  notrace static unsigned int check_preemption_disabled(const char *what1,
  							const char *what2)
39c715b71   Ingo Molnar   [PATCH] smp_proce...
12
  {
39c715b71   Ingo Molnar   [PATCH] smp_proce...
13
  	int this_cpu = raw_smp_processor_id();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
14

4a2b4b222   Peter Zijlstra   sched: Introduce ...
15
  	if (likely(preempt_count()))
39c715b71   Ingo Molnar   [PATCH] smp_proce...
16
17
18
19
20
21
22
23
24
  		goto out;
  
  	if (irqs_disabled())
  		goto out;
  
  	/*
  	 * Kernel threads bound to a single CPU can safely use
  	 * smp_processor_id():
  	 */
0c98d344f   Ingo Molnar   sched/core: Remov...
25
  	if (cpumask_equal(&current->cpus_allowed, cpumask_of(this_cpu)))
39c715b71   Ingo Molnar   [PATCH] smp_proce...
26
27
28
29
30
  		goto out;
  
  	/*
  	 * It is valid to assume CPU-locality during early bootup:
  	 */
1c3c5eab1   Thomas Gleixner   sched/core: Enabl...
31
  	if (system_state < SYSTEM_SCHEDULING)
39c715b71   Ingo Molnar   [PATCH] smp_proce...
32
33
34
35
36
  		goto out;
  
  	/*
  	 * Avoid recursion:
  	 */
5568b139f   Steven Rostedt   ftrace: debug smp...
37
  	preempt_disable_notrace();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
38
39
40
  
  	if (!printk_ratelimit())
  		goto out_enable;
188a81409   Christoph Lameter   percpu: add preem...
41
42
43
  	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...
44
45
  	printk("caller is %pS
  ", __builtin_return_address(0));
39c715b71   Ingo Molnar   [PATCH] smp_proce...
46
47
48
  	dump_stack();
  
  out_enable:
5568b139f   Steven Rostedt   ftrace: debug smp...
49
  	preempt_enable_no_resched_notrace();
39c715b71   Ingo Molnar   [PATCH] smp_proce...
50
51
52
  out:
  	return this_cpu;
  }
188a81409   Christoph Lameter   percpu: add preem...
53
54
55
56
  notrace unsigned int debug_smp_processor_id(void)
  {
  	return check_preemption_disabled("smp_processor_id", "");
  }
39c715b71   Ingo Molnar   [PATCH] smp_proce...
57
  EXPORT_SYMBOL(debug_smp_processor_id);
188a81409   Christoph Lameter   percpu: add preem...
58
59
60
61
62
  notrace void __this_cpu_preempt_check(const char *op)
  {
  	check_preemption_disabled("__this_cpu_", op);
  }
  EXPORT_SYMBOL(__this_cpu_preempt_check);