mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 17:40:53 +07:00
crypto: af_alg - remove redundant initializations of sk_family
sk_alloc() already sets sock::sk_family to PF_ALG which is passed as the 'family' argument, so there's no need to set it again. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
7c39edfb04
commit
6d0d6cfb12
@ -302,8 +302,6 @@ int af_alg_accept(struct sock *sk, struct socket *newsock, bool kern)
|
|||||||
if (err)
|
if (err)
|
||||||
goto unlock;
|
goto unlock;
|
||||||
|
|
||||||
sk2->sk_family = PF_ALG;
|
|
||||||
|
|
||||||
if (nokey || !ask->refcnt++)
|
if (nokey || !ask->refcnt++)
|
||||||
sock_hold(sk);
|
sock_hold(sk);
|
||||||
ask->nokey_refcnt += nokey;
|
ask->nokey_refcnt += nokey;
|
||||||
@ -380,7 +378,6 @@ static int alg_create(struct net *net, struct socket *sock, int protocol,
|
|||||||
sock->ops = &alg_proto_ops;
|
sock->ops = &alg_proto_ops;
|
||||||
sock_init_data(sock, sk);
|
sock_init_data(sock, sk);
|
||||||
|
|
||||||
sk->sk_family = PF_ALG;
|
|
||||||
sk->sk_destruct = alg_sock_destruct;
|
sk->sk_destruct = alg_sock_destruct;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user