]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: fsl-dpaa2/eth: Fix double DMA unmap
authorIoana Radulescu <ruxandra.radulescu@nxp.com>
Wed, 11 Oct 2017 13:29:48 +0000 (08:29 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Oct 2017 14:45:18 +0000 (16:45 +0200)
In case we fail to allocate a skb for a fragmented ingress
frame, the cleanup function will attempt to unmap again the
first frame fragment, which had already been unmapped during
early Rx processing.

Avoid this by freeing the first buffer immediately in case
we hit an error, leaving the cleanup function to free only
the subsequent buffers.

Signed-off-by: Ioana Radulescu <ruxandra.radulescu@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.c

index a0be9ab9d326b27e5af5476c1950f0e99a6dc6b4..6540ab05b89b89173d1939500f413f2fdbf90e82 100644 (file)
@@ -104,9 +104,11 @@ static void free_rx_fd(struct dpaa2_eth_priv *priv,
                /* We don't support any other format */
                return;
 
-       /* For S/G frames, we first need to free all SG entries */
+       /* For S/G frames, we first need to free all SG entries
+        * except the first one, which was taken care of already
+        */
        sgt = vaddr + dpaa2_fd_get_offset(fd);
-       for (i = 0; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
+       for (i = 1; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
                addr = dpaa2_sg_get_addr(&sgt[i]);
                sg_vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
                dma_unmap_single(dev, addr, DPAA2_ETH_RX_BUF_SIZE,
@@ -179,6 +181,11 @@ static struct sk_buff *build_frag_skb(struct dpaa2_eth_priv *priv,
                        skb = build_skb(sg_vaddr, DPAA2_ETH_RX_BUF_SIZE +
                                SKB_DATA_ALIGN(sizeof(struct skb_shared_info)));
                        if (unlikely(!skb)) {
+                               /* Free the first SG entry now, since we already
+                                * unmapped it and obtained the virtual address
+                                */
+                               skb_free_frag(sg_vaddr);
+
                                /* We still need to subtract the buffers used
                                 * by this FD from our software counter
                                 */