]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
sched/topology: Fix sched_numa_find_nth_cpu() comment
authorYury Norov <yury.norov@gmail.com>
Sat, 19 Aug 2023 14:12:38 +0000 (07:12 -0700)
committerIngo Molnar <mingo@kernel.org>
Fri, 15 Sep 2023 11:48:11 +0000 (13:48 +0200)
Reword sched_numa_find_nth_cpu() comment and make it kernel-doc compatible.

Signed-off-by: Yury Norov <yury.norov@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Mel Gorman <mgorman@suse.de>
Link: https://lore.kernel.org/r/20230819141239.287290-7-yury.norov@gmail.com
kernel/sched/topology.c

index a60ecf45360cbbb646eae6203c7aae6c23d7fe01..a7b50bba7829dd4d49f336e0f0357fdf8b240acb 100644 (file)
@@ -2112,13 +2112,15 @@ static int hop_cmp(const void *a, const void *b)
        return -1;
 }
 
-/*
- * sched_numa_find_nth_cpu() - given the NUMA topology, find the Nth next cpu
- *                             closest to @cpu from @cpumask.
- * cpumask: cpumask to find a cpu from
- * cpu: Nth cpu to find
- *
- * returns: cpu, or nr_cpu_ids when nothing found.
+/**
+ * sched_numa_find_nth_cpu() - given the NUMA topology, find the Nth closest CPU
+ *                             from @cpus to @cpu, taking into account distance
+ *                             from a given @node.
+ * @cpus: cpumask to find a cpu from
+ * @cpu: CPU to start searching
+ * @node: NUMA node to order CPUs by distance
+ *
+ * Return: cpu, or nr_cpu_ids when nothing found.
  */
 int sched_numa_find_nth_cpu(const struct cpumask *cpus, int cpu, int node)
 {