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 16d319e commit e7f4606Copy full SHA for e7f4606
net/caif/caif_socket.c
@@ -1020,6 +1020,7 @@ static void caif_sock_destructor(struct sock *sk)
1020
return;
1021
}
1022
sk_stream_kill_queues(&cf_sk->sk);
1023
+ WARN_ON(sk->sk_forward_alloc);
1024
caif_free_client(&cf_sk->layer);
1025
1026
net/core/stream.c
@@ -209,7 +209,6 @@ void sk_stream_kill_queues(struct sock *sk)
209
sk_mem_reclaim(sk);
210
211
WARN_ON(sk->sk_wmem_queued);
212
- WARN_ON(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