Merge branch 'systemport-net'
Florian Fainelli says: ==================== net: systemport: TX dma fixes This patch series contains two fixes for our transmit path, first one is a pretty nasty one since we were not allocating a large enough dma coherent pool for our transmit descriptors, which would work most of the time, since allocations are contiguous and we could have. Second patch fixes a less frequent, though highly likley crash when using CMA allocations. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
1868855798
1 changed files with 11 additions and 2 deletions
|
@ -1110,7 +1110,8 @@ static int bcm_sysport_init_tx_ring(struct bcm_sysport_priv *priv,
|
||||||
/* We just need one DMA descriptor which is DMA-able, since writing to
|
/* We just need one DMA descriptor which is DMA-able, since writing to
|
||||||
* the port will allocate a new descriptor in its internal linked-list
|
* the port will allocate a new descriptor in its internal linked-list
|
||||||
*/
|
*/
|
||||||
p = dma_zalloc_coherent(kdev, 1, &ring->desc_dma, GFP_KERNEL);
|
p = dma_zalloc_coherent(kdev, sizeof(struct dma_desc), &ring->desc_dma,
|
||||||
|
GFP_KERNEL);
|
||||||
if (!p) {
|
if (!p) {
|
||||||
netif_err(priv, hw, priv->netdev, "DMA alloc failed\n");
|
netif_err(priv, hw, priv->netdev, "DMA alloc failed\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@ -1174,6 +1175,13 @@ static void bcm_sysport_fini_tx_ring(struct bcm_sysport_priv *priv,
|
||||||
if (!(reg & TDMA_DISABLED))
|
if (!(reg & TDMA_DISABLED))
|
||||||
netdev_warn(priv->netdev, "TDMA not stopped!\n");
|
netdev_warn(priv->netdev, "TDMA not stopped!\n");
|
||||||
|
|
||||||
|
/* ring->cbs is the last part in bcm_sysport_init_tx_ring which could
|
||||||
|
* fail, so by checking this pointer we know whether the TX ring was
|
||||||
|
* fully initialized or not.
|
||||||
|
*/
|
||||||
|
if (!ring->cbs)
|
||||||
|
return;
|
||||||
|
|
||||||
napi_disable(&ring->napi);
|
napi_disable(&ring->napi);
|
||||||
netif_napi_del(&ring->napi);
|
netif_napi_del(&ring->napi);
|
||||||
|
|
||||||
|
@ -1183,7 +1191,8 @@ static void bcm_sysport_fini_tx_ring(struct bcm_sysport_priv *priv,
|
||||||
ring->cbs = NULL;
|
ring->cbs = NULL;
|
||||||
|
|
||||||
if (ring->desc_dma) {
|
if (ring->desc_dma) {
|
||||||
dma_free_coherent(kdev, 1, ring->desc_cpu, ring->desc_dma);
|
dma_free_coherent(kdev, sizeof(struct dma_desc),
|
||||||
|
ring->desc_cpu, ring->desc_dma);
|
||||||
ring->desc_dma = 0;
|
ring->desc_dma = 0;
|
||||||
}
|
}
|
||||||
ring->size = 0;
|
ring->size = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue