[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <b9db0ba9fe244bd0574adba6764c647b08714724.1697989543.git.ozlinuxc@gmail.com>
Date: Sun, 22 Oct 2023 12:21:02 -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 11/17] Update occurences of cork to pointer
Updates an occurence of cork to a pointer in accordance with the
previous patches in the set
Signed-off-by: Oliver Crumrine <ozlinuxc@...il.com>
---
net/ipv4/syncookies.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/syncookies.c b/net/ipv4/syncookies.c
index dc478a0574cb..4354a4decb51 100644
--- a/net/ipv4/syncookies.c
+++ b/net/ipv4/syncookies.c
@@ -450,6 +450,6 @@ struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb)
* Normal sockets get it right from inet_csk_route_child_sock()
*/
if (ret)
- inet_sk(ret)->cork.fl.u.ip4 = fl4;
+ inet_sk(ret)->cork->fl.u.ip4 = fl4;
out: return ret;
}
--
2.42.0
Powered by blists - more mailing lists