net: macvlan: Use netif_rx().
Since commit baebdf48c3600 ("net: dev: Makes sure netif_rx() can be invoked in any context.") the function netif_rx() can be used in preemptible/thread context as well as in interrupt context. Use netif_rx(). Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
90f77c1c51
commit
566214f446
@ -285,7 +285,7 @@ static void macvlan_broadcast(struct sk_buff *skb,
|
||||
if (likely(nskb))
|
||||
err = macvlan_broadcast_one(nskb, vlan, eth,
|
||||
mode == MACVLAN_MODE_BRIDGE) ?:
|
||||
netif_rx_ni(nskb);
|
||||
netif_rx(nskb);
|
||||
macvlan_count_rx(vlan, skb->len + ETH_HLEN,
|
||||
err == NET_RX_SUCCESS, true);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user