aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2015-07-08 14:28:28 -0700
committerDavid S. Miller <davem@davemloft.net>2015-07-09 15:12:20 -0700
commit3fd2f1b9d91284afb957ab9899a83279d0e09f29 (patch)
treeffea75375488c4968c9c253f0f792486502e46cb
parentipv6: use flag instead of u16 for hop in inet6_skb_parm (diff)
downloadlinux-dev-3fd2f1b9d91284afb957ab9899a83279d0e09f29.tar.xz
linux-dev-3fd2f1b9d91284afb957ab9899a83279d0e09f29.zip
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>
-rw-r--r--include/net/timewait_sock.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/timewait_sock.h b/include/net/timewait_sock.h
index 68f0ecad6c6e..1a47946f95ba 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);
}