Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7015ca81 authored by Keefe Liu's avatar Keefe Liu Committed by Greg Kroah-Hartman
Browse files

ipvlan: fix ipv6 outbound device




[ Upstream commit ca29fd7c ]

When process the outbound packet of ipv6, we should assign the master
device to output device other than input device.

Signed-off-by: default avatarKeefe Liu <liuqifa@huawei.com>
Acked-by: default avatarMahesh Bandewar <maheshb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 854b27ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -409,7 +409,7 @@ static int ipvlan_process_v6_outbound(struct sk_buff *skb)
	struct dst_entry *dst;
	int err, ret = NET_XMIT_DROP;
	struct flowi6 fl6 = {
		.flowi6_iif = dev->ifindex,
		.flowi6_oif = dev->ifindex,
		.daddr = ip6h->daddr,
		.saddr = ip6h->saddr,
		.flowi6_flags = FLOWI_FLAG_ANYSRC,