mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
dwc_eth_qos: Fix dma address for multi-fragment skbs
[ Upstream commitd461873272] The offset inside the fragment was not used for the dma address and silent data corruption resulted because TSO makes the checksum match. Fixes:077742dac2("dwc_eth_qos: Add support for Synopsys DWC Ethernet QoS") Signed-off-by: Lars Persson <larper@axis.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1338c946e6
commit
ca0f94da27
@@ -2107,7 +2107,7 @@ static int dwceqos_tx_frags(struct sk_buff *skb, struct net_local *lp,
|
||||
dd = &lp->tx_descs[lp->tx_next];
|
||||
|
||||
/* Set DMA Descriptor fields */
|
||||
dd->des0 = dma_handle;
|
||||
dd->des0 = dma_handle + consumed_size;
|
||||
dd->des1 = 0;
|
||||
dd->des2 = dma_size;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user