diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-10 06:58:42 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-10 22:40:14 -0700 |
commit | 5943634fc5592037db0693b261f7f4bea6bb9457 (patch) | |
tree | 4fdaf67e5be0df3c3067ff2a7febd28f118f02be /net/ipv4/xfrm4_policy.c | |
parent | 87a50699cb6d169591cc776fb82683a2c77cecac (diff) | |
download | op-kernel-dev-5943634fc5592037db0693b261f7f4bea6bb9457.zip op-kernel-dev-5943634fc5592037db0693b261f7f4bea6bb9457.tar.gz |
ipv4: Maintain redirect and PMTU info in struct rtable again.
Maintaining this in the inetpeer entries was not the right way to do
this at all.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/xfrm4_policy.c')
-rw-r--r-- | net/ipv4/xfrm4_policy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c index 9815ea0..951bcf3 100644 --- a/net/ipv4/xfrm4_policy.c +++ b/net/ipv4/xfrm4_policy.c @@ -100,6 +100,7 @@ static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, xdst->u.rt.rt_src = rt->rt_src; xdst->u.rt.rt_dst = rt->rt_dst; xdst->u.rt.rt_gateway = rt->rt_gateway; + xdst->u.rt.rt_pmtu = rt->rt_pmtu; return 0; } |