diff options
author | David Miller <davem@davemloft.net> | 2012-07-01 06:03:01 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-21 00:31:18 +0400 |
commit | b48698895de86e07b685f8e4b8db0f1cd5a97e9a (patch) | |
tree | 5a4a9aa7363077b24289b99fd76da2ed30aae67c /net/ipv4/ipmr.c | |
parent | d6c0a4f609847d6e65658913f9ccbcb1c137cff3 (diff) | |
download | linux-b48698895de86e07b685f8e4b8db0f1cd5a97e9a.tar.xz |
ipv4: Remove 'rt_mark' from 'struct rtable'
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipmr.c')
-rw-r--r-- | net/ipv4/ipmr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index 5716c6b808d6..eee3bf6676fe 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c @@ -1797,7 +1797,7 @@ static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb) .flowi4_tos = RT_TOS(iph->tos), .flowi4_oif = rt->rt_oif, .flowi4_iif = rt->rt_iif, - .flowi4_mark = rt->rt_mark, + .flowi4_mark = skb->mark, }; struct mr_table *mrt; int err; |