[PATCH] sched: Print the sd->level in sched_domain_debug code

Previous thread: [PATCH 5/5] [MIPS] The tickcount per-cpu variable can become static by Dmitri Vorobiev on Thursday, May 29, 2008 - 7:57 am. (8 messages)

Next thread: Question regarding TCP behavior by Adayadil Thomas on Thursday, May 29, 2008 - 8:29 am. (3 messages)
From: Gautham R Shenoy
Date: Thursday, May 29, 2008 - 8:26 am

sched: Print the sd->level in sched_domain_debug code

From: Gautham R Shenoy <ego@in.ibm.com>

While printing out the visual representation of the sched-domains, print
the level (MC, SMT, CPU, NODE, ... ) of each of the sched_domains.

Credit: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>
---

 kernel/sched.c |   25 ++++++++++++++++++++++++-
 1 files changed, 24 insertions(+), 1 deletions(-)


diff --git a/kernel/sched.c b/kernel/sched.c
index 1846451..7b81114 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -6638,6 +6638,28 @@ void __init migration_init(void)
 
 #ifdef CONFIG_SCHED_DEBUG
 
+static inline const char *sd_level_to_string(enum sched_domain_level lvl)
+{
+	switch (lvl) {
+	case SD_LV_NONE:
+			return "NONE";
+	case SD_LV_SIBLING:
+			return "SIBLING";
+	case SD_LV_MC:
+			return "MC";
+	case SD_LV_CPU:
+			return "CPU";
+	case SD_LV_NODE:
+			return "NODE";
+	case SD_LV_ALLNODES:
+			return "ALLNODES";
+	case SD_LV_MAX:
+			return "MAX";
+
+	}
+	return "MAX";
+}
+
 static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
 				  cpumask_t *groupmask)
 {
@@ -6657,7 +6679,8 @@ static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
 		return -1;
 	}
 
-	printk(KERN_CONT "span %s\n", str);
+	printk(KERN_CONT "span %s level %s\n",
+		str, sd_level_to_string(sd->level));
 
 	if (!cpu_isset(cpu, sd->span)) {
 		printk(KERN_ERR "ERROR: domain->span does not contain "
-- 
Thanks and Regards
gautham
--

From: Ingo Molnar
Date: Monday, June 2, 2008 - 4:03 am

applied to tip/sched-devel. Thanks,

	Ingo
--

Previous thread: [PATCH 5/5] [MIPS] The tickcount per-cpu variable can become static by Dmitri Vorobiev on Thursday, May 29, 2008 - 7:57 am. (8 messages)

Next thread: Question regarding TCP behavior by Adayadil Thomas on Thursday, May 29, 2008 - 8:29 am. (3 messages)