X Tutup
Skip to content

Commit fbf0ca1

Browse files
klassertherbertx
authored andcommitted
crypto: pcrypt - Use the online cpumask as the default
We use the active cpumask to determine the superset of cpus to use for parallelization. However, the active cpumask is for internal usage of the scheduler and therefore not the appropriate cpumask for these purposes. So use the online cpumask instead. Reported-by: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 9612090 commit fbf0ca1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crypto/pcrypt.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ static int pcrypt_aead_init_tfm(struct crypto_tfm *tfm)
280280

281281
ictx->tfm_count++;
282282

283-
cpu_index = ictx->tfm_count % cpumask_weight(cpu_active_mask);
283+
cpu_index = ictx->tfm_count % cpumask_weight(cpu_online_mask);
284284

285-
ctx->cb_cpu = cpumask_first(cpu_active_mask);
285+
ctx->cb_cpu = cpumask_first(cpu_online_mask);
286286
for (cpu = 0; cpu < cpu_index; cpu++)
287-
ctx->cb_cpu = cpumask_next(ctx->cb_cpu, cpu_active_mask);
287+
ctx->cb_cpu = cpumask_next(ctx->cb_cpu, cpu_online_mask);
288288

289289
cipher = crypto_spawn_aead(crypto_instance_ctx(inst));
290290

@@ -472,7 +472,7 @@ static int pcrypt_init_padata(struct padata_pcrypt *pcrypt,
472472
goto err_free_padata;
473473
}
474474

475-
cpumask_and(mask->mask, cpu_possible_mask, cpu_active_mask);
475+
cpumask_and(mask->mask, cpu_possible_mask, cpu_online_mask);
476476
rcu_assign_pointer(pcrypt->cb_cpumask, mask);
477477

478478
pcrypt->nblock.notifier_call = pcrypt_cpumask_change_notify;

0 commit comments

Comments
 (0)
X Tutup