mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-05-21 14:16:41 +00:00
ipv6: sr: fix passing wrong flags to crypto_alloc_shash()
The 'mask' argument to crypto_alloc_shash() uses the CRYPTO_ALG_* flags, not 'gfp_t'. So don't pass GFP_KERNEL to it. Fixes: bf355b8d2c30 ("ipv6: sr: add core files for SR HMAC support") Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
603d4cf8fe
commit
fc9c2029e3
@ -373,7 +373,7 @@ static int seg6_hmac_init_algo(void)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
for_each_possible_cpu(cpu) {
|
for_each_possible_cpu(cpu) {
|
||||||
tfm = crypto_alloc_shash(algo->name, 0, GFP_KERNEL);
|
tfm = crypto_alloc_shash(algo->name, 0, 0);
|
||||||
if (IS_ERR(tfm))
|
if (IS_ERR(tfm))
|
||||||
return PTR_ERR(tfm);
|
return PTR_ERR(tfm);
|
||||||
p_tfm = per_cpu_ptr(algo->tfms, cpu);
|
p_tfm = per_cpu_ptr(algo->tfms, cpu);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user