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

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

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

parents edfa45b3 99435211
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1120,9 +1120,9 @@ static void rndis_ipa_packet_receive_notify(void *private,
		return;
	}

	result = netif_rx(skb);
	result = netif_rx_ni(skb);
	if (result)
		RNDIS_IPA_ERROR("fail on netif_rx\n");
		RNDIS_IPA_ERROR("fail on netif_rx_ni\n");
	rndis_ipa_ctx->net->stats.rx_packets++;
	rndis_ipa_ctx->net->stats.rx_bytes += packet_len;