diff options
| author | Sridhar Samudrala <[email protected]> | 2008-06-04 22:19:35 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-06-04 22:19:35 +0000 |
| commit | 26af65cbeb2467a486ae4fc7242c94e470c67c50 (patch) | |
| tree | 24053b1e17e1629229ab03fc410b40f5df0d16b8 /net/ipv4/tcp_output.c | |
| parent | raw: Raw socket leak. (diff) | |
| download | kernel-26af65cbeb2467a486ae4fc7242c94e470c67c50.tar.gz kernel-26af65cbeb2467a486ae4fc7242c94e470c67c50.zip | |
tcp: Increment OUTRSTS in tcp_send_active_reset()
TCP "resets sent" counter is not incremented when a TCP Reset is
sent via tcp_send_active_reset().
Signed-off-by: Sridhar Samudrala <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_output.c')
| -rw-r--r-- | net/ipv4/tcp_output.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index e399bde7813a..ad993ecb4810 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -2131,6 +2131,8 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority) TCP_SKB_CB(skb)->when = tcp_time_stamp; if (tcp_transmit_skb(sk, skb, 0, priority)) NET_INC_STATS(LINUX_MIB_TCPABORTFAILED); + + TCP_INC_STATS(TCP_MIB_OUTRSTS); } /* WARNING: This routine must only be called when we have already sent |
