aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/inetpeer.h
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 /include/net/inetpeer.h
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 'include/net/inetpeer.h')
-rw-r--r--include/net/inetpeer.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/include/net/inetpeer.h b/include/net/inetpeer.h
index 60e2cd8d1319..e6dd8da6b2ad 100644
--- a/include/net/inetpeer.h
+++ b/include/net/inetpeer.h
@@ -43,13 +43,17 @@ struct inet_peer {
*/
union {
struct {
- atomic_t rid; /* Frag reception counter */
- atomic_t ip_id_count; /* IP ID for the next packet */
- __u32 tcp_ts;
- __u32 tcp_ts_stamp;
- u32 metrics[RTAX_MAX];
- u32 rate_tokens; /* rate limiting for ICMP */
- unsigned long rate_last;
+ atomic_t rid; /* Frag reception counter */
+ atomic_t ip_id_count; /* IP ID for the next packet */
+ __u32 tcp_ts;
+ __u32 tcp_ts_stamp;
+ u32 metrics[RTAX_MAX];
+ u32 rate_tokens; /* rate limiting for ICMP */
+ unsigned long rate_last;
+ unsigned long pmtu_expires;
+ u32 pmtu_orig;
+ u32 pmtu_learned;
+ struct inetpeer_addr_base redirect_learned;
};
struct rcu_head rcu;
};