diff options
author | Gao Feng <gfree.wind@vip.163.com> | 2017-12-01 09:58:42 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-03 09:44:02 -0500 |
commit | a98a4ebc8c61d20f0150d6be66e0e65223a347af (patch) | |
tree | 69e2ce69a098adc0ce47f22c287fc0df498d9c04 /drivers/net | |
parent | af57b7fffaf74ff337e479abb19026d72065673b (diff) | |
download | talos-op-linux-a98a4ebc8c61d20f0150d6be66e0e65223a347af.tar.gz talos-op-linux-a98a4ebc8c61d20f0150d6be66e0e65223a347af.zip |
ipvlan: Add the skb->mark as flow4's member to lookup route
Current codes don't use skb->mark to assign flowi4_mark, it would
make the policy route rule with fwmark doesn't work as expected.
Signed-off-by: Gao Feng <gfree.wind@vip.163.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ipvlan/ipvlan_core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ipvlan/ipvlan_core.c b/drivers/net/ipvlan/ipvlan_core.c index 11c1e7950fe5..77cc4fbaeace 100644 --- a/drivers/net/ipvlan/ipvlan_core.c +++ b/drivers/net/ipvlan/ipvlan_core.c @@ -393,6 +393,7 @@ static int ipvlan_process_v4_outbound(struct sk_buff *skb) .flowi4_oif = dev->ifindex, .flowi4_tos = RT_TOS(ip4h->tos), .flowi4_flags = FLOWI_FLAG_ANYSRC, + .flowi4_mark = skb->mark, .daddr = ip4h->daddr, .saddr = ip4h->saddr, }; |