Skip to content

Commit

Permalink
sched/debug: Print the scheduler topology group mask
Browse files Browse the repository at this point in the history
In order to determine the balance_cpu (for should_we_balance()) we need
the sched_group_mask() for overlapping domains.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 15, 2017
1 parent 91eaed0 commit b0151c2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion kernel/sched/topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,22 @@ static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,

printk(KERN_CONT " %*pbl",
cpumask_pr_args(sched_group_cpus(group)));

if ((sd->flags & SD_OVERLAP) && !cpumask_full(sched_group_mask(group))) {
printk(KERN_CONT " (mask: %*pbl)",
cpumask_pr_args(sched_group_mask(group)));
}

if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
printk(KERN_CONT " (cpu_capacity = %lu)",
printk(KERN_CONT " (cpu_capacity: %lu)",
group->sgc->capacity);
}

group = group->next;

if (group != sd->groups)
printk(KERN_CONT ",");

} while (group != sd->groups);
printk(KERN_CONT "\n");

Expand Down

0 comments on commit b0151c2

Please sign in to comment.