diff options
| author | Michael Brown | 2012-07-09 10:55:26 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-07-09 11:08:38 +0200 |
| commit | 024247317d50ffc4c44dd041aae19ae23b72788e (patch) | |
| tree | c059ac8afb0a71f79ba3795b2ff2d954f70cd0ce /src | |
| parent | [malloc] Discard cached items less aggressively (diff) | |
| download | ipxe-024247317d50ffc4c44dd041aae19ae23b72788e.tar.gz ipxe-024247317d50ffc4c44dd041aae19ae23b72788e.tar.xz ipxe-024247317d50ffc4c44dd041aae19ae23b72788e.zip | |
[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')
| -rw-r--r-- | src/crypto/x509.c | 2 | ||||
| -rw-r--r-- | src/include/ipxe/malloc.h | 13 | ||||
| -rw-r--r-- | src/net/arp.c | 9 | ||||
| -rw-r--r-- | src/net/tcp.c | 2 |
4 files changed, 21 insertions, 5 deletions
diff --git a/src/crypto/x509.c b/src/crypto/x509.c index a99f6ab93..a3a179919 100644 --- a/src/crypto/x509.c +++ b/src/crypto/x509.c @@ -143,7 +143,7 @@ static unsigned int x509_discard ( void ) { } /** X.509 cache discarder */ -struct cache_discarder x509_cache_discarder __cache_discarder = { +struct cache_discarder x509_discarder __cache_discarder ( CACHE_NORMAL ) = { .discard = x509_discard, }; diff --git a/src/include/ipxe/malloc.h b/src/include/ipxe/malloc.h index c435a7ddb..d41b05628 100644 --- a/src/include/ipxe/malloc.h +++ b/src/include/ipxe/malloc.h @@ -76,6 +76,17 @@ struct cache_discarder { #define CACHE_DISCARDERS __table ( struct cache_discarder, "cache_discarders" ) /** Declare a cache discarder */ -#define __cache_discarder __table_entry ( CACHE_DISCARDERS, 01 ) +#define __cache_discarder( cost ) __table_entry ( CACHE_DISCARDERS, cost ) + +/** @defgroup cache_cost Cache discarder costs + * + * @{ + */ + +#define CACHE_CHEAP 01 /**< Items with a low replacement cost */ +#define CACHE_NORMAL 02 /**< Items with a normal replacement cost */ +#define CACHE_EXPENSIVE 03 /**< Items with a high replacement cost */ + +/** @} */ #endif /* _IPXE_MALLOC_H */ 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, }; diff --git a/src/net/tcp.c b/src/net/tcp.c index 7a1272605..e98d8b17d 100644 --- a/src/net/tcp.c +++ b/src/net/tcp.c @@ -1315,7 +1315,7 @@ static unsigned int tcp_discard ( void ) { } /** TCP cache discarder */ -struct cache_discarder tcp_cache_discarder __cache_discarder = { +struct cache_discarder tcp_discarder __cache_discarder ( CACHE_NORMAL ) = { .discard = tcp_discard, }; |
