diff options
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 9e0e45c3780..dec0b868111 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
@@ -1153,7 +1153,7 @@ static void tcp_prequeue_process(struct sock *sk) | |||
1153 | struct sk_buff *skb; | 1153 | struct sk_buff *skb; |
1154 | struct tcp_sock *tp = tcp_sk(sk); | 1154 | struct tcp_sock *tp = tcp_sk(sk); |
1155 | 1155 | ||
1156 | NET_INC_STATS_USER(LINUX_MIB_TCPPREQUEUED); | 1156 | NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED); |
1157 | 1157 | ||
1158 | /* RX process wants to run with disabled BHs, though it is not | 1158 | /* RX process wants to run with disabled BHs, though it is not |
1159 | * necessary */ | 1159 | * necessary */ |
@@ -1793,13 +1793,13 @@ void tcp_close(struct sock *sk, long timeout) | |||
1793 | */ | 1793 | */ |
1794 | if (data_was_unread) { | 1794 | if (data_was_unread) { |
1795 | /* Unread data was tossed, zap the connection. */ | 1795 | /* Unread data was tossed, zap the connection. */ |
1796 | NET_INC_STATS_USER(LINUX_MIB_TCPABORTONCLOSE); | 1796 | NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE); |
1797 | tcp_set_state(sk, TCP_CLOSE); | 1797 | tcp_set_state(sk, TCP_CLOSE); |
1798 | tcp_send_active_reset(sk, GFP_KERNEL); | 1798 | tcp_send_active_reset(sk, GFP_KERNEL); |
1799 | } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) { | 1799 | } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) { |
1800 | /* Check zero linger _after_ checking for unread data. */ | 1800 | /* Check zero linger _after_ checking for unread data. */ |
1801 | sk->sk_prot->disconnect(sk, 0); | 1801 | sk->sk_prot->disconnect(sk, 0); |
1802 | NET_INC_STATS_USER(LINUX_MIB_TCPABORTONDATA); | 1802 | NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA); |
1803 | } else if (tcp_close_state(sk)) { | 1803 | } else if (tcp_close_state(sk)) { |
1804 | /* We FIN if the application ate all the data before | 1804 | /* We FIN if the application ate all the data before |
1805 | * zapping the connection. | 1805 | * zapping the connection. |