Commit b6fbbf31 authored by Juri Lelli's avatar Juri Lelli Committed by Ingo Molnar

cgroup/cpuset: Update stale generate_sched_domains() comments

Commit:

  fc560a26 ("cpuset: replace cpuset->stack_list with cpuset_for_each_descendant_pre()")

removed the local list (q) that was used to perform a top-down scan
of all cpusets; however, comments mentioning it were not updated.

Update comments to reflect current implementation.
Signed-off-by: default avatarJuri Lelli <juri.lelli@redhat.com>
Acked-by: default avatarTejun Heo <tj@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: cgroups@vger.kernel.org
Cc: lizefan@huawei.com
Link: http://lkml.kernel.org/r/20181219133445.31982-1-juri.lelli@redhat.comSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 1a8b4540
...@@ -740,11 +740,10 @@ static inline int nr_cpusets(void) ...@@ -740,11 +740,10 @@ static inline int nr_cpusets(void)
* Must be called with cpuset_mutex held. * Must be called with cpuset_mutex held.
* *
* The three key local variables below are: * The three key local variables below are:
* q - a linked-list queue of cpuset pointers, used to implement a * cp - cpuset pointer, used (together with pos_css) to perform a
* top-down scan of all cpusets. This scan loads a pointer * top-down scan of all cpusets. For our purposes, rebuilding
* to each cpuset marked is_sched_load_balance into the * the schedulers sched domains, we can ignore !is_sched_load_
* array 'csa'. For our purposes, rebuilding the schedulers * balance cpusets.
* sched domains, we can ignore !is_sched_load_balance cpusets.
* csa - (for CpuSet Array) Array of pointers to all the cpusets * csa - (for CpuSet Array) Array of pointers to all the cpusets
* that need to be load balanced, for convenient iterative * that need to be load balanced, for convenient iterative
* access by the subsequent code that finds the best partition, * access by the subsequent code that finds the best partition,
...@@ -775,7 +774,7 @@ static inline int nr_cpusets(void) ...@@ -775,7 +774,7 @@ static inline int nr_cpusets(void)
static int generate_sched_domains(cpumask_var_t **domains, static int generate_sched_domains(cpumask_var_t **domains,
struct sched_domain_attr **attributes) struct sched_domain_attr **attributes)
{ {
struct cpuset *cp; /* scans q */ struct cpuset *cp; /* top-down scan of cpusets */
struct cpuset **csa; /* array of all cpuset ptrs */ struct cpuset **csa; /* array of all cpuset ptrs */
int csn; /* how many cpuset ptrs in csa so far */ int csn; /* how many cpuset ptrs in csa so far */
int i, j, k; /* indices for partition finding loops */ int i, j, k; /* indices for partition finding loops */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment