mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
mib: add net to TCP_INC_STATS
Fortunately (almost) all the TCP code has a sock to get the net from :) Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a9c19329ec
commit
81cc8a75d9
3 changed files with 8 additions and 8 deletions
|
@ -618,7 +618,7 @@ static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it,
|
|||
tcp_event_data_sent(tp, skb, sk);
|
||||
|
||||
if (after(tcb->end_seq, tp->snd_nxt) || tcb->seq == tcb->end_seq)
|
||||
TCP_INC_STATS(TCP_MIB_OUTSEGS);
|
||||
TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTSEGS);
|
||||
|
||||
err = icsk->icsk_af_ops->queue_xmit(skb, 0);
|
||||
if (likely(err <= 0))
|
||||
|
@ -1910,7 +1910,7 @@ int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
|
|||
|
||||
if (err == 0) {
|
||||
/* Update global TCP statistics. */
|
||||
TCP_INC_STATS(TCP_MIB_RETRANSSEGS);
|
||||
TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS);
|
||||
|
||||
tp->total_retrans++;
|
||||
|
||||
|
@ -2132,7 +2132,7 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority)
|
|||
if (tcp_transmit_skb(sk, skb, 0, priority))
|
||||
NET_INC_STATS(LINUX_MIB_TCPABORTFAILED);
|
||||
|
||||
TCP_INC_STATS(TCP_MIB_OUTRSTS);
|
||||
TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);
|
||||
}
|
||||
|
||||
/* WARNING: This routine must only be called when we have already sent
|
||||
|
@ -2258,7 +2258,7 @@ struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst,
|
|||
);
|
||||
|
||||
th->doff = (tcp_header_size >> 2);
|
||||
TCP_INC_STATS(TCP_MIB_OUTSEGS);
|
||||
TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTSEGS);
|
||||
|
||||
#ifdef CONFIG_TCP_MD5SIG
|
||||
/* Okay, we have all we need - do the md5 hash if needed */
|
||||
|
@ -2367,7 +2367,7 @@ int tcp_connect(struct sock *sk)
|
|||
*/
|
||||
tp->snd_nxt = tp->write_seq;
|
||||
tp->pushed_seq = tp->write_seq;
|
||||
TCP_INC_STATS(TCP_MIB_ACTIVEOPENS);
|
||||
TCP_INC_STATS(sock_net(sk), TCP_MIB_ACTIVEOPENS);
|
||||
|
||||
/* Timer for repeating the SYN until an answer. */
|
||||
inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue