diff options
author | Luca De Cicco | 2006-06-12 08:01:59 +0200 |
---|---|---|
committer | David S. Miller | 2006-06-18 06:30:36 +0200 |
commit | b3a92eabe5b67bd207a38ae13dd51f4e08c1f6f7 (patch) | |
tree | 511472b1fb5e71e810dd73c9d8b11c12d9aa0efe /net/ipv4 | |
parent | [TCP] Westwood: comment fixes (diff) | |
download | kernel-qcow2-linux-b3a92eabe5b67bd207a38ae13dd51f4e08c1f6f7.tar.gz kernel-qcow2-linux-b3a92eabe5b67bd207a38ae13dd51f4e08c1f6f7.tar.xz kernel-qcow2-linux-b3a92eabe5b67bd207a38ae13dd51f4e08c1f6f7.zip |
[TCP] Westwood: bandwidth filter startup
The bandwidth estimate filter is now initialized with the first
sample in order to have better performances in the case of small
file transfers.
Signed-off-by: Luca De Cicco <ldecicco@gmail.com>
Signed-off-by: Stephen Hemminger <shemminger@dxpl.pdx.osdl.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp_westwood.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/net/ipv4/tcp_westwood.c b/net/ipv4/tcp_westwood.c index 12a2cd976e3a..edf2ee19a8ba 100644 --- a/net/ipv4/tcp_westwood.c +++ b/net/ipv4/tcp_westwood.c @@ -82,10 +82,16 @@ static inline u32 westwood_do_filter(u32 a, u32 b) return (((7 * a) + b) >> 3); } -static inline void westwood_filter(struct westwood *w, u32 delta) +static void westwood_filter(struct westwood *w, u32 delta) { - w->bw_ns_est = westwood_do_filter(w->bw_ns_est, w->bk / delta); - w->bw_est = westwood_do_filter(w->bw_est, w->bw_ns_est); + /* If the filter is empty fill it with the first sample of bandwidth */ + if (w->bw_ns_est == 0 && w->bw_est == 0) { + w->bw_ns_est = w->bk / delta; + w->bw_est = w->bw_ns_est; + } else { + w->bw_ns_est = westwood_do_filter(w->bw_ns_est, w->bk / delta); + w->bw_est = westwood_do_filter(w->bw_est, w->bw_ns_est); + } } /* |