Lines Matching refs:decr
1074 int decr) in tcp_adjust_fackets_out() argument
1082 tp->fackets_out -= decr; in tcp_adjust_fackets_out()
1088 static void tcp_adjust_pcount(struct sock *sk, const struct sk_buff *skb, int decr) in tcp_adjust_pcount() argument
1092 tp->packets_out -= decr; in tcp_adjust_pcount()
1095 tp->sacked_out -= decr; in tcp_adjust_pcount()
1097 tp->retrans_out -= decr; in tcp_adjust_pcount()
1099 tp->lost_out -= decr; in tcp_adjust_pcount()
1102 if (tcp_is_reno(tp) && decr > 0) in tcp_adjust_pcount()
1103 tp->sacked_out -= min_t(u32, tp->sacked_out, decr); in tcp_adjust_pcount()
1105 tcp_adjust_fackets_out(sk, skb, decr); in tcp_adjust_pcount()
1110 tp->lost_cnt_hint -= decr; in tcp_adjust_pcount()