clocksource: Replace cpumask_weight() with cpumask_empty()
authorYury Norov <yury.norov@gmail.com>
Thu, 10 Feb 2022 22:49:07 +0000 (14:49 -0800)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 10 Apr 2022 20:30:04 +0000 (22:30 +0200)
commit8afbcaf8690dac19ebf570a4e4fef9c59c75bf8e
treebd7e580ff4b930bfef65210bc558775c9e7d36c7
parentefaa0227f6c6a5073951b20cf2f8c63c4155306c
clocksource: Replace cpumask_weight() with cpumask_empty()

clocksource_verify_percpu() calls cpumask_weight() to check if any bit of a
given cpumask is set.

This can be done more efficiently with cpumask_empty() because
cpumask_empty() stops traversing the cpumask as soon as it finds first set
bit, while cpumask_weight() counts all bits unconditionally.

Signed-off-by: Yury Norov <yury.norov@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20220210224933.379149-24-yury.norov@gmail.com
kernel/time/clocksource.c