lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <51d5932025b92446e63c72192194fc2ffe9f30a0.1697989543.git.ozlinuxc@gmail.com> Date: Sun, 22 Oct 2023 12:21:08 -0400 From: Oliver Crumrine <ozlinuxc@...il.com> To: netdev@...r.kernel.org, linux-kernel@...r.kernel.org Cc: davem@...emloft.n Subject: [PATCH net-next 12/17] Change an occurence of cork to pointer Changes this occurence of cork to a pointer Signed-off-by: Oliver Crumrine <ozlinuxc@...il.com> --- net/ipv4/tcp_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index f0723460753c..9672eaeb3ec1 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -1414,7 +1414,7 @@ static int __tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, err = INDIRECT_CALL_INET(icsk->icsk_af_ops->queue_xmit, inet6_csk_xmit, ip_queue_xmit, - sk, skb, &inet->cork.fl); + sk, skb, &inet->cork->fl); if (unlikely(err > 0)) { tcp_enter_cwr(sk); -- 2.42.0
Powered by blists - more mailing lists