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

Commit 7db8e0c1 authored by Kouei Abe's avatar Kouei Abe Committed by David S. Miller
Browse files

sh_eth: Fix cache invalidation omission of receive buffer

parent d3ab3ffd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1342,6 +1342,9 @@ static int sh_eth_rx(struct net_device *ndev, u32 intr_status, int *quota)
			mdp->rx_skbuff[entry] = NULL;
			if (mdp->cd->rpadir)
				skb_reserve(skb, NET_IP_ALIGN);
			dma_sync_single_for_cpu(&ndev->dev, rxdesc->addr,
						mdp->rx_buf_sz,
						DMA_FROM_DEVICE);
			skb_put(skb, pkt_len);
			skb->protocol = eth_type_trans(skb, ndev);
			netif_rx(skb);