RDMA/hfi: Replace cpumask_weight with cpumask_empty where appropriate
authorYury Norov <yury.norov@gmail.com>
Thu, 10 Feb 2022 22:49:03 +0000 (14:49 -0800)
committerJason Gunthorpe <jgg@nvidia.com>
Fri, 11 Feb 2022 19:07:30 +0000 (15:07 -0400)
commit3c8bc3954d771fc4889508ad5d16f084adc4d64d
tree86a79ff21b9779dc84d5b64549a1c78062ff248f
parent2f1b2820b546c1eef07d15ed73db4177c0cf6d46
RDMA/hfi: Replace cpumask_weight with cpumask_empty where appropriate

drivers/infiniband/hw/hfi1/affinity.c code 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.

Link: https://lore.kernel.org/r/20220210224933.379149-20-yury.norov@gmail.com
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/hw/hfi1/affinity.c