aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/tcp_ipv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r--net/ipv6/tcp_ipv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 5fa8fea394c9..7cde1b6fdda3 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -964,7 +964,7 @@ static int tcp_v6_conn_request(struct sock *sk, struct sk_buff *skb)
964 &tcp_request_sock_ipv6_ops, sk, skb); 964 &tcp_request_sock_ipv6_ops, sk, skb);
965 965
966drop: 966drop:
967 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS); 967 tcp_listendrop(sk);
968 return 0; /* don't send reset */ 968 return 0; /* don't send reset */
969} 969}
970 970
@@ -1169,7 +1169,7 @@ out_overflow:
1169out_nonewsk: 1169out_nonewsk:
1170 dst_release(dst); 1170 dst_release(dst);
1171out: 1171out:
1172 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS); 1172 tcp_listendrop(sk);
1173 return NULL; 1173 return NULL;
1174} 1174}
1175 1175