aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-06-30 15:26:56 -0700
committerDavid S. Miller <davem@davemloft.net>2018-07-02 20:36:37 +0900
commitfc9c2029e37c3ae9efc28bf47045e0b87e09660c (patch)
treef58aa4a0dab858796545a64f2355460b7f66789d /net/ipv6
parentnet: fix use-after-free in GRO with ESP (diff)
downloadlinux-dev-fc9c2029e37c3ae9efc28bf47045e0b87e09660c.tar.xz
linux-dev-fc9c2029e37c3ae9efc28bf47045e0b87e09660c.zip
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>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/seg6_hmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/seg6_hmac.c b/net/ipv6/seg6_hmac.c
index 33fb35cbfac1..558fe8cc6d43 100644
--- a/net/ipv6/seg6_hmac.c
+++ b/net/ipv6/seg6_hmac.c
@@ -373,7 +373,7 @@ static int seg6_hmac_init_algo(void)
return -ENOMEM;
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))
return PTR_ERR(tfm);
p_tfm = per_cpu_ptr(algo->tfms, cpu);