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>2014-04-10 00:19:14 (GMT)
commit5f1a16bdb3b1bda23879ac0ff31739b3c255b03d (patch)
tree21c6d720ec90f88b3e0477a7c04e0ad5db9172ab /lib
parentf31b617a9cfe6498b9ebc27187fee5385c17e337 (diff)
downloadlinux-fsl-qoriq-5f1a16bdb3b1bda23879ac0ff31739b3c255b03d.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();