Blame view

lib/smp_processor_id.c 1.35 KB
39c715b71   Ingo Molnar   [PATCH] smp_proce...
1
2
3
4
5
  /*
   * lib/smp_processor_id.c
   *
   * DEBUG_PREEMPT variant of smp_processor_id().
   */
8bc3bcc93   Paul Gortmaker   lib: reduce the u...
6
  #include <linux/export.h>
39c715b71   Ingo Molnar   [PATCH] smp_proce...
7
  #include <linux/kallsyms.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():
  	 */
fa17b507f   Peter Zijlstra   sched: Wrap sched...
25
  	if (cpumask_equal(tsk_cpus_allowed(current), cpumask_of(this_cpu)))
39c715b71   Ingo Molnar   [PATCH] smp_proce...
26
27
28
29
30
31
32
33
34
35
36
  		goto out;
  
  	/*
  	 * It is valid to assume CPU-locality during early bootup:
  	 */
  	if (system_state != SYSTEM_RUNNING)
  		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);
39c715b71   Ingo Molnar   [PATCH] smp_proce...
44
45
46
47
48
  	print_symbol("caller is %s
  ", (long)__builtin_return_address(0));
  	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);