diff options
author | Eric Dumazet <edumazet@google.com> | 2015-07-08 21:28:28 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-09 22:12:20 (GMT) |
commit | 3fd2f1b9d91284afb957ab9899a83279d0e09f29 (patch) | |
tree | ffea75375488c4968c9c253f0f792486502e46cb /include | |
parent | 8b58a39846568dcd7d0c98b2fadc25018e59dedf (diff) | |
download | linux-3fd2f1b9d91284afb957ab9899a83279d0e09f29.tar.xz |
inet: remove BUG_ON() in twsk_destructor()
Kernel will crash the same if one of the pointer is NULL anyway.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/timewait_sock.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/timewait_sock.h b/include/net/timewait_sock.h index 68f0eca..1a47946 100644 --- a/include/net/timewait_sock.h +++ b/include/net/timewait_sock.h @@ -33,9 +33,6 @@ static inline int twsk_unique(struct sock *sk, struct sock *sktw, void *twp) static inline void twsk_destructor(struct sock *sk) { - BUG_ON(sk == NULL); - BUG_ON(sk->sk_prot == NULL); - BUG_ON(sk->sk_prot->twsk_prot == NULL); if (sk->sk_prot->twsk_prot->twsk_destructor != NULL) sk->sk_prot->twsk_prot->twsk_destructor(sk); } |