We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca43ccf commit 62ec33bCopy full SHA for 62ec33b
net/caif/caif_socket.c
@@ -1015,6 +1015,7 @@ static void caif_sock_destructor(struct sock *sk)
1015
return;
1016
}
1017
sk_stream_kill_queues(&cf_sk->sk);
1018
+ WARN_ON_ONCE(sk->sk_forward_alloc);
1019
caif_free_client(&cf_sk->layer);
1020
1021
net/core/stream.c
@@ -209,7 +209,6 @@ void sk_stream_kill_queues(struct sock *sk)
209
sk_mem_reclaim_final(sk);
210
211
WARN_ON_ONCE(sk->sk_wmem_queued);
212
- WARN_ON_ONCE(sk->sk_forward_alloc);
213
214
/* It is _impossible_ for the backlog to contain anything
215
* when we get here. All user references to this socket
0 commit comments