[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5d0e218ee92a742a9a8e77690b0fc9f0079b6dc7.1697989543.git.ozlinuxc@gmail.com>
Date: Sun, 22 Oct 2023 12:21:35 -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 16/17] Change a usage of cork to pointer
Change an instance of cork to a pointer in accordance with the other
patches in this set
Signed-off-by: Oliver Crumrine <ozlinuxc@...il.com>
---
net/ipv6/udp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index 86b5d509a468..191d21d12a98 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -1306,8 +1306,8 @@ static int udp_v6_push_pending_frames(struct sock *sk)
if (!skb)
goto out;
- err = udp_v6_send_skb(skb, &inet_sk(sk)->cork.fl.u.ip6,
- &inet_sk(sk)->cork.base);
+ err = udp_v6_send_skb(skb, &inet_sk(sk)->cork->fl.u.ip6,
+ &inet_sk(sk)->cork->base);
out:
up->len = 0;
up->pending = 0;
--
2.42.0
Powered by blists - more mailing lists