diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-06-16 11:26:08 (GMT) |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2014-05-14 18:38:16 (GMT) |
commit | 0a30be4525a026dfe566c5ae15e2073a2855abe8 (patch) | |
tree | 5ee360ec1d924d415da893fe68611649ee0343e9 /lib | |
parent | ed286d4298597128252df0bc6b97bdc121f9084f (diff) | |
download | linux-fsl-qoriq-0a30be4525a026dfe566c5ae15e2073a2855abe8.tar.xz |
sched-migrate-disable.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/smp_processor_id.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smp_processor_id.c b/lib/smp_processor_id.c index 4c0d0e5..0a846e7 100644 --- a/lib/smp_processor_id.c +++ b/lib/smp_processor_id.c @@ -39,9 +39,9 @@ notrace unsigned int debug_smp_processor_id(void) if (!printk_ratelimit()) goto out_enable; - printk(KERN_ERR "BUG: using smp_processor_id() in preemptible [%08x] " - "code: %s/%d\n", - preempt_count() - 1, current->comm, current->pid); + printk(KERN_ERR "BUG: using smp_processor_id() in preemptible [%08x %08x] " + "code: %s/%d\n", preempt_count() - 1, + current->migrate_disable, current->comm, current->pid); print_symbol("caller is %s\n", (long)__builtin_return_address(0)); dump_stack(); |