diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2016-09-10 22:09:57 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-11 09:12:52 +0300 |
commit | e0d56fdd734224666e7bd5fafbc620286d2a7ee8 (patch) | |
tree | 58f22fb38fb3b2a1e8d7a8933a92f721e6b0682e /net/ipv4/xfrm4_policy.c | |
parent | 4c1feac58e06270321cc500b85c2d94a11495775 (diff) | |
download | linux-e0d56fdd734224666e7bd5fafbc620286d2a7ee8.tar.xz |
net: l3mdev: remove redundant calls
A previous patch added l3mdev flow update making these hooks
redundant. Remove them.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
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 b644a23c3db0..3155ed73d3b3 100644 --- a/net/ipv4/xfrm4_policy.c +++ b/net/ipv4/xfrm4_policy.c @@ -112,7 +112,7 @@ _decode_session4(struct sk_buff *skb, struct flowi *fl, int reverse) int oif = 0; if (skb_dst(skb)) - oif = l3mdev_fib_oif(skb_dst(skb)->dev); + oif = skb_dst(skb)->dev->ifindex; memset(fl4, 0, sizeof(struct flowi4)); fl4->flowi4_mark = skb->mark; |