mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-30 16:13:54 +08:00
ipvs: Avoid shadowing net variable in ip_vs_leave()
Flagged by sparse. Compile and sparse tested only. Acked-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
0a925864c1
commit
9fd0fa7ac3
@ -584,9 +584,9 @@ int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
|
||||
#ifdef CONFIG_IP_VS_IPV6
|
||||
if (svc->af == AF_INET6) {
|
||||
if (!skb->dev) {
|
||||
struct net *net = dev_net(skb_dst(skb)->dev);
|
||||
struct net *net_ = dev_net(skb_dst(skb)->dev);
|
||||
|
||||
skb->dev = net->loopback_dev;
|
||||
skb->dev = net_->loopback_dev;
|
||||
}
|
||||
icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user