提交 6989f512 编写于 作者: S Sascha Hauer 提交者: David S. Miller

fec: do not use memcpy on physical addresses

Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
Acked-by: NGreg Ungerer <gerg@uclinux.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 6f501b17
...@@ -341,7 +341,7 @@ fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -341,7 +341,7 @@ fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev)
if (bdp->cbd_bufaddr & 0x3) { if (bdp->cbd_bufaddr & 0x3) {
unsigned int index; unsigned int index;
index = bdp - fep->tx_bd_base; index = bdp - fep->tx_bd_base;
memcpy(fep->tx_bounce[index], (void *) bdp->cbd_bufaddr, bdp->cbd_datlen); memcpy(fep->tx_bounce[index], (void *)skb->data, skb->len);
bdp->cbd_bufaddr = __pa(fep->tx_bounce[index]); bdp->cbd_bufaddr = __pa(fep->tx_bounce[index]);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册