diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-07-09 09:55:26 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-07-09 10:08:38 +0100 |
commit | 024247317d50ffc4c44dd041aae19ae23b72788e (patch) | |
tree | c059ac8afb0a71f79ba3795b2ff2d954f70cd0ce /src/net/arp.c | |
parent | 8d95e1d6ff7b77ac6ea4d675c524c75d896c5d4b (diff) | |
download | ipxe-024247317d50ffc4c44dd041aae19ae23b72788e.tar.gz |
[arp] Try to avoid discarding ARP cache entries
Discarding the active ARP cache entry in the middle of a download will
substantially disrupt the TCP stream. Try to minimise any such
disruption by treating ARP cache entries as expensive, and discarding
them only when nothing else is available to discard.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/arp.c')
-rw-r--r-- | src/net/arp.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/arp.c b/src/net/arp.c index d6b4e731a..7cec73d5f 100644 --- a/src/net/arp.c +++ b/src/net/arp.c @@ -525,7 +525,12 @@ static unsigned int arp_discard ( void ) { return 0; } -/** ARP cache discarder */ -struct cache_discarder arp_cache_discarder __cache_discarder = { +/** ARP cache discarder + * + * ARP cache entries are deemed to have a high replacement cost, since + * flushing an active ARP cache entry midway through a TCP transfer + * will cause substantial disruption. + */ +struct cache_discarder arp_discarder __cache_discarder ( CACHE_EXPENSIVE ) = { .discard = arp_discard, }; |