x86: Replace cpumask_weight() with cpumask_empty() where appropriate
authorYury Norov <yury.norov@gmail.com>
Thu, 10 Feb 2022 22:49:00 +0000 (14:49 -0800)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 10 Apr 2022 20:35:38 +0000 (22:35 +0200)
commit3a5ff1f6dd50f5e1c2aa87491910dd6d275af24b
treef539026826c48f1de405111385b1aa559d57a750
parent5a0893088a20252cc268cbeabb25e883c2b6f94f
x86: Replace cpumask_weight() with cpumask_empty() where appropriate

In some cases, x86 code 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>
Reviewed-by: Steve Wahl <steve.wahl@hpe.com>
Link: https://lore.kernel.org/r/20220210224933.379149-17-yury.norov@gmail.com
arch/x86/kernel/cpu/resctrl/rdtgroup.c
arch/x86/mm/mmio-mod.c
arch/x86/platform/uv/uv_nmi.c