diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r-- | net/ipv4/tcp_output.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 7979bfd5d0fb..1a630825c45b 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -34,6 +34,8 @@ | |||
34 | * | 34 | * |
35 | */ | 35 | */ |
36 | 36 | ||
37 | #define pr_fmt(fmt) "TCP: " fmt | ||
38 | |||
37 | #include <net/tcp.h> | 39 | #include <net/tcp.h> |
38 | 40 | ||
39 | #include <linux/compiler.h> | 41 | #include <linux/compiler.h> |
@@ -2415,7 +2417,7 @@ int tcp_send_synack(struct sock *sk) | |||
2415 | 2417 | ||
2416 | skb = tcp_write_queue_head(sk); | 2418 | skb = tcp_write_queue_head(sk); |
2417 | if (skb == NULL || !(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) { | 2419 | if (skb == NULL || !(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) { |
2418 | printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n"); | 2420 | pr_debug("%s: wrong queue state\n", __func__); |
2419 | return -EFAULT; | 2421 | return -EFAULT; |
2420 | } | 2422 | } |
2421 | if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)) { | 2423 | if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)) { |