Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966552Ab0GSTbX (ORCPT ); Mon, 19 Jul 2010 15:31:23 -0400 Received: from prod-mail-xrelay04.akamai.com ([96.6.114.79]:52736 "EHLO prod-mail-xrelay04.akamai.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965813Ab0GSTbW (ORCPT ); Mon, 19 Jul 2010 15:31:22 -0400 From: Josh Hunt To: Ingo Molnar Cc: peterz@infradead.org, linux-kernel@vger.kernel.org, juhlenko@akamai.com, efault@gmx.de Subject: [PATCH] trivial: Use correct macro to display sched_child_runs_first in /proc/sched_debug Date: Mon, 19 Jul 2010 12:31:16 -0700 Message-Id: <1279567876-25418-1-git-send-email-johunt@akamai.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <20100717101748.GA14106@elte.hu> References: <20100717101748.GA14106@elte.hu> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1050 Lines: 32 Resending via git. 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 --- 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 -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/