* [PATCH 0/3] bitmap: introduce find_random_bit() and use in clocksource
@ 2025-06-04 21:21 Yury Norov
2025-06-04 21:21 ` [PATCH 1/3] bitmap: generalize node_random() Yury Norov
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Yury Norov @ 2025-06-04 21:21 UTC (permalink / raw)
To: linux-kernel, Yury Norov, Rasmus Villemoes, John Stultz,
Thomas Gleixner, Stephen Boyd, Andrew Morton
From: Yury Norov [NVIDIA] <yury.norov@gmail.com>
nodemasks implement node_random(), which may also be useful for other
subsystems. Generalize the function, and propagate to cpumask API.
Yury Norov (3):
bitmap: generalize node_random()
cpumask: introduce cpumask_random()
clocksource: improve randomness in clocksource_verify_choose_cpus()
include/linux/cpumask.h | 12 ++++++++++++
include/linux/find.h | 2 ++
include/linux/nodemask.h | 16 +---------------
kernel/time/clocksource.c | 5 +----
lib/find_bit.c | 17 ++++++++++++++++-
5 files changed, 32 insertions(+), 20 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/3] bitmap: generalize node_random()
2025-06-04 21:21 [PATCH 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
@ 2025-06-04 21:21 ` Yury Norov
2025-06-04 21:34 ` Andrew Morton
2025-06-04 21:21 ` [PATCH 2/3] cpumask: introduce cpumask_random() Yury Norov
2025-06-04 21:21 ` [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus() Yury Norov
2 siblings, 1 reply; 9+ messages in thread
From: Yury Norov @ 2025-06-04 21:21 UTC (permalink / raw)
To: linux-kernel, Yury Norov, Rasmus Villemoes, John Stultz,
Thomas Gleixner, Stephen Boyd, Andrew Morton
From: Yury Norov [NVIDIA] <yury.norov@gmail.com>
Generalize node_random and make it available to general bitmaps and
cpumasks users.
Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
---
include/linux/find.h | 2 ++
include/linux/nodemask.h | 16 +---------------
lib/find_bit.c | 17 ++++++++++++++++-
3 files changed, 19 insertions(+), 16 deletions(-)
diff --git a/include/linux/find.h b/include/linux/find.h
index 5a2c267ea7f9..98c61838002c 100644
--- a/include/linux/find.h
+++ b/include/linux/find.h
@@ -44,6 +44,8 @@ unsigned long _find_next_bit_le(const unsigned long *addr, unsigned
long size, unsigned long offset);
#endif
+unsigned long find_random_bit(const unsigned long *addr, unsigned long size);
+
#ifndef find_next_bit
/**
* find_next_bit - find the next set bit in a memory region
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h
index f08ae71585fa..1cedc7132b76 100644
--- a/include/linux/nodemask.h
+++ b/include/linux/nodemask.h
@@ -492,21 +492,7 @@ static __always_inline int num_node_state(enum node_states state)
static __always_inline int node_random(const nodemask_t *maskp)
{
#if defined(CONFIG_NUMA) && (MAX_NUMNODES > 1)
- int w, bit;
-
- w = nodes_weight(*maskp);
- switch (w) {
- case 0:
- bit = NUMA_NO_NODE;
- break;
- case 1:
- bit = first_node(*maskp);
- break;
- default:
- bit = find_nth_bit(maskp->bits, MAX_NUMNODES, get_random_u32_below(w));
- break;
- }
- return bit;
+ return find_random_bit(maskp->bits, MAX_NUMNODES);
#else
return 0;
#endif
diff --git a/lib/find_bit.c b/lib/find_bit.c
index 06b6342aa3ae..2118ea23bed8 100644
--- a/lib/find_bit.c
+++ b/lib/find_bit.c
@@ -18,6 +18,7 @@
#include <linux/math.h>
#include <linux/minmax.h>
#include <linux/swab.h>
+#include <linux/random.h>
/*
* Common helper for find_bit() function family
@@ -287,7 +288,21 @@ unsigned long _find_next_bit_le(const unsigned long *addr,
return FIND_NEXT_BIT(addr[idx], swab, size, offset);
}
EXPORT_SYMBOL(_find_next_bit_le);
-
#endif
+unsigned long find_random_bit(const unsigned long *addr, unsigned long size)
+{
+ int w = bitmap_weight(addr, size);
+
+ switch (w) {
+ case 0:
+ return size;
+ case 1:
+ return find_first_bit(addr, size);
+ default:
+ return find_nth_bit(addr, size, get_random_u32_below(w));
+ }
+}
+EXPORT_SYMBOL(find_random_bit);
+
#endif /* __BIG_ENDIAN */
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] cpumask: introduce cpumask_random()
2025-06-04 21:21 [PATCH 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
2025-06-04 21:21 ` [PATCH 1/3] bitmap: generalize node_random() Yury Norov
@ 2025-06-04 21:21 ` Yury Norov
2025-06-04 21:21 ` [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus() Yury Norov
2 siblings, 0 replies; 9+ messages in thread
From: Yury Norov @ 2025-06-04 21:21 UTC (permalink / raw)
To: linux-kernel, Yury Norov, Rasmus Villemoes, John Stultz,
Thomas Gleixner, Stephen Boyd, Andrew Morton
From: Yury Norov [NVIDIA] <yury.norov@gmail.com>
Propagate find_random_bit() to cpumask API.
Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
---
include/linux/cpumask.h | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h
index ede95bbe8b80..4d3505acb5e0 100644
--- a/include/linux/cpumask.h
+++ b/include/linux/cpumask.h
@@ -354,6 +354,18 @@ unsigned int cpumask_next_wrap(int n, const struct cpumask *src)
return find_next_bit_wrap(cpumask_bits(src), small_cpumask_bits, n + 1);
}
+/**
+ * cpumask_random - get random cpu in *src.
+ * @src: cpumask pointer
+ *
+ * Return: random set bit, or >= nr_cpu_ids if @src is empty.
+ */
+static __always_inline
+unsigned int cpumask_random(const struct cpumask *src)
+{
+ return find_random_bit(cpumask_bits(src), nr_cpu_ids);
+}
+
/**
* for_each_cpu - iterate over every cpu in a mask
* @cpu: the (optionally unsigned) integer iterator
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus()
2025-06-04 21:21 [PATCH 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
2025-06-04 21:21 ` [PATCH 1/3] bitmap: generalize node_random() Yury Norov
2025-06-04 21:21 ` [PATCH 2/3] cpumask: introduce cpumask_random() Yury Norov
@ 2025-06-04 21:21 ` Yury Norov
2025-06-05 18:17 ` John Stultz
2 siblings, 1 reply; 9+ messages in thread
From: Yury Norov @ 2025-06-04 21:21 UTC (permalink / raw)
To: linux-kernel, Yury Norov, Rasmus Villemoes, John Stultz,
Thomas Gleixner, Stephen Boyd, Andrew Morton
From: Yury Norov [NVIDIA] <yury.norov@gmail.com>
The current algorithm of picking a random CPU works OK for dence online
cpumask, but if cpumask is non-dence, the distribution of picked CPUs
is skewed.
For example, on 8-CPU board with CPUs 4-7 offlined, the probability of
selecting CPU 0 is 5/8. Accordingly, cpus 1, 2 and 3 are chosen with
probability 1/8 each. The proper algorithm should pick each CPU with
probability 1/4.
Switch it to cpumask_random(), which has better statistical
characteristics.
Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
---
kernel/time/clocksource.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index e400fe150f9d..0aef0e349e49 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -340,10 +340,7 @@ static void clocksource_verify_choose_cpus(void)
* CPUs that are currently online.
*/
for (i = 1; i < n; i++) {
- cpu = get_random_u32_below(nr_cpu_ids);
- cpu = cpumask_next(cpu - 1, cpu_online_mask);
- if (cpu >= nr_cpu_ids)
- cpu = cpumask_first(cpu_online_mask);
+ cpu = cpumask_random(cpu_online_mask);
if (!WARN_ON_ONCE(cpu >= nr_cpu_ids))
cpumask_set_cpu(cpu, &cpus_chosen);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] bitmap: generalize node_random()
2025-06-04 21:21 ` [PATCH 1/3] bitmap: generalize node_random() Yury Norov
@ 2025-06-04 21:34 ` Andrew Morton
2025-06-04 21:46 ` Yury Norov
0 siblings, 1 reply; 9+ messages in thread
From: Andrew Morton @ 2025-06-04 21:34 UTC (permalink / raw)
To: Yury Norov
Cc: linux-kernel, Rasmus Villemoes, John Stultz, Thomas Gleixner,
Stephen Boyd
On Wed, 4 Jun 2025 17:21:21 -0400 Yury Norov <yury.norov@gmail.com> wrote:
> Generalize node_random and make it available to general bitmaps and
> cpumasks users.
Seems sensible.
> --- a/lib/find_bit.c
> +++ b/lib/find_bit.c
>
> +unsigned long find_random_bit(const unsigned long *addr, unsigned long size)
> +{
> + int w = bitmap_weight(addr, size);
> +
> + switch (w) {
> + case 0:
> + return size;
> + case 1:
> + return find_first_bit(addr, size);
Is the `1' special case useful? The `default' case should still work OK?
> + default:
> + return find_nth_bit(addr, size, get_random_u32_below(w));
> + }
> +}
> +EXPORT_SYMBOL(find_random_bit);
Some kerneldoc, please?
Of course, the hard-coding of get_random_u32_below() might be
unsuitable for some future potential callers but we can deal with that
if it ever occurs.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] bitmap: generalize node_random()
2025-06-04 21:34 ` Andrew Morton
@ 2025-06-04 21:46 ` Yury Norov
2025-06-04 22:37 ` Andrew Morton
0 siblings, 1 reply; 9+ messages in thread
From: Yury Norov @ 2025-06-04 21:46 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-kernel, Rasmus Villemoes, John Stultz, Thomas Gleixner,
Stephen Boyd
On Wed, Jun 04, 2025 at 02:34:42PM -0700, Andrew Morton wrote:
> On Wed, 4 Jun 2025 17:21:21 -0400 Yury Norov <yury.norov@gmail.com> wrote:
>
> > Generalize node_random and make it available to general bitmaps and
> > cpumasks users.
>
> Seems sensible.
>
> > --- a/lib/find_bit.c
> > +++ b/lib/find_bit.c
> >
> > +unsigned long find_random_bit(const unsigned long *addr, unsigned long size)
> > +{
> > + int w = bitmap_weight(addr, size);
> > +
> > + switch (w) {
> > + case 0:
> > + return size;
> > + case 1:
> > + return find_first_bit(addr, size);
>
> Is the `1' special case useful? The `default' case should still work OK?
find_first_bit() is faster that find_nth_bit(), so this is a
performance optimization. See 3e061d924fe9c7b4 ("lib/nodemask: optimize
node_random for nodemask with single NUMA node").
> > + default:
> > + return find_nth_bit(addr, size, get_random_u32_below(w));
> > + }
> > +}
> > +EXPORT_SYMBOL(find_random_bit);
>
> Some kerneldoc, please?
Indeed, will send v2.
> Of course, the hard-coding of get_random_u32_below() might be
> unsuitable for some future potential callers but we can deal with that
> if it ever occurs.
Can you please elaborate?
Thanks,
Yury
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/3] bitmap: generalize node_random()
2025-06-04 21:46 ` Yury Norov
@ 2025-06-04 22:37 ` Andrew Morton
0 siblings, 0 replies; 9+ messages in thread
From: Andrew Morton @ 2025-06-04 22:37 UTC (permalink / raw)
To: Yury Norov
Cc: linux-kernel, Rasmus Villemoes, John Stultz, Thomas Gleixner,
Stephen Boyd
On Wed, 4 Jun 2025 17:46:59 -0400 Yury Norov <yury.norov@gmail.com> wrote:
> > Of course, the hard-coding of get_random_u32_below() might be
> > unsuitable for some future potential callers but we can deal with that
> > if it ever occurs.
>
> Can you please elaborate?
Some callers might want to use a different random number generator.
Seems unlikely, I know.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus()
2025-06-04 21:21 ` [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus() Yury Norov
@ 2025-06-05 18:17 ` John Stultz
0 siblings, 0 replies; 9+ messages in thread
From: John Stultz @ 2025-06-05 18:17 UTC (permalink / raw)
To: Yury Norov
Cc: linux-kernel, Rasmus Villemoes, Thomas Gleixner, Stephen Boyd,
Andrew Morton
On Wed, Jun 4, 2025 at 2:21 PM Yury Norov <yury.norov@gmail.com> wrote:
>
> From: Yury Norov [NVIDIA] <yury.norov@gmail.com>
>
> The current algorithm of picking a random CPU works OK for dence online
spelling nit: dence -> dense
> cpumask, but if cpumask is non-dence, the distribution of picked CPUs
same: non-dence -> non-dense
> is skewed.
>
> For example, on 8-CPU board with CPUs 4-7 offlined, the probability of
> selecting CPU 0 is 5/8. Accordingly, cpus 1, 2 and 3 are chosen with
> probability 1/8 each. The proper algorithm should pick each CPU with
> probability 1/4.
>
> Switch it to cpumask_random(), which has better statistical
> characteristics.
> Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
> ---
> kernel/time/clocksource.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
> index e400fe150f9d..0aef0e349e49 100644
> --- a/kernel/time/clocksource.c
> +++ b/kernel/time/clocksource.c
> @@ -340,10 +340,7 @@ static void clocksource_verify_choose_cpus(void)
> * CPUs that are currently online.
> */
> for (i = 1; i < n; i++) {
> - cpu = get_random_u32_below(nr_cpu_ids);
> - cpu = cpumask_next(cpu - 1, cpu_online_mask);
> - if (cpu >= nr_cpu_ids)
> - cpu = cpumask_first(cpu_online_mask);
> + cpu = cpumask_random(cpu_online_mask);
> if (!WARN_ON_ONCE(cpu >= nr_cpu_ids))
> cpumask_set_cpu(cpu, &cpus_chosen);
> }
This looks ok to me. Again, just the smallest nit about the subject
line capitalization.
Acked-by: John Stultz <jstultz@google.com>
thanks
-john
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/3] clocksource: Improve randomness in clocksource_verify_choose_cpus()
2025-06-08 19:45 [PATCH v2 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
@ 2025-06-08 19:45 ` Yury Norov
0 siblings, 0 replies; 9+ messages in thread
From: Yury Norov @ 2025-06-08 19:45 UTC (permalink / raw)
To: linux-kernel, Yury Norov, Rasmus Villemoes, John Stultz,
Thomas Gleixner, Stephen Boyd, Andrew Morton
From: "Yury Norov [NVIDIA]" <yury.norov@gmail.com>
The current algorithm of picking a random CPU works OK for dense online
cpumask, but if cpumask is non-dense, the distribution of picked CPUs
is skewed.
For example, on 8-CPU board with CPUs 4-7 offlined, the probability of
selecting CPU 0 is 5/8. Accordingly, cpus 1, 2 and 3 are chosen with
probability 1/8 each. The proper algorithm should pick each online CPU
with probability 1/4.
Switch it to cpumask_random(), which has better statistical
characteristics.
Acked-by: John Stultz <jstultz@google.com>
Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
---
kernel/time/clocksource.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 6a8bc7da9062..4b005b2f3ef5 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -342,10 +342,7 @@ static void clocksource_verify_choose_cpus(void)
* CPUs that are currently online.
*/
for (i = 1; i < n; i++) {
- cpu = get_random_u32_below(nr_cpu_ids);
- cpu = cpumask_next(cpu - 1, cpu_online_mask);
- if (cpu >= nr_cpu_ids)
- cpu = cpumask_first(cpu_online_mask);
+ cpu = cpumask_random(cpu_online_mask);
if (!WARN_ON_ONCE(cpu >= nr_cpu_ids))
cpumask_set_cpu(cpu, &cpus_chosen);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-06-08 19:45 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-04 21:21 [PATCH 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
2025-06-04 21:21 ` [PATCH 1/3] bitmap: generalize node_random() Yury Norov
2025-06-04 21:34 ` Andrew Morton
2025-06-04 21:46 ` Yury Norov
2025-06-04 22:37 ` Andrew Morton
2025-06-04 21:21 ` [PATCH 2/3] cpumask: introduce cpumask_random() Yury Norov
2025-06-04 21:21 ` [PATCH 3/3] clocksource: improve randomness in clocksource_verify_choose_cpus() Yury Norov
2025-06-05 18:17 ` John Stultz
-- strict thread matches above, loose matches on Subject: below --
2025-06-08 19:45 [PATCH v2 0/3] bitmap: introduce find_random_bit() and use in clocksource Yury Norov
2025-06-08 19:45 ` [PATCH 3/3] clocksource: Improve randomness in clocksource_verify_choose_cpus() Yury Norov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).