We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3820050 commit 8243d55Copy full SHA for 8243d55
kernel/sched/core.c
@@ -5198,17 +5198,8 @@ void sched_show_task(struct task_struct *p)
5198
state = __ffs(state) + 1;
5199
printk(KERN_INFO "%-15.15s %c", p->comm,
5200
state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
5201
-#if BITS_PER_LONG == 32
5202
- if (state == TASK_RUNNING)
5203
- printk(KERN_CONT " running ");
5204
- else
5205
- printk(KERN_CONT " %08lx ", thread_saved_pc(p));
5206
-#else
5207
if (state == TASK_RUNNING)
5208
printk(KERN_CONT " running task ");
5209
5210
- printk(KERN_CONT " %016lx ", thread_saved_pc(p));
5211
-#endif
5212
#ifdef CONFIG_DEBUG_STACK_USAGE
5213
free = stack_not_used(p);
5214
#endif
0 commit comments