aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/core/sock.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2022-06-08 09:04:31 -0700
committerJakub Kicinski <kuba@kernel.org>2022-06-09 21:53:54 -0700
commit63fbdd3c77ec216a91a87d22821d2ecd96669a5d (patch)
treed7dd67249ace86374b0ad849370aaa194a6b96e3 /net/core/sock.c
parentMerge branch 'net-adopt-u64_stats_t-type' (diff)
downloadwireguard-linux-63fbdd3c77ec216a91a87d22821d2ecd96669a5d.tar.xz
wireguard-linux-63fbdd3c77ec216a91a87d22821d2ecd96669a5d.zip
net: use DEBUG_NET_WARN_ON_ONCE() in __release_sock()
Check against skb dst in socket backlog has never triggered in past years. Keep the check omly for CONFIG_DEBUG_NET=y builds. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core/sock.c')
-rw-r--r--net/core/sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/sock.c b/net/core/sock.c
index 2ff40dd0a7a6..f5062d9e1222 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -2844,7 +2844,7 @@ void __release_sock(struct sock *sk)
do {
next = skb->next;
prefetch(next);
- WARN_ON_ONCE(skb_dst_is_noref(skb));
+ DEBUG_NET_WARN_ON_ONCE(skb_dst_is_noref(skb));
skb_mark_not_on_list(skb);
sk_backlog_rcv(sk, skb);