All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] trivial: Use correct macro to display sched_child_runs_first in /proc/sched_debug
@ 2010-07-16 21:51 Josh Hunt
  2010-07-17 10:17 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Josh Hunt @ 2010-07-16 21:51 UTC (permalink / raw)
  To: mingo, peterz; +Cc: linux-kernel, juhlenko

The sched_child_runs_first value in /proc/sched_debug is currently
displayed using a macro meant to split ns time values. This patch uses
the correct macro to display it as a plain decimal value.

Signed-off-by: Josh Hunt <johunt@akamai.com>
---
 kernel/sched_debug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c
index 3556539..2e1b0d1 100644
--- a/kernel/sched_debug.c
+++ b/kernel/sched_debug.c
@@ -332,7 +332,7 @@ static int sched_debug_show(struct seq_file *m, void *v)
        PN(sysctl_sched_latency);
        PN(sysctl_sched_min_granularity);
        PN(sysctl_sched_wakeup_granularity);
-       PN(sysctl_sched_child_runs_first);
+       P(sysctl_sched_child_runs_first);
        P(sysctl_sched_features);
 #undef PN
 #undef P

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-21 20:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16 21:51 [PATCH] trivial: Use correct macro to display sched_child_runs_first in /proc/sched_debug Josh Hunt
2010-07-17 10:17 ` Ingo Molnar
2010-07-19 19:31   ` Josh Hunt
2010-07-21 20:52     ` [tip:sched/core] sched: " tip-bot for Josh Hunt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.