diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-04-24 01:26:16 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:29:45 -0400 |
commit | 164891aadf1721fca4dce473bb0e0998181537c6 (patch) | |
tree | 991393ec7306da475cb306fcc7cb084f737ebadc /include/linux/skbuff.h | |
parent | 65d1b4a7e73fe0e1f5275ad7d2d3547981480886 (diff) |
[TCP]: Congestion control API update.
Do some simple changes to make congestion control API faster/cleaner.
* use ktime_t rather than timeval
* merge rtt sampling into existing ack callback
this means one indirect call versus two per ack.
* use flags bits to store options/settings
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 50f6f6a094cf..2694cb3ca763 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -1569,6 +1569,11 @@ static inline void __net_timestamp(struct sk_buff *skb) | |||
1569 | skb->tstamp = ktime_get_real(); | 1569 | skb->tstamp = ktime_get_real(); |
1570 | } | 1570 | } |
1571 | 1571 | ||
1572 | static inline ktime_t net_timedelta(ktime_t t) | ||
1573 | { | ||
1574 | return ktime_sub(ktime_get_real(), t); | ||
1575 | } | ||
1576 | |||
1572 | 1577 | ||
1573 | extern __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len); | 1578 | extern __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len); |
1574 | extern __sum16 __skb_checksum_complete(struct sk_buff *skb); | 1579 | extern __sum16 __skb_checksum_complete(struct sk_buff *skb); |