]> git.baikalelectronics.ru Git - kernel.git/commit
arch/alpha: replace cpumask_weight with cpumask_empty where appropriate
authorYury Norov <yury.norov@gmail.com>
Sun, 23 Jan 2022 18:38:44 +0000 (10:38 -0800)
committerYury Norov <yury.norov@gmail.com>
Fri, 3 Jun 2022 13:52:57 +0000 (06:52 -0700)
commit2f4c06d06259bf29c8cc00135e15a57178c69ed5
treec5fa6e35d46f9d2abc62131aa2df8945af4b0845
parent3a558f0c531844e06ec23b2a0c5cd9ed5b4520fb
arch/alpha: replace cpumask_weight with cpumask_empty where appropriate

common_shutdown_1() calls cpumask_weight() to check if any bit of a
given cpumask is set. We can do it 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>
arch/alpha/kernel/process.c