mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
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>
This commit is contained in:
parent
af57b7fffa
commit
a98a4ebc8c
@ -393,6 +393,7 @@ static int ipvlan_process_v4_outbound(struct sk_buff *skb)
|
|||||||
.flowi4_oif = dev->ifindex,
|
.flowi4_oif = dev->ifindex,
|
||||||
.flowi4_tos = RT_TOS(ip4h->tos),
|
.flowi4_tos = RT_TOS(ip4h->tos),
|
||||||
.flowi4_flags = FLOWI_FLAG_ANYSRC,
|
.flowi4_flags = FLOWI_FLAG_ANYSRC,
|
||||||
|
.flowi4_mark = skb->mark,
|
||||||
.daddr = ip4h->daddr,
|
.daddr = ip4h->daddr,
|
||||||
.saddr = ip4h->saddr,
|
.saddr = ip4h->saddr,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user