[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1387780764.6606.7.camel@marge.simpson.net>
Date: Mon, 23 Dec 2013 07:39:24 +0100
From: Mike Galbraith <bitbucket@...ine.de>
To: Ingo Molnar <mingo@...e.hu>
Cc: LKML <linux-kernel@...r.kernel.org>
Subject: [patch] sched: Fix up /proc/sched_debug to print only runnable
tasks again
Hi Ingo,
This hunk of b32e86b430 looks like a booboo.
Commit b32e86b430 dropped p->on_rq check, leading to printing tasks which
used to live on runqueues, which is very noisy (and annoying as heck).
Signed-off-by: Mike Galbraith <bitbucket@...ine.de>
---
kernel/sched/debug.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/kernel/sched/debug.c
+++ b/kernel/sched/debug.c
@@ -163,7 +163,7 @@ static void print_rq(struct seq_file *m,
read_lock_irqsave(&tasklist_lock, flags);
do_each_thread(g, p) {
- if (task_cpu(p) != rq_cpu)
+ if (!p->on_rq || task_cpu(p) != rq_cpu)
continue;
print_task(m, rq, p);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists