2017-11-01 15:07:57 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-06-21 17:14:34 -07:00
|
|
|
/*
|
|
|
|
|
* lib/smp_processor_id.c
|
|
|
|
|
*
|
|
|
|
|
* DEBUG_PREEMPT variant of smp_processor_id().
|
|
|
|
|
*/
|
2011-11-16 21:29:17 -05:00
|
|
|
#include <linux/export.h>
|
2019-02-13 01:14:09 +09:00
|
|
|
#include <linux/kprobes.h>
|
2005-10-30 15:03:48 -08:00
|
|
|
#include <linux/sched.h>
|
2005-06-21 17:14:34 -07:00
|
|
|
|
2019-02-13 01:14:09 +09:00
|
|
|
notrace static nokprobe_inline
|
|
|
|
|
unsigned int check_preemption_disabled(const char *what1, const char *what2)
|
2005-06-21 17:14:34 -07:00
|
|
|
{
|
|
|
|
|
int this_cpu = raw_smp_processor_id();
|
|
|
|
|
|
2013-08-14 14:55:24 +02:00
|
|
|
if (likely(preempt_count()))
|
2005-06-21 17:14:34 -07:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (irqs_disabled())
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Kernel threads bound to a single CPU can safely use
|
|
|
|
|
* smp_processor_id():
|
|
|
|
|
*/
|
2017-02-05 15:38:10 +01:00
|
|
|
if (cpumask_equal(¤t->cpus_allowed, cpumask_of(this_cpu)))
|
2005-06-21 17:14:34 -07:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* It is valid to assume CPU-locality during early bootup:
|
|
|
|
|
*/
|
2017-05-16 20:42:48 +02:00
|
|
|
if (system_state < SYSTEM_SCHEDULING)
|
2005-06-21 17:14:34 -07:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Avoid recursion:
|
|
|
|
|
*/
|
2008-05-12 21:20:44 +02:00
|
|
|
preempt_disable_notrace();
|
2005-06-21 17:14:34 -07:00
|
|
|
|
|
|
|
|
if (!printk_ratelimit())
|
|
|
|
|
goto out_enable;
|
|
|
|
|
|
2014-04-07 15:39:44 -07:00
|
|
|
printk(KERN_ERR "BUG: using %s%s() in preemptible [%08x] code: %s/%d\n",
|
|
|
|
|
what1, what2, preempt_count() - 1, current->comm, current->pid);
|
|
|
|
|
|
2017-12-11 21:50:24 +09:00
|
|
|
printk("caller is %pS\n", __builtin_return_address(0));
|
2005-06-21 17:14:34 -07:00
|
|
|
dump_stack();
|
|
|
|
|
|
|
|
|
|
out_enable:
|
2008-05-12 21:20:44 +02:00
|
|
|
preempt_enable_no_resched_notrace();
|
2005-06-21 17:14:34 -07:00
|
|
|
out:
|
|
|
|
|
return this_cpu;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 15:39:44 -07:00
|
|
|
notrace unsigned int debug_smp_processor_id(void)
|
|
|
|
|
{
|
|
|
|
|
return check_preemption_disabled("smp_processor_id", "");
|
|
|
|
|
}
|
2005-06-21 17:14:34 -07:00
|
|
|
EXPORT_SYMBOL(debug_smp_processor_id);
|
2019-02-13 01:14:09 +09:00
|
|
|
NOKPROBE_SYMBOL(debug_smp_processor_id);
|
2005-06-21 17:14:34 -07:00
|
|
|
|
2014-04-07 15:39:44 -07:00
|
|
|
notrace void __this_cpu_preempt_check(const char *op)
|
|
|
|
|
{
|
|
|
|
|
check_preemption_disabled("__this_cpu_", op);
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL(__this_cpu_preempt_check);
|
2019-02-13 01:14:09 +09:00
|
|
|
NOKPROBE_SYMBOL(__this_cpu_preempt_check);
|