smp_processor_id.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * lib/smp_processor_id.c
  3. *
  4. * DEBUG_PREEMPT variant of smp_processor_id().
  5. */
  6. #include <linux/export.h>
  7. #include <linux/kallsyms.h>
  8. #include <linux/sched.h>
  9. notrace static unsigned int check_preemption_disabled(const char *what1,
  10. const char *what2)
  11. {
  12. int this_cpu = raw_smp_processor_id();
  13. if (likely(preempt_count()))
  14. goto out;
  15. if (irqs_disabled())
  16. goto out;
  17. /*
  18. * Kernel threads bound to a single CPU can safely use
  19. * smp_processor_id():
  20. */
  21. if (cpumask_equal(tsk_cpus_allowed(current), cpumask_of(this_cpu)))
  22. goto out;
  23. /*
  24. * It is valid to assume CPU-locality during early bootup:
  25. */
  26. if (system_state != SYSTEM_RUNNING)
  27. goto out;
  28. /*
  29. * Avoid recursion:
  30. */
  31. preempt_disable_notrace();
  32. if (!printk_ratelimit())
  33. goto out_enable;
  34. printk(KERN_ERR "BUG: using %s%s() in preemptible [%08x] code: %s/%d\n",
  35. what1, what2, preempt_count() - 1, current->comm, current->pid);
  36. print_symbol("caller is %s\n", (long)__builtin_return_address(0));
  37. dump_stack();
  38. out_enable:
  39. preempt_enable_no_resched_notrace();
  40. out:
  41. return this_cpu;
  42. }
  43. notrace unsigned int debug_smp_processor_id(void)
  44. {
  45. return check_preemption_disabled("smp_processor_id", "");
  46. }
  47. EXPORT_SYMBOL(debug_smp_processor_id);
  48. notrace void __this_cpu_preempt_check(const char *op)
  49. {
  50. check_preemption_disabled("__this_cpu_", op);
  51. }
  52. EXPORT_SYMBOL(__this_cpu_preempt_check);