aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>2007-08-25 01:43:14 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:48:27 -0400
commite9144bd8da80f3136b23c615609798e371e885ac (patch)
tree4ca84a95f2dd7f2e4d49bc8f1868bdfee3deea82 /net/ipv4/tcp_input.c
parent522400623e240ad134cb4101b1fddc3245d2a7ed (diff)
[TCP]: Remove unnecessary wrapper tcp_packets_out_dec
Makes caller side more obvious, there's no need to have a wrapper for this oneliner! Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r--net/ipv4/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index faba9beb3613..593960d66ed9 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -2569,7 +2569,7 @@ static int tcp_clean_rtx_queue(struct sock *sk, __s32 *seq_rtt_p)
2569 last_ackt = skb->tstamp; 2569 last_ackt = skb->tstamp;
2570 } 2570 }
2571 tcp_dec_pcount_approx(&tp->fackets_out, skb); 2571 tcp_dec_pcount_approx(&tp->fackets_out, skb);
2572 tcp_packets_out_dec(tp, skb); 2572 tp->packets_out -= tcp_skb_pcount(skb);
2573 tcp_unlink_write_queue(skb, sk); 2573 tcp_unlink_write_queue(skb, sk);
2574 sk_stream_free_skb(sk, skb); 2574 sk_stream_free_skb(sk, skb);
2575 clear_all_retrans_hints(tp); 2575 clear_all_retrans_hints(tp);