Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 997cb503 authored by Atul Gupta's avatar Atul Gupta Committed by Greg Kroah-Hartman
Browse files

net/tls: Init routines in create_ctx



[ Upstream commit 6c0563e442528733219afe15c749eb2cc365da3f ]

create_ctx is called from tls_init and tls_hw_prot
hence initialize function pointers in common routine.

Signed-off-by: default avatarAtul Gupta <atul.gupta@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 7a2b5258
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -555,6 +555,9 @@ static struct tls_context *create_ctx(struct sock *sk)
		return NULL;

	icsk->icsk_ulp_data = ctx;
	ctx->setsockopt = sk->sk_prot->setsockopt;
	ctx->getsockopt = sk->sk_prot->getsockopt;
	ctx->sk_proto_close = sk->sk_prot->close;
	return ctx;
}

@@ -685,9 +688,6 @@ static int tls_init(struct sock *sk)
		rc = -ENOMEM;
		goto out;
	}
	ctx->setsockopt = sk->sk_prot->setsockopt;
	ctx->getsockopt = sk->sk_prot->getsockopt;
	ctx->sk_proto_close = sk->sk_prot->close;

	/* Build IPv6 TLS whenever the address of tcpv6	_prot changes */
	if (ip_ver == TLSV6 &&