summaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp.c
diff options
context:
space:
mode:
authorFlavio Leitner2011-10-24 10:15:10 +0200
committerDavid S. Miller2011-10-24 23:36:08 +0200
commit78d81d15b74246c7cedf84894434890b33da3907 (patch)
treecf2dd0b8d51204c4a956f443adaa2c90732aa0b0 /net/ipv4/tcp.c
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next (diff)
downloadkernel-qcow2-linux-78d81d15b74246c7cedf84894434890b33da3907.tar.gz
kernel-qcow2-linux-78d81d15b74246c7cedf84894434890b33da3907.tar.xz
kernel-qcow2-linux-78d81d15b74246c7cedf84894434890b33da3907.zip
TCP: remove TCP_DEBUG
It was enabled by default and the messages guarded by the define are useful. Signed-off-by: Flavio Leitner <fbl@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r--net/ipv4/tcp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index eefc61e3d0e4..34f5db1e1c8b 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -1193,13 +1193,11 @@ void tcp_cleanup_rbuf(struct sock *sk, int copied)
struct tcp_sock *tp = tcp_sk(sk);
int time_to_ack = 0;
-#if TCP_DEBUG
struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq),
"cleanup rbuf bug: copied %X seq %X rcvnxt %X\n",
tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt);
-#endif
if (inet_csk_ack_scheduled(sk)) {
const struct inet_connection_sock *icsk = inet_csk(sk);