[PATCH net-next 11/17] Update occurences of cork to pointer

From: Oliver Crumrine
Date: Sun Oct 22 2023 - 12:21:26 EST


Updates an occurence of cork to a pointer in accordance with the
previous patches in the set

Signed-off-by: Oliver Crumrine <ozlinuxc@xxxxxxxxx>
---
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