aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inetpeer.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-02-09 15:36:47 -0800
committerDavid S. Miller <davem@davemloft.net>2011-02-10 13:29:30 -0800
commitddd4aa424b866a08ceba7ddf38e61542c91b93a0 (patch)
tree654235ceccd1c3f9dfbb7422ebe09b21544325d6 /net/ipv4/inetpeer.c
parentinetpeer: Abstract address representation further. (diff)
downloadlinux-dev-ddd4aa424b866a08ceba7ddf38e61542c91b93a0.tar.xz
linux-dev-ddd4aa424b866a08ceba7ddf38e61542c91b93a0.zip
inetpeer: Add redirect and PMTU discovery cached info.
Validity of the cached PMTU information is indicated by it's expiration value being non-zero, just as per dst->expires. The scheme we will use is that we will remember the pre-ICMP value held in the metrics or route entry, and then at expiration time we will restore that value. In this way PMTU expiration does not kill off the cached route as is done currently. Redirect information is permanent, or at least until another redirect is received. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inetpeer.c')
-rw-r--r--net/ipv4/inetpeer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c
index 4346c38763ae..48f8d4592ccd 100644
--- a/net/ipv4/inetpeer.c
+++ b/net/ipv4/inetpeer.c
@@ -515,6 +515,8 @@ struct inet_peer *inet_getpeer(struct inetpeer_addr *daddr, int create)
p->metrics[RTAX_LOCK-1] = INETPEER_METRICS_NEW;
p->rate_tokens = 0;
p->rate_last = 0;
+ p->pmtu_expires = 0;
+ memset(&p->redirect_learned, 0, sizeof(p->redirect_learned));
INIT_LIST_HEAD(&p->unused);