We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bfda3e commit 0049a62Copy full SHA for 0049a62
drivers/net/ipvlan/ipvlan_core.c
@@ -446,7 +446,7 @@ static noinline_for_stack int ipvlan_process_v4_outbound(struct sk_buff *skb)
446
447
memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
448
449
- err = ip_local_out(net, skb->sk, skb);
+ err = ip_local_out(net, NULL, skb);
450
if (unlikely(net_xmit_eval(err)))
451
DEV_STATS_INC(dev, tx_errors);
452
else
@@ -501,7 +501,7 @@ static int ipvlan_process_v6_outbound(struct sk_buff *skb)
501
502
memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
503
504
- err = ip6_local_out(dev_net(dev), skb->sk, skb);
+ err = ip6_local_out(dev_net(dev), NULL, skb);
505
506
507
0 commit comments