diff options
author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2019-07-08 10:25:41 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-08 11:48:10 -0700 |
commit | bfb204129a5adeb8eb62d693e97047ae6c8f37fd (patch) | |
tree | 9f65606163ab3dcf44f7ff909bc4c0a88356a96c /drivers/net/ethernet/socionext/netsec.c | |
parent | 61a582be1a668a0c1407a46f779965bfeff88784 (diff) | |
download | linux-bfb204129a5adeb8eb62d693e97047ae6c8f37fd.tar.bz2 |
net: netsec: Sync dma for device on buffer allocation
cd1973a9215a ("net: netsec: Sync dma for device on buffer allocation")
was merged on it's v1 instead of the v3.
Merge the proper patch version
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/socionext/netsec.c')
-rw-r--r-- | drivers/net/ethernet/socionext/netsec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/ethernet/socionext/netsec.c b/drivers/net/ethernet/socionext/netsec.c index f6e261c6a059..460777449cd9 100644 --- a/drivers/net/ethernet/socionext/netsec.c +++ b/drivers/net/ethernet/socionext/netsec.c @@ -743,9 +743,7 @@ static void *netsec_alloc_rx_data(struct netsec_priv *priv, */ *desc_len = PAGE_SIZE - NETSEC_RX_BUF_NON_DATA; dma_dir = page_pool_get_dma_dir(dring->page_pool); - dma_sync_single_for_device(priv->dev, - *dma_handle - NETSEC_RXBUF_HEADROOM, - PAGE_SIZE, dma_dir); + dma_sync_single_for_device(priv->dev, *dma_handle, *desc_len, dma_dir); return page_address(page); } |