diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-24 22:43:14 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:48:27 -0700 |
commit | e9144bd8da80f3136b23c615609798e371e885ac (patch) | |
tree | 4ca84a95f2dd7f2e4d49bc8f1868bdfee3deea82 /include/net/tcp.h | |
parent | 522400623e240ad134cb4101b1fddc3245d2a7ed (diff) | |
download | kernel-crypto-e9144bd8da80f3136b23c615609798e371e885ac.tar.gz kernel-crypto-e9144bd8da80f3136b23c615609798e371e885ac.tar.xz kernel-crypto-e9144bd8da80f3136b23c615609798e371e885ac.zip |
[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 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 0a4ed6e85c6..66827177ae8 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -626,12 +626,6 @@ static inline void tcp_packets_out_inc(struct sock *sk, inet_csk(sk)->icsk_rto, TCP_RTO_MAX); } -static inline void tcp_packets_out_dec(struct tcp_sock *tp, - const struct sk_buff *skb) -{ - tp->packets_out -= tcp_skb_pcount(skb); -} - /* Events passed to congestion control interface */ enum tcp_ca_event { CA_EVENT_TX_START, /* first transmit when no packets in flight */ |