summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-06-16 11:26:08 (GMT)
committerScott Wood <scottwood@freescale.com>2015-02-13 22:20:35 (GMT)
commit2e61bae2d666e1eea7d367b5b0b7b932ee573c29 (patch)
treeaf875940ab205cec4179f94c9bd3728d58bc57e1 /lib
parentfda46064abe2b94faafa5db1d6d66d97f006ae85 (diff)
downloadlinux-fsl-qoriq-2e61bae2d666e1eea7d367b5b0b7b932ee573c29.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.c6
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();