Commit ebc71a38 authored by David S. Miller's avatar David S. Miller
Browse files

Merge tag 'batadv-next-pullrequest-20210312' of git://git.open-mesh.org/linux-merge



Simon Wunderlich says:

====================
There is only a single patch this time:

 - Use netif_rx_any_context(), by Sebastian Andrzej Siewior
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 361f7e4a b1de0f01
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -438,10 +438,7 @@ static void batadv_bla_send_claim(struct batadv_priv *bat_priv, u8 *mac,
	batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
			   skb->len + ETH_HLEN);

	if (in_interrupt())
		netif_rx(skb);
	else
		netif_rx_ni(skb);
	netif_rx_any_context(skb);
out:
	if (primary_if)
		batadv_hardif_put(primary_if);