|
@@ -5198,17 +5198,8 @@ void sched_show_task(struct task_struct *p)
|
|
|
state = __ffs(state) + 1;
|
|
|
printk(KERN_INFO "%-15.15s %c", p->comm,
|
|
|
state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
|
|
|
-#if BITS_PER_LONG == 32
|
|
|
- if (state == TASK_RUNNING)
|
|
|
- printk(KERN_CONT " running ");
|
|
|
- else
|
|
|
- printk(KERN_CONT " %08lx ", thread_saved_pc(p));
|
|
|
-#else
|
|
|
if (state == TASK_RUNNING)
|
|
|
printk(KERN_CONT " running task ");
|
|
|
- else
|
|
|
- printk(KERN_CONT " %016lx ", thread_saved_pc(p));
|
|
|
-#endif
|
|
|
#ifdef CONFIG_DEBUG_STACK_USAGE
|
|
|
free = stack_not_used(p);
|
|
|
#endif
|