]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: mvpp2: release reference to txq_cpu[] entry after unmapping
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 21 Feb 2017 10:28:05 +0000 (11:28 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Feb 2017 18:16:15 +0000 (13:16 -0500)
The mvpp2_txq_bufs_free() function is called upon TX completion to DMA
unmap TX buffers, and free the corresponding SKBs. It gets the
references to the SKB to free and the DMA buffer to unmap from a per-CPU
txq_pcpu data structure.

However, the code currently increments the pointer to the next entry
before doing the DMA unmap and freeing the SKB. It does not cause any
visible problem because for a given SKB the TX completion is guaranteed
to take place on the CPU where the TX was started. However, it is much
more logical to increment the pointer to the next entry once the current
entry has been completely unmapped/released.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvpp2.c

index 47fb949178b12ba88aea91a31a49d37565bce241..5d6b4edcc13b84a91ab3fc8911b2e13939b1ed8b 100644 (file)
@@ -4437,13 +4437,12 @@ static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
                struct mvpp2_txq_pcpu_buf *tx_buf =
                        txq_pcpu->buffs + txq_pcpu->txq_get_index;
 
-               mvpp2_txq_inc_get(txq_pcpu);
-
                dma_unmap_single(port->dev->dev.parent, tx_buf->phys,
                                 tx_buf->size, DMA_TO_DEVICE);
-               if (!tx_buf->skb)
-                       continue;
-               dev_kfree_skb_any(tx_buf->skb);
+               if (tx_buf->skb)
+                       dev_kfree_skb_any(tx_buf->skb);
+
+               mvpp2_txq_inc_get(txq_pcpu);
        }
 }