crypto: iaa - Use cpumask_weight() when rebalancing
authorTom Zanussi <tom.zanussi@linux.intel.com>
Fri, 5 Apr 2024 18:57:30 +0000 (13:57 -0500)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 12 Apr 2024 07:07:52 +0000 (15:07 +0800)
commit8f0e0cf74ccef41b383daddcf5447bba655031b3
tree71472f48887d386090bda7a3f14fe7175dfde305
parent3ba2ae361402f28754adf873954a22bf97b856a9
crypto: iaa - Use cpumask_weight() when rebalancing

If some cpus are offlined, or if the node mask is smaller than
expected, the 'nonexistent cpu' warning in rebalance_wq_table() may be
erroneously triggered.

Use cpumask_weight() to make sure we only iterate over the exact
number of cpus in the mask.

Also use num_possible_cpus() instead of num_online_cpus() to make sure
all slots in the wq table are initialized.

Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/intel/iaa/iaa_crypto_main.c