aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/renesas
diff options
context:
space:
mode:
authorKouei Abe <kouei.abe.cp@renesas.com>2013-08-30 12:41:07 +0900
committerDavid S. Miller <davem@davemloft.net>2013-09-03 22:02:32 -0400
commit7db8e0c14c9cb4adb667b4c558d8ffec8d5b40f2 (patch)
tree2cf26a337277f98f9d00d243e204ce4c6defd855 /drivers/net/ethernet/renesas
parentbonding: use rlb_client_info->vlan_id instead of ->tag (diff)
downloadlinux-dev-7db8e0c14c9cb4adb667b4c558d8ffec8d5b40f2.tar.xz
linux-dev-7db8e0c14c9cb4adb667b4c558d8ffec8d5b40f2.zip
sh_eth: Fix cache invalidation omission of receive buffer
Signed-off-by: Kouei Abe <kouei.abe.cp@renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/renesas')
-rw-r--r--drivers/net/ethernet/renesas/sh_eth.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
index 06d8f62626e4..60ec0f754b83 100644
--- a/drivers/net/ethernet/renesas/sh_eth.c
+++ b/drivers/net/ethernet/renesas/sh_eth.c
@@ -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);