From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755275AbbFSSA7 (ORCPT ); Fri, 19 Jun 2015 14:00:59 -0400 Received: from terminus.zytor.com ([198.137.202.10]:49242 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752662AbbFSSAw (ORCPT ); Fri, 19 Jun 2015 14:00:52 -0400 Date: Fri, 19 Jun 2015 11:00:04 -0700 From: tip-bot for Srikar Dronamraju Message-ID: Cc: srikar@linux.vnet.ibm.com, peterz@infradead.org, akpm@linux-foundation.org, torvalds@linux-foundation.org, tglx@linutronix.de, bp@alien8.de, mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com Reply-To: peterz@infradead.org, torvalds@linux-foundation.org, tglx@linutronix.de, akpm@linux-foundation.org, srikar@linux.vnet.ibm.com, linux-kernel@vger.kernel.org, mingo@kernel.org, hpa@zytor.com, bp@alien8.de In-Reply-To: <1433751041-11724-3-git-send-email-srikar@linux.vnet.ibm.com> References: <1433751041-11724-3-git-send-email-srikar@linux.vnet.ibm.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/debug: Replace vruntime with wait_sum in / proc/sched_debug Git-Commit-ID: c5f3ab1c3b2e277cca6462415038dab02b4ad396 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: c5f3ab1c3b2e277cca6462415038dab02b4ad396 Gitweb: http://git.kernel.org/tip/c5f3ab1c3b2e277cca6462415038dab02b4ad396 Author: Srikar Dronamraju AuthorDate: Mon, 8 Jun 2015 13:40:40 +0530 Committer: Ingo Molnar CommitDate: Fri, 19 Jun 2015 10:03:11 +0200 sched/debug: Replace vruntime with wait_sum in /proc/sched_debug Within runnable tasks in /proc/sched_debug, vruntime is printed twice, once as tree-key and again as exec-runtime. Since exec-runtime isnt populated in !CONFIG_SCHEDSTATS, use this field to print wait_sum. Signed-off-by: Srikar Dronamraju Signed-off-by: Peter Zijlstra (Intel) Cc: Andrew Morton Cc: Borislav Petkov Cc: H. Peter Anvin Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1433751041-11724-3-git-send-email-srikar@linux.vnet.ibm.com Signed-off-by: Ingo Molnar --- kernel/sched/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/sched/debug.c b/kernel/sched/debug.c index 59cb603..7dc547e 100644 --- a/kernel/sched/debug.c +++ b/kernel/sched/debug.c @@ -132,7 +132,7 @@ print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) p->prio); #ifdef CONFIG_SCHEDSTATS SEQ_printf(m, "%9Ld.%06ld %9Ld.%06ld %9Ld.%06ld", - SPLIT_NS(p->se.vruntime), + SPLIT_NS(p->se.statistics.wait_sum), SPLIT_NS(p->se.sum_exec_runtime), SPLIT_NS(p->se.statistics.sum_sleep_runtime)); #else @@ -158,7 +158,7 @@ static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu) SEQ_printf(m, "\nrunnable tasks:\n" " task PID tree-key switches prio" - " exec-runtime sum-exec sum-sleep\n" + " wait-time sum-exec sum-sleep\n" "------------------------------------------------------" "----------------------------------------------------\n"); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/