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

Commit fe90bd75 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: rmnet_ipa: use netif_rx_ni to push packets to network stack"

parents ab15b538 301ab1b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1060,9 +1060,9 @@ static void apps_ipa_packet_receive_notify(void *priv,
	skb->dev = ipa_netdevs[0];
	skb->protocol = htons(ETH_P_MAP);

	result = netif_rx(skb);
	result = netif_rx_ni(skb);
	if (result)	{
		pr_err_ratelimited(DEV_NAME " %s:%d fail on netif_rx\n",
		pr_err_ratelimited(DEV_NAME " %s:%d fail on netif_rx_ni\n",
				__func__, __LINE__);
		dev->stats.rx_dropped++;
	}