From d319a9a9f83bc6fa53e5ad7a0ea7ee41caeba82f Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 29 Nov 2019 13:02:19 +0100 Subject: send: avoid touching skb->{next,prev} directly This isn't quite the same, since mark_not_on_list doesn't touch skb->prev, but hopefully it doesn't matter. --- src/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socket.c b/src/socket.c index f9a06a3..a90dadd 100644 --- a/src/socket.c +++ b/src/socket.c @@ -31,7 +31,7 @@ static int send4(struct wg_device *wg, struct sk_buff *skb, struct sock *sock; int ret = 0; - skb->next = skb->prev = NULL; + skb_mark_not_on_list(skb); skb->dev = wg->dev; skb->mark = wg->fwmark; @@ -117,7 +117,7 @@ static int send6(struct wg_device *wg, struct sk_buff *skb, struct sock *sock; int ret = 0; - skb->next = skb->prev = NULL; + skb_mark_not_on_list(skb); skb->dev = wg->dev; skb->mark = wg->fwmark; -- cgit v1.2.3-59-g8ed1b