diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-03 19:45:15 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-03 19:45:15 -0700 |
commit | 475949d8e86bbde5ea3ffa4d95e022ca69233b14 (patch) | |
tree | 5e29156df321b617366921f64532fc353019b238 /net/ipv4/xfrm4_policy.c | |
parent | 417da66fa9d2f14b1a90b04095413b87907d8183 (diff) |
ipv4: Renamt struct rtable's rt_tos to rt_key_tos.
To more accurately reflect that it is purely a routing
cache lookup key and is used in no other context.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c index 59b1340fb3bf..7ff973bd02dd 100644 --- a/net/ipv4/xfrm4_policy.c +++ b/net/ipv4/xfrm4_policy.c @@ -73,7 +73,7 @@ static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, rt->rt_key_dst = fl4->daddr; rt->rt_key_src = fl4->saddr; - rt->rt_tos = fl4->flowi4_tos; + rt->rt_key_tos = fl4->flowi4_tos; rt->rt_route_iif = fl4->flowi4_iif; rt->rt_iif = fl4->flowi4_iif; rt->rt_oif = fl4->flowi4_oif; |