Lines Matching refs:decr
1085 int decr) in tcp_adjust_fackets_out() argument
1093 tp->fackets_out -= decr; in tcp_adjust_fackets_out()
1099 static void tcp_adjust_pcount(struct sock *sk, const struct sk_buff *skb, int decr) in tcp_adjust_pcount() argument
1103 tp->packets_out -= decr; in tcp_adjust_pcount()
1106 tp->sacked_out -= decr; in tcp_adjust_pcount()
1108 tp->retrans_out -= decr; in tcp_adjust_pcount()
1110 tp->lost_out -= decr; in tcp_adjust_pcount()
1113 if (tcp_is_reno(tp) && decr > 0) in tcp_adjust_pcount()
1114 tp->sacked_out -= min_t(u32, tp->sacked_out, decr); in tcp_adjust_pcount()
1116 tcp_adjust_fackets_out(sk, skb, decr); in tcp_adjust_pcount()
1121 tp->lost_cnt_hint -= decr; in tcp_adjust_pcount()